Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 29, 2024

This PR contains the following updates:

Package Change Age Confidence
@nuxt/eslint (source) ^1.9.0 -> ^1.10.0 age confidence
@release-it/conventional-changelog ^10.0.1 -> ^10.0.2 age confidence
@supabase/supabase-js (source) ^2.74.0 -> ^2.84.0 age confidence
@types/node (source) ^24.7.0 -> ^24.10.1 age confidence
docus ^5.0.0 -> ^5.2.3 age confidence
eslint (source) ^9.37.0 -> ^9.39.1 age confidence
pnpm (source) 10.18.1 -> 10.23.0 age confidence
pnpm (source) 10.17.1 -> 10.23.0 age confidence
release-it ^19.0.5 -> ^19.0.6 age confidence
typescript (source) 5.6.3 -> 5.9.3 age confidence
vue-tsc (source) ^3.1.1 -> ^3.1.4 age confidence

Release Notes

nuxt/eslint (@​nuxt/eslint)

v1.10.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
release-it/conventional-changelog (@​release-it/conventional-changelog)

v10.0.2

Compare Source

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

v2.84.0

Compare Source

2.84.0 (2025-11-20)
🚀 Features
  • postgrest: add isdistinct and regex pattern matching operators (#​1875)
🩹 Fixes
  • postgrest: validate empty or invalid relation names in Postgrest… (#​1863)
  • realtime: simplify serializer by removing unnecessary types of messages (#​1871)
❤️ Thank You

v2.83.0

Compare Source

v2.82.0

Compare Source

v2.81.1

Compare Source

v2.81.0

Compare Source

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

v2.80.0

Compare Source

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

v2.79.0

Compare Source

🚀 Features
  • repo: remove node-fetch dependency, require Node.js 20+ (#​1830)
  • auth: support throwing errors instead of returning them (#​1766)
❤️ Thank You

v2.78.0

Compare Source

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

v2.77.0

Compare Source

2.77.0 (2025-10-29)

🚀 Features
  • auth: add OAuth 2.1 authorization consent management API calls (#​1793)
  • auth: add OAuth client update support (#​1812)
  • storage: add support for bucket pagination and sorting (#​1790)
🩹 Fixes
  • auth: handle 204 No Content response in OAuth client delete (#​1786)
  • auth: remove redirection in getAuthorizationDetails (#​1811)
  • postgrest: add incoming major 14 support (#​1807)
  • repo: add missing tslib dependency to core packages (#​1789)
  • repo: cleanup package-lock.json and bun.lock (#​1799)
  • storage: remove unnecessary filter (#​1809)
🔥 Performance
❤️ Thank You

v2.76.1

Compare Source

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

v2.76.0

Compare Source

🚀 Features
  • storage: storage vectors and analytics in storage-js (#​1752)
🩹 Fixes
  • repo: convert postbuild to explicit codegen (#​1778)
❤️ Thank You

v2.75.1

Compare Source

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

v2.75.0

Compare Source

🚀 Features
  • postgrest: add embeded functions type inference (#​1632)
❤️ Thank You
nuxt-content/docus (docus)

v5.2.3

Compare Source

Bug Fixes

v5.2.2

Compare Source

Features

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features
  • layouts: separate layouts for performance and expose page metas (#​1194) (bac9aa0)

v5.1.0

Compare Source

v5.0.1

Compare Source

Features
Bug Fixes
eslint/eslint (eslint)

v9.39.1

Compare Source

v9.39.0

Compare Source

v9.38.0

Compare Source

Features

  • ce40f74 feat: update complexity rule to only highlight function header (#​20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#​20187) (Francesco Trotta)

Bug Fixes

  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#​20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#​20114) (Pixel998)

Documentation

  • 462675a docs: improve web accessibility by hiding non-semantic character (#​20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#​20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#​20190) (Percy Ma)

Chores

pnpm/pnpm (pnpm)

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:is-odd@3.0.1) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.22.0: pnpm 10.22

Compare Source

Minor Changes

  • Added support for trustPolicyExclude #​10164.

    You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example:

    trustPolicy: no-downgrade
    trustPolicyExclude:
      - chokidar@4.0.3
      - webpack@4.47.0 || 5.102.1
  • Allow to override the engines field on publish by the publishConfig.engines field.

Patch Changes

  • Don't crash when two processes of pnpm are hardlinking the contents of a directory to the same destination simultaneously #​10179.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.21.0

Compare Source

v10.20.0

Compare Source

Minor Changes
  • Support --all option in pnpm --help to list all commands #​8628.
Patch Changes
  • When the latest version doesn't satisfy the maturity requirement configured by minimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #​10100.
  • create command should not verify patch info.
  • Set managePackageManagerVersions to false, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #​10063.

v10.19.0

Compare Source

Minor Changes
  • You can now allow specific versions of dependencies to run postinstall scripts. onlyBuiltDependencies now accepts package names with lists of trusted versions. For example:

    onlyBuiltDependencies:
      - nx@21.6.4 || 21.6.5
      - esbuild@0.25.1

    Related PR: #​10104.

  • Added support for exact versions in minimumReleaseAgeExclude #​9985.

    You can now list one or more specific versions that pnpm should allow to install, even if those versions don’t satisfy the maturity requirement set by minimumReleaseAge. For example:

    minimumReleaseAge: 1440
    minimumReleaseAgeExclude:
      - nx@21.6.5
      - webpack@4.47.0 || 5.102.1

v10.18.3

Compare Source

Patch Changes
  • Fix a bug where pnpm would infinitely recurse when using verifyDepsBeforeInstall: install and pre/post install scripts that called other pnpm scripts #​10060.
  • Fixed scoped registry keys (e.g., @scope:registry) being parsed as property paths in pnpm config get when --location=project is used #​9362.
  • Remove pnpm-specific CLI options before passing to npm publish to prevent "Unknown cli config" warnings #​9646.
  • Fixed EISDIR error when bin field points to a directory #​9441.
  • Preserve version and hasBin for variations packages #​10022.
  • Fixed pnpm config set --location=project incorrectly handling keys with slashes (auth tokens, registry settings) #​9884.
  • When both pnpm-workspace.yaml and .npmrc exist, pnpm config set --location=project now writes to pnpm-workspace.yaml (matching read priority) #​10072.
  • Prevent a table width error in pnpm outdated --long #​10040.
  • Sync bin links after injected dependencies are updated by build scripts. This ensures that binaries created during build processes are properly linked and accessible to consuming projects #​10057.

v10.18.2

Compare Source

Patch Changes
  • pnpm outdated --long should work #​10040.
  • Replace ndjson with split2. Reduce the bundle size of pnpm CLI #​10054.
  • pnpm dlx should request the full metadata of packages, when minimumReleaseAge is set #​9963.
  • pnpm version switching should work when the pnpm home directory is in a symlinked directory #​9715.
  • Fix EPIPE errors when piping output to other commands #​10027.
release-it/release-it (release-it)

v19.0.6

Compare Source

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:

vuejs/language-tools (vue-tsc)

v3.1.4

Compare Source

Bug Fixes
  • fix(language-service): prevent auto-insertion of html snippets in template interpolation (#​5744) - Thanks to @​serkodev!
  • fix(language-service): strip interpolations from document passed to html service - Thanks to @​KazariEX!
  • fix(language-core): report unused @ts-expect-error directive on components with loose props checks (#​5750) - Thanks to @​serkodev and @​KazariEX!
  • fix(language-core): respect directive comments before v-else (#​5753) - Thanks to @​serkodev and @​KazariEX!
Other Changes
  • refactor(language-core): re-implement component references by codegen (#​5736) - Thanks to @​KazariEX!
  • refactor(language-core): simplify calculation of full interpolation content - Thanks to @​KazariEX!

v3.1.3

Compare Source

Features
  • feat(typescript-plugin): allow triggering file references on <template> (#​5734) - Thanks to @​KazariEX!
Bug Fixes
  • fix(vscode): correct syntax highlight in template with lang="html" (#​5728) - Thanks to @​serkodev!
Other Changes
  • refactor(language-core): generate intrinsic elements variable into global types (#​5730) - Thanks to @​KazariEX!
  • refactor(typescript-plugin): remove go to definition trick for auto imported components (#​5733) - Thanks to @​KazariEX!

v3.1.2

Compare Source

Bug Fixes
  • fix(component-meta): import type helpers by relative path
  • fix(language-core): fix syntax error when propTypes has no elements (#​5704) - Thanks to @​so1ve!
  • fix(language-core): omit defined emit props only (#​5705) - Thanks to @​so1ve!
Other Changes
  • docs: fix vue-tsc broken link to example boilerplate in README.md (#​5721) - Thanks to @​heyakyra!

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), 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.

@netlify
Copy link

netlify bot commented Aug 29, 2024

Deploy Preview for n3-supabase canceled.

Name Link
🔨 Latest commit 8ee18bf
🔍 Latest deploy log https://app.netlify.com/projects/n3-supabase/deploys/68d57c75346d67000802a0f2

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 911ef8d to 15cf0ef Compare September 4, 2024 22:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 4b2691a to 2158176 Compare September 11, 2024 21:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8474ec5 to 454ad5f Compare September 14, 2024 01:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec13b63 to cc8e90d Compare November 10, 2025 22:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc8e90d to 828c3f3 Compare November 11, 2025 21:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 828c3f3 to c13ad6f Compare November 12, 2025 05:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c13ad6f to 671aefe Compare November 12, 2025 16:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 671aefe to 4979b4e Compare November 15, 2025 19:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4979b4e to 65d9bfc Compare November 16, 2025 23:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 65d9bfc to 39ec5ce Compare November 17, 2025 14:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 39ec5ce to 4fd7cc0 Compare November 18, 2025 23:43
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.

2 participants