Skip to content

chore(deps): update npm-rolldown #2241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 27, 2024
Merged

chore(deps): update npm-rolldown #2241

merged 2 commits into from
Sep 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/vscode-icons 1.2.1 -> 1.2.2 age adoption passing confidence
@rollup/plugin-commonjs (source) 26.0.1 -> 26.0.3 age adoption passing confidence
@rollup/plugin-node-resolve (source) 15.2.3 -> 15.3.0 age adoption passing confidence
@types/lodash (source) 4.17.7 -> 4.17.9 age adoption passing confidence
@types/mocha (source) 10.0.7 -> 10.0.8 age adoption passing confidence
@types/node (source) 22.5.2 -> 22.7.3 age adoption passing confidence
cspell (source) 8.14.2 -> 8.14.4 age adoption passing confidence
esbuild ^0.23.0 -> ^0.24.0 age adoption passing confidence
execa 9.3.1 -> 9.4.0 age adoption passing confidence
husky 9.1.5 -> 9.1.6 age adoption passing confidence
npm-rolldown (source) 0.12.2 -> 0.13.2 age adoption passing confidence
npm-run-all2 6.2.2 -> 6.2.3 age adoption passing confidence
oxlint (source) 0.9.2 -> 0.9.8 age adoption passing confidence
pnpm (source) 9.9.0 -> 9.11.0 age adoption passing confidence
remeda (source) 2.12.0 -> 2.14.0 age adoption passing confidence
rollup (source) 4.21.2 -> 4.22.4 age adoption passing confidence
terser (source) 5.31.6 -> 5.34.0 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence
vite (source) 5.4.3 -> 5.4.8 age adoption passing confidence
vitepress-plugin-group-icons 1.1.0 -> 1.2.4 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.1 age adoption passing confidence
vue (source) 3.5.3 -> 3.5.9 age adoption passing confidence
vue-router 4.4.3 -> 4.4.5 age adoption passing confidence
zod-to-json-schema 3.23.2 -> 3.23.3 age adoption passing confidence
zx (source) 8.1.5 -> 8.1.8 age adoption passing confidence

Release Notes

rollup/plugins (@​rollup/plugin-commonjs)

v26.0.3

2024-09-23

Updates

v26.0.2

2024-09-23

Bugfixes
  • fix: replace top-level this with exports name (#​1618)
rollup/plugins (@​rollup/plugin-node-resolve)

v15.3.0

2024-09-23

Features
  • feat: allow preferBuiltins to be a function (#​1694)

v15.2.4

2024-09-22

Updates
  • chore: remove is-builtin-module (#​1735)
streetsidesoftware/cspell (cspell)

v8.14.4

Compare Source

v8.14.3

Compare Source

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.

sindresorhus/execa (execa)

v9.4.0

Compare Source

Features

  • We've created a separate package called nano-spawn. It is similar to Execa but with fewer features, for a much smaller package size. More info.

Bug fixes

Documentation

typicode/husky (husky)

v9.1.6

Compare Source

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.

Copy link

netlify bot commented Sep 15, 2024

Deploy Preview for rolldown-rs canceled.

Name Link
🔨 Latest commit 5cc97a9
🔍 Latest deploy log https://app.netlify.com/sites/rolldown-rs/deploys/66f66efc4485ed00085f80ad

@renovate renovate bot force-pushed the renovate/npm-rolldown branch 4 times, most recently from c3eaedb to e018744 Compare September 17, 2024 01:56
@hyf0 hyf0 marked this pull request as draft September 17, 2024 06:52
@renovate renovate bot force-pushed the renovate/npm-rolldown branch 22 times, most recently from acb58d6 to f264a3c Compare September 24, 2024 12:08
@renovate renovate bot force-pushed the renovate/npm-rolldown branch from f264a3c to ad16e39 Compare September 25, 2024 01:38
@renovate renovate bot force-pushed the renovate/npm-rolldown branch 6 times, most recently from fe78cf2 to 4516065 Compare September 26, 2024 20:01
@renovate renovate bot force-pushed the renovate/npm-rolldown branch from e9287d1 to d2a5477 Compare September 27, 2024 06:18
@IWANABETHATGUY
Copy link
Member

related to vitest-dev/vitest#6339 (comment)

]
`,
)
expect(chunk.fileName).toMatch('main-!~{000}~.js')
Copy link
Member

@IWANABETHATGUY IWANABETHATGUY Sep 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The trick not working here since it the switch branch is not mutually exclusive during the loop, so using toMatch instead due to it is static.

@IWANABETHATGUY IWANABETHATGUY marked this pull request as ready for review September 27, 2024 07:54
Copy link
Contributor Author

renovate bot commented Sep 27, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@IWANABETHATGUY IWANABETHATGUY added this pull request to the merge queue Sep 27, 2024
Merged via the queue into main with commit 4e0f8ea Sep 27, 2024
36 checks passed
@IWANABETHATGUY IWANABETHATGUY deleted the renovate/npm-rolldown branch September 27, 2024 11:44
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
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy