-
Notifications
You must be signed in to change notification settings - Fork 43
fix(deps): update all dependencies #427
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
✅ Deploy Preview for theojs-lumen ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
a5671cc
to
9de94d4
Compare
commit: |
47b2716
to
45ac906
Compare
343b998
to
f11b50c
Compare
fd18117
to
f61f0d3
Compare
f61f0d3
to
8f1b2e5
Compare
790d97a
to
99f402c
Compare
87d2e76
to
eff713b
Compare
eff713b
to
f64730b
Compare
|
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.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
^19.8.1
->^20.1.0
^19.8.1
->^20.0.0
^19.8.1
->^20.0.0
^3.0.0
->^3.0.1
^16.1.6
->^16.2.3
^0.87.0
->^0.93.0
10.16.1
->10.18.0
^5.9.2
->^5.9.3
^7.1.9
->^7.1.15
^1.7.5
->^1.8.0
^3.5.21
->^3.5.22
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v20.1.0
Compare Source
Note: Version bump only for package @commitlint/cli
v20.0.0
Compare Source
Note: Version bump only for package @commitlint/cli
19.8.1 (2025-05-08)
Bug Fixes
conventional-changelog/commitlint (@commitlint/config-conventional)
v20.0.0
Compare Source
Note: Version bump only for package @commitlint/config-conventional
19.8.1 (2025-05-08)
Note: Version bump only for package @commitlint/config-conventional
conventional-changelog/commitlint (@commitlint/types)
v20.0.0
Compare Source
Note: Version bump only for package @commitlint/types
19.8.1 (2025-05-08)
Note: Version bump only for package @commitlint/types
lint-staged/lint-staged (lint-staged)
v16.2.3
Compare Source
Patch Changes
27cd541
Thanks @iiroj! - When using--fail-on-changes
, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.v16.2.2
Compare Source
Patch Changes
#1667
699f95d
Thanks @iiroj! - The backup stash will not be dropped when using--fail-on-changes
and there are errors. When reverting to original state is disabled (via--no-revert
or--fail-on-changes
), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:
v16.2.1
Compare Source
Patch Changes
#1664
8277b3b
Thanks @iiroj! - The built-in TypeScript types have been updated to more closely match the implementation. Notably, the list of staged files supplied to task functions isreadonly string[]
and can't be mutated. Thanks @outslept!#1654
70b9af3
Thanks @iiroj! - This version has been published from GitHub Actions using Trusted Publishing for npm packages.#1659
4996817
Thanks @iiroj! - Fix searching configuration files when the working directory is a subdirectory of a git repository, and there arepackage.json
files in the working directory. This situation might happen when running lint-staged for a single package in a monorepo.#1654
7021f0a
Thanks @iiroj! - Return the caret semver range (^
) to direct dependencies so that future patch and minor versions are allowed. This enables projects to better maintain and deduplicate their own transitive dependencies while not requiring direct updates to lint-staged. This was changed in 16.2.0 after the vulnerability issues withchalk
anddebug
, which were also removed in the same version.Given the recent vulnerabilities in the npm ecosystem, it's best to be very careful when updating dependencies.
v16.2.0
Compare Source
Minor Changes
#1615
99eb742
Thanks @iiroj! - Added a new option--fail-on-changes
to make lint-staged exit with code 1 when tasks modify any files, making theprecommit
hook fail. This is similar to thegit diff --exit-code
option. Using this flag also implies the--no-revert
flag which means any changes made my tasks will be left in the working tree after failing, so that they can be manually staged and the commit tried again.#1611
cd05fd3
Thanks @rlorenzo! - Added a new option--continue-on-error
so that lint-staged will run all tasks to completion even if some of them fail. By default, lint-staded will exit early on the first failure.#1637
82fcc07
Thanks @iiroj! - Internal lint-staged errors are now thrown and visible in the console output. Previously they were caught with the process exit code set to 1, but not logged. This happens when, for example, there's a syntax error in the lint-staged configuration file.#1647
a5ecc06
Thanks @iiroj! - Remove debug as a dependency due to recent malware issue; read more at debug-js/debug#1005. Because of this, theDEBUG
environment variable is no longer supported — use the--debug
to enable debugging#1636
8db2717
Thanks @iiroj! - Added a new option--hide-unstaged
so that lint-staged will hide all unstaged changes to tracked files before running tasks. The changes will be applied back after running the tasks. Note that the combination of flags--hide-unstaged --no-hide-partially-staged
isn't meaningful and behaves the same as just--hide-unstaged
.Thanks to @ItsNickBarry for the idea and initial implementation in #1552.
#1648
7900b3b
Thanks @iiroj! - Remove lilconfig to reduce reliance on third-party dependencies. It was used to find possible config files outside of those tracked in Git, including from the parent directories. This behavior has been moved directly into lint-staged and should work about the same.Patch Changes
#1633
7f9e485
Thanks @dependabot! - Bumps listr2 from 9.0.3 to 9.0.4.#1626
99d5a9b
Thanks @iiroj! - Due to recent phishing attacks, for example chalk@5.6.1 was released with malware. To avoid lint-staged's users being at risk the direct dependencies are pinned to exact versions, instead of allowing future patch versions with the caret (^
) range.#1588
035bbf2
Thanks @outslept! - Increase performance by listing staged files and searching for configuration concurrently.#1645
deba3ad
Thanks @iiroj! - Remove chalk as a dependency due to recent malware issue; read more at chalk/chalk#656.If you are having trouble with ANSI color codes when using lint-staged, you can try setting either
FORCE_COLOR=true
orNO_COLOR=true
env variables.oxc-project/oxc (oxc-minify)
v0.92.0
🐛 Bug Fixes
2f9e16d
napi/minifier, napi/transformer: Rename CommonJS file to.cjs
(#14047) (overlookmotel)🚜 Refactor
cc0019f
napi: Move scripts intoscripts
directory (#14048) (overlookmotel)v0.91.0
💥 BREAKING CHANGES
6fcb0d0
minifier: [BREAKING] Receive supported engines instead of ecmascript versions (#13933) (sapphi-red)🐛 Bug Fixes
21bbf95
napi: Rebuild bindings file for NAPI packages (#13889) (overlookmotel)💼 Other
fb347da
crates: V0.91.0 (#13961) (Boshen)v0.90.0
🚀 Features
b52389a
node: Bumpengines
field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)🐛 Bug Fixes
9796ec1
napi: Fix binding files (Boshen)pnpm/pnpm (pnpm)
v10.18.0
Compare Source
Minor Changes
Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.
Added configuration options for warning thresholds:
fetchWarnTimeoutMs
andfetchMinSpeedKiBps
.Warning messages are displayed when requests exceed time thresholds or fall below speed minimums
Related PR: #10025.
Patch Changes
minimumReleaseAge
configuration #10030.cleanupUnusedCatalogs
configuration when removing dependent packages.scriptShell
is set tofalse
#8748.pnpm dlx
should not fail whenminimumReleaseAge
is set #10037.v10.17.1
Compare Source
Patch Changes
minimumReleaseAge
setting, print this information out in the error message #9974.state.json
creation path when executingpnpm patch
in a workspace project #9733.minimumReleaseAge
is set and thelatest
tag is not mature enough, prefer a non-deprecated version as the newlatest
#9987.v10.17.0
Compare Source
Minor Changes
The
minimumReleaseAgeExclude
setting now supports patterns. For instance:Related PR: #9984.
Patch Changes
minimumReleaseAge
check, when the package is requested by exact version and the packument is loaded from cache #9978.minimumReleaseAge
is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #9979.microsoft/TypeScript (typescript)
v5.9.3
Compare Source
vitejs/rolldown-vite (vite)
v7.1.15
Compare Source
Bug Fixes
Miscellaneous Chores
create-react-app
license (#20865) (166a178)v7.1.14
Compare Source
Features
generatedCode: 'es2015'
(4cfe8e1)Bug Fixes
Performance Improvements
isEntirelyImport
(ac1ceaf)Documentation
Miscellaneous Chores
v7.1.13
Compare Source
Features
import.meta.hot.invalidate
(ebd134f)v7.1.12
Compare Source
Features
Bug Fixes
emitAssets: true
whensharedConfigBuild: true
(#20787) (4c4583c)import.meta.hot.prune
callbacks to complete before running other HMRs (#20698) (98a3484)v7.1.11
Compare Source
Bug Fixes
$
variables correctly (#20761) (7e8e004)optimizeDeps.rollupOptions.transforms
for stable optimizer hash (#417) (efed40f)skipLibCheck
isfalse
(#20755) (cc54e29)Miscellaneous Chores
v7.1.10
Compare Source
Features
okineadev/vitepress-plugin-llms (vitepress-plugin-llms)
v1.8.0
Compare Source
🚀 Features
View changes on GitHub
vuejs/core (vue)
v3.5.22
Compare Source
Bug Fixes
@vue-ignore
in runtime type resolution (#13906) (ba7f7f9)PatchFlags.BAIL
for slot when props are present (#13907) (5358bca), closes #13904h
helper (#13841) (75220c7)forceReflow
on the correct document (fix #13849) (#13853) (1be5ddf)never
instead of{}
(#13915) (8620a61), closes #11564Features
shadowRoot
in custom elements (#12965) (47e628d), closes #12964Reverts
Configuration
📅 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.