Skip to content

chore(deps): update all non-major dependencies#613

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#613
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 18, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@supabase/ssr ^0.12.1^0.12.3 age confidence
@supabase/supabase-js (source) ^2.110.4^2.110.7 age confidence
better-sqlite3 ^12.10.0^12.11.1 age confidence
docus ^5.12.1^5.12.3 age confidence
pnpm (source) 11.13.011.15.1 age confidence
pnpm (source) 11.5.211.15.1 age confidence
typescript (source) 5.6.35.9.3 age confidence
vite (source) ^8.1.4^8.1.5 age confidence

Release Notes

supabase/ssr (@​supabase/ssr)

v0.12.3

Compare Source

Bug Fixes

v0.12.2

Compare Source

Bug Fixes
supabase/supabase-js (@​supabase/supabase-js)

v2.110.7

Compare Source

🩹 Fixes
  • realtime: trigger set auth on INITIAL_SESSION event (#​2531)
❤️ Thank You

v2.110.6

Compare Source

2.110.6 (2026-07-15)

🩹 Fixes
  • postgrest: type hinted self-referencing embeds as arrays (#​2520)
  • realtime: forward opts to send() in track() (#​2490)
  • supabase: warn instead of throw for unrecognized sb_ API key subtypes (#​2526)
❤️ Thank You

v2.110.5

Compare Source

2.110.5 (2026-07-14)

🩹 Fixes
  • supabase: avoid edge runtime warning (#​2522)
❤️ Thank You
WiseLibs/better-sqlite3 (better-sqlite3)

v12.11.1

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.11.0...v12.11.1

v12.10.1

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.10.0...v12.10.1

nuxt-content/docus (docus)

v5.12.3

Compare Source

Bug Fixes

v5.12.2

Compare Source

Features
  • assistant: refine tool display and streaming behavior (#​1390) (a2ac34c)
Bug Fixes
  • layer: scope UI variant defaults to docus components (#​1395) (82abeca)
pnpm/pnpm (pnpm)

v11.15.1

Compare Source

v11.15.0: pnpm 11.15

Compare Source

Minor Changes
  • Optional peer dependencies declared only via peerDependenciesMeta (for example debug's supports-color peer) are now resolved from a satisfying version already present in the dependency graph, the same way explicitly declared optional peer dependencies are. Previously such peers were only resolved this way when the package's metadata was read back from the lockfile, so an unrelated dependency change could rewrite peer resolutions across the whole lockfile.
Patch Changes
  • Updated adm-zip to prevent crafted ZIP archives from causing excessive memory allocation.

  • pnpm version -r no longer writes a versioning-ledger entry with no consumed intents as a bare intents: key, which the next run failed to read with ERR_PNPM_INVALID_VERSIONING_LEDGER. Empty intent lists are now written as intents: [], and the ledger reader accepts the bare form left by earlier releases.

  • Fixed pnpr workspace resolution to preserve project names and versions for workspace: dependencies.

Platinum Sponsors

Bit
OpenAI

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v11.14.0: pnpm 11.14

Compare Source

Minor Changes

  • peerDependencies now accept dependency specifiers that carry a scheme — a named-registry spec (<registry>:<version>), an npm: alias, or a file:/git/URL spec — instead of rejecting them with ERR_PNPM_INVALID_PEER_DEPENDENCY_SPECIFICATION #​13095. Such a peer is matched against the semver range carried by the specifier (work:5.x.x is checked as 5.x.x, npm:bar@^5 as ^5), or against * when it carries no version, while the original specifier still selects the package to auto-install. Bare name@version values, which are almost always a mistake, are still rejected.

  • Added pnpm doctor, which diagnoses the pnpm installation and the environment it runs in: the versions and install method, whether the global bin directory is on PATH, whether the store and cache are writable, which link strategies (reflink, hardlink, symlink) the store's filesystem supports, registry connectivity, and an offline file: install that exercises the resolve/store/link path end to end. Each check reports how to fix what it finds, and the command exits non-zero when any check fails.

    Use --offline to skip the checks that need network access, --json for machine-readable output, and --benchmark to time the filesystem and install checks.

  • Added support for executing multiple scripts matching a RegExp passed to pnpm run (e.g., pnpm run "/^build:.*/"), running matched scripts in deterministic lexicographical order. Restored the --sequential (-s) CLI option for pnpm run, which forces workspaceConcurrency to 1 so that matched scripts run sequentially one by one across and within packages.

Patch Changes

  • Fixed pnpm install failing with ERR_PNPM_LOCKFILE_IS_SYMLINK when pnpm-lock.yaml is a symlink, as build sandboxes such as Bazel and Nix stage it #​13073. Reading a lockfile through a symlink is allowed again, and an install that leaves the lockfile unchanged no longer rewrites it, so --frozen-lockfile no longer needs to write at all. Writing a changed lockfile through a symlink is still refused, as that would redirect the write onto the symlink's target.

  • Fixed frozen installs incorrectly treating equivalent Git dependency specifiers as a stale lockfile. See #​13039.

  • pnpm owner ls now reports authentication and authorization failures (401/403) as dedicated errors that include the registry's response body, matching pnpm owner add/rm, instead of a generic Failed to fetch owners message.

  • Recover from a metadata cache entry that disappears (concurrent cache cleanup, antivirus) after the registry has already answered the conditional request with 304 Not Modified. The metadata is re-requested once without cache validators instead of failing the install with ERR_PNPM_CACHE_MISSING_AFTER_304.

  • A project pinned to a broken pnpm release via packageManager or devEngines.packageManager now reports which release is broken and what to do about it, instead of failing inside the installer. pnpm self-update already refused these releases; the version switch does too.

  • Prevent broken-lockfile errors from including snippets of the lockfile's contents.

  • pnpm self-update now checks that the version it installed can run before making it the active pnpm. A release that installs but cannot execute is discarded with an error instead of replacing a working installation.

  • Fixed an out-of-memory regression when workspace projects concurrently resolve a package with large registry metadata pnpm/pnpm#13077.

  • Fixed pnpm update rewriting exact version pins that use the = operator (for example =3.5.1) to a caret range (^3.5.1). Exact pins are now preserved and written back as the bare version. See #​12745.

Platinum Sponsors

Bit
OpenAI

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v11.13.1: pnpm 11.13.1

Compare Source

Patch Changes

  • Fixed pnpm pack applying workspace-root ignore rules when a workspace package has its own .npmignore file.
  • Keep the interactive minimumReleaseAge approval prompt visible during pnpm install. The progress reporter now pauses its redraws while a prompt is waiting for input instead of overwriting it, so the install no longer hangs on a question the user cannot see #​13019.
  • Fixed pnpm self-update failing to link native platform binaries stored in sibling global virtual store slots.
microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.8.3: TypeScript 5.8.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

v5.8.2: TypeScript 5.8

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

vitejs/vite (vite)

v8.1.5

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on Monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel

vercel Bot commented May 18, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
supabase Ready Ready Preview Jul 21, 2026 3:54am
supabase-demo Ready Ready Preview Jul 21, 2026 3:54am

@pkg-pr-new

pkg-pr-new Bot commented May 18, 2026

Copy link
Copy Markdown
npm i https://pkg.pr.new/@nuxtjs/supabase@613

commit: db22820

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 6a7831d to 90a33ae Compare May 18, 2026 13:56
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 90a33ae to 1fe988f Compare May 18, 2026 23:00
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 1fe988f to f3a39b3 Compare May 19, 2026 17:17
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from f3a39b3 to aa0d64a Compare May 19, 2026 23:07
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from aa0d64a to bc78626 Compare May 20, 2026 16:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from bc78626 to adf73e6 Compare May 20, 2026 20:08
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from adf73e6 to 13f9672 Compare May 20, 2026 20:29
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 13f9672 to 92735a6 Compare May 21, 2026 12:00
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 92735a6 to d67332e Compare May 21, 2026 13:20
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from aa9d678 to 2f8e1c2 Compare May 25, 2026 11:07
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 2f8e1c2 to 8f270a4 Compare May 26, 2026 16:59
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 8f270a4 to 24a8fca Compare May 28, 2026 22:27
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 24a8fca to 413c73a Compare May 30, 2026 18:54
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 413c73a to cbba049 Compare May 30, 2026 22:38
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from cbba049 to ed97196 Compare May 31, 2026 06:55
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from ed97196 to 33fa8b1 Compare May 31, 2026 10:49
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 33fa8b1 to 805c3ac Compare May 31, 2026 14:49
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 805c3ac to b7081c3 Compare June 2, 2026 00:11
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from b7081c3 to 9d53b4b Compare June 2, 2026 07:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants