Skip to content

chore(deps): update npm-rolldown#2376

Merged
underfin merged 1 commit intomainfrom
renovate/npm-rolldown
Oct 9, 2024
Merged

chore(deps): update npm-rolldown#2376
underfin merged 1 commit intomainfrom
renovate/npm-rolldown

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Oct 6, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.25.2 -> 7.25.7 age adoption passing confidence
@babel/preset-env (source) 7.25.4 -> 7.25.7 age adoption passing confidence
@babel/preset-typescript (source) 7.24.7 -> 7.25.7 age adoption passing confidence
@napi-rs/cli 3.0.0-alpha.62 -> 3.0.0-alpha.63 age adoption passing confidence
@napi-rs/wasm-runtime (source) 0.2.4 -> 0.2.5 age adoption passing confidence
@types/diff (source) 5.2.2 -> 5.2.3 age adoption passing confidence
@types/lodash (source) 4.17.9 -> 4.17.10 age adoption passing confidence
@types/mocha (source) 10.0.7 -> 10.0.9 age adoption passing confidence
@types/node (source) 22.5.2 -> 22.7.5 age adoption passing confidence
emnapi 1.2.0 -> 1.3.0 age adoption passing confidence
esbuild ^0.23.0 -> ^0.24.0 age adoption passing confidence
npm-rolldown (source) 0.12.2 -> 0.13.2 age adoption passing confidence
oxlint (source) 0.9.2 -> 0.9.10 age adoption passing confidence
pnpm (source) 9.9.0 -> 9.12.1 age adoption passing confidence
remeda (source) 2.14.0 -> 2.15.0 age adoption passing confidence
rollup (source) 4.22.5 -> 4.24.0 age adoption passing confidence
typescript (source) 5.6.2 -> 5.6.3 age adoption passing confidence
vitepress (source) 1.3.4 -> 1.4.0 age adoption passing confidence
vitest (source) 2.1.1 -> 2.1.2 age adoption passing confidence
vue (source) 3.5.10 -> 3.5.11 age adoption passing confidence
web-tree-sitter (source) ^0.23.0 -> ^0.24.0 age adoption passing confidence
zx (source) 8.1.8 -> 8.1.9 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.25.7

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator
🏃‍♀️ Performance
napi-rs/napi-rs (@​napi-rs/cli)

v3.0.0-alpha.63

Compare Source

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/[@​napi-rs/cli](https://redirect.github.com/napi-rs/cli)[@​3](https://redirect.github.com/3).0.0-alpha.62...[@​napi-rs/cli](https://redirect.github.com/napi-rs/cli)[@​3](https://redirect.github.com/3).0.0-alpha.63

napi-rs/napi-rs (@​napi-rs/wasm-runtime)

v0.2.5

Compare Source

toyobayashi/emnapi (emnapi)

v1.3.0

Compare Source

What's Changed

Full Changelog: toyobayashi/emnapi@v1.2.0...v1.3.0

evanw/esbuild (esbuild)

v0.24.0

Compare Source

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#​3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#​3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#​3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#​3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#​3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

rolldown/rolldown (npm-rolldown)

v0.13.2

Compare Source

Features
  • node/advance-chunks: support global fallback for minSize, minShareCount (#​2178) (78c7750)
  • node/advance-chunks: support passing minSize, minShareCount (#​2177) (3c95d30)
  • rust/advance-chunks: support min_share_count option (#​2176) (689cbc2)
  • rust/advance-chunks: support min_size option (#​2175) (1e9c2d9)

v0.13.1

Compare Source

Bug Fixes
Features
  • node/rolldown: support OutputOptions#advancedChunks (#​2167) (851475d)
  • rust/advance-chunks: A module could be catched by multiple match groups (#​2155) (071efd8)
  • rust/advance-chunks: rework with new API deisgn (#​2146) (6339062)
  • rust/advance-chunks: should include matched module's dependencies too (#​2161) (a557b51)
  • rust/advance-chunks: support test using regex (#​2152) (b7b2ac5)
Performance Improvements

v0.13.0

Compare Source

Bug Fixes
Features

Configuration

📅 Schedule: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, 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.

@netlify
Copy link
Copy Markdown

netlify bot commented Oct 6, 2024

Deploy Preview for rolldown-rs canceled.

Name Link
🔨 Latest commit 8123322
🔍 Latest deploy log https://app.netlify.com/sites/rolldown-rs/deploys/6705ba5f4f549a0008f238bf

@renovate renovate bot force-pushed the renovate/npm-rolldown branch 5 times, most recently from 4a67388 to 9f72b0f Compare October 8, 2024 07:45
@renovate renovate bot force-pushed the renovate/npm-rolldown branch from 9f72b0f to 8123322 Compare October 8, 2024 23:03
@underfin underfin added this pull request to the merge queue Oct 9, 2024
Merged via the queue into main with commit 2e3e2ed Oct 9, 2024
@underfin underfin deleted the renovate/npm-rolldown branch October 9, 2024 06:20
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