Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 2, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@nestjs/common (source) devDependencies patch 11.1.7 -> 11.1.8 age adoption passing confidence
@nestjs/core (source) devDependencies patch 11.1.7 -> 11.1.8 age adoption passing confidence
@nestjs/platform-express (source) devDependencies patch 11.1.7 -> 11.1.8 age adoption passing confidence
@swc/core (source) devDependencies minor 1.13.5 -> 1.14.0 age adoption passing confidence
@types/express (source) devDependencies patch 5.0.4 -> 5.0.5 age adoption passing confidence
@types/node (source) devDependencies patch 24.9.1 -> 24.9.2 age adoption passing confidence
esbuild devDependencies patch 0.25.11 -> 0.25.12 age adoption passing confidence
oxlint (source) devDependencies minor 1.24.0 -> 1.25.0 age adoption passing confidence
pnpm (source) packageManager minor 10.19.0 -> 10.20.0 age adoption passing confidence
simple-git (source) devDependencies minor 3.28.0 -> 3.30.0 age adoption passing confidence
rolldown (source) devDependencies patch 1.0.0-beta.44 -> 1.0.0-beta.45 age adoption passing confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

nestjs/nest (@​nestjs/common)

v11.1.8

Compare Source

nestjs/nest (@​nestjs/core)

v11.1.8

Compare Source

nestjs/nest (@​nestjs/platform-express)

v11.1.8

Compare Source

v11.1.8 (2025-10-27)

Bug fixes
Committers: 2
swc-project/swc (@​swc/core)

v1.14.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
Refactor

v1.13.21

Compare Source

Bug Fixes
  • (bindings) Improve ARM64 and Alpine Linux (musl) binary loading and validation (#​11173) (f9be4d7)

  • (es/codegen) Encode non-ASCII chars in regex with ascii_only option (#​11155) (b6f4d1f)

  • (es/compat) Apply Array.prototype.slice to arguments in loose spread (#​11122) (66428a2)

  • (es/compat) Handle sparse arrays correctly in generator transforms (#​11131) (9cd4334)

  • (es/compat) Preserve AutoAccessor to prevent panic (#​11150) (101c3b7)

  • (es/decorators) Emit correct metadata for enum parameters (#​11154) (630484f)

  • (es/helpers) Fix SuppressedError argument order in explicit resource management (#​11172) (7693fb9)

  • (es/minifier) Fix inlining of hoisted functions (#​11159) (bd55d30)

  • (es/minifier) Fix inlining of hoisted functions in param (#​11161) (5a4088d)

  • (es/parser) Handle JSX attributes with keyword prefixes correctly (#​11136) (d3cd97f)

  • (es/parser) Support literal computed property names in enums (#​11163) (146c77c)

  • (es/react) Use correct span for @jsxFrag as null literal (#​11139) (9353763)

  • (es/transforms) Check errors::HANDLER.is_set() before failing (#​11130) (1c9ab27)

Features
  • (bindings) Introduce AST Viewer to improve debugging experience (#​10963) (fa3aacc)

  • (es/minifier) Add merge_imports optimization pass to reduce bundle size (#​11151) (a01dee1)

  • (es/parser) Add an error for empty type args for generic (#​11164) (9a1fa84)

Miscellaneous Tasks
  • (claude) Use Sonnet 4.5 instead of Opus (c79e1e5)

  • (deps) Update lru crate from 0.10.1 to 0.16.1 (#​11145) (e347c5b)

Refactor

v1.13.20

Compare Source

Bug Fixes
  • (es/minifier) Preserve __proto__ shorthand property behavior (#​11123) (63dbd1d)

  • (es/parser) Parse (void) correctly as arrow function return type (#​11125) (d3e5dd3)

Performance

v1.13.19

Compare Source

Bug Fixes
Features
Testing
evanw/esbuild (esbuild)

v0.25.12

Compare Source

  • Fix a minification regression with CSS media queries (#​4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#​4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#​4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    
    /* Old output */
    @&#8203;view-transition { navigation: auto; types: check; }
    
    /* New output */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }

    The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.

    This change was contributed by @​yisibl.

  • Trim CSS rules that will never match

    The CSS minifier will now remove rules whose selectors contain :is() and :where() as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:

    /* Original code */
    div:before {
      color: green;
      &.foo {
        color: red;
      }
    }
    
    /* Old output (with --supported:nesting=false --minify) */
    div:before{color:green}:is().foo{color:red}
    
    /* New output (with --supported:nesting=false --minify) */
    div:before{color:green}

    This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as :before. Currently esbuild generates a rule containing :is() in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.

oxc-project/oxc (oxlint)

v1.25.0

Compare Source

🚀 Features
  • bd74603 linter: Add support for vitest/valid-title rule (#​12085) (Tyler Earls)
pnpm/pnpm (pnpm)

v10.20.0

Compare Source

Minor Changes
  • Support --all option in pnpm --help to list all commands #​8628.
Patch Changes
  • When the latest version doesn't satisfy the maturity requirement configured by minimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #​10100.
  • create command should not verify patch info.
  • Set managePackageManagerVersions to false, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #​10063.
steveukx/git-js (simple-git)

v3.30.0

Compare Source

Minor Changes
  • bc77774: Correctly identify current branch name when using git.status in a cloned empty repo.

    Previously git.status would report the current branch name as No. Thank you to @​MaddyGuthridge for identifying this issue.

v3.29.0

Compare Source

Minor Changes
  • 240ec64: Support for absolute paths on Windows when using git.checkIngore, previously Windows would report
    paths with duplicate separators \\\\ between directories.

    Following this change all paths returned from git.checkIgnore will be normalized through node:path,
    this should have no impact on non-windows users where the git binary doesn't wrap absolute paths with
    quotes.

    Thanks to @​Maxim-Mazurok for reporting this issue.

  • 9872f84: Support the use of git.branch(['--show-current']) to limit the branch list to only the current branch.

    Thanks to @​peterbe for pointing out the use-case.

  • 5736bd8: Change to biome for lint and format

rolldown/rolldown (rolldown)

v1.0.0-beta.45

Compare Source

🚀 Features
🐛 Bug Fixes
💼 Other
  • pluginutils: switch to tsc to solve the issue of loading conflicting binary (#​6708) by @​hyf0
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors

Configuration

📅 Schedule: Branch creation - "before 9am on monday" in timezone Asia/Shanghai, 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 enabled auto-merge (squash) November 2, 2025 21:43
@renovate renovate bot merged commit 9d714df into main Nov 2, 2025
6 of 24 checks passed
@renovate renovate bot deleted the renovate/npm-packages branch November 2, 2025 21:47
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.

1 participant