Skip to content

pkg: Update build packages (major)#3999

Closed
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-build
Closed

pkg: Update build packages (major)#3999
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-build

Conversation

@renovate

@renovate renovate Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) 7.29.78.0.1 age adoption passing confidence
@babel/node (source) 7.29.78.0.1 age adoption passing confidence
@babel/preset-flow (source) ^7.18.6^8.0.0 age adoption passing confidence
@babel/runtime (source) ^7.20.0^8.0.0 age adoption passing confidence
@babel/runtime-corejs3 (source) ^7.26.7^8.0.0 age adoption passing confidence
@babel/runtime-corejs3 (source) ^7.26.7^8.0.0 age adoption passing confidence
@babel/runtime-corejs3 (source) ^7.26.10^8.0.0 age adoption passing confidence
@babel/runtime-corejs3 (source) ^7.26.7^8.0.0 age adoption passing confidence
@babel/runtime-corejs3 (source) 7.29.78.0.0 age adoption passing confidence
@linaria/core 6.3.08.0.0 age adoption passing confidence
@linaria/react 6.3.08.0.0 age adoption passing confidence
@rollup/plugin-babel (source) ^6.0.4^7.0.0 age adoption passing confidence
webpack-cli (source) 6.0.17.0.3 age adoption passing confidence

Release Notes

babel/babel (@​babel/cli)

v8.0.1

Compare Source

💥 Breaking Change
  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0

Compare Source

👓 Spec Compliance
💥 Breaking Change
  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser
🐛 Bug Fix
  • babel-generator
  • babel-plugin-transform-modules-systemjs
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
callstack/linaria (@​linaria/core)

v8.0.0

Compare Source

Major Changes
  • 9d49bef: Release Linaria 8 with WyW 2.x stable dependencies and Node.js 22.12+ support.

    Linaria processors now expose WyW 2 static evaluation semantics, allowing the default eval.strategy: "hybrid" mode to resolve statically provable values before falling back to the evaluator. This keeps existing dynamic/runtime-only interpolation support while reducing evaluator work for values that can be resolved from static bindings and imports.

    Performance and stability:

    With the default hybrid mode, a large share of style computation now moves out of runtime-like evaluator execution and into analytical static evaluation. This reduces evaluator startup and module execution work, makes builds less sensitive to runtime-only side effects, and gives the pipeline a more stable foundation for further optimization. It also opens the path for substantially larger speedups as WyW moves more of the pipeline to Rust; see the WyW roadmap for more detail.

    Migration notes:

    • Node.js 22.12 or newer is required.
    • @wyw-in-js/transform is updated to 2.0.2 to avoid duplicate CSS emitted for same-file processor bindings referenced from another processor template inside a local scope and to keep mixed static/processor object-member interpolations statically resolvable.
    • Top-level evaluate config should be migrated to eval.strategy. Use execute for evaluator-only compatibility, keep the default hybrid for static-first resolution with fallback, or use static to reject evaluator fallback.
    • Babel config and Babel resolver plugins are no longer used as an implicit module-resolution fallback during WyW evaluation. Move build-time alias handling to WyW configuration with eval.customResolver, eval.resolver, or staticBindings.
    • CSS rule emission order may change for cascade ties with identical specificity because WyW 2 uses the Oxc/static-first pipeline and can preserve/process imports differently. Make precedence explicit with selector specificity, composition, or source structure where order matters.
Patch Changes

v7.0.0

Compare Source

Major Changes
  • ab11ebb: BREAKING: bump @wyw-in-js/* dependencies to ^1.0.0 (stable).

    This release updates Linaria's build-time evaluation engine (WyW). See https://wyw-in-js.dev/stability for practical guidance and common pitfalls.

    Notes:

    • Linaria 7 requires Node.js 20+ (aligned with WyW 1.x).
    • If you import JSON from code that is evaluated by WyW, add .json to extensions and ensure .json is ignored by evaluation rules (so it's parsed as JSON, not by Babel).
    • Rollup users: WyW 1.x serializes transform() by default (serializeTransform: true). If you hit Rollup "Unexpected early exit" (unresolved plugin promises / deadlock during resolve), set serializeTransform: false (see examples/rollup/rollup.config.mjs).
    • WyW 1.x promotes fully-statically-evaluatable modules to only: ['*'] and can re-evaluate modules when cached exports are incomplete (cached export values might not be reused).
Patch Changes
  • 654d859: Fix TypeScript typings for React 17 projects using the automatic JSX runtime (jsx: react-jsx), so styled.* intrinsic components don’t incorrectly require children.
  • Updated dependencies [ab11ebb]
rollup/plugins (@​rollup/plugin-babel)

v7.1.0

2026-05-29

Features
  • babel: add parallel processing via worker threads (#​1956)

v7.0.0

2026-03-05

Breaking Changes
  • babel!: improve filtering capability & performance (#​1954)
webpack/webpack-cli (webpack-cli)

v7.0.3

Compare Source

Patch Changes
  • Improved CLI startup performance and reduced memory usage. (by @​alexander-akait in #​4765)

  • Reduced CLI startup CPU and memory usage by caching schema-derived argument metadata, registering only the options present in the arguments, and reading config directories once during default-config discovery. (by @​alexander-akait in #​4760)

  • Replace the fastest-levenshtein dependency with a small in-tree implementation used for command/option "did you mean" suggestions. (by @​alexander-akait in #​4762)

v7.0.2

Compare Source

Patch Changes

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
  • The minimum supported version of Node.js is 20.9.0. (by @​alexander-akait in #​4677)

  • Use dynamic import to load webpack.config.js, fallback to interpret only when configuration can't be load by dynamic import. Using dynamic imports allows you to take advantage of Node.js's built-in TypeScript support. (by @​alexander-akait in #​4677)

  • Removed the --node-env argument in favor of the --config-node-env argument. (by @​alexander-akait in #​4677)

  • The version command only output versions right now. (by @​alexander-akait in #​4677)

  • Removed deprecated API, no action required unless you use import cli from "webpack-cli";/const cli = require("webpack-cli");. (by @​alexander-akait in #​4677)

Patch Changes

Configuration

📅 Schedule: (in timezone America/Chicago)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@vercel

vercel Bot commented Jun 23, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
docs-site Ignored Ignored Preview Jun 23, 2026 12:05pm

Request Review

@changeset-bot

changeset-bot Bot commented Jun 23, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 0621e43

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Benchmark

Details
Benchmark suite Current: 0621e43 Previous: 5e50a34 Ratio
normalizeLong 438 ops/sec (±3.57%) 550 ops/sec (±4.44%) 1.26
normalizeLong Values 403 ops/sec (±0.97%) 491 ops/sec (±0.77%) 1.22
normalizeLong Scalar 351 ops/sec (±1.69%) 427 ops/sec (±1.16%) 1.22
normalizeLong Scalar update 801 ops/sec (±0.59%) 1071 ops/sec (±0.49%) 1.34
denormalizeLong 247 ops/sec (±4.36%) 293 ops/sec (±4.59%) 1.19
denormalizeLong Values 221 ops/sec (±4.49%) 264 ops/sec (±4.30%) 1.19
denormalizeLong donotcache 979 ops/sec (±0.08%) 1353 ops/sec (±0.18%) 1.38
denormalizeLong Values donotcache 716 ops/sec (±0.73%) 935 ops/sec (±0.88%) 1.31
denormalizeLong Scalar donotcache 875 ops/sec (±0.18%) 1315 ops/sec (±0.19%) 1.50
denormalizeShort donotcache 500x 1381 ops/sec (±0.12%) 1699 ops/sec (±0.29%) 1.23
denormalizeShort 500x 645 ops/sec (±3.98%) 726 ops/sec (±3.55%) 1.13
denormalizeShort 500x withCache 5058 ops/sec (±0.26%) 9321 ops/sec (±0.23%) 1.84
queryShort 500x withCache 2839 ops/sec (±0.17%) 3958 ops/sec (±0.16%) 1.39
buildQueryKey All 59447 ops/sec (±0.70%) 61603 ops/sec (±0.99%) 1.04
query All withCache 7502 ops/sec (±0.57%) 7561 ops/sec (±0.19%) 1.01
denormalizeLong with mixin Entity 242 ops/sec (±4.30%) 275 ops/sec (±4.09%) 1.14
denormalizeLong withCache 6190 ops/sec (±0.37%) 9293 ops/sec (±0.20%) 1.50
denormalizeLong withCache (Scalar churn) 6217 ops/sec (±0.12%) 9231 ops/sec (±0.14%) 1.48
denormalizeLong Values withCache 4924 ops/sec (±0.77%) 8016 ops/sec (±0.18%) 1.63
denormalizeLong Scalar withCache 6754 ops/sec (±0.96%) 9568 ops/sec (±1.33%) 1.42
denormalizeLong Scalar update withCache 3289 ops/sec (±0.12%) 7106 ops/sec (±0.58%) 2.16
denormalizeLong All withCache 6252 ops/sec (±0.08%) 7536 ops/sec (±0.64%) 1.21
denormalizeLong Query-sorted withCache 7478 ops/sec (±0.58%) 7610 ops/sec (±0.38%) 1.02
denormalizeLongAndShort withEntityCacheOnly 1554 ops/sec (±2.19%) 2062 ops/sec (±0.90%) 1.33
denormalize bidirectional 50 4724 ops/sec (±5.45%) 5777 ops/sec (±4.21%) 1.22
denormalize bidirectional 50 donotcache 39186 ops/sec (±0.17%) 55411 ops/sec (±1.11%) 1.41
getResponse 3543 ops/sec (±0.21%) 7490 ops/sec (±1.75%) 2.11
getResponse (null) 9160209 ops/sec (±0.31%) 12905096 ops/sec (±1.27%) 1.41
getResponse (clear cache) 231 ops/sec (±3.93%) 270 ops/sec (±3.75%) 1.17
getSmallResponse 3082 ops/sec (±1.14%) 4931 ops/sec (±0.33%) 1.60
getSmallInferredResponse 2655 ops/sec (±0.14%) 3568 ops/sec (±0.22%) 1.34
getResponse Collection 3476 ops/sec (±0.48%) 7349 ops/sec (±1.75%) 2.11
get Collection 4179 ops/sec (±0.30%) 6757 ops/sec (±0.34%) 1.62
get Query-sorted 4717 ops/sec (±0.19%) 8295 ops/sec (±0.26%) 1.76
setLong 448 ops/sec (±0.17%) 574 ops/sec (±0.36%) 1.28
setLongWithMerge 251 ops/sec (±0.77%) 320 ops/sec (±0.89%) 1.27
setLongWithSimpleMerge 268 ops/sec (±1.12%) 341 ops/sec (±0.10%) 1.27
setSmallResponse 500x 900 ops/sec (±1.35%) 1143 ops/sec (±0.25%) 1.27

This comment was automatically generated by workflow using github-action-benchmark.

@ntucker ntucker closed this Jun 23, 2026
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