chore: Fixing changesets ]

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-09-08 15:09:30 +02:00
parent 225cdf5bdf
commit 75b5880cb7
5 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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';