fix(deps): update all non-major dependencies #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^7.26.0
->^7.26.3
^1.0.2
->^1.0.4
^1.3.0
->^1.6.2
^0.3.5
->^0.3.8
1.1.4
->1.1.8
1.1.4
->1.1.8
^1.9.3
->^1.10.4
^4.5.0
->^4.5.1
^0.3.7
->^0.3.11
^22.10.0
->^22.10.3
^5.0.4
->^5.2.1
2.1.6
->2.1.8
^9.8.1
->^9.9.2
^3.30.1
->^3.39.0
^4.3.7
->^4.4.0
0.24.0
->0.24.2
^0.24.0
->^0.24.2
^9.15.0
->^9.17.0
9.14.2
->9.15.2
^0.14.0
->^0.15.1
^4.27.4
->^4.29.1
^1.81.0
->^1.83.0
^0.2.3
->^0.3.0
^6.0.0
->^6.0.6
^0.8.8
->^0.10.6
2.1.6
->2.1.8
^3.4.0
->^3.5.13
^5.96.1
->^5.97.1
^5.1.0
->^5.2.0
Release Notes
babel/babel (@babel/types)
v7.26.3
Compare Source
🐛 Bug Fix
babel-generator
🏠 Internal
babel-helper-builder-binary-assignment-operator-visitor
,babel-plugin-transform-exponentiation-operator
🏃♀️ Performance
babel-generator
babel-traverse
babel-plugin-transform-modules-commonjs
simplifyAccess
(@liuxingbaoyu)farm-fe/farm (@farmfe/core)
v1.6.2
Compare Source
Patch Changes
43e0ea0
: do not clean up then watch graph monitoring modulev1.6.1
Compare Source
Patch Changes
9e9e94e
: fix namespace fallback when use literal computedv1.6.0
Compare Source
Minor Changes
6b84912
: js plugin supports process module hookPatch Changes
b235a91
: feat: support invalidateModulev1.5.0
Compare Source
Minor Changes
e63b163
: Support object stylescript.importNotUsedAsValues
and reset the default value toremove
Patch Changes
e63b163
: Fix vue lazy compilation transform error when persistent cache enablede63b163
: Fix mixed hmr ws protocol when proxy online host to localhoste63b163
: Fix module_group_graph panic which is caused by inconsistent module.module_groups when persistent cache is enabled80b13ce
: new import meta url runtime & merge electron preload output filese63b163
]v1.4.7
Compare Source
Patch Changes
c6df3d2
: Fix server.hmr.protocol does not workc6df3d2
]v1.4.6
Compare Source
Patch Changes
249e9a2
]jridgewell/gen-mapping (@jridgewell/gen-mapping)
v0.3.8
Compare Source
v0.3.7
Compare Source
v0.3.6
Compare Source
web-infra-dev/rspack (@rspack/cli)
v1.1.8
Security Vulnerability Report
Overview
This is a re-release version of v1.1.6
On 12/19/2024, 02:01 (UTC), we discovered that our npm packages
@rspack/core
and@rspack/cli
were maliciously attacked. The attacker releasedv1.1.7
using a compromised npm token, which contained malicious code. We took immediate action upon discovering the issue.Impact
@rspack/core
and@rspack/cli
v1.1.7
package.json
runs malicious code indist/util/support.js
. See Malicious code analysis for more details.Actions Taken
Upon discovery, we immediately deprecated the affected
v1.1.7
, redirected the npm latest tag tov1.1.6
, and reset all related tokens.Subsequently, we released a secure new version
v1.1.8
.Recommended Actions
If you installed
v1.1.7
during the affected period, please:@rspack/core
and@rspack/cli
to>= 1.1.8
Apology and Commitment
We deeply apologize for the risks caused by this incident. To prevent similar incidents from happening again, we will implement stricter token management protocols and enhance our security review processes.
If you have any questions or discover any suspicious activity, please create an issue or send an email to: [email protected]
We will continue to follow and respond to community feedback.
v1.1.6
Compare Source
What's Changed
Highlights 💡
Reduced memory usage
Rspack's memory usage in large projects has been significantly reduced since v1.1.6:
Related PRs:
RuntimeModule
by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/8620Performance Improvements ⚡
RawSource
with smallerRawStringSource
andRawBufferSource
by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/8629Exciting New Features 🎉
output.trustedTypes.onPolicyCreationFailure
by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/8619getResolve
in external function context by @fi3ework in https://github.com/web-infra-dev/rspack/pull/8577Bug Fixes 🐞
importModule
by @CPunisher in https://github.com/web-infra-dev/rspack/pull/8595Document Updates 📖
CopyRspackPlugin
documentation by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/8621Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v1.1.5...v1.1.6
v1.1.5
Compare Source
What's Changed
Highlights 💡
refactor css loading
Since #7306, we have aligned with webpack's CSS loading strategy, which assumed that CSS finished loading before executing JavaScript, which is not true. Both Rspack and webpack have changed the CSS loading strategy to address this issue.
For more specific details on the original problem, please refer to this link.
Webpack fixed this in https://github.com/webpack/webpack/pull/19021
Rspack fixed this in #8534
Performance Improvements ⚡
Buffer
to zero-copyBufferSlice
by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/8574Exciting New Features 🎉
as
attr support use with dyn trait by @jerrykingxyz in https://github.com/web-infra-dev/rspack/pull/8535process.title
by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/8576Bug Fixes 🐞
Document Updates 📖
Other Changes
Full Changelog: web-infra-dev/rspack@v1.1.4...v1.1.5
swc-project/swc (@swc/core)
v1.10.4
Compare Source
Bug Fixes
(deps) Update cargo (patch) (#9733) (fb2f6e4)
Remove
Caused by: 'failed to parse'
from TS blank space (#9820) (aaeb0ab)v1.10.3
Compare Source
Bug Fixes
v1.10.2
Compare Source
Bug Fixes
(es) Don't panic when wasm bytecheck faild (#9803) (c81be2e)
(es/parser) Do not parse empty stmt after using decl (#9798) (c2696db)
Documentation
v1.10.1
Compare Source
Bug Fixes
Features
module.outFileExtension
(#9784) (e04c7b3)v1.10.0
Compare Source
Bug Fixes
(es/codegen) Use raw value for emitting JSX text (#9762) (b83c44f)
(es/compat) Fix marker for inlined helpers (#9776) (f54ec2c)
(es/minifier) Drop
console
in optional chainings (#9759) (39271ad)(es/minifier) Do not inline into the exact LHS (#9777) (985977b)
Features
(es/minifier) Support
preserve_annotations
of terser (#9775) (6e1c9fd)(typescript) Align
isolatedDeclaration
implementation with tsc (#9715) (0adad25)Apply Wasm-breaking changes (#9771) (ed65eee)
Miscellaneous Tasks
(deps) Update dependency magic-string to v0.30.13 (#9747) (fa80a1e)
(deps) Update dependency magic-string to v0.30.14 (#9764) (6e46a8b)
Refactor
sxzz/test-utils (@sxzz/test-utils)
v0.3.11
Compare Source
🚀 Features
View changes on GitHub
v0.3.10
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.3.9
Compare Source
🚀 Features
expectFilesSnapshot
- by @sxzz (74f31)View changes on GitHub
v0.3.8
Compare Source
🚀 Features
[cwd]
in snapshot - by @sxzz (3a2a2)View changes on GitHub
vitest-dev/vitest (@vitest/ui)
v2.1.8
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.1.7
Compare Source
🐞 Bug Fixes
pnpm.overrides
or yarn resolutions to override thevite
version in thevitest
package - the APIs are compatible.View changes on GitHub
antfu/bumpp (bumpp)
v9.9.2
Compare Source
No significant changes
View changes on GitHub
v9.9.1
Compare Source
🐞 Bug Fixes
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (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.
This PR was generated by Mend Renovate. View the repository job log.