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
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.

2 changes: 2 additions & 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/merge-gate.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.

2 changes: 1 addition & 1 deletion .github/workflows/slow-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-python3.10-slow
path: .coverage
Expand Down
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes

* [unreleased](unreleased.md)
* [2.10.0](changes_2.10.0.md)
* [2.9.0](changes_2.9.0.md)
* [2.8.0](changes_2.8.0.md)
* [2.7.0](changes_2.7.0.md)
Expand Down Expand Up @@ -31,6 +32,7 @@
hidden:
---
unreleased
changes_2.10.0
changes_2.9.0
changes_2.8.0
changes_2.7.0
Expand Down
28 changes: 28 additions & 0 deletions doc/changes/changes_2.10.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# 2.10.0 - 2026-04-02

## Summary

This release fixes vulnerabilities by updating dependencies:

| Dependency | Affected | Vulnerability | Fixed in | Updated to |
|------------|----------|----------------|----------|------------|
| requests | 2.32.5 | CVE-2026-25645 | 2.33.0 | 2.33.1 |

## Refactorings

* #153: Updated tenacity version restriction

## Dependency Updates

### `main`

* Updated dependency `attrs:25.4.0` to `26.1.0`
* Updated dependency `requests:2.32.5` to `2.33.1`
* Updated dependency `tenacity:8.5.0` to `9.1.4`
* Updated dependency `types-requests:2.32.4.20260107` to `2.33.0.20260402`

### `dev`

* Updated dependency `exasol-toolbox:6.0.0` to `6.1.1`
* Updated dependency `pyexasol:2.1.0` to `2.2.0`
* Updated dependency `types-python-dateutil:2.9.0.20260305` to `2.9.0.20260402`
2 changes: 1 addition & 1 deletion exasol/saas/version.py

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

935 changes: 479 additions & 456 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "exasol-saas-api"
version = "2.9.0"
version = "2.10.0"
requires-python = ">=3.10.0,<3.15"
description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services"
authors = [
Expand Down Expand Up @@ -32,7 +32,7 @@ classifiers = [
requests = "^2.32.4"
types-requests = "^2.31.0.6"
ifaddr = "^0.2.0"
tenacity = "^8.2.3"
tenacity = ">=8, <10"
# generated by openapi-python-client
httpx = ">=0.23.0"
python-dateutil = "^2.8.0"
Expand Down
4 changes: 2 additions & 2 deletions test/integration/test_databases.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def test_lifecycle(api_access, local_name):
def wait_until_running_too_short(db: ExasolDatabase):
api_access.wait_until_running(
db.id,
timeout=timedelta(seconds=3),
interval=timedelta(seconds=1),
timeout=timedelta(minutes=1),
interval=timedelta(seconds=10),
)

def get_connection(db: ExasolDatabase):
Expand Down
Loading