chore(deps): update devdependencies (non-major)#2294
Merged
JammingBen merged 2 commits intomainfrom Apr 7, 2026
Merged
Conversation
99519a8 to
4562c4d
Compare
4562c4d to
dbbafa6
Compare
JammingBen
approved these changes
Apr 7, 2026
openclouders
pushed a commit
that referenced
this pull request
Apr 7, 2026
chore(deps): update devdependencies (non-major)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
1.14.0→1.14.125.5.0→25.5.24.1.3→4.1.410.1.0→10.2.01.98.0→1.99.03.33.0→3.35.24.0.0→4.0.1Release Notes
module-federation/vite (@module-federation/vite)
v1.14.1Compare Source
What's Changed
New Contributors
Full Changelog: module-federation/vite@1.14.0...1.14.1
browserslist/browserslist-useragent-regexp (browserslist-useragent-regexp)
v4.1.4Compare Source
Bug Fixes
4.1.3 (2024-04-10)
Bug Fixes
4.1.2 (2024-04-05)
Bug Fixes
4.1.1 (2023-12-24)
Bug Fixes
eslint/eslint (eslint)
v10.2.0Compare Source
Features
586ec2ffeat: Addmeta.languagessupport to rules (#20571) (Copilot)14207defeat: addTemporaltono-obj-calls(#20675) (Pixel998)bbb2c93feat: add Temporal to ES2026 globals (#20672) (Pixel998)Bug Fixes
542cb3efix: update first-party dependencies (#20714) (Francesco Trotta)Documentation
a2af743docs: addlanguageto configuration objects (#20712) (Francesco Trotta)845f23fdocs: Update README (GitHub Actions Bot)5fbcf59docs: removesourceTypefrom ts playground link (#20477) (Tanuj Kanti)8702a47docs: Update README (GitHub Actions Bot)ddeadeddocs: Update README (GitHub Actions Bot)2b44966docs: add Major Releases section to Manage Releases (#20269) (Milos Djermanovic)eab65c7docs: updateeslintversions in examples (#20664) (루밀LuMir)3e4a299docs: update ESM Dependencies policies with note for own-usage packages (#20660) (Milos Djermanovic)Chores
8120e30refactor: extract no unmodified loop condition (#20679) (kuldeep kumar)46e8469chore: update dependency markdownlint-cli2 to ^0.22.0 (#20697) (renovate[bot])01ed3aatest: add unit tests for unicode utilities (#20622) (Manish chaudhary)811f493ci: remove--legacy-peer-depsfrom types integration tests (#20667) (Milos Djermanovic)6b86fcfchore: update dependency npm-run-all2 to v8 (#20663) (renovate[bot])632c4f8chore: addprettierupdate commit to.git-blame-ignore-revs(#20662) (루밀LuMir)b0b0f21chore: update dependency eslint-plugin-regexp to ^3.1.0 (#20659) (Milos Djermanovic)228a2ddchore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (#20661) (Milos Djermanovic)3ab4d7etest: Add tests for eslintrc-style keys (#20645) (kuldeep kumar)sass/dart-sass (sass)
v1.99.0Compare Source
Add support for parent selectors (
&) at the root of the document. These areemitted as-is in the CSS output, where they're interpreted as the scoping
root.
User-defined functions named
calcorclampare no longer forbidden. Ifsuch a function exists without a namespace in the current module, it will be
used instead of the built-in
calc()orclamp()function.User-defined functions whose names begin with
-and end with-expression,-url,-and,-or, or-notare no longer forbidden. These wereoriginally intended to match vendor prefixes, but in practice no vendor
prefixes for these functions ever existed in real browsers.
User-defined functions named
EXPRESSION,URL, andELEMENT, those thatbegin with
-and end with-ELEMENT, as well as the same names with somelowercase letters are now deprecated, These are names conflict with plain CSS
functions that have special syntax.
See the Sass website for details.
In a future release, calls to functions whose names begin with
-and endwith
-expressionand-urlwill no longer have special parsing. For now,these calls are deprecated if their behavior will change in the future.
See the Sass website for details.
Calls to functions whose names begin with
-and end with-progid:...aredeprecated.
See the Sass website for details.
steveukx/git-js (simple-git)
v3.35.2Compare Source
Patch Changes
0cf9d8c: Improvements for mono-repo publishing pipeline0cf9d8c]v3.35.1Compare Source
Patch Changes
0de400e: Update monorepo version handling during publish0de400e]v3.35.0Compare Source
Minor Changes
3d8708b: Updating publish configPatch Changes
3d8708b]v3.34.0Compare Source
Minor Changes
2b68331: Revised dependency tree to add helper modules as dependencies in mainsimple-gitPatch Changes
2e1f51c: Enhances scanning of arguments before passing on to the spawnedchild_process.Caters for
-cflags prefixing thegittask (used when setting global inline config) and suffixing with either-c,--configor--config-env. Detectsgit configoperations that write to the configuration.Updated dependencies [
2e1f51c]sapphi-red/vite-plugin-static-copy (vite-plugin-static-copy)
v4.0.1Compare Source
Patch Changes
#249
c6bf44cThanks @sapphi-red! - Fix absolutedestpaths being nested under the output directoryWhen
destwas an absolute path and the source file had a directory component (structured output), the path was incorrectly converted to a relative path, causing files to be nested under the build output directory instead of being copied to the specified absolute path.Before:
/home/user/my-repo/dist/home/user/my-repo/bar/foo/foo.txtAfter:
/home/user/my-repo/bar/foo/foo.txt#247
d3af79eThanks @sapphi-red! - Fixrename.stripBaseto work correctly with../pathsPreviously,
stripBasecounted..as directory segments, causing incorrect output paths when copying from parent directories.Before:
dist/src/pages/events/test.htmlAfter:
dist/events/test.htmlBefore:
dist/src/pages/events/test.htmlAfter:
dist/test.htmlConfiguration
📅 Schedule: 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 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.