Skip to content

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

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 Jun 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@azure/identity (source) 4.10.0 -> 4.10.1 age adoption passing confidence dependencies patch
@playwright/test (source) 1.52.0 -> 1.53.1 age adoption passing confidence devDependencies minor
@unocss/nuxt (source) 66.1.3 -> 66.3.2 age adoption passing confidence dependencies minor
lint-staged 16.1.0 -> 16.1.2 age adoption passing confidence devDependencies patch
mcr.microsoft.com/playwright v1.52.0-noble -> v1.53.1-noble age adoption passing confidence container minor
nitropack 2.11.12 -> 2.11.13 age adoption passing confidence dependencies patch
nuxt-og-image (source) 5.1.4 -> 5.1.8 age adoption passing confidence dependencies patch
pnpm (source) 10.11.1 -> 10.12.4 age adoption passing confidence packageManager minor

Release Notes

Azure/azure-sdk-for-js (@​azure/identity)

v4.10.1

Compare Source

microsoft/playwright (@​playwright/test)

v1.53.1

Compare Source

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137
unocss/unocss (@​unocss/nuxt)

v66.3.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.3.1

Compare Source

No significant changes

    View changes on GitHub

v66.2.3

Compare Source

   🚀 Features
    View changes on GitHub

v66.2.2

Compare Source

   🚀 Features
    View changes on GitHub

v66.2.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
lint-staged/lint-staged (lint-staged)

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

nitrojs/nitro (nitropack)

v2.11.13

Compare Source

compare changes

🩹 Fixes
  • types: Resolve absolute paths for type imports (#​3368)
  • cloudflare: Global process.env polyfill (#​3401)
  • dev: Only use build dir for output (#​3413)
  • types: Enable skipLibCheck by default (#​3373)
  • exaternals: Add an option to change output node_modules permission (#​3419)
💅 Refactors
  • Depend on unenv polyfill for global (#​3364)
  • Add tsConfig to types:extend hook (#​3399)
  • Update unenv and node compat (#​3421)
📖 Documentation
❤️ Contributors
nuxt-modules/og-image (nuxt-og-image)

v5.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
pnpm/pnpm (pnpm)

v10.12.4

Compare Source

Patch Changes

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced in v10.12.2 by #​9648; resolves #​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting with enableGlobalVirtualStore set to true #​9648.
  • Fix the --help and -h flags not working as expected for the pnpm create command.
  • The dependency package path output by the pnpm licenses list --json command is incorrect.
  • Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #​9595.

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.

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.

Copy link

socket-security bot commented Jun 9, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​unocss/​nuxt@​66.1.3 ⏵ 66.3.299 +11007097 +1100
Addedufo@​1.6.110010010079100
Updated@​playwright/​test@​1.52.0 ⏵ 1.53.11001001009980
Addedtypescript@​5.8.310010089100100
Addedvue@​3.5.171001009294100
Updated@​azure/​identity@​4.10.0 ⏵ 4.10.19410010096100

View full report

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd4ff9e to 4da43e4 Compare June 9, 2025 17:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4da43e4 to 91296c5 Compare June 10, 2025 04:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 91296c5 to 01b7aef Compare June 10, 2025 09:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 01b7aef to 2bfd615 Compare June 10, 2025 18:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2bfd615 to 597b3f9 Compare June 11, 2025 00:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 597b3f9 to e065cc2 Compare June 11, 2025 18:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e065cc2 to 9e24064 Compare June 12, 2025 00:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9e24064 to ec7a46e Compare June 15, 2025 12:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec7a46e to 5f24f3c Compare June 16, 2025 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f24f3c to 87efc2a Compare June 16, 2025 07:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 87efc2a to 98e4665 Compare June 16, 2025 15:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 98e4665 to 56df3be Compare June 17, 2025 15:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 56df3be to 8f33a1b Compare June 17, 2025 21:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 96d8edf to 8cefb7e Compare June 27, 2025 17:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8cefb7e to 5d246a2 Compare June 28, 2025 00:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d246a2 to 4634ca0 Compare June 28, 2025 11:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4634ca0 to 055b225 Compare June 28, 2025 14:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 055b225 to 5f5bb38 Compare June 28, 2025 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f5bb38 to 2bf92b0 Compare June 28, 2025 23:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2bf92b0 to 4597fa2 Compare June 29, 2025 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4597fa2 to 7a487db Compare June 29, 2025 06:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a487db to de2ad29 Compare June 29, 2025 11:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from de2ad29 to 1ea78e3 Compare June 29, 2025 15:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1ea78e3 to a75d665 Compare June 29, 2025 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a75d665 to 9bc585b Compare June 29, 2025 23:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9bc585b to 6564be6 Compare June 30, 2025 03:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
0 participants