Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
"update-outdated-deps:fix-pkg-json": "eslint --fix --no-cache --no-ignore package.json **/package.json"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0",
"@changesets/cli": "3.0.1",
"@changesets/changelog-github": "1.0.1",
"@changesets/cli": "3.0.2",
"@eslint/js": "9.39.2",
"@types/node": "26.4.0",
"@typescript-eslint/parser": "8.68.0",
"@types/node": "26.4.1",
"@typescript-eslint/parser": "8.69.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@workleap/eslint-configs": "2.0.5",
"@workleap/typescript-configs": "5.0.0",
"agent-browser": "0.35.2",
"agent-browser": "0.36.0",
"eslint": "9.39.2",
"jiti": "2.7.0",
"pkg-pr-new": "0.0.88",
Expand All @@ -49,7 +49,7 @@
"syncpack": "15.3.3",
"turbo": "2.10.12",
"typescript": "6.0.3",
"typescript-eslint": "8.68.0"
"typescript-eslint": "8.69.0"
},
"engines": {
"node": ">=24.0.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/logging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rsbuild/core": "2.2.1",
"@rslib/core": "0.23.2",
"@typescript-eslint/parser": "8.68.0",
"@rsbuild/core": "2.2.3",
"@rslib/core": "1.0.0",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Medium — unsupported peer combination (workleap-web-configs skill)

@rslib/core is bumped across a major (0.23.21.0.0), but @workleap/rslib-configs@1.2.1 — kept at the same version in this PR — declares:

'@workleap/rslib-configs@1.2.1':
  peerDependencies:
    '@rslib/core': ^0.23.2

1.0.0 does not satisfy ^0.23.2, so the installed tree no longer matches the config package's declared support range (pnpm install without --frozen-lockfile reports it as an unmet peer; CI only passes because strict-peer-dependencies is not enabled and defineBuildConfig happens to still produce a valid config for rslib 1.x).

Note also that the validation checklist in the PR body (2a lint, 2b tests, 2c web sample app) never runs pnpm build-pkg, which is the only step that exercises rslib build — the riskiest part of this bump was not covered by the agent's own validation.

Fix: keep @rslib/core pinned to 0.23.2 until a @workleap/rslib-configs release peering on @rslib/core: ^1.0.0 is available, then bump both together in the same PR:

Suggested change
"@rslib/core": "1.0.0",
"@rslib/core": "0.23.2",

"@typescript-eslint/parser": "8.69.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@workleap/eslint-configs": "2.0.5",
"@workleap/rslib-configs": "1.2.1",
"@workleap/typescript-configs": "5.0.0",
"eslint": "9.39.2",
"typescript-eslint": "8.68.0",
"vitest": "4.1.11"
"typescript-eslint": "8.69.0",
"vitest": "5.0.0"
},
"sideEffects": false
}
Loading
Loading