Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ setup.py linguist-generated=true
/.github/workflows/merge-gate.yml linguist-generated=True
/.github/workflows/pr-merge.yml linguist-generated=True
/.github/workflows/report.yml linguist-generated=True
/.github/workflows/slow-checks.yml linguist-generated=True
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .github/workflows/ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/report.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 21 additions & 23 deletions .github/workflows/slow-checks.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .workflow-patcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ workflows:
content:
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python3.10-${{ matrix.backend }}-${{ matrix.exasol-version }}
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
path: .coverage
include-hidden-files: true
- action: INSERT_AFTER
Expand Down
19 changes: 19 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Unreleased

## Summary

This release fixes vulnerabilities by updating transitive dependencies in the `poetry.lock` file.

| Dependency | Version | ID | Fix Versions | Updated to |
|--------------|---------|---------------------|--------------|------------|
| black | 25.12.0 | CVE-2026-32274 | 26.3.1 | 26.3.1 |
| cryptography | 46.0.5 | CVE-2026-34073 | 46.0.6 | 46.0.6 |
| pygments | 2.19.2 | CVE-2026-4539 | 2.20 | 2.20 |
| requests | 2.32.5 | CVE-2026-25645 | 2.33.0 | 2.33.0 |
| tornado | 6.5.4 | GHSA-78cv-mqj4-43f7 | 6.5.5 | 6.5.5 |
| tornado | 6.5.4 | CVE-2026-31958 | 6.5.5 | 6.5.5 |

To ensure usage of secure packages, it is up to the user to similarly relock their dependencies.

## Security Issues

* #284: Fixed vulnerabilities by re-locking transitive dependencies & updated:
* `actions/download-artifact` from v7 to v8
* `actions/upload-artifact` from v6 to v7
6 changes: 3 additions & 3 deletions doc/developer_guide/developer_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Tests
Pytest Plugins
--------------

BFSPY declares a dependency to pytest plugin ``pytest-exasol-backend`` which is
maintained in GitHub repository `pytest-plugins/pytest_backend
<https://github.com/exasol/pytest-plugins/tree/main/pytest-backend/>`_. This
BFSPY declares a dependency to ``pytest-exasol-backend`` which is
maintained in GitHub repository `pytest_backend
<https://github.com/exasol/pytest-backend/>`_. This
plugin makes additional fixtures available that are used in the saas
integration tests of BFSPY, see files in folder `test_service_saas.py
<https://github.com/exasol/bucketfs-python/blob/main/test/integration/test_service_saas.py>`_.
Expand Down
Loading