Skip to content

Commit 2e9824f

Browse files
Merge pull request #26 from uktrade/dependabot-fixes-0912
Fix critical dependabot django CVE
2 parents 95a1566 + d89462a commit 2e9824f

7 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [0.9.7] - 2025-09-11
4+
Upgrade Django to fix critical priority CVE
5+
36
## [0.9.6] - 2025-09-11
47
Upgrade Django to fix high priority CVE
58

djangosaml2idp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.9.6'
1+
__version__ = '0.9.7'

example_setup/idp/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
django==4.2.24
1+
django==4.2.27
22
pysaml2==7.5.2
33
arrow
44
pytz

example_setup/sp/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
django==4.2.24
1+
django==4.2.27
22
djangosaml2==1.9.1
33
pysaml2==7.1.2
44
arrow

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exclude = '''
1616

1717
[tool.poetry]
1818
name = "djangosaml2idp2"
19-
version = "0.9.6"
19+
version = "0.9.7"
2020
description = "Forked from the original https://github.com/OTA-Insight/djangosaml2idp to provide bugfixes and upgrades to python and django support."
2121
authors = ["Department for Business and Trade Platform Team <sre-team@digital.trade.gov.uk>"]
2222
readme = "README.rst"
@@ -40,7 +40,7 @@ codecov = ">=2.1.13"
4040
coverage = ">=7.9.1"
4141
cryptography = ">=43.0.3"
4242
defusedxml = ">=0.7.1"
43-
django = ">=4.2.24"
43+
django = ">=4.2.27"
4444
distlib = ">=0.3.9"
4545
elementpath = ">=4.8.0"
4646
filelock = ">=3.18.0"
@@ -71,7 +71,7 @@ six = ">=1.17.0"
7171
snowballstemmer = ">=3.0.1"
7272
toml = ">=0.10.2"
7373
tox = ">=4.27.0"
74-
urllib3 = ">=2.4.0"
74+
urllib3 = ">=2.6.0"
7575
virtualenv = ">=20.31.2"
7676
xmlschema = ">=2.5.1"
7777

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ toml>=0.10.2
109109
# tox
110110
tox>=4.27.0
111111
# via -r requirements-dev.in
112-
urllib3>=2.5.0
112+
urllib3>=2.6.0
113113
# via requests
114114
virtualenv>=20.31.2
115115
# via

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
1818
]),
1919
install_requires=[
20-
'django>=4.2.24',
20+
'django>=4.2.27',
2121
'pysaml2>=7.1.2',
2222
'pytz',
2323
'arrow',

0 commit comments

Comments
 (0)