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:
commit
c34faf9e12
|
@ -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",
|
||||
|
|
|
@ -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
7
deps/rabbitmq_management/priv/www/js/oidc-oauth/oidc-client-ts.3.0.1.min.js.map
vendored
Normal file
7
deps/rabbitmq_management/priv/www/js/oidc-oauth/oidc-client-ts.3.0.1.min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue