Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@antfu/eslint-config ^4.16.2 -> ^4.19.0 age confidence
@iconify-json/carbon ^1.2.10 -> ^1.2.11 age confidence
@iconify-json/logos ^1.2.4 -> ^1.2.5 age confidence
@iconify-json/tabler ^1.2.19 -> ^1.2.20 age confidence
@nuxt/module-builder ^1.0.1 -> ^1.0.2 age confidence
@vueuse/nuxt (source) ^13.5.0 -> ^13.6.0 age confidence
bumpp ^10.2.0 -> ^10.2.2 age confidence
eslint (source) ^9.30.1 -> ^9.32.0 age confidence
firebase-functions ^6.3.2 -> ^6.4.0 age confidence
playwright-core (source) ^1.53.2 -> ^1.54.2 age confidence
pnpm (source) 10.13.1 -> 10.14.0 age confidence
shiki (source) ^3.7.0 -> ^3.9.1 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence
vue (source) ^3.5.17 -> ^3.5.18 age confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v4.19.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.18.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.17.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
nuxt/module-builder (@​nuxt/module-builder)

v1.0.2

Compare Source

compare changes

🩹 Fixes
  • Use absolute path for jiti stub (#​648)
🏡 Chore
✅ Tests
  • Add snapshots for v3 + v4 wrapped fetch (270779b)
🤖 CI
  • Remove forced corepack installation (9be288b)
  • Run tests on node 20 (97e3f47)
❤️ Contributors
vueuse/vueuse (@​vueuse/nuxt)

v13.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
antfu-collective/bumpp (bumpp)

v10.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.32.0

Compare Source

v9.31.0

Compare Source

firebase/firebase-functions (firebase-functions)

v6.4.0

Compare Source

microsoft/playwright (playwright-core)

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140
pnpm/pnpm (pnpm)

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.
shikijs/shiki (shiki)

v3.9.1

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.8.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.8.0

Compare Source

   🚀 Features
    View changes on GitHub
microsoft/TypeScript (typescript)

v5.9.2

Compare Source

vuejs/core (vue)

v3.5.18

Compare Source

Bug Fixes

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.

@renovate renovate bot changed the title chore(deps): update pnpm to v10.7.1 chore(deps): update all non-major dependencies Apr 4, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 38dcc32 to 42d5295 Compare April 6, 2025 08:48
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Apr 6, 2025
@renovate renovate bot closed this Apr 6, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch April 6, 2025 09:01
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Apr 7, 2025
@renovate renovate bot reopened this Apr 7, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 9f44822 to 192685b Compare April 14, 2025 14:35
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Apr 16, 2025
@renovate renovate bot closed this Apr 16, 2025
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Apr 18, 2025
@renovate renovate bot reopened this Apr 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8b3af59 to 192685b Compare April 18, 2025 20:51
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency eslint to ^9.25.0 Apr 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 192685b to 7dbf8be Compare April 19, 2025 00:39
@renovate renovate bot changed the title chore(deps): update devdependency eslint to ^9.25.0 chore(deps): update all non-major dependencies Apr 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7dbf8be to e62dad1 Compare April 21, 2025 09:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 985a343 to 14da2c1 Compare July 9, 2025 10:01
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to ^66.3.3 chore(deps): update all non-major dependencies Jul 9, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 14da2c1 to 20a74c3 Compare July 9, 2025 14:31
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency @unocss/runtime to ^66.3.3 Jul 9, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 20a74c3 to c5e1089 Compare July 9, 2025 14:33
@renovate renovate bot changed the title chore(deps): update devdependency @unocss/runtime to ^66.3.3 chore(deps): update devdependency @unocss/runtime to ^66.3.3 - autoclosed Jul 10, 2025
@renovate renovate bot closed this Jul 10, 2025
@renovate renovate bot changed the title chore(deps): update devdependency @unocss/runtime to ^66.3.3 - autoclosed chore(deps): update devdependency @unocss/runtime to ^66.3.3 Jul 14, 2025
@renovate renovate bot reopened this Jul 14, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 71bffd8 to c5e1089 Compare July 14, 2025 03:44
@renovate renovate bot changed the title chore(deps): update devdependency @unocss/runtime to ^66.3.3 chore(deps): update all non-major dependencies Jul 14, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c2e2c9d to 83359db Compare July 20, 2025 07:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from f5060a3 to cc0eeda Compare July 29, 2025 08:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3d84418 to 517b0ea Compare August 1, 2025 01:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 517b0ea to 249df7d Compare August 1, 2025 08:06
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