Skip to content

Commits on Source 11

## [3.1.1](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/compare/v3.1.0...v3.1.1) (2025-07-31)
### Bug Fixes
* change the expected string in SAML response about success auth ([2129c80](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/commit/2129c80652ba86d54934f4c2d4578512b7c3c02b))
# [3.1.0](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/compare/v3.0.0...v3.1.0) (2025-04-28)
......
This diff is collapsed.
......@@ -362,7 +362,7 @@ class SAMLChecker:
saml_response = base64.b64decode(form_data["SAMLResponse"]).decode("utf-8")
if (
'<samlp:StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Success"/>'
'StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Success"'
not in saml_response
):
self.finish("Login was not successful, non-success response", "CRITICAL")
......
[metadata]
version = 3.1.0
version = 3.1.1
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
......
import setuptools
setuptools.setup(
name="perun.proxy.utils",
name="perun_proxy_utils",
python_requires=">=3.9",
url="https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils.git",
description="Utilities and monitoring probes for Perun ProxyIdP",
......@@ -11,7 +11,7 @@ setuptools.setup(
"setuptools",
"pymongo~=4.3",
"asyncssh~=2.13",
"docker~=6.0",
"docker~=7.1",
"beautifulsoup4~=4.12",
"requests~=2.31",
"PyYAML>=5.4,<7.0",
......