From fc7fa064d18df58ce1e8d6f9f3291a0dd3f0f8b9 Mon Sep 17 00:00:00 2001 From: AJ Ancheta <7781450+ancheetah@users.noreply.github.com> Date: Mon, 2 Mar 2026 14:58:39 -0500 Subject: [PATCH 1/2] chore: fix pnpm pack on stackblitz publish --- .github/actions/publish-beta/action.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/publish-beta/action.yml b/.github/actions/publish-beta/action.yml index 4f9937f7c3..20c9e35be9 100644 --- a/.github/actions/publish-beta/action.yml +++ b/.github/actions/publish-beta/action.yml @@ -6,7 +6,7 @@ runs: steps: - name: Create PR for beta publish shell: bash - run: pnpm pkg-pr-new publish './packages/*' './packages/sdk-effects/*' --packageManager=pnpm --comment=off + run: pnpm pkg-pr-new publish './packages/*' './packages/sdk-effects/*' --pnpm --packageManager=pnpm --comment=off - name: Run Builds shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74286eddfa..a982d7c055 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: - name: Ensure builds run run: pnpm nx run-many -t build --no-agents - - run: pnpm pkg-pr-new publish './packages/*' './packages/sdk-effects/*' --packageManager=pnpm + - run: pnpm pkg-pr-new publish './packages/*' './packages/sdk-effects/*' --pnpm --packageManager=pnpm - name: build docs run: pnpm generate-docs From 2fb5a2fa5b0d20485383cad8e09f75632e013251 Mon Sep 17 00:00:00 2001 From: AJ Ancheta <7781450+ancheetah@users.noreply.github.com> Date: Mon, 2 Mar 2026 14:59:25 -0500 Subject: [PATCH 2/2] chore: update changeset --- .changeset/rich-cows-try.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.changeset/rich-cows-try.md b/.changeset/rich-cows-try.md index 1ee217c46f..b14e0b0ec9 100644 --- a/.changeset/rich-cows-try.md +++ b/.changeset/rich-cows-try.md @@ -8,19 +8,7 @@ ### @forgerock/journey-client -Add well-known OIDC endpoint discovery support. The journey client can now fetch configuration from the `.well-known/openid-configuration` endpoint: - -```typescript -const client = await journey({ - serverConfig: { - baseUrl: 'https://am.example.com/am/', - wellknown: - 'https://am.example.com/am/oauth2/realms/root/realms/alpha/.well-known/openid-configuration', - }, -}); -``` - -The realm path can be automatically inferred from the well-known issuer URL. +Add well-known OIDC endpoint discovery support. The journey client can now fetch configuration from the `.well-known/openid-configuration` endpoint. The realm path can be automatically inferred from the well-known issuer URL. ### @forgerock/sdk-oidc