Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • perun/perun-proxyidp/perun-proxy-utils
1 result
Show changes
Commits on Source (7)
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"scope-enum": [
2,
"always",
[
"release",
"deps",
"run_probes",
"check_custom_command",
"check_dockers",
"check_exabgp_propagation",
"check_ldap",
"check_ldap_syncrepl",
"check_mongodb",
"check_nginx",
"check_pgsql",
"check_php_syntax",
"check_privacyidea",
"check_rpc_status",
"check_saml",
"check_user_logins",
"check_webserver_availability"
]
]
}
}
@perun-proxy-aai:registry=https://gitlab.ics.muni.cz/api/v4/packages/npm/
@beepbeepgo:registry=https://gitlab.com/api/v4/packages/npm/
## [2.2.1](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/compare/v2.2.0...v2.2.1) (2024-01-09)
### Bug Fixes
* **check_saml:** follow all redirects on ProxyIdP ([f7c8fc7](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/commit/f7c8fc768c4a989f523da77777cc4b28b210786f))
# [2.2.0](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/compare/v2.1.0...v2.2.0) (2024-01-05)
......
This diff is collapsed.
{
"name": "perun-proxy-utils",
"version": "0.0.0-development",
"private": true,
"devDependencies": {
"@beepbeepgo/semantic-release-python": "^1.1.0",
"@commitlint/config-conventional": "17.8.1",
"@commitlint/cz-commitlint": "17.8.1",
"@perun-proxy-aai/semantic-release-proxy-config": "^1.1.10",
"commitizen": "4.3.0",
"inquirer": "8.2.6",
"semantic-release": "^22.0.12"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
}
}
......@@ -284,6 +284,7 @@ class SAMLChecker:
def js_form_redirect(self, html, url, force=False):
if (
force
or "document.getElementsByTagName('input')[0].click();" in html
or "document.forms[0].submit()" in html
or "javascript:DoSubmit();" in html
):
......
[metadata]
version = 2.2.0
version = 2.2.1
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
......