Skip to content

Commit 3ca9440

Browse files
committed
feat(DEVC-2097): upgrade redis dependency
1 parent 45cf670 commit 3ca9440

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.16.0] - 2026-01-15
10+
### Dependency
11+
- Upgraded internal dependency `redis` to version `redis >=7.1.0, <8.0.0`
12+
- Bumped a supported SDK runtime version to minimum `3.10` since new redis lib drops support for `3.9`
13+
14+
915
## [1.15.2] - 2026-01-14
1016
### Security
1117
- Upgraded internal dependency `urllib3` to version `urllib3 >= 2.6.3, <3.0.0` since `2.5.0` has [these](https://security.snyk.io/package/pip/urllib3/2.5.0) vulnerabilities

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ build-backend = "setuptools.build_meta"
66
name = "corva-sdk"
77
description = "SDK for building Corva DevCenter Python apps."
88
readme = "README.md"
9-
version = "1.15.2"
9+
version = "1.16.0"
1010
license = { text = "The Unlicense" }
1111
authors = [
1212
{ name = "Jordan Ambra", email = "jordan.ambra@corva.ai" }
1313
]
1414
keywords = ["corva", "sdk"]
15-
requires-python = ">=3.9,<4.0"
15+
requires-python = ">=3.10,<4.0"
1616
dependencies = [
1717
"fakeredis[lua] >=2.26.2, <2.30.0",
1818
"pydantic >=1.8.2, <2.0.0",
19-
"redis >=5.2.1, <6.0.0",
19+
"redis >=7.1.0, <8.0.0",
2020
"requests >=2.32.3, <3.0.0",
21-
"urllib3 >= 2.6.3, <3.0.0",
21+
"urllib3 >=2.6.3, <3.0.0",
2222
]
2323
classifiers = [
2424
"Development Status :: 5 - Production/Stable",

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.15.2"
1+
VERSION = "1.16.0"

0 commit comments

Comments
 (0)