@@ -2,4 +2,4 @@
|
||||
'@backstage/plugin-mcp-actions-backend': patch
|
||||
---
|
||||
|
||||
Proxy `/.well-known/oauth-authorization-server` to `/.well-known/openid-configuration` on `auth-backend`
|
||||
Proxy `/.well-known/oauth-authorization-server` to `/.well-known/openid-configuration` on `auth-backend` when `auth.experimental.enableDynamicClientRegistration` is enabled.
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
---
|
||||
|
||||
Implementing Dynamic Client Registration with the OIDC server
|
||||
Implementing Dynamic Client Registration with the OIDC server. You can enable this by setting `auth.experimental.enableDynamicClientRegistration` in `app-config.yaml`. This is highly experimental, but feedback welcome.
|
||||
|
||||
@@ -104,7 +104,7 @@ export class TestDatabases {
|
||||
if (supportedIds.length > 0) {
|
||||
afterAll(async () => {
|
||||
await databases.shutdown();
|
||||
}, 30_000);
|
||||
});
|
||||
}
|
||||
|
||||
return databases;
|
||||
|
||||
@@ -18,6 +18,8 @@ import { AuthDatabase } from './AuthDatabase';
|
||||
import { OidcDatabase } from './OidcDatabase';
|
||||
import { resolvePackagePath } from '@backstage/backend-plugin-api';
|
||||
|
||||
jest.setTimeout(60_000);
|
||||
|
||||
describe('Oidc Database', () => {
|
||||
const databases = TestDatabases.create();
|
||||
|
||||
|
||||
@@ -34,6 +34,8 @@ import { AuthDatabase } from '../database/AuthDatabase';
|
||||
import { OidcService } from '../service/OidcService';
|
||||
import { TokenIssuer } from '../identity/types';
|
||||
|
||||
jest.setTimeout(60_000);
|
||||
|
||||
describe('OidcRouter', () => {
|
||||
const MOCK_USER_TOKEN = 'mock-user-token';
|
||||
const MOCK_USER_ENTITY_REF = 'user:default/test-user';
|
||||
|
||||
Reference in New Issue
Block a user