Skip to content

Commit 21bdada

Browse files
committed
Release version 7.0.2
Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
1 parent 444d017 commit 21bdada

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 7.0.1
2+
current_version = 7.0.2
33
commit = True
44
tag = True
55

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 7.0.2 (2021-01-20) - Security release for pySAML2 dependency
4+
5+
- Add RegexSubProcessor attribute processor
6+
- Fix SAMLVirtualCoFrontend metadata generation
7+
- frontends: Deprecate the sign_alg and digest_alg configuration options on the
8+
saml2 frontend. Instead, use the signing_algorithm and digest_algorithm
9+
configuration options under the service/idp configuration path (not under
10+
service/idp/policy/default)
11+
- backends: New backend to login with Apple ID
12+
- dependencies: Set minimum pysaml2 version to v6.5.0 to make sure we get a
13+
version patched for CVE-2021-21238 and CVE-2021-21239
14+
- build: Fix the CI base image
15+
- tests: Fix entity-category checks
16+
- docs: Document the sub_hash_salt configuration for the OIDC frontend
17+
- examples: Add entityid_endpoint to the saml backend and frontend
18+
configuration
19+
- examples: Fix the SAMLVirtualCoFrontend example configuration
20+
21+
322
## 7.0.1 (2020-06-09)
423

524
- build: fix the CI release process
@@ -50,7 +69,7 @@
5069
- build: tag docker image by commit, branch, PR number, version and "latest"
5170

5271

53-
## 6.1.0 (2020-02-28)
72+
## 6.1.0 (2020-02-28) - Security release for pySAML2 dependency
5473

5574
- Set the SameSite cookie attribute to "None"
5675
- Add compatibility support for the SameSite attribute for incompatible

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='SATOSA',
9-
version='7.0.1',
9+
version='7.0.2',
1010
description='Protocol proxy (SAML/OIDC).',
1111
author='DIRG',
1212
author_email='satosa-dev@lists.sunet.se',
@@ -16,7 +16,7 @@
1616
package_dir={'': 'src'},
1717
install_requires=[
1818
"pyop >= 3.0.1",
19-
"pysaml2 >= 5.0.0",
19+
"pysaml2 >= 6.5.0",
2020
"pycryptodomex",
2121
"requests",
2222
"PyYAML",

0 commit comments

Comments
 (0)