Skip to content

Commit e911c22

Browse files
authored
Refactoring/153 updated tenacity version restriction (#154)
1 parent 3f9ec16 commit e911c22

File tree

11 files changed

+525
-470
lines changed

11 files changed

+525
-470
lines changed

.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/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Upload Artifacts
3737
id: upload-artifacts
38-
uses: actions/upload-artifact@v6
38+
uses: actions/upload-artifact@v7
3939
with:
4040
name: coverage-python3.10-slow
4141
path: .coverage

doc/changes/changelog.md

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

33
* [unreleased](unreleased.md)
4+
* [2.10.0](changes_2.10.0.md)
45
* [2.9.0](changes_2.9.0.md)
56
* [2.8.0](changes_2.8.0.md)
67
* [2.7.0](changes_2.7.0.md)
@@ -31,6 +32,7 @@
3132
hidden:
3233
---
3334
unreleased
35+
changes_2.10.0
3436
changes_2.9.0
3537
changes_2.8.0
3638
changes_2.7.0

doc/changes/changes_2.10.0.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# 2.10.0 - 2026-04-02
2+
3+
## Summary
4+
5+
This release fixes vulnerabilities by updating dependencies:
6+
7+
| Dependency | Affected | Vulnerability | Fixed in | Updated to |
8+
|------------|----------|----------------|----------|------------|
9+
| requests | 2.32.5 | CVE-2026-25645 | 2.33.0 | 2.33.1 |
10+
11+
## Refactorings
12+
13+
* #153: Updated tenacity version restriction
14+
15+
## Dependency Updates
16+
17+
### `main`
18+
19+
* Updated dependency `attrs:25.4.0` to `26.1.0`
20+
* Updated dependency `requests:2.32.5` to `2.33.1`
21+
* Updated dependency `tenacity:8.5.0` to `9.1.4`
22+
* Updated dependency `types-requests:2.32.4.20260107` to `2.33.0.20260402`
23+
24+
### `dev`
25+
26+
* Updated dependency `exasol-toolbox:6.0.0` to `6.1.1`
27+
* Updated dependency `pyexasol:2.1.0` to `2.2.0`
28+
* Updated dependency `types-python-dateutil:2.9.0.20260305` to `2.9.0.20260402`

exasol/saas/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: 479 additions & 456 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "exasol-saas-api"
3-
version = "2.9.0"
3+
version = "2.10.0"
44
requires-python = ">=3.10.0,<3.15"
55
description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services"
66
authors = [
@@ -32,7 +32,7 @@ classifiers = [
3232
requests = "^2.32.4"
3333
types-requests = "^2.31.0.6"
3434
ifaddr = "^0.2.0"
35-
tenacity = "^8.2.3"
35+
tenacity = ">=8, <10"
3636
# generated by openapi-python-client
3737
httpx = ">=0.23.0"
3838
python-dateutil = "^2.8.0"

0 commit comments

Comments
 (0)