Skip to content

fix(deps): update all non-major dependencies - #151

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major-dependencies
Open

fix(deps): update all non-major dependencies#151
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@figma/plugin-typings ^1.130.0^1.134.0 age confidence
@modelcontextprotocol/sdk (source) ^1.29.0^1.30.0 age confidence
@rollup/plugin-terser>serialize-javascript 7.0.77.1.0 age confidence
@tsconfig/node24 (source) ^24.0.4^24.0.5 age confidence
@vitejs/plugin-vue (source) ^6.0.7^6.0.8 age confidence
@vitejs/plugin-vue (source) 6.0.76.0.8 age confidence
@vueuse/core (source) ^14.3.0^14.4.0 age confidence
esbuild 0.28.10.28.2 age confidence
esbuild ^0.28.1^0.28.2 age confidence
eslint (source) ^10.7.0^10.8.1 age confidence
eslint-plugin-perfectionist (source) ^5.10.0^5.10.1 age confidence
eslint-plugin-vue (source) ~10.9.2~10.10.0 age confidence
eslint-plugin-vue (source) ^10.9.2^10.10.0 age confidence
marked (source) ^18.0.6^18.0.9 age confidence
nanoid ^6.0.0^6.0.1 age confidence
oxfmt (source) ^0.58.0^0.63.0 age confidence
p-limit ^7.3.0^7.3.1 age confidence
playwright (source) ^1.61.1^1.62.1 age confidence
pnpm (source) 11.11.011.21.0 age confidence
tsdown (source) ^0.22.7^0.22.14 age confidence
tsx (source) ^4.23.1^4.23.12 age confidence
vite (source) 8.1.48.2.1 age confidence
vite-plugin-css-injected-by-js ^5.0.1^5.0.2 age confidence
vue (source) ^3.5.39^3.5.41 age confidence
vue-tsc (source) ^3.3.7^3.3.10 age confidence
ws ^8.21.0^8.21.3 age confidence
wxt (source) ^0.20.27^0.21.4 age confidence

Release Notes

figma/plugin-typings (@​figma/plugin-typings)

v1.134.0

Compare Source

v1.133.0

Compare Source

v1.132.0

Compare Source

v1.131.0

Compare Source

modelcontextprotocol/typescript-sdk (@​modelcontextprotocol/sdk)

v1.30.0

Compare Source

yahoo/serialize-javascript (@​rollup/plugin-terser>serialize-javascript)

v7.1.0

Compare Source

What's Changed

Full Changelog: yahoo/serialize-javascript@v7.0.7...v7.1.0

tsconfig/bases (@​tsconfig/node24)

v24.0.5

Compare Source

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.8

Features
Bug Fixes
vueuse/vueuse (@​vueuse/core)

v14.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
evanw/esbuild (esbuild)

v0.28.2

Compare Source

  • Fix tree shaking bug due to TypeScript import alias (#​4507)

    This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific import assignment and looks something like this:

    import Base from './dep.js';
    import Alias = Base.SomeType;
  • Fix CSS minification bug involving & (#​4497)

    This release fixes a bug where esbuild's CSS minifier incorrectly removed a & when it was unsafe to do so. Here is an example:

    /* Original code */
    .a .b {
      & .b:not(& .c) {
        color: red;
      }
    }
    
    /* Old output (with --minify) */
    .a .b{.b:not(& .c){color:red}}
    
    /* New output (with --minify) */
    .a .b{& .b:not(& .c){color:red}}

    This should match <span class="a"><span class="b"><span class="b">yes</span></span></span> but not <span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.

  • Avoid overwriting input files without --allow-overwrite (#​4484)

    For example: esbuild input.js --outfile=input.js tells esbuild to overwrite input.js with the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.

    This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless --allow-overwrite is explicitly present. This is done by not writing out any files when a build error is encountered.

  • Fix incorrect code generated when using top-level await (#​4498)

    Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing async on one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing an async module wrapper.

  • Fix a minification bug with lowered logical assignment operators (#​4508)

    This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:

    // Original code
    function foo() {
      let x
      bar(x ||= {})
    }
    
    // Old output (with --minify-syntax --target=es6)
    function foo() {
      bar(void 0 || (x = {}));
    }
    
    // New output (with --minify-syntax --target=es6)
    function foo() {
      let x;
      bar(x || (x = {}));
    }
  • Fix a potential deadlock when the JavaScript API is used incorrectly (#​4503, #​4506)

    The JavaScript API runs the native esbuild executable as a long-lived child process and communicates with it over stdin/stdout/stderr. Each API request is asynchronous and the executable stays open as long as it has work to do, which is as long as either stdin is still open (meaning there may be more API requests) or there are currently requests being processed.

    Previously esbuild's tracking of outstanding API requests missed decrementing a reference count in an edge case where esbuild's JavaScript API was used incorrectly and the API request returned an error. This could in some cases cause esbuild's native executable to exit with an error message about a deadlock. This release fixes the reference counting bug.

    This fix was submitted by @​ZuBB.

  • Handle target collisions (#​4509)

    It's possible to specify the same target engine multiple times, such as with --target=chrome1,chrome99. This edge case wasn't anticipated and previously took the last version for the duplicated target engine instead of the minimum version (so chrome99 in this case instead of chrome1). With this release, esbuild will now pick the minimum version between all duplicated target engines.

  • Force .mp3 files to use the audio/mpeg MIME type (#​4485)

    MIME type detection for esbuild's data URLs uses Go's built-in MIME type detection, which is based on the MIME sniffing standard. This works correctly for MP3 files that start with the byte sequence ID3, which is commonly the case. However, it's possible to construct valid MP3 files that do not start with ID3, and that perhaps Go's built-in MIME type detection doesn't implement the "Signature for MP3 without ID3" part of the algorithm. This results in some .mp3 files incorrectly using the application/octet-stream MIME type instead of audio/mpeg. With this release, esbuild will now always use the audio/mpeg MIME type for files ending in .mp3.

  • Add a new TypeScript syntax warning

    TypeScript 7 turned some previously-valid TypeScript syntax into a syntax error because it was confusing. TypeScript 6 accepts 1 + 2 as number * 3 as valid syntax but confusingly converts it to (1 + 2) * 3 instead of the more intuitive conversion to 1 + (2 * 3). This syntax is now an error in TypeScript 7+. With this release, esbuild will now warn about the use of this syntax:

     [WARNING] Operator "*" should not directly follow a TypeScript type cast after the "+" operator [confusing-typescript-cast]
    
        example.ts:1:28:
          1  console.log(1 + 2 as number * 3)
                                         ^
    
      This is a syntax error in newer versions of TypeScript because the type cast has unintuitive
      precedence in this case. Surround the inner expression in parentheses to silence this warning:
    
        example.ts:1:12:
          1  console.log(1 + 2 as number * 3)
                         ~~~~~~~~~~~~~~~
                         (             )

    See microsoft/TypeScript#63527 for more information.

  • Add support for formatting errors for Visual Studio (#​4460)

    Visual Studio has a specific style that it expects log messages to be in for them to show up in the UI when esbuild is run as a custom build step. The current log style that esbuild uses doesn't conform to this specific style.

    With this release, esbuild has a new log style for Visual Studio (and other tools in the MSBuild ecosystem) that can be enabled with --log-style=visualstudio. Here is an example log message in this style:

    $ esbuild example.ts --log-style=visualstudio
    /Users/evan/dev/esbuild/example.ts(1,29): warning ES0010: Operator "*" should not directly follow a TypeScript type cast after the "+" operator
    

    This log style is also available via the JS and Go APIs, and can now be used with the existing formatMessages API.

  • Fix a bug with CSS gamut mapping (#​4488)

    Due to a typo, the fallback colors generated for CSS colors outside of the sRGB gamut weren't correct. This release fixes the generated colors to use the intended algorithm.

    This fix was submitted by @​chatman-media.

eslint/eslint (eslint)

v10.8.1

Compare Source

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#​21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#​21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#​21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#​21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#​20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#​21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)
  • 69bb948 docs: Update README (GitHub Actions Bot)

Chores

v10.8.0

Compare Source

Features

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#​21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#​21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#​21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#​21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#​21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#​21083) (Francesco Trotta)

Documentation

  • 6ddf858 docs: fix broken Specify Parser Options anchor link (#​21106) (Minsu)
  • 784dfbe docs: Clarify no-eq-null description (#​21120) (Park Harin)
  • 7ec733a docs: Fix typos and grammar in glossary (#​21095) (Marry (Subin Yang))
  • 92bb13f docs: replace quake link (#​21108) (Jung Hyeon Jun)
  • 68eb4a5 docs: fix broken Specify Globals anchor links in rule pages (#​21103) (Minsu)
  • d28f697 docs: replace Code Climate CLI links with Qlty CLI links (#​21099) (Jung Hyeon Jun)
  • eccc68d docs: correct --suppressions-location option description (#​21093) (Ga eun Lee)
  • c5963f7 docs: Update README (GitHub Actions Bot)

Chores

  • 4fbf46d test: pin webpack version to 5.108.4 (#​21137) (Francesco Trotta)
  • 2d063e2 chore: update HTTP URLs to HTTPS in JSDoc and comments (#​21101) (Bo Hyun Kim)
  • eccbe7b test: add error locations to no-class-assign (#​21123) (devoil)
  • e7d1e43 ci: bump actions/setup-go from 6 to 7 (#​21118) (dependabot[bot])
  • e9d66d0 ci: bump actions/setup-node from 6 to 7 (#​21119) (dependabot[bot])
  • ee225b6 test: Add error location details to no-eq-null rule (#​21117) (Park Harin)
  • 044a627 chore: update minimatch to ^10.2.5 (#​21107) (김채영)
  • fb09aa8 chore: update ecosystem plugins (#​21115) (ESLint Bot)
  • 5abd878 test: add error locations to no-proto (#​21114) (Gihyeon Jeong / 정기현)
  • 9715887 test: Add error location details to no-div-regex (#​21110) (Park Harin)
  • a746ec6 test: add error locations to no-new-wrappers (#​21109) (Gihyeon Jeong / 정기현)
  • 8dde645 test: add error locations to no-ex-assign (#​21102) (devoil)
  • 13ab0ec test: add error locations to no-label-var (#​21098) (Gihyeon Jeong / 정기현)
  • a99906f test: Add error location details to no-delete-var rule (#​21105) (Park Harin)
  • c47e8dc chore: add missing backticks to languages/js/index.js (#​21104) (beeen)
  • 0174428 chore: add missing backticks to translate-cli-options.js (#​21097) (dongkyu lee)
  • 3d36589 chore: add missing backticks to serialization.js (#​21091) (이규환)
  • dcc9312 test: add error locations to eqeqeq (#​21090) (Ga eun Lee)
  • 2710b18 ci: Add explicit permissions to rebuild-docs-sites workflow (#​21089) (Marry (Subin Yang))
  • 5d2f866 chore: update dependency prettier to v3.9.5 (#​21086) (renovate[bot])
  • d584e31 chore: fix failing ecosystem test for eslint-plugin-unicorn (#​21084) (Francesco Trotta)
  • bf3eda0 chore: update ecosystem plugins (#​21079) (ESLint Bot)
azat-io/eslint-plugin-perfectionist (eslint-plugin-perfectionist)

v5.10.1

Compare Source

compare changes

🐞 Bug Fixes
  • Fix crash in typescript 7
    (fbbc372)
  • Fix complex comments cases not being auto-fixed correctly
    (7a35d8b)
  • Respect ignored callback dependencies in nested calls
    (c9a119e)
  • Take into account extended tsconfigs
    (93a267e)
❤️ Contributors
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.10.0

Compare Source

markedjs/marked (marked)

v18.0.9

Compare Source

v18.0.8

Compare Source

Bug Fixes
  • fall back to default checkbox renderer when extension returns false (#​4023) (e1b6139)

v18.0.7

Compare Source

ai/nanoid (nanoid)

v6.0.1

Compare Source

  • Fixed docs.
oxc-project/oxc (oxfmt)

v0.63.0

Compare Source

v0.62.0

Compare Source

🐛 Bug Fixes

v0.61.0

Compare Source

v0.60.0

Compare Source

v0.59.0

Compare Source

🐛 Bug Fixes
  • 415fe1e oxfmt: Error on ignorePatterns that cannot match files outside the config directory (#​24286) (leaysgur)
sindresorhus/p-limit (p-limit)

v7.3.1

Compare Source


microsoft/playwright (playwright)

v1.62.1

Compare Source

v1.62.0

Compare Source

🧱 New component testing model

Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a

gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) /
unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an
AbortSignal, letting you
cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and locator.screenshot() also accept webp as a type,
where quality 100 (the default) is lossless and lower values use lossy compression.

🧩 Custom test filtering with Reporter.preprocess()

New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}
🔁 Isolated retries

New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate' retries as soon as a worker is free; 'isolated' runs all retries at the end,
one by one in a single worker, to minimize interference with the rest of the suite:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});
New APIs
Browser and Context

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • Only on Tuesday (* * * * 2)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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.

@vercel

vercel Bot commented Jul 21, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
tempad-dev-site Ready Ready Preview Aug 22, 2026 6:06am

Request Review

@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from f0db71c to eccd02b Compare July 21, 2026 21:07
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 21, 2026
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from eccd02b to 677f26e Compare July 22, 2026 07:33
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 677f26e to 3012659 Compare July 23, 2026 03:08
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 3012659 to ba73a52 Compare July 23, 2026 05:57
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from ba73a52 to 2c53bc2 Compare July 23, 2026 11:10
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 2c53bc2 to e73896e Compare July 23, 2026 19:08
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from e73896e to efe5893 Compare July 24, 2026 13:44
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from efe5893 to 7fa711d Compare July 25, 2026 02:33
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 7fa711d to e424402 Compare July 25, 2026 12:34
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from e424402 to f8f6f8b Compare July 26, 2026 16:59
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from f8f6f8b to 925af60 Compare July 26, 2026 20:33
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 925af60 to 3205b3a Compare July 27, 2026 00:31
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 3205b3a to 9427127 Compare July 27, 2026 10:48
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 9427127 to 64c38e6 Compare July 27, 2026 20:33
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 9169115 to 37c1e0e Compare July 30, 2026 21:15
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 37c1e0e to 58df25f Compare July 31, 2026 21:38
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 58df25f to 33200da Compare August 1, 2026 02:00
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 33200da to f279a47 Compare August 3, 2026 01:50
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from f279a47 to fabf8f7 Compare August 3, 2026 16:02
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from fabf8f7 to 69500de Compare August 3, 2026 18:56
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 69500de to cf78429 Compare August 4, 2026 14:53
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from cf78429 to 9d5f93c Compare August 5, 2026 02:40
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 9d5f93c to 77b4bef Compare August 5, 2026 10:00
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 77b4bef to 59d4d5d Compare August 5, 2026 17:39
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 59d4d5d to 985fa09 Compare August 6, 2026 16:56
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 985fa09 to a1b88ba Compare August 7, 2026 10:58
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from a1b88ba to 45b1549 Compare August 7, 2026 18:40
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 45b1549 to bb25281 Compare August 9, 2026 13:15
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