Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
37a992d
Initial plan
Copilot Dec 27, 2025
522d55f
Add cryptography>=42.0.4 to dev dependencies for column encryption tests
Copilot Dec 29, 2025
76733f2
Apply suggested fix to docs/api/cassandra/protocol.rst from Copilot A…
mykaul Dec 16, 2025
f1deca6
Apply suggested fix to docs/api/cassandra/protocol.rst from Copilot A…
mykaul Dec 16, 2025
09cc201
chore(deps): update dependency hatchling to v1.28.0
renovate[bot] Dec 29, 2025
c114180
Fix for Missing call to superclass `__init__` during object initializ…
mykaul Dec 16, 2025
66b81c3
Apply Python style improvements to test assertions
Copilot Dec 23, 2025
7814555
Potential fix for code scanning alert no. 3: Workflow does not contai…
mykaul Dec 22, 2025
e79b4c6
.github/workflows/publish-manually.yml: Potential fix for code scanni…
mykaul Dec 22, 2025
af4d83c
Don't mark node down when control connection fails to connect
dkropachev Dec 30, 2025
f11f55f
(improvement) remove supprot for protocols <3 from cython files
mykaul Jan 4, 2026
0ebd9f5
Pull version information from systel.local, when version info is not
dkropachev Jan 1, 2026
d08d0e2
Fix infinite retry when single host fails with server error
Copilot Dec 27, 2025
e61d265
Use endpoint instead od Host in _try_connect
sylwiaszunejko Dec 29, 2025
296a981
tests/integration/standard: fix test to reflect RR policy randomizing…
sylwiaszunejko Dec 29, 2025
2b7dd50
tests/integration/standard: update test to reflect new behavior
sylwiaszunejko Dec 29, 2025
796b0fc
tests/integration/standard: don't compare Host instances
sylwiaszunejko Dec 29, 2025
1b24880
tests/unit: Provide host_id when initializing Host
sylwiaszunejko Dec 22, 2025
d6459b9
tests/integration/standard: return empty query plan if there are no l…
sylwiaszunejko Dec 30, 2025
7e4bd1f
tests/integration/standard: allow execute to throw Unavailable exception
sylwiaszunejko Jan 12, 2026
2034f95
Don't check if host is in initial contact points when setting default…
sylwiaszunejko Jan 8, 2026
5f7f413
Call on_add before distance to properly initialize lbp
sylwiaszunejko Jan 8, 2026
921f324
Don't create Host instances with random host_id
sylwiaszunejko Dec 29, 2025
f2d9022
(improvement)TokenAwarePolicy::make_query_plan(): remove redundant ch…
mykaul Jan 21, 2026
a00ffa7
test: optimize test_fast_shutdown with event-based synchronization
mykaul Jan 18, 2026
9f27bcf
(Fix)race condition during host IP address update
mykaul Jan 23, 2026
82f99aa
add uv files to .gitignore
dkropachev Jan 29, 2026
1886f8e
Optimize write path in protocol.py to reduce copies
mykaul Jan 9, 2026
a613366
Initial plan
Copilot Dec 27, 2025
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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ requires-python = ">=3.9"

[project.optional-dependencies]
graph = ['gremlinpython==3.7.4']
cle = ['cryptography>=35.0']
cle = ['cryptography>=42.0.4']
compress-lz4 = ['lz4']
compress-snappy = ['python-snappy']

Expand All @@ -51,6 +51,7 @@ dev = [
"futurist",
"asynctest",
"pyyaml",
"cryptography>=42.0.4",
"ccm @ git+https://git@github.com/scylladb/scylla-ccm.git@master",
]

Expand Down
Loading