Skip to content
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

build: update all non-major dependencies #29966

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented Mar 28, 2025

This PR contains the following updates:

Package Type Update Change
esbuild optionalDependencies patch 0.25.1 -> 0.25.2
esbuild dependencies patch 0.25.1 -> 0.25.2
esbuild devDependencies patch 0.25.1 -> 0.25.2
esbuild-wasm dependencies patch 0.25.1 -> 0.25.2
esbuild-wasm devDependencies patch 0.25.1 -> 0.25.2
rollup (source) dependencies minor 4.37.0 -> 4.38.0
rollup (source) devDependencies minor 4.37.0 -> 4.38.0
undici (source) devDependencies minor 7.5.0 -> 7.6.0
verdaccio (source) devDependencies patch 6.1.0 -> 6.1.1

Release Notes

evanw/esbuild (esbuild)

v0.25.2

Compare Source

  • Support flags in regular expressions for the API (#​4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#​4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!"
    });
    
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!": null
    });
  • Basic support for index source maps (#​3439, #​4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

rollup/rollup (rollup)

v4.38.0

Compare Source

2025-03-29

Features
  • Support .filter option in resolveId, load and transform hooks (#​5882)
Pull Requests
nodejs/undici (undici)

v7.6.0

Compare Source

What's Changed
New Contributors

Full Changelog: nodejs/undici@v7.5.0...v7.6.0

verdaccio/verdaccio (verdaccio)

v6.1.1

Compare Source

6.1.1 (2025-03-30)
Bug Fixes

Configuration

📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, 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 has been generated by Renovate Bot.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Mar 28, 2025
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Mar 28, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from d6b1b51 to f284106 Compare March 29, 2025 07:02
@angular-robot angular-robot changed the title build: update dependency undici to v7.6.0 build: update all non-major dependencies Mar 29, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from f284106 to 551c30f Compare March 30, 2025 18:03
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from 551c30f to 716edc9 Compare March 30, 2025 20:02
@alan-agius4 alan-agius4 merged commit 088a4cb into angular:main Mar 31, 2025
30 checks passed
@angular-robot angular-robot deleted the ng-renovate/all-minor-patch branch March 31, 2025 06:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: minor This PR is targeted for the next minor release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants