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

chore(deps): update all non-major dependencies #3

Merged
merged 1 commit into from
Nov 21, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@farmfe/core ^1.3.29 -> ^1.4.2 age adoption passing confidence
@​farmfe/plugin-react ^1.2.4 -> ^1.2.6 age adoption passing confidence
@rsbuild/core (source) ^1.1.0 -> ^1.1.4 age adoption passing confidence
@rspack/cli (source) ^1.1.0 -> ^1.1.3 age adoption passing confidence
@rspack/core (source) ^1.1.0 -> ^1.1.3 age adoption passing confidence
@umijs/mako ^0.9.2 -> ^0.9.6 age adoption passing confidence
mini-css-extract-plugin ^2.9.1 -> ^2.9.2 age adoption passing confidence
next (source) ^14.2.17 -> ^14.2.18 age adoption passing confidence
pnpm (source) 9.12.2 -> 9.14.2 age adoption passing confidence
puppeteer (source) ^23.6.0 -> ^23.9.0 age adoption passing confidence
vite (source) ^6.0.0-beta.4 -> ^6.0.0-beta.10 age adoption passing confidence
webpack ^5.95.0 -> ^5.96.1 age adoption passing confidence

Release Notes

farm-fe/farm (@​farmfe/core)

v1.4.2

Compare Source

Patch Changes
  • 3085d64: judgement node environment with check input value

v1.4.1

Compare Source

Patch Changes

v1.4.0

Compare Source

Minor Changes
  • 7d86847: Support tree shake import * as ns from './xxx'. ./xxx can be tree-shaken if following rules are met:

    • ns is used as member prop, example: ns.a
    • ns is used as member literal computed, example: ns['a']

    For example:

    // b.ts
    export const a = 1;
    export const b = 2;
    
    // a.ts
    import * as ns from "./b";
    
    console.log(ns.a);
    console.log(ns["a"]);

    After tree shaking, the result will be:

    // b.ts
    export const a = 1; // a is preserved and b is removed.
    
    // a.ts
    import * as ns from "./b";
    console.log(ns.a);
    console.log(ns["a"]);

    But if ns is met rules above, then all the fields will be preserved, example:

    // b.ts
    export const a = 1;
    export const b = 2;
    
    // a.ts
    import * as ns from "./b";
    
    console.log(ns);

    After tree shaking, the result will be:

    // b.ts
    export const a = 1; // both a and b are preserved
    export const b = 2;
    // a.ts
    import * as ns from "./b";
    console.log(ns.a);
    console.log(ns["a"]);

v1.3.34

Compare Source

Patch Changes
  • 8853c4a: fix bundle global variable preserve

v1.3.33

Compare Source

Patch Changes

v1.3.32

Compare Source

Patch Changes
  • 3ae860b: fix plugin circle call between Runtime & LazyCompilation, fix runtime & lazyCompilation conflict

v1.3.31

Compare Source

Patch Changes
  • c078cd3: fix #​1499 wrong defaults of side effects of vite plugin adapter hook resolveId
  • c078cd3: Fix wrong esm introp helper order when using top level await

v1.3.30

Compare Source

Patch Changes
  • 3651244: add assets mode for asset path generate
  • 2b9b2e3: Fix async module detection wrong with cyclic dependencies
  • b3a7caf: fix css url resolving issue
web-infra-dev/rsbuild (@​rsbuild/core)

v1.1.4

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.1.3...v1.1.4

v1.1.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.1.2...v1.1.3

v1.1.2

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.1.1...v1.1.2

v1.1.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rsbuild@v1.1.0...v1.1.1

web-infra-dev/rspack (@​rspack/cli)

v1.1.3

Compare Source

What's Changed

Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v1.1.2...v1.1.3

v1.1.2

Compare Source

What's Changed

💡 Highlights

DefinePlugin destructuring optimization

Rspack v1.1.2 improved the output of DefinePlugin by eliminating unused object properties from the final bundle, resulting in a smaller output size:

Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.1.1...v1.1.2

v1.1.1

Compare Source

💡 Highlights
Support for DllPlugin

This release introduced rspack.DllPlugin and rspack.DllReferencePlugin in #​8296 to be compatible with webpack's DLLPlugin and DllReferencePlugin.

DLL plugins help you improve build performance by separating rarely-changed code (like vendor dependencies) into separate bundles. The term "DLL" stands for Dynamic-link library. See here for more information.

What's Changed
Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.1.0...v1.1.1

umijs/mako (@​umijs/mako)

v0.9.6

Compare Source

2024-11-14

v0.9.5

Compare Source

2024-11-07

v0.9.4

Compare Source

2024-11-04

v0.9.3

Compare Source

2024-10-25

webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.9.2

Compare Source

vercel/next.js (next)

v14.2.18

Compare Source

pnpm/pnpm (pnpm)

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided [#&#820

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), 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.

@chenjiahan chenjiahan merged commit 63f5c14 into main Nov 21, 2024
1 check failed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch November 21, 2024 13:14
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