Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 21, 2025

This PR contains the following updates:

Package Change Age Confidence
@vitest/eslint-plugin ^1.5.2 -> ^1.5.4 age confidence
browserslist 4.28.0 -> 4.28.1 age confidence
caniuse-lite ^1.0.30001760 -> ^1.0.30001761 age confidence
esbuild ^0.27.1 -> ^0.27.2 age confidence

Release Notes

vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.5.4

Compare Source

No significant changes

    View changes on GitHub
browserslist/browserslist (browserslist)

v4.28.1

Compare Source

  • Removed Baseline warning since we have it own warning.
browserslist/caniuse-lite (caniuse-lite)

v1.0.30001761

Compare Source

evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with #/ (#​4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#​4357, #​4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    
    /* Old output (with --target=chrome110) */
    main {
      mask: url(x.png) center/5rem no-repeat;
    }
    
    /* New output (with --target=chrome110) */
    main {
      -webkit-mask: url(x.png) center/5rem no-repeat;
      mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#​4176, #​4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    
    // New output (with --minify)
    x===0?foo():bar();
  • Forbid using declarations inside switch clauses (#​4323)

    This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced using declarations. These were previously allowed inside case and default clauses in switch statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.

    Here is an example of code that is no longer allowed:

    switch (mode) {
      case 'read':
        using readLock = db.read()
        return readAll(readLock)
    
      case 'write':
        using writeLock = db.write()
        return writeAll(writeLock)
    }

    That code will now have to be modified to look like this instead (note the additional { and } block statements around each case body):

    switch (mode) {
      case 'read': {
        using readLock = db.read()
        return readAll(readLock)
      }
      case 'write': {
        using writeLock = db.write()
        return writeAll(writeLock)
      }
    }

    This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).


Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, 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.

@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Nov 21, 2025
@renovate renovate bot requested a review from prisis as a code owner November 21, 2025 13:55
@coderabbitai
Copy link

coderabbitai bot commented Nov 21, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Contributor

github-actions bot commented Nov 21, 2025

Thank you for following the naming conventions! 🙏

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from f7ffad8 to 836c03d Compare November 24, 2025 09:33
@socket-security
Copy link

socket-security bot commented Nov 24, 2025

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 3 times, most recently from a54b0f8 to e97b096 Compare December 1, 2025 09:02
@socket-security
Copy link

socket-security bot commented Dec 1, 2025

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 5 times, most recently from 021d18a to 236c8bf Compare December 10, 2025 10:33
@renovate renovate bot changed the title fix(deps): update patch updates (patch) fix(deps): update dependency browserslist to v4.28.1 Dec 10, 2025
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 7 times, most recently from e819874 to 426fa3c Compare December 15, 2025 11:02
Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 426fa3c to d1a1cb9 Compare December 22, 2025 09:16
@renovate renovate bot changed the title fix(deps): update dependency browserslist to v4.28.1 fix(deps): update patch updates (patch) Dec 22, 2025
@renovate renovate bot changed the title fix(deps): update patch updates (patch) fix(deps): update patch updates (patch) - autoclosed Dec 22, 2025
@renovate renovate bot closed this Dec 22, 2025
@renovate renovate bot deleted the renovate/patch-patch-updates branch December 22, 2025 13:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

c: dependencies Pull requests that adds/updates a dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant