Skip to content

Commit c552f9b

Browse files
security/updates_on_top_of_0.13.0 (#136)
* Update dependencies on top of 0.13.0 to fix vulnerabilities. --------- Co-authored-by: Ariel Schulz <43442541+ArBridgeman@users.noreply.github.com>
1 parent 85a9323 commit c552f9b

14 files changed

Lines changed: 740 additions & 610 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
/.github/workflows/checks.yml linguist-generated
77
/.github/workflows/ci.yml linguist-generated
88
/.github/workflows/gh-pages.yml linguist-generated
9+
/.github/workflows/matrix-exasol.yml linguist-generated
10+
/.github/workflows/matrix-python.yml linguist-generated
911
/.github/workflows/merge-gate.yml linguist-generated
1012
/.github/workflows/pr-merge.yml linguist-generated
1113
/.github/workflows/report.yml linguist-generated

.github/workflows/checks.yml

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

.github/workflows/ci.yml

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

.github/workflows/matrix-exasol.yml

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

.github/workflows/matrix-python.yml

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

.github/workflows/merge-gate.yml

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

.github/workflows/report.yml

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

.github/workflows/slow-checks.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Please note that this workflow was manually adapted from the version generated
2+
# by the Exasol Python Toolbox.
3+
#
4+
# 1. The matrix consists of backend type and Exasol version
5+
# 2. Disabling AppArmor namespace restrictions is required to run dockerdb
6+
# 3. To make sure space on the standard runner is freed up,
7+
# unneeded large directories are removed
8+
#
9+
# Once the workflow patcher can do this modification without having to replace
10+
# each workflow step individually, this workflow should be generated.
11+
112
name: Slow-Checks
213

314
on:
@@ -49,7 +60,7 @@ jobs:
4960
python-version: "3.10"
5061
poetry-version: "2.3.0"
5162

52-
- name: Run Tests and Collect Coverage
63+
- name: Run Integration Tests
5364
id: run-integration-tests
5465
run: >
5566
poetry run -- nox -s test:integration -- --coverage
@@ -62,7 +73,7 @@ jobs:
6273

6374
- name: Upload Artifacts
6475
id: upload-artifacts
65-
uses: actions/upload-artifact@v6
76+
uses: actions/upload-artifact@v7
6677
with:
6778
name: coverage-python3.10-${{ matrix.backend }}-${{ matrix.exasol-version }}
6879
path: .coverage

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
.build_output
44
.coverage
55
__pycache__
6+
dist
67

78
TAGS

doc/changes/unreleased.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## Summary
44

5+
We updated the dependencies in the `poetry.lock` file in this repository to fix the following security vulnerabilities:
6+
7+
| Name | Version | ID | Fix Versions |
8+
|--------------|---------|---------------------|--------------|
9+
| black | 25.12.0 | CVE-2026-32274 | 26.3.1 |
10+
| cryptography | 46.0.5 | CVE-2026-34073 | 46.0.6 |
11+
| pyasn1 | 0.6.2 | CVE-2026-30922 | 0.6.3 |
12+
| pygments | 2.19.2 | CVE-2026-4539 | 2.20.0 |
13+
| requests | 2.32.5 | CVE-2026-25645 | 2.33.0 |
14+
| tornado | 6.5.4 | GHSA-78cv-mqj4-43f7 | 6.5.5 |
15+
| tornado | 6.5.4 | CVE-2026-31958 | 6.5.5 |
16+
17+
Please note that the situation on the user's machine differs since they have their own lock file.
18+
19+
We also updated versions in the GitHub actions. Users are not affected by this.
20+
21+
## Security
22+
23+
* #136: Security updates to fix vulnerabilities listed above
24+
525
## Refactorings
626

727
* #127: Refactored class `ParameterFormatters` and docstrings

0 commit comments

Comments
 (0)