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
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
45 results

Target

Select target project
  • perun/perun-proxyidp/perun-proxy-utils
1 result
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
45 results
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) # [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)
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
{
"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: ...@@ -284,6 +284,7 @@ class SAMLChecker:
def js_form_redirect(self, html, url, force=False): def js_form_redirect(self, html, url, force=False):
if ( if (
force force
or "document.getElementsByTagName('input')[0].click();" in html
or "document.forms[0].submit()" in html or "document.forms[0].submit()" in html
or "javascript:DoSubmit();" in html or "javascript:DoSubmit();" in html
): ):
......
[metadata] [metadata]
version = 2.2.0 version = 2.2.1
license_files = LICENSE license_files = LICENSE
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
......