Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2025

This PR contains the following updates:

Package Change Age Confidence
@eslint/js (source) 9.39.1 -> 9.39.2 age confidence
@types/node (source) 24.10.2 -> 24.10.4 age confidence
@typescript-eslint/eslint-plugin (source) 8.49.0 -> 8.50.0 age confidence
@typescript-eslint/parser (source) 8.49.0 -> 8.50.0 age confidence
@typescript/native-preview (source) 7.0.0-dev.20251206.1 -> 7.0.0-dev.20251217.1 age confidence
cypress (source) 15.7.1 -> 15.8.0 age confidence
esbuild 0.27.1 -> 0.27.2 age confidence
eslint (source) 9.39.1 -> 9.39.2 age confidence
pnpm (source) 10.25.0 -> 10.26.0 age confidence

Release Notes

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.50.0

Compare Source

🚀 Features
  • eslint-plugin: [no-useless-default-assignment] add rule (#​11720)
❤️ Thank You
  • Josh Goldberg ✨
  • Ulrich Stark

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.50.0

Compare Source

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

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

microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251217.1

Compare Source

v7.0.0-dev.20251216.1

Compare Source

v7.0.0-dev.20251215.1

Compare Source

v7.0.0-dev.20251214.1

Compare Source

v7.0.0-dev.20251213.1

Compare Source

v7.0.0-dev.20251212.1

Compare Source

v7.0.0-dev.20251211.1

Compare Source

v7.0.0-dev.20251210.1

Compare Source

v7.0.0-dev.20251209.1

Compare Source

v7.0.0-dev.20251208.1

Compare Source

v7.0.0-dev.20251207.1

Compare Source

cypress-io/cypress (cypress)

v15.8.0

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#15-8-0

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).

eslint/eslint (eslint)

v9.39.2

Compare Source

pnpm/pnpm (pnpm)

v10.26.0

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 12:59 AM ( * 0 * * * ) in timezone Asia/Tokyo, 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 added the dependencies Pull requests that update a dependency file label Dec 23, 2025
@renovate renovate bot force-pushed the renovate/root-update-dependencies branch 2 times, most recently from ad737e2 to 1e85256 Compare December 24, 2025 04:12
@renovate renovate bot changed the title chore(deps): update [root] update dependencies fix(deps): update [root] update dependencies Dec 24, 2025
@renovate renovate bot force-pushed the renovate/root-update-dependencies branch from 1e85256 to 6378f2e Compare December 24, 2025 08:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

Development

Successfully merging this pull request may close these issues.

1 participant