-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix(deps): update all non-major dependencies #68
base: main
Are you sure you want to change the base?
Conversation
|
WalkthroughThe recent updates involve an upgrade to the Node.js version specified in the Changes
Possibly related issues
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
🚧 Files skipped from review as they are similar to previous changes (2)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
895a91f
to
bf4a3ac
Compare
c5267b4
to
c1b0d23
Compare
c1b0d23
to
7d869f9
Compare
7d869f9
to
529a64d
Compare
|
5cc4e31
to
81a5ad9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Additional comments not posted (16)
.nvmrc (1)
1-1
: Ensure compatibility with Node.js version 20.16.0.The Node.js version has been updated from
20
to20.16.0
. Ensure that all dependencies and the project itself are compatible with this specific version.package.json (15)
63-63
: Update @vitest/coverage-istanbul to version 1.6.0.The
@vitest/coverage-istanbul
package has been updated from^1.2.2
to^1.6.0
. Ensure that the updated version is compatible with the project.
60-60
: Update @mheob/prettier-config to version 3.3.1.The
@mheob/prettier-config
package has been updated from^3.2.0
to^3.3.1
. Ensure that the updated version is compatible with the project.
55-55
: Update @changesets/cli to version 2.27.7.The
@changesets/cli
package has been updated from^2.27.1
to^2.27.7
. Ensure that the updated version is compatible with the project.
70-70
: Update tsup to version 8.2.4.The
tsup
package has been updated from^8.0.1
to^8.2.4
. Ensure that the updated version is compatible with the project.
73-73
: Update vitest to version 1.6.0.The
vitest
package has been updated from^1.2.2
to^1.6.0
. Ensure that the updated version is compatible with the project.
66-66
: Update eslint to version 8.57.0.The
eslint
package has been updated from^8.56.0
to^8.57.0
. Ensure that the updated version is compatible with the project.
62-62
: Update @types/node to version 20.14.14.The
@types/node
package has been updated from^20.11.16
to^20.14.14
. Ensure that the updated version is compatible with the project.
61-61
: Update @mheob/tsconfig to version 2.1.0.The
@mheob/tsconfig
package has been updated from^2.0.0
to^2.1.0
. Ensure that the updated version is compatible with the project.
58-58
: Update @mheob/commitlint-config to version 1.1.2.The
@mheob/commitlint-config
package has been updated from^1.1.1
to^1.1.2
. Ensure that the updated version is compatible with the project.Verification successful
Update @mheob/commitlint-config to version 1.1.2.
The
@mheob/commitlint-config
package has been updated from^1.1.1
to^1.1.2
. Thepackage.json
andpnpm-lock.yaml
files confirm the update. The peer dependencies listed are compatible with the project.
package.json
confirms version^1.1.2
.pnpm-lock.yaml
confirms resolved version1.1.2
.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of @mheob/commitlint-config version 1.1.2 with the project. # Test: Check if @mheob/commitlint-config 1.1.2 is compatible with the project. # Expect: No compatibility issues. npm ls @mheob/commitlint-configLength of output: 104
Script:
#!/bin/bash # Step 1: Confirm the version of @mheob/commitlint-config in package.json echo "Checking package.json for @mheob/commitlint-config version..." grep -A 2 '"@mheob/commitlint-config"' package.json # Step 2: Confirm the resolved version of @mheob/commitlint-config in package-lock.json echo "Checking package-lock.json for resolved @mheob/commitlint-config version..." grep -A 2 '"@mheob/commitlint-config"' package-lock.json # Step 3: Search the codebase for any references to @mheob/commitlint-config echo "Searching the codebase for references to @mheob/commitlint-config..." rg '@mheob/commitlint-config' -A 3Length of output: 1511
52-52
: Update dotenv to version 16.4.5.The
dotenv
package has been updated from^16.4.1
to^16.4.5
. Ensure that the updated version is compatible with the project.
72-72
: Update vite to version 5.3.5.The
vite
package has been updated from^5.0.12
to^5.3.5
. Ensure that the updated version is compatible with the project.
57-57
: Update @commitlint/cli to version 19.3.0.The
@commitlint/cli
package has been updated from^19.0.0
to^19.3.0
. Ensure that the updated version is compatible with the project.Verification successful
Update @commitlint/cli to version 19.3.0.
The
@commitlint/cli
package has been verified to be updated to version19.3.0
and is compatible with the project based on the information in thepnpm-lock.yaml
file.
package.json
confirms the version is set to^19.3.0
.pnpm-lock.yaml
shows no conflicts with other dependencies.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of @commitlint/cli version 19.3.0 with the project. # Test: Check if @commitlint/cli 19.3.0 is compatible with the project. # Expect: No compatibility issues. npm ls @commitlint/cliLength of output: 95
Script:
#!/bin/bash # Check the version of @commitlint/cli in package.json rg '@commitlint/cli' package.json # Check for @commitlint/cli dependencies in package-lock.json (if it exists) if [ -f "package-lock.json" ]; then rg '@commitlint/cli' package-lock.json fiLength of output: 96
Script:
#!/bin/bash # Search for any other references to @commitlint/cli in the codebase rg '@commitlint/cli'Length of output: 525
65-65
: Update cz-git to version 1.9.4.The
cz-git
package has been updated from^1.8.0
to^1.9.4
. Ensure that the updated version is compatible with the project.
68-68
: Update lint-staged to version 15.2.8.The
lint-staged
package has been updated from^15.2.2
to^15.2.8
. Ensure that the updated version is compatible with the project.Verification successful
Update lint-staged to version 15.2.8.
The
lint-staged
package has been updated from^15.2.2
to^15.2.8
. The configuration inpackage.json
is compatible with the updated version.
package.json
:"lint-staged": { "!(pnpm-)*.{cjs,js,mjs,ts,json,md,mdx,yaml,yml}": "pnpm exec prettier --write", "*.{cjs,js,mjs,ts}": "eslint --fix", "package.json": "pnpm dlx sort-package-json" }Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of lint-staged version 15.2.8 with the project. # Test: Check if lint-staged 15.2.8 is compatible with the project. # Expect: No compatibility issues. npm ls lint-stagedLength of output: 91
Script:
#!/bin/bash # Search for lint-staged configuration in the project files to review for compatibility with version 15.2.8. # This configuration is usually found in package.json or a separate .lintstagedrc file. # Check for lint-staged configuration in package.json rg '"lint-staged": {[^}]*}' package.json # Check for a .lintstagedrc file fd .lintstagedrc --exec cat {}Length of output: 198
Script:
#!/bin/bash # Corrected search for lint-staged configuration in the project files to review for compatibility with version 15.2.8. # Check for lint-staged configuration in package.json rg '"lint-staged": \{[^}]*\}' package.json # Check for a .lintstagedrc file fd .lintstagedrc --exec cat {}Length of output: 79
Script:
#!/bin/bash # Search for lint-staged configuration across all project files to review for compatibility with version 15.2.8. # Search for lint-staged configuration in all project files rg 'lint-staged' .Length of output: 213
Script:
#!/bin/bash # Extract the lint-staged configuration block from package.json for review. # Extract lint-staged configuration from package.json rg -A 10 '"lint-staged": \{' package.jsonLength of output: 376
71-71
: Update typescript to version 5.5.4.The
typescript
package has been updated from^5.3.3
to^5.5.4
. Ensure that the updated version is compatible with the project.
81a5ad9
to
a993f39
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
a993f39
to
532f485
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
532f485
to
3cbc829
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
3cbc829
to
e156de7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
e156de7
to
33e16e5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
33e16e5
to
b59856a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
b59856a
to
2054880
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (2)
- .nvmrc (1 hunks)
- package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- package.json
Files skipped from review as they are similar to previous changes (1)
- .nvmrc
2054880
to
8fdaa4c
Compare
d6445b1
to
3d969fd
Compare
91e40d9
to
492f5c2
Compare
fb83ca9
to
a7cf68b
Compare
9ba38e9
to
cf15251
Compare
330a7d8
to
12a4fa9
Compare
a0fe0f1
to
e62906d
Compare
e62906d
to
5e82d55
Compare
5ae54e4
to
8177a03
Compare
8177a03
to
1f4cd83
Compare
|
This PR contains the following updates:
^2.27.1
->^2.28.1
^0.4.0
->^0.4.1
^6.0.0
->^6.1.0
^19.0.0
->^19.8.0
^1.1.1
->^1.2.1
^3.2.0
->^3.3.3
^2.0.0
->^2.2.1
^20.11.16
->^20.17.28
20.17.30
(+1)^1.2.2
->^1.6.1
^4.3.0
->^4.3.1
^1.8.0
->^1.11.1
^16.4.1
->^16.4.7
^8.56.0
->^8.57.1
^15.2.2
->^15.5.0
20
->20.19.0
^8.0.1
->^8.4.0
^5.3.3
->^5.8.2
Release Notes
changesets/changesets (@changesets/cli)
v2.28.1
Compare Source
Patch Changes
b9df596
]:v2.28.0
Compare Source
Minor Changes
84a4a1b
Thanks @bennypowers! - Added a new config option to opt-out from formatting with Prettier usingprettier: false
.Patch Changes
84a4a1b
,84a4a1b
]:v2.27.12
Compare Source
Patch Changes
#1562
a0f87f1
Thanks @Netail, @cefn! - Fixed changelog application when executing usingnpx
and similar toolsUpdated dependencies [
a0f87f1
]:v2.27.11
Compare Source
Patch Changes
f0270f6
]:v2.27.10
Compare Source
Patch Changes
#1485
baf5644
Thanks @bluwy! - Ignore error if failed to find changed packages inchangeset add
#1489
7bf751c
Thanks @marcalexiei! - Use custom errors when exiting add command due to missing tool#1466
ccce743
Thanks @marcalexiei! - Add error message and exit when there are no versionable packages#1514
962ab91
Thanks @nicoalonsop! - Update spawndamnit to fix cross-spawn vulnerabilityUpdated dependencies [
7323704
,26c8ba9
,82cacb2
,962ab91
]:v2.27.9
Compare Source
Patch Changes
#1458
400ab7b
Thanks @benmccann! - Moved@types/semver
todevDependencies
#1462
689e541
Thanks @benmccann! - removeoutdent
dependencyv2.27.8
Compare Source
Patch Changes
#1417
bc75c1a
Thanks @trivikr! - Replacechalk
withpicocolors
to reduce install size#1419
4efc038
Thanks @bluwy! - Fix logging--version
flag#1445
52c302a
Thanks @bluwy! - Remove unused@babel/runtime
dependency#1446
5150fc1
Thanks @benmccann! - Switched frompreferred-pm
topackage-manager-detector
in order to reduce installation sizeUpdated dependencies [
bc75c1a
,52c302a
]:v2.27.7
Compare Source
Patch Changes
#1047
d108fa6
Thanks @patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.#1400
dd6e5bb
Thanks @Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspaceUpdated dependencies [
d108fa6
,dd6e5bb
,dd6e5bb
]:v2.27.6
Compare Source
Patch Changes
#1392
f295b3e
Thanks @bluwy! - Replacemeow
dependency withmri
to reduce the number of transitive dependencies#1390
6a3452e
Thanks @bluwy! - Displaychangeset status --verbose
in list form and removetty-table
dependencyv2.27.5
Compare Source
Patch Changes
#1370
5e9d33a
Thanks @Andarist! - Fixed a regression that causedchangeset version
to fail on packages having a dev dependency on a skipped package.Updated dependencies [
5e9d33a
]:v2.27.4
Compare Source
Patch Changes
#1361
954a16a
Thanks @jakebailey! - Version 2.25.0 introduced theprivatePackage
configuration option with default{ version: false, tag: false }
; due to a bug, these options were not respected in all commands, leading to commands likechangeset tag
still tagging private packages. This has been fixed, and all packages now respect this option.#1369
d729d8c
Thanks @Andarist! -changeset tag
should now correctly skip tags that exist on the remoteUpdated dependencies [
954a16a
]:v2.27.3
Compare Source
Patch Changes
18c966a
Thanks @Andarist! - Fixed an issue withchangeset status
executed withoutsince
argument. It should now correctly use the configured base branch as the default value.v2.27.2
Compare Source
Patch Changes
#1354
69be7dc
Thanks @Andarist! - Fixed an issue withchangeset status
incorrectly returning an error status in two cases:privatePackage.version
was set tofalse
#1351
c6da182
Thanks @TheHolyWaffle! - Fix an issue with not applying a custom.prettierrc
configuration withprettier@>= 3.1.1
Updated dependencies [
c6da182
]:conventional-changelog/commitlint (@commitlint/cli)
v19.8.0
Compare Source
Performance Improvements
node:
prefix to bypass require.cache call for builtins (#4302) (0cd8f41)19.7.1 (2025-02-02)
Note: Version bump only for package @commitlint/cli
19.6.1 (2024-12-15)
Note: Version bump only for package @commitlint/cli
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/cli
v19.6.1
Compare Source
Note: Version bump only for package @commitlint/cli
v19.6.0
Compare Source
Note: Version bump only for package @commitlint/cli
v19.5.0
Compare Source
Features
19.4.1 (2024-08-28)
Note: Version bump only for package @commitlint/cli
v19.4.1
Compare Source
Note: Version bump only for package @commitlint/cli
v19.4.0
Compare Source
Features
v19.3.0
Compare Source
Note: Version bump only for package @commitlint/cli
19.2.2 (2024-04-14)
Note: Version bump only for package @commitlint/cli
19.2.1 (2024-03-19)
Note: Version bump only for package @commitlint/cli
v19.2.2
Compare Source
Note: Version bump only for package @commitlint/cli
mheob/config (@mheob/commitlint-config)
v1.2.1
Compare Source
Patch Changes
v1.2.0
Compare Source
Minor Changes
Patch Changes
v1.1.2
Compare Source
Patch Changes
README.md
file and add spell checker.vitest-dev/vitest (@vitest/coverage-istanbul)
v1.6.1
Compare Source
This release includes security patches for:
🐞 Bug Fixes
View changes on GitHub
v1.6.0
Compare Source
🚀 Features
includeConsoleOutput
andaddFileAttribute
in junit - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5659 (2f913)🐞 Bug Fixes
resolveId('vitest')
afterbuildStart
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5646 (f5faf)toJSON
for error serialization - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5526 (19a21)*.test-d.*
by default - by @MindfulPol in https://github.com/vitest-dev/vitest/issues/5634 (bfe8a)vite-node
's wrapper only to executed files - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5642 (c9883)🏎 Performance
View changes on GitHub
v1.5.3
Compare Source
🐞 Bug Fixes
View changes on GitHub
v1.5.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v1.5.1
Compare Source
🚀 Features
startVitest()
to acceptstdout
andstdin
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5493 (780b1)startVitest
API is experimental and doesn't follow semver.🐞 Bug Fixes
import.meta.env.PROD: false
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5561 (9c649)onTestFinished
in reverse order - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/5598 (23f29)fileParallelism
by default on browser pool - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5528 (5c69f)v8-to-istanbul
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5549 (df6a4)cleanOnRerun
is disabled - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5540 (ea3c1)thresholds
to compare files relative to root - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5574 (80265)toEqual
andtoMatchObject
with circular references - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/5535 (9e641)View changes on GitHub
v1.5.0
Compare Source
🚀 Features
🐞 Bug Fixes
describe
calls not taking generic type parameters - by @aryaemami59 in https://github.com/vitest-dev/vitest/issues/5415 (16bac)process
is mocked - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/5430 (0ec4d)Configuration
📅 Schedule: Branch creation - "before 4am on Wednesday" in timezone Europe/Berlin, 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.