From 075bddd1cb2b1304ccad5e21457be4e41e4b96f9 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Thu, 21 May 2026 12:17:31 +0200 Subject: [PATCH 1/2] chore(idp): bump to pnpm-11 and migrate config --- services/idp/.npmrc | 2 -- services/idp/package.json | 9 +-------- services/idp/pnpm-workspace.yaml | 12 ++++++++++++ 3 files changed, 13 insertions(+), 10 deletions(-) delete mode 100644 services/idp/.npmrc create mode 100644 services/idp/pnpm-workspace.yaml diff --git a/services/idp/.npmrc b/services/idp/.npmrc deleted file mode 100644 index 881477d4ee..0000000000 --- a/services/idp/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -auto-install-peers=true -public-hoist-pattern[]=* diff --git a/services/idp/package.json b/services/idp/package.json index 5f477a0d21..4abb150010 100644 --- a/services/idp/package.json +++ b/services/idp/package.json @@ -82,12 +82,5 @@ "webpack-manifest-plugin": "5.0.0", "workbox-webpack-plugin": "7.4.0" }, - "pnpm": { - "overrides": { - "fast-uri": ">=3.1.2", - "serialize-javascript@<7.0.3": ">=7.0.3", - "@xmldom/xmldom": ">=0.8.13" - } - }, - "packageManager": "pnpm@9.15.4" + "packageManager": "pnpm@11.1.3" } diff --git a/services/idp/pnpm-workspace.yaml b/services/idp/pnpm-workspace.yaml new file mode 100644 index 0000000000..8c71c6ffd0 --- /dev/null +++ b/services/idp/pnpm-workspace.yaml @@ -0,0 +1,12 @@ +autoInstallPeers: true + +publicHoistPattern: + - "*" + +overrides: + fast-uri: ">=3.1.2" + "serialize-javascript@<7.0.3": ">=7.0.3" + "@xmldom/xmldom": ">=0.8.13" + +allowBuilds: + esbuild: true From 39d8979360ae5c25126b1faeba1a19b4972a3dd3 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Thu, 21 May 2026 14:08:02 +0200 Subject: [PATCH 2/2] chore: dependabot changes - allow it to open up to 4 PRs in parallel - change the npm interval to daily - set cooldown to 1 day to reflect the `minimumReleaseAge` default of pnpm --- .github/dependabot.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f982449eb1..a3367207ca 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,11 +4,12 @@ updates: directory: "/" schedule: interval: "daily" - open-pull-requests-limit: 2 + open-pull-requests-limit: 4 - package-ecosystem: "npm" directory: "/services/idp" schedule: - interval: "weekly" - open-pull-requests-limit: 2 - + interval: "daily" + open-pull-requests-limit: 4 + cooldown: + default: 1