Skip to content

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

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

Merged
merged 2 commits into from
Jul 4, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 7, 2025

This PR contains the following updates:

Package Change Age Confidence
@types/finalhandler (source) 1.2.3 -> 1.2.4 age confidence
@types/mime-types (source) 3.0.0 -> 3.0.1 age confidence
@types/node (source) 22.15.30 -> 22.16.0 age confidence
@types/serve-static (source) 1.15.7 -> 1.15.8 age confidence
cheerio (source) 1.0.0 -> 1.1.0 age confidence
eslint (source) 9.28.0 -> 9.30.1 age confidence
eslint-plugin-prettier 5.4.1 -> 5.5.1 age confidence
lint-staged 16.1.0 -> 16.1.2 age confidence
playwright (source) 1.52.0 -> 1.53.2 age confidence
postcss-nesting (source) 13.0.1 -> 13.0.2 age confidence
postcss-preset-env (source) 10.2.1 -> 10.2.4 age confidence
prettier (source) 3.5.3 -> 3.6.2 age confidence
stylelint-config-recess-order 6.0.0 -> 6.1.0 age confidence
typescript-eslint (source) 8.33.1 -> 8.35.1 age confidence
vitest (source) 3.2.2 -> 3.2.4 age confidence
vue-tsc (source) 2.2.10 -> 2.2.12 age confidence

Release Notes

cheeriojs/cheerio (cheerio)

v1.1.0

Compare Source

What's Changed

Doc Improvements

New Contributors

Full Changelog: cheeriojs/cheerio@v1.0.0...v1.1.0

eslint/eslint (eslint)

v9.30.1

Compare Source

v9.30.0

Compare Source

v9.29.0

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.1

Compare Source

Patch Changes

v5.5.0

Compare Source

Minor Changes
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.

microsoft/playwright (playwright)

v1.53.2

Compare Source

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
csstools/postcss-plugins (postcss-nesting)

v13.0.2

Compare Source

June 10, 2025

csstools/postcss-plugins (postcss-preset-env)

v10.2.4

Compare Source

June 26, 2025

v10.2.3

Compare Source

June 11, 2025

v10.2.2

Compare Source

June 10, 2025

prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

stormwarning/stylelint-config-recess-order (stylelint-config-recess-order)

v6.1.0

Compare Source

Minor Changes
typescript-eslint/typescript-eslint (typescript-eslint)

v8.35.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.35.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.34.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.34.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (vitest)

v3.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v2.2.12

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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

pkg-pr-new bot commented Jun 7, 2025

Open in StackBlitz

npm i https://pkg.pr.new/basics/nuxt-booster@1310

commit: 0392544

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 8aab513 to e1a8aa2 Compare June 15, 2025 14:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 531433e to eff0689 Compare June 23, 2025 06:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 0c990bd to 1609d21 Compare June 28, 2025 10:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f010997 to 0ac26a2 Compare July 1, 2025 23:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ac26a2 to 2ff0db0 Compare July 2, 2025 02:01
Copy link

sonarqubecloud bot commented Jul 4, 2025

@ThornWalli ThornWalli merged commit be00efa into main Jul 4, 2025
9 checks passed
@ThornWalli ThornWalli deleted the renovate/all-minor-patch branch July 4, 2025 17:03
Copy link

🎉 This PR is included in version 3.2.10 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant