Skip to content

Commit 7946592

Browse files
authored
Resolve cryptography vulnerability for CVE-2024-12797 (#582)
* Resolve cryptography vulnerability for CVE-2024-12797 * Prepare release 1.12.0 * Update cookiecutter template default, as Python 3.9 EOL
1 parent bb05fd4 commit 7946592

File tree

7 files changed

+76
-139
lines changed

7 files changed

+76
-139
lines changed

.github/actions/security-issues/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
- name: Install Python Toolbox / Security tool
4040
shell: bash
4141
run: |
42-
pip install exasol-toolbox==1.11.0
42+
pip install exasol-toolbox==1.12.0
4343
4444
- name: Create Security Issue Report
4545
shell: bash

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_1.12.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 1.12.0 - 2025-10-29
2+
## Security
3+
4+
* #581: Resolved CVE-2024-12797 for cryptography by dropping support for Python versions 3.9.0 and 3.9.1 and updating the lock file

exasol/toolbox/version.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poetry.lock

Lines changed: 65 additions & 134 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

project-template/cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author_full_name": "Exasol AG",
99
"author_email": "opensource@exasol.com",
1010
"project_short_tag": "",
11-
"python_version_min": "3.9",
11+
"python_version_min": "3.10",
1212
"license_year": "{% now 'utc', '%Y' %}",
1313
"__repo_name_slug": "{{cookiecutter.package_name}}",
1414
"__package_name_slug": "{{cookiecutter.package_name}}",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "exasol-toolbox"
3-
version = "1.11.0"
4-
requires-python = ">=3.9,<4.0"
3+
version = "1.12.0"
4+
requires-python = ">=3.9.2,<4.0"
55
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project."
66
authors = [
77
{ name = "Nicola Coretti", email = "nicola.coretti@exasol.com" },

0 commit comments

Comments
 (0)