Merge pull request #11423 from rabbitmq/bump-oidc-client-ts

OAuth 2, breaking change: upgrade oidc-client-ts library to a new major
This commit is contained in:
Michael Klishin 2024-07-15 12:11:47 -04:00 committed by GitHub
commit c34faf9e12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 15 additions and 13 deletions

View File

@ -312,8 +312,8 @@ def all_srcs(name = "all_srcs"):
"priv/www/js/oidc-oauth/helper.js",
"priv/www/js/oidc-oauth/login-callback.html",
"priv/www/js/oidc-oauth/logout-callback.html",
"priv/www/js/oidc-oauth/oidc-client-ts.js",
"priv/www/js/oidc-oauth/oidc-client-ts.js.map",
"priv/www/js/oidc-oauth/oidc-client-ts.3.0.1.min.js",
"priv/www/js/oidc-oauth/oidc-client-ts.3.0.1.min.js.map",
"priv/www/js/prefs.js",
"priv/www/js/sammy-0.7.6.js",
"priv/www/js/sammy-0.7.6.min.js",

View File

@ -1,4 +1,4 @@
import {oidc} from './oidc-client-ts.js';
import {oidc} from './oidc-client-ts.3.0.1.min.js';
var mgr;
var _management_logger;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -12,10 +12,8 @@ authnz-mgt/oauth-idp-initiated-with-uaa-via-proxy.sh
authnz-mgt/oauth-idp-initiated-with-uaa.sh
authnz-mgt/oauth-with-keycloak.sh
authnz-mgt/oauth-with-keycloak-with-verify-none.sh
authnz-mgt/oauth-with-uaa-and-mgt-prefix.sh
authnz-mgt/oauth-with-uaa-down-but-with-basic-auth.sh
authnz-mgt/oauth-with-uaa-down.sh
authnz-mgt/oauth-with-uaa.sh
mgt/vhosts.sh
mgt/definitions.sh
mgt/exchanges.sh

View File

@ -1,5 +1,5 @@
authnz-mgt/basic-auth.sh
authnz-mgt/oauth-with-uaa.sh
authnz-mgt/oauth-with-keycloak.sh
mgt/vhosts.sh
mgt/exchanges.sh
mgt/limits.sh

View File

@ -47,6 +47,7 @@ describe('An user without management tag', function () {
})
it('should get redirected to home page again without error message', async function(){
await homePage.isLoaded()
const visible = await homePage.isWarningVisible()
assert.ok(!visible)
})