Skip to content

Commit e3398d5

Browse files
authored
Merge branch 'master' into add_chain_nesting
2 parents 4e86f5a + eb32469 commit e3398d5

File tree

3 files changed

+26
-23
lines changed

3 files changed

+26
-23
lines changed

dev-requirements.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
backports-tarfile==1.2.0
22
# via jaraco-context
3-
certifi==2025.1.31
3+
certifi==2025.4.26
44
# via requests
55
cffi==1.17.1
66
# via cryptography
7-
charset-normalizer==3.4.1
7+
charset-normalizer==3.4.2
88
# via requests
9-
cryptography==44.0.2
9+
cryptography==45.0.4
1010
# via secretstorage
1111
distlib==0.3.9
1212
# via virtualenv
@@ -20,7 +20,7 @@ id==1.5.0
2020
# via twine
2121
idna==3.10
2222
# via requests
23-
importlib-metadata==8.6.1
23+
importlib-metadata==8.7.0
2424
# via
2525
# keyring
2626
# twine
@@ -40,19 +40,19 @@ markdown-it-py==3.0.0
4040
# via rich
4141
mdurl==0.1.2
4242
# via markdown-it-py
43-
more-itertools==10.6.0
43+
more-itertools==10.7.0
4444
# via
4545
# jaraco-classes
4646
# jaraco-functools
4747
nh3==0.2.21
4848
# via readme-renderer
49-
packaging==24.2
49+
packaging==25.0
5050
# via
5151
# tox
5252
# twine
53-
platformdirs==4.3.7
53+
platformdirs==4.3.8
5454
# via virtualenv
55-
pluggy==1.5.0
55+
pluggy==1.6.0
5656
# via tox
5757
py==1.11.0
5858
# via tox
@@ -64,7 +64,7 @@ pygments==2.19.1
6464
# rich
6565
readme-renderer==44.0
6666
# via twine
67-
requests==2.32.3
67+
requests==2.32.4
6868
# via
6969
# id
7070
# requests-toolbelt
@@ -85,13 +85,13 @@ tox==3.23.1
8585
# via -r dev-requirements.in
8686
twine==6.1.0
8787
# via -r dev-requirements.in
88-
typing-extensions==4.13.1
88+
typing-extensions==4.14.0
8989
# via rich
90-
urllib3==2.3.0
90+
urllib3==2.4.0
9191
# via
9292
# requests
9393
# twine
94-
virtualenv==20.30.0
94+
virtualenv==20.31.2
9595
# via tox
96-
zipp==3.21.0
96+
zipp==3.23.0
9797
# via importlib-metadata

sqlalchemy_cockroachdb/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ def initialize(self, connection):
138138
self._is_v242plus = self._is_v241plus and (" v24.1." not in sversion)
139139
self._is_v243plus = self._is_v242plus and (" v24.2." not in sversion)
140140
self._is_v251plus = self._is_v243plus and (" v24.3." not in sversion)
141+
self._is_v252plus = self._is_v251plus and (" v25.1." not in sversion)
141142
self._has_native_json = self._is_v2plus
142143
self._has_native_jsonb = self._is_v2plus
143144
self._supports_savepoints = self._is_v201plus

test-requirements.txt

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
alembic==1.15.2
1+
alembic==1.16.1
22
# via -r test-requirements.in
33
async-timeout==5.0.1
44
# via asyncpg
@@ -8,37 +8,39 @@ attrs==25.3.0
88
# via pytest
99
futures==3.0.5
1010
# via -r test-requirements.in
11-
greenlet==3.1.1
11+
greenlet==3.2.3
1212
# via sqlalchemy
1313
iniconfig==2.1.0
1414
# via pytest
15-
mako==1.3.9
15+
mako==1.3.10
1616
# via alembic
1717
markupsafe==3.0.2
1818
# via mako
1919
mock==5.2.0
2020
# via -r test-requirements.in
21-
more-itertools==10.6.0
21+
more-itertools==10.7.0
2222
# via -r test-requirements.in
23-
packaging==24.2
23+
packaging==25.0
2424
# via pytest
25-
pluggy==1.5.0
25+
pluggy==1.6.0
2626
# via pytest
27-
psycopg==3.2.6
27+
psycopg==3.2.9
2828
# via -r test-requirements.in
2929
psycopg2==2.9.10
3030
# via -r test-requirements.in
3131
py==1.11.0
3232
# via pytest
3333
pytest==7.1.3
3434
# via -r test-requirements.in
35-
sqlalchemy==2.0.40
35+
sqlalchemy==2.0.41
3636
# via
3737
# -r test-requirements.in
3838
# alembic
3939
tomli==2.2.1
40-
# via pytest
41-
typing-extensions==4.13.1
40+
# via
41+
# alembic
42+
# pytest
43+
typing-extensions==4.14.0
4244
# via
4345
# alembic
4446
# psycopg

0 commit comments

Comments
 (0)