Skip to content

Commit 91b71c1

Browse files
committed
deps: upgrade dependencies
Refs RATY-117
1 parent e459fb8 commit 91b71c1

3 files changed

Lines changed: 49 additions & 50 deletions

File tree

atv/urls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
)
1919

2020
router = ExtendedSimpleRouter()
21-
22-
router.register(r"documents", DocumentViewSet, basename="documents").register(
21+
document_router = router.register(r"documents", DocumentViewSet, basename="documents")
22+
document_router.register(
2323
r"attachments",
2424
AttachmentViewSet,
2525
basename="documents-attachments",
2626
parents_query_lookups=["document_id"],
2727
)
28-
router.register(r"documents", DocumentViewSet, basename="documents").register(
28+
document_router.register(
2929
r"status",
3030
DocumentStatusActivityViewSet,
3131
basename="document-status-history",

requirements-dev.txt

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@ attrs==23.2.0
1010
# via
1111
# -c requirements.txt
1212
# flake8-bugbear
13-
black==24.3.0
13+
black==24.4.2
1414
# via -r requirements-dev.in
1515
cfgv==3.4.0
1616
# via pre-commit
1717
click==8.1.7
1818
# via black
19-
coverage[toml]==7.4.1
20-
# via
21-
# coverage
22-
# pytest-cov
19+
coverage[toml]==7.5.1
20+
# via pytest-cov
2321
decorator==5.1.1
2422
# via ipython
2523
distlib==0.3.8
@@ -30,63 +28,64 @@ factory-boy==3.3.0
3028
# via
3129
# -r requirements-dev.in
3230
# pytest-factoryboy
33-
faker==22.6.0
31+
faker==25.2.0
3432
# via factory-boy
3533
fastdiff==0.3.0
3634
# via snapshottest
37-
filelock==3.13.1
35+
filelock==3.14.0
3836
# via virtualenv
3937
flake8==7.0.0
4038
# via
4139
# -r requirements-dev.in
4240
# flake8-bugbear
4341
# pep8-naming
44-
flake8-bugbear==24.1.17
42+
flake8-bugbear==24.4.26
4543
# via -r requirements-dev.in
46-
freezegun==1.4.0
44+
freezegun==1.5.1
4745
# via -r requirements-dev.in
48-
identify==2.5.33
46+
identify==2.5.36
4947
# via pre-commit
5048
inflection==0.5.1
5149
# via
5250
# -c requirements.txt
5351
# pytest-factoryboy
5452
iniconfig==2.0.0
5553
# via pytest
56-
ipython==8.21.0
54+
ipython==8.24.0
5755
# via -r requirements-dev.in
5856
isort==5.13.2
5957
# via -r requirements-dev.in
6058
jedi==0.19.1
6159
# via ipython
62-
matplotlib-inline==0.1.6
60+
matplotlib-inline==0.1.7
6361
# via ipython
6462
mccabe==0.7.0
6563
# via flake8
6664
mypy-extensions==1.0.0
6765
# via black
6866
nodeenv==1.8.0
6967
# via pre-commit
70-
packaging==23.2
68+
packaging==24.0
7169
# via
7270
# -c requirements.txt
7371
# black
7472
# pytest
75-
parso==0.8.3
73+
# pytest-factoryboy
74+
parso==0.8.4
7675
# via jedi
7776
pathspec==0.12.1
7877
# via black
79-
pep8-naming==0.13.3
78+
pep8-naming==0.14.1
8079
# via -r requirements-dev.in
8180
pexpect==4.9.0
8281
# via ipython
83-
platformdirs==4.2.0
82+
platformdirs==4.2.2
8483
# via
8584
# black
8685
# virtualenv
87-
pluggy==1.4.0
86+
pluggy==1.5.0
8887
# via pytest
89-
pre-commit==3.6.0
88+
pre-commit==3.7.1
9089
# via -r requirements-dev.in
9190
prompt-toolkit==3.0.43
9291
# via ipython
@@ -98,21 +97,21 @@ pycodestyle==2.11.1
9897
# via flake8
9998
pyflakes==3.2.0
10099
# via flake8
101-
pygments==2.17.2
100+
pygments==2.18.0
102101
# via ipython
103-
pytest==8.0.0
102+
pytest==8.2.1
104103
# via
105104
# -r requirements-dev.in
106105
# pytest-cov
107106
# pytest-django
108107
# pytest-factoryboy
109-
pytest-cov==4.1.0
108+
pytest-cov==5.0.0
110109
# via -r requirements-dev.in
111110
pytest-django==4.8.0
112111
# via -r requirements-dev.in
113-
pytest-factoryboy==2.6.0
112+
pytest-factoryboy==2.7.0
114113
# via -r requirements-dev.in
115-
python-dateutil==2.8.2
114+
python-dateutil==2.9.0.post0
116115
# via
117116
# faker
118117
# freezegun
@@ -132,13 +131,15 @@ stack-data==0.6.3
132131
# via ipython
133132
termcolor==2.4.0
134133
# via snapshottest
135-
traitlets==5.14.1
134+
traitlets==5.14.3
136135
# via
137136
# ipython
138137
# matplotlib-inline
139-
typing-extensions==4.9.0
140-
# via pytest-factoryboy
141-
virtualenv==20.25.0
138+
typing-extensions==4.11.0
139+
# via
140+
# ipython
141+
# pytest-factoryboy
142+
virtualenv==20.26.2
142143
# via pre-commit
143144
wasmer==1.1.0
144145
# via fastdiff

requirements.txt

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
#
55
# pip-compile requirements.in
66
#
7-
asgiref==3.7.2
7+
asgiref==3.8.1
88
# via
99
# django
1010
# django-cors-headers
1111
attrs==23.2.0
1212
# via
1313
# jsonschema
1414
# referencing
15-
cachetools==5.3.2
15+
cachetools==5.3.3
1616
# via django-helusers
17-
certifi==2023.11.17
17+
certifi==2024.2.2
1818
# via
1919
# elasticsearch
2020
# requests
@@ -23,7 +23,7 @@ charset-normalizer==3.3.2
2323
# via requests
2424
deprecation==2.1.0
2525
# via django-helusers
26-
django==4.2.11
26+
django==4.2.13
2727
# via
2828
# -r requirements.in
2929
# django-cors-headers
@@ -38,15 +38,15 @@ django-cors-headers==4.3.1
3838
# via -r requirements.in
3939
django-environ==0.11.2
4040
# via -r requirements.in
41-
django-filter==23.5
41+
django-filter==24.2
4242
# via -r requirements.in
4343
django-guardian==2.4.0
4444
# via -r requirements.in
45-
django-helusers==0.9.0
45+
django-helusers==0.12.0
4646
# via -r requirements.in
4747
django-searchable-encrypted-fields==0.2.1
4848
# via -r requirements.in
49-
djangorestframework==3.14.0
49+
djangorestframework==3.15.1
5050
# via
5151
# -r requirements.in
5252
# drf-extensions
@@ -58,31 +58,31 @@ drf-extensions==0.7.1
5858
# via -r requirements.in
5959
drf-oidc-auth==0.10.0
6060
# via -r requirements.in
61-
drf-spectacular==0.27.1
61+
drf-spectacular==0.27.2
6262
# via -r requirements.in
63-
ecdsa==0.18.0
63+
ecdsa==0.19.0
6464
# via python-jose
6565
elasticsearch==7.15.2
6666
# via -r requirements.in
67-
future==0.18.3
67+
future==1.0.0
6868
# via pyjwkest
69-
idna==3.6
69+
idna==3.7
7070
# via requests
7171
inflection==0.5.1
7272
# via drf-spectacular
73-
jsonschema==4.21.1
73+
jsonschema==4.22.0
7474
# via
7575
# -r requirements.in
7676
# drf-spectacular
7777
jsonschema-specifications==2023.12.1
7878
# via jsonschema
79-
packaging==23.2
79+
packaging==24.0
8080
# via
8181
# deprecation
8282
# djangorestframework-api-key
8383
psycopg2==2.9.9
8484
# via -r requirements.in
85-
pyasn1==0.5.1
85+
pyasn1==0.6.0
8686
# via
8787
# python-jose
8888
# rsa
@@ -96,19 +96,17 @@ pyjwkest==1.4.2
9696
# via drf-oidc-auth
9797
python-jose==3.3.0
9898
# via django-helusers
99-
pytz==2023.4
100-
# via djangorestframework
10199
pyyaml==6.0.1
102100
# via drf-spectacular
103-
referencing==0.33.0
101+
referencing==0.35.1
104102
# via
105103
# jsonschema
106104
# jsonschema-specifications
107-
requests==2.31.0
105+
requests==2.32.2
108106
# via
109107
# django-helusers
110108
# pyjwkest
111-
rpds-py==0.17.1
109+
rpds-py==0.18.1
112110
# via
113111
# jsonschema
114112
# referencing
@@ -120,7 +118,7 @@ six==1.16.0
120118
# via
121119
# ecdsa
122120
# pyjwkest
123-
sqlparse==0.4.4
121+
sqlparse==0.5.0
124122
# via django
125123
uritemplate==4.1.1
126124
# via drf-spectacular

0 commit comments

Comments
 (0)