Skip to content

Commit d738434

Browse files
authored
Prepare release 3.3.0 (#299)
1 parent e237e44 commit d738434

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changes
22

33
* [unreleased](unreleased.md)
4+
* [3.3.0](changes_3.3.0.md)
45
* [3.2.0](changes_3.2.0.md)
56
* [3.1.0](changes_3.1.0.md)
67
* [3.0.0](changes_3.0.0.md)

doc/changes/changes_3.3.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 3.3.0 - 2025-06-02
2+
3+
This release aims to avoid leakage of security credentials in log files. Also, it updates the Python dependencies.
4+
## Security
5+
6+
- #293: Updated poetry dependencies
7+
* Fixed CVE-2025-47287 in transitive productive dependency `tornado` via `luigi` by updating `tornado` to version `6.5.1`
8+
* Fixed CVE-2025-47273 in transitive dev dependency `setuptools` via `exasol-toolbox`, `bandit`, `stevedore` by updating `setuptools` to version `80.9.0`
9+
10+
## Refactorings
11+
12+
- #296: Reformat code with latest PTB
13+
- #295: Do not write docker password to test_output file

doc/changes/unreleased.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
11
# Unreleased
2-
3-
## Security
4-
5-
- #293: Updated poetry dependencies
6-
* Fixed CVE-2025-47287 in transitive productive dependency `tornado` via `luigi` by updating `tornado` to version `6.5.1`
7-
* Fixed CVE-2025-47273 in transitive dev dependency `setuptools` via `exasol-toolbox`, `bandit`, `stevedore` by updating `setuptools` to version `80.9.0`
8-
9-
## Refactorings
10-
11-
- #296: Reformat code with latest PTB
12-
- #295: Do not write docker password to test_output file

exasol/slc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 3
8-
MINOR = 2
8+
MINOR = 3
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
1111
__version__ = VERSION

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "exasol-script-languages-container-tool"
3-
version = "3.2.0"
3+
version = "3.3.0"
44
description = "Script Languages Container Tool"
55
keywords = ['exasol', 'udf', 'script-languages']
66

0 commit comments

Comments
 (0)