Skip to content

Update all non-major dependencies #43

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 1 commit into from
Mar 20, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 3, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@changesets/cli (source) 2.27.11 -> 2.28.1 age adoption passing confidence devDependencies minor
@types/node (source) 20.17.16 -> 20.17.24 age adoption passing confidence devDependencies patch
YutaUra/renovate-changeset-action v0.0.22 -> v0.0.26 age adoption passing confidence action patch
actions/create-github-app-token v1.11.1 -> v1.11.7 age adoption passing confidence action patch
actions/setup-node v4.1.0 -> v4.3.0 age adoption passing confidence action minor
changesets/action v1.4.9 -> v1.4.10 age adoption passing confidence action patch
int128/wait-for-workflows-action v1.28.0 -> v1.37.0 age adoption passing confidence action minor
node (source) 20.18.2 -> 20.19.0 age adoption passing confidence engines minor
node (source) 20.18.2 -> 20.19.0 age adoption passing confidence minor
pnpm (source) 9.15.4 -> 9.15.9 age adoption passing confidence packageManager patch
tsup (source) 8.3.5 -> 8.4.0 age adoption passing confidence devDependencies minor
typescript (source) 5.7.3 -> 5.8.2 age adoption passing confidence devDependencies minor
vitest (source) 2.1.8 -> 2.1.9 age adoption passing confidence devDependencies patch

Release Notes

changesets/changesets (@​changesets/cli)

v2.28.1

Compare Source

Patch Changes

v2.28.0

Compare Source

Minor Changes
Patch Changes

v2.27.12

Compare Source

Patch Changes
YutaUra/renovate-changeset-action (YutaUra/renovate-changeset-action)

v0.0.26

Compare Source

Patch Changes

v0.0.25

Compare Source

Patch Changes

v0.0.24

Compare Source

Patch Changes

v0.0.23

Compare Source

Patch Changes
actions/create-github-app-token (actions/create-github-app-token)

v1.11.7

Compare Source

v1.11.6

Compare Source

Bug Fixes
  • deps: bump the production-dependencies group with 2 updates (#​210) (1ff1dea)

v1.11.5

Compare Source

Bug Fixes

v1.11.4

Compare Source

Bug Fixes

v1.11.3

Compare Source

Bug Fixes

v1.11.2

Compare Source

Bug Fixes
actions/setup-node (actions/setup-node)

v4.3.0

Compare Source

v4.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4...v4.2.0

changesets/action (changesets/action)

v1.4.10

Compare Source

Patch Changes
  • #​448 8b16070 Thanks @​bluwy! - Use full git email (41898282+github-actions[bot]@​users.noreply.github.com) for github-actions bot when making commits
int128/wait-for-workflows-action (int128/wait-for-workflows-action)

v1.37.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.36.0...v1.37.0

v1.36.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.35.0...v1.36.0

v1.35.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.34.0...v1.35.0

v1.34.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.33.0...v1.34.0

v1.33.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.32.0...v1.33.0

v1.32.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.31.0...v1.32.0

v1.31.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.30.0...v1.31.0

v1.30.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.29.0...v1.30.0

v1.29.0

Compare Source

What's Changed

Full Changelog: int128/wait-for-workflows-action@v1.28.0...v1.29.0

nodejs/node (node)

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 force-pushed the renovate/all-minor-patch branch 5 times, most recently from d9e8652 to c241e42 Compare February 7, 2025 18:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from f1ef40e to 5fc642f Compare February 17, 2025 03:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 793d0e9 to e8531e6 Compare February 27, 2025 09:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 70f709b to feae3a2 Compare March 6, 2025 19:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d0efc86 to e73b5fa Compare March 11, 2025 10:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5aa2993 to 3217b49 Compare March 19, 2025 06:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3217b49 to ad345d2 Compare March 20, 2025 07:13
@renovate renovate bot merged commit 324b0ea into main Mar 20, 2025
5 of 6 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 20, 2025 07:14
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.

0 participants