chore(deps)(deps): bump the runtime-deps group across 1 directory with 17 updates - #30241
Open
dependabot[bot] wants to merge 1 commit into
Open
chore(deps)(deps): bump the runtime-deps group across 1 directory with 17 updates#30241dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
@prisma/orm-extension-arktype-json
@prisma/orm-extension-middleware-cache
@prisma/orm-extension-paradedb
@prisma/orm-extension-pgvector
@prisma/orm-extension-postgis
@prisma/orm-extension-supabase
@prisma/orm-family-mongo
@prisma/orm-family-sql
@prisma/orm-framework
@prisma/orm-mongo
@prisma/orm-postgres
@prisma/orm-sqlite
@prisma/orm-target-mongo
@prisma/orm-target-postgres
@prisma/orm-target-sqlite
@prisma/orm-toolchain
commit: |
Contributor
size-limit report 📦
|
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/main/runtime-deps-62323f42be
branch
from
September 10, 2026 15:19
685598d to
38646a7
Compare
Contributor
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yml Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/main/runtime-deps-62323f42be
branch
2 times, most recently
from
September 11, 2026 16:39
f5a3471 to
a840b47
Compare
5 tasks
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/main/runtime-deps-62323f42be
branch
from
September 11, 2026 18:35
a840b47 to
3e8bd58
Compare
thallesdomician
pushed a commit
to thallesdomician/prisma
that referenced
this pull request
Sep 11, 2026
…#30261) ## Linked issue n/a — no Linear ticket. Follow-up to prisma#30229 (roadmap removal) and prisma#30248 (Prisma 8 rename). ## At a glance Docs-only PRs could not enter the merge queue: `Size Limit` is a required check, and the bundle-size workflow skipped the whole job on an inert diff, so the check never reported. prisma#30229 needed an admin merge for exactly this reason. The job now always runs and only its steps skip. ## Summary Three leftovers from the roadmap removal in one commit, plus a second commit that fixes the test-database idle timeout behind today's `Connection terminated unexpectedly` failures. ### The idle-timeout mismatch `createDevDatabase` in `@repo/test-utils` started the dev Postgres with a one-second idle timeout, while the Postgres driver's pool keeps an idle client for thirty seconds. Any test that pauses more than a second between queries then gets a dead client back from the pool: `Client has encountered a connection error and is not queryable`, wrapped as `SqlConnectionError: Connection terminated unexpectedly`. Coverage instrumentation makes such pauses routine, which is why the adapter-postgres native-enum lifecycle suite failed the Coverage job on five branches today (prisma#30249's queue run, prisma#30241, `prepare-orm`, `prisma-8-skill-rc9-refresh`, prisma#30262 four times in a row) while passing every plain shard. Three suites had already worked around it with a per-call thirty- or sixty-second override and a comment explaining exactly this. The default now matches the pool (thirty seconds), the three redundant overrides are gone, the telemetry harness keeps its sixty, and the returned handle exposes the setting so the test can assert it. ### The roadmap leftovers 1. **`ROADMAP.html` is deleted.** It was the rendered twin of the `ROADMAP.md` that prisma#30229 removed and still described the rc.1 plan. 2. **`scripts/lint-legacy-name.mjs` no longer cites the deleted roadmap.** Two of its temporary allowances pointed at "ROADMAP.md § 3" as the task that retires them; they now name the pending identifier rename directly. The file-specific allowance for the roadmap itself is gone with the files, and so is its test. 3. **The `Size Limit` job always reports.** The inert-diff condition moves from the job to each step, following the pattern the CI workflow already uses for its required `Test` summary job. ## Behavior changes & evidence - **CI:** a docs-only PR now gets a green `Size Limit` check instead of a skipped one, so auto-merge can enqueue it. Evidence: this PR touches `.github/` and `scripts/`, so it is non-inert and exercises the real path; the inert path is exercised by the next docs-only PR. - **Lint:** `pnpm lint:legacy-name` still passes on main; `node --test scripts/lint-legacy-name.test.mjs scripts/lint-workflow-triggers.test.mjs` passes (29 tests). ## Skill update n/a — no user-facing surface changed. ## Checklist - [x] All commits are signed off (`git commit -s`) per the [DCO](../CONTRIBUTING.md#developer-certificate-of-origin-dco). - [x] I read [CONTRIBUTING.md](../CONTRIBUTING.md) and the change is scoped to one logical concern. - [x] Tests are updated (the lint test drops the roadmap allowance case and asserts the new pointer). - [ ] The PR title is in `TML-NNNN: <sentence-case title>` form. No Linear ticket exists for this change. - [x] The **Skill update** section above is filled in. 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Removed the Prisma 8 RC1 roadmap page. - **Bug Fixes** - Bundle-size checks now report consistently, including for documentation-only changes. - **Development Experience** - Improved local development database connection handling by keeping idle connections available for longer, reducing unexpected disconnects during extended development and testing sessions. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: willbot <[email protected]> Signed-off-by: Will Madden <[email protected]> Co-authored-by: Claude Fable 5.1 <[email protected]>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/main/runtime-deps-62323f42be
branch
from
September 12, 2026 11:53
3e8bd58 to
fe42005
Compare
RyanGarber
pushed a commit
to RyanGarber/prisma-orm
that referenced
this pull request
Sep 13, 2026
…#30261) ## Linked issue n/a — no Linear ticket. Follow-up to prisma#30229 (roadmap removal) and prisma#30248 (Prisma 8 rename). ## At a glance Docs-only PRs could not enter the merge queue: `Size Limit` is a required check, and the bundle-size workflow skipped the whole job on an inert diff, so the check never reported. prisma#30229 needed an admin merge for exactly this reason. The job now always runs and only its steps skip. ## Summary Three leftovers from the roadmap removal in one commit, plus a second commit that fixes the test-database idle timeout behind today's `Connection terminated unexpectedly` failures. ### The idle-timeout mismatch `createDevDatabase` in `@repo/test-utils` started the dev Postgres with a one-second idle timeout, while the Postgres driver's pool keeps an idle client for thirty seconds. Any test that pauses more than a second between queries then gets a dead client back from the pool: `Client has encountered a connection error and is not queryable`, wrapped as `SqlConnectionError: Connection terminated unexpectedly`. Coverage instrumentation makes such pauses routine, which is why the adapter-postgres native-enum lifecycle suite failed the Coverage job on five branches today (prisma#30249's queue run, prisma#30241, `prepare-orm`, `prisma-8-skill-rc9-refresh`, prisma#30262 four times in a row) while passing every plain shard. Three suites had already worked around it with a per-call thirty- or sixty-second override and a comment explaining exactly this. The default now matches the pool (thirty seconds), the three redundant overrides are gone, the telemetry harness keeps its sixty, and the returned handle exposes the setting so the test can assert it. ### The roadmap leftovers 1. **`ROADMAP.html` is deleted.** It was the rendered twin of the `ROADMAP.md` that prisma#30229 removed and still described the rc.1 plan. 2. **`scripts/lint-legacy-name.mjs` no longer cites the deleted roadmap.** Two of its temporary allowances pointed at "ROADMAP.md § 3" as the task that retires them; they now name the pending identifier rename directly. The file-specific allowance for the roadmap itself is gone with the files, and so is its test. 3. **The `Size Limit` job always reports.** The inert-diff condition moves from the job to each step, following the pattern the CI workflow already uses for its required `Test` summary job. ## Behavior changes & evidence - **CI:** a docs-only PR now gets a green `Size Limit` check instead of a skipped one, so auto-merge can enqueue it. Evidence: this PR touches `.github/` and `scripts/`, so it is non-inert and exercises the real path; the inert path is exercised by the next docs-only PR. - **Lint:** `pnpm lint:legacy-name` still passes on main; `node --test scripts/lint-legacy-name.test.mjs scripts/lint-workflow-triggers.test.mjs` passes (29 tests). ## Skill update n/a — no user-facing surface changed. ## Checklist - [x] All commits are signed off (`git commit -s`) per the [DCO](../CONTRIBUTING.md#developer-certificate-of-origin-dco). - [x] I read [CONTRIBUTING.md](../CONTRIBUTING.md) and the change is scoped to one logical concern. - [x] Tests are updated (the lint test drops the roadmap allowance case and asserts the new pointer). - [ ] The PR title is in `TML-NNNN: <sentence-case title>` form. No Linear ticket exists for this change. - [x] The **Skill update** section above is filled in. 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Removed the Prisma 8 RC1 roadmap page. - **Bug Fixes** - Bundle-size checks now report consistently, including for documentation-only changes. - **Development Experience** - Improved local development database connection handling by keeping idle connections available for longer, reducing unexpected disconnects during extended development and testing sessions. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: willbot <[email protected]> Signed-off-by: Will Madden <[email protected]> Co-authored-by: Claude Fable 5.1 <[email protected]>
…h 17 updates Bumps the runtime-deps group with 17 updates in the / directory: | Package | From | To | | --- | --- | --- | | [uniku](https://github.com/jkomyno/uniku/tree/HEAD/packages/uniku) | `0.5.0` | `0.6.0` | | [wrap-ansi](https://github.com/chalk/wrap-ansi) | `10.0.0` | `10.0.1` | | [@vercel/detect-agent](https://github.com/vercel/vercel/tree/HEAD/packages/detect-agent) | `1.2.4` | `1.2.5` | | [jose](https://github.com/panva/jose) | `6.2.8` | `6.2.12` | | [bson](https://github.com/mongodb/js-bson) | `7.3.1` | `7.3.2` | | [pg-cursor](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg-cursor) | `2.21.0` | `2.22.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `4.1.11` | | [next](https://github.com/vercel/next.js) | `16.3.0` | `16.3.4` | | [@react-router/node](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node) | `8.3.0` | `8.3.1` | | [@react-router/serve](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve) | `8.3.0` | `8.3.1` | | [isbot](https://github.com/omrilotan/isbot) | `5.2.1` | `5.2.2` | | [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `8.3.0` | `8.3.1` | | [postcss](https://github.com/postcss/postcss) | `8.5.26` | `8.5.28` | | @prisma/dev | `0.25.1` | `0.25.2` | | [tsx](https://github.com/privatenumber/tsx) | `4.23.12` | `4.23.13` | | [vscode-languageserver-textdocument](https://github.com/Microsoft/vscode-languageserver-node/tree/HEAD/textDocument) | `1.0.12` | `1.0.14` | | [vscode-languageserver](https://github.com/Microsoft/vscode-languageserver-node/tree/HEAD/server) | `10.1.0` | `10.1.1` | Updates `uniku` from 0.5.0 to 0.6.0 - [Release notes](https://github.com/jkomyno/uniku/releases) - [Changelog](https://github.com/jkomyno/uniku/blob/main/packages/uniku/CHANGELOG.md) - [Commits](https://github.com/jkomyno/uniku/commits/[email protected]/packages/uniku) Updates `wrap-ansi` from 10.0.0 to 10.0.1 - [Release notes](https://github.com/chalk/wrap-ansi/releases) - [Commits](chalk/wrap-ansi@v10.0.0...v10.0.1) Updates `@vercel/detect-agent` from 1.2.4 to 1.2.5 - [Release notes](https://github.com/vercel/vercel/releases) - [Changelog](https://github.com/vercel/vercel/blob/main/packages/detect-agent/CHANGELOG.md) - [Commits](https://github.com/vercel/vercel/commits/@vercel/[email protected]/packages/detect-agent) Updates `jose` from 6.2.8 to 6.2.12 - [Release notes](https://github.com/panva/jose/releases) - [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md) - [Commits](panva/jose@v6.2.8...v6.2.12) Updates `bson` from 7.3.1 to 7.3.2 - [Release notes](https://github.com/mongodb/js-bson/releases) - [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md) - [Commits](mongodb/js-bson@v7.3.1...v7.3.2) Updates `pg-cursor` from 2.21.0 to 2.22.0 - [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md) - [Commits](https://github.com/brianc/node-postgres/commits/[email protected]/packages/pg-cursor) Updates `vitest` from 4.1.10 to 4.1.11 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest) Updates `next` from 16.3.0 to 16.3.4 - [Release notes](https://github.com/vercel/next.js/releases) - [Commits](vercel/next.js@v16.3.0...v16.3.4) Updates `@react-router/node` from 8.3.0 to 8.3.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-node/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-node) Updates `@react-router/serve` from 8.3.0 to 8.3.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-serve/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-serve) Updates `isbot` from 5.2.1 to 5.2.2 - [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md) - [Commits](omrilotan/isbot@v5.2.1...v5.2.2) Updates `react-router` from 8.3.0 to 8.3.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router) Updates `postcss` from 8.5.26 to 8.5.28 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.5.26...8.5.28) Updates `@prisma/dev` from 0.25.1 to 0.25.2 Updates `tsx` from 4.23.12 to 4.23.13 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](privatenumber/tsx@v4.23.12...v4.23.13) Updates `vscode-languageserver-textdocument` from 1.0.12 to 1.0.14 - [Release notes](https://github.com/Microsoft/vscode-languageserver-node/releases) - [Commits](https://github.com/Microsoft/vscode-languageserver-node/commits/HEAD/textDocument) Updates `vscode-languageserver` from 10.1.0 to 10.1.1 - [Release notes](https://github.com/Microsoft/vscode-languageserver-node/releases) - [Commits](https://github.com/Microsoft/vscode-languageserver-node/commits/release/client/10.1.1/server) --- updated-dependencies: - dependency-name: "@prisma/dev" dependency-version: 0.25.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: "@react-router/node" dependency-version: 8.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: "@react-router/serve" dependency-version: 8.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: "@vercel/detect-agent" dependency-version: 1.2.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: bson dependency-version: 7.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: isbot dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: jose dependency-version: 6.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: next dependency-version: 16.3.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: pg-cursor dependency-version: 2.22.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: runtime-deps - dependency-name: postcss dependency-version: 8.5.28 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: react-router dependency-version: 8.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: tsx dependency-version: 4.23.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: uniku dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: runtime-deps - dependency-name: vitest dependency-version: 4.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: vscode-languageserver dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: vscode-languageserver-textdocument dependency-version: 1.0.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps - dependency-name: wrap-ansi dependency-version: 10.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-deps ... Signed-off-by: dependabot[bot] <[email protected]>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/main/runtime-deps-62323f42be
branch
from
September 13, 2026 07:59
fe42005 to
6fefa2c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the runtime-deps group with 17 updates in the / directory:
0.5.00.6.010.0.010.0.11.2.41.2.56.2.86.2.127.3.17.3.22.21.02.22.04.1.104.1.1116.3.016.3.48.3.08.3.18.3.08.3.15.2.15.2.28.3.08.3.18.5.268.5.280.25.10.25.24.23.124.23.131.0.121.0.1410.1.010.1.1Updates
unikufrom 0.5.0 to 0.6.0Release notes
Sourced from uniku's releases.
Changelog
Sourced from uniku's changelog.
Commits
9f171bbchore(release): version packagese5294d9docs(uniku): schedule deprecated alias removalsa26f226docs: document generator public APIsc4fd1c5revert: restore main before v1 RC review641aeb4chore(release): prepare uniku 1.0.0-rc.013175e4docs(uniku): finalize v1 migration contract9246e9ftest(uniku): lock v1 package removals0172a2erefactor(uniku): remove pre-v1 option aliases4bc91f7refactor(uniku): make CUID v2 canonicalUpdates
wrap-ansifrom 10.0.0 to 10.0.1Release notes
Sourced from wrap-ansi's releases.
Commits
c6b625910.0.1f3287cfRewrite tests1f23be6Fix handling of hyperlinksUpdates
@vercel/detect-agentfrom 1.2.4 to 1.2.5Release notes
Sourced from @vercel/detect-agent's releases.
Changelog
Sourced from @vercel/detect-agent's changelog.
Commits
Updates
josefrom 6.2.8 to 6.2.12Release notes
Sourced from jose's releases.
... (truncated)
Changelog
Sourced from jose's changelog.
... (truncated)
Commits
505a55bchore(release): 6.2.127bc9a33perf: encode single-signature JWS input once78637bdperf: normalize General JWE shared headers oncebf5138bperf: deduplicate pending jwks key importsb23a6f3perf: use native encoding for larger ASCII stringsfd3ae3fperf: normalize jwks selection metadata once6925d43perf: avoid copying AES-GCM outputbe62530docs: clarify and shorten public API guidance1b41312build: preserve README when generation fails0b51829build: check tree-shaking for every public bindingUpdates
bsonfrom 7.3.1 to 7.3.2Release notes
Sourced from bson's releases.
Changelog
Sourced from bson's changelog.
Commits
9cd2e68chore(main): release 7.3.2 (#902)9272c9afix(NODE-7645): use the first instant of year 10000 as the relaxed EJSON date...8d28b12fix(NODE-7646): count ES Map entries in calculateObjectSize (#910)665286ffix(NODE-7667): remove early initialization from ObjectId (#916)1fc57e4chore(NODE-7681): allow git fetch for npm12 (#914)57b5bf0chore: use bundled version of NPM (#913)a84229cperf(NODE-6246): store ObjectId bytes as four packed integers (#893)7f948a6fix(NODE-7631): count Int32 and BSONSymbol in calculateObjectSize (#901)Updates
pg-cursorfrom 2.21.0 to 2.22.0Commits
df274d1PublishUpdates
vitestfrom 4.1.10 to 4.1.11Release notes
Sourced from vitest's releases.
Commits
9bd8d46chore: release v4.1.11 (#10995)9851dbcfix(browser): trigger playwright/chromium gc on lower disk availability [back...Updates
nextfrom 16.3.0 to 16.3.4Release notes
Sourced from next's releases.
... (truncated)
Commits
299180dv16.3.412e173d[16.3.x] Re-enable AVIF image optimization and require sharp 0.35.4 (#97949)5d9022e[backport] Fix unset crossOrigin in Turbopack manifests (#97930)d8f4560[16.3.x] Fix build error when aliasing typescript to@typescript/typescript6...656aebf[16.3] testmode: Fix infinite recursion in testmode passthrough fetch (#97691)f37c1d6[16.3.x] ci: remove pull_request_stats workflow (#97975)a9a1cb7v16.3.3968b9fc[16.3.x] Fix ISR misses with backslashes in segments when deployed on Windows3a15b4a[16.3.x] [next/image]: disable avif image optimization7378b51Backport/docs fixes 16.3 (#97649)Updates
@react-router/nodefrom 8.3.0 to 8.3.1Release notes
Sourced from @react-router/node's releases.
Changelog
Sourced from @react-router/node's changelog.
Commits
da2a0f0Release v8.3.1 (#15368)818fb10Bump node fetch server dependency (#15447)1401852Prevent streaming disconnects from crashing Node (#15324)fc873b0Use optional catch bindings (#15372)Updates
@react-router/servefrom 8.3.0 to 8.3.1Release notes
Sourced from @react-router/serve's releases.
Changelog
Sourced from @react-router/serve's changelog.
Commits
da2a0f0Release v8.3.1 (#15368)818fb10Bump node fetch server dependency (#15447)6beaca3fix(react-router-serve): serve /.well-known files (#15340)Updates
isbotfrom 5.2.1 to 5.2.2Changelog
Sourced from isbot's changelog.
Commits
eff2b5aPattern update: reduce size09506caadjust procedure for zsh, too06e1827Does anyone read this? I'll be at the coffee shop accross the street.344052dnothing reallyUpdates
react-routerfrom 8.3.0 to 8.3.1Release notes
Sourced from react-router's releases.
Changelog
Sourced from react-router's changelog.
Commits
da2a0f0Release v8.3.1 (#15368)917e6fdfix(fog-of-war): don't cache aborted lazy route discoveries as discovered (#1...2e0bf72Validate client-side navigation targets (#15445)f45d4caRevert "fix: normalize control characters in relative URLs (#15416)" (#15442)c091832fix: validate schemeful action origins (#15419)308d206fix: improve matching perf (#15417)36bdbebfix: normalize control characters in relative URLs (#15416)801e2aefix(react-router): re-enable manual scroll restoration after a bfcache restor...5e98140fix: honor the relative option in useSubmit and fetcher.submit (#15400)5843d38refactor(router): use definite assignment assertions in createDeferred (#15396)Updates
postcssfrom 8.5.26 to 8.5.28Release notes
Sourced from postcss's releases.
Changelog
Sourced from postcss's changelog.
Commits
e544bffRelease 8.5.28 versionf8fc252Typo5039fd7Add missed release notesae40ca4Release 8.5.27 version62b1626Fix linter1dba938Update dependencies3e82edcKeep non-annotation comments when the processor has no plugins (#2150)6d23bc3Fix link508e997Add GitHub Sponsors linke993739Add CodeRabbit sponsor (#2145)Updates
@prisma/devfrom 0.25.1 to 0.25.2Updates
tsxfrom 4.23.12 to 4.23.13Release notes
Sourced from tsx's releases.
Commits
28e1f12fix(cache): bound shared transform cache memory (#835)Updates
vscode-languageserver-textdocumentfrom 1.0.12 to 1.0.14Release notes
Sourced from vscode-languageserver-textdocument's releases.
Commits