-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
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 patch dependencies (patch) #6348
base: develop
Are you sure you want to change the base?
Conversation
|
✅ Deploy Preview for mermaid-js ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
commit: |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #6348 +/- ##
=======================================
Coverage 3.86% 3.86%
=======================================
Files 402 401 -1
Lines 42682 42671 -11
Branches 644 644
=======================================
Hits 1648 1648
+ Misses 41034 41023 -11
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
fea9368
to
49c0433
Compare
dec67c6
to
8265c62
Compare
8265c62
to
74d6f47
Compare
This PR contains the following updates:
^3.44.9
->^3.50.3
^7.0.4
->^7.1.1
^2.27.12
->^2.28.1
^3.12.49
->^3.13.12
^1.1.37
->^1.2.8
^2.1.33
->^2.3.0
^4.17.15
->^4.17.16
^22.13.5
->^22.13.10
^5.0.5
->^5.2.1
^3.0.6
->^3.0.8
^3.0.6
->^3.0.8
^3.0.6
->^3.0.8
^3.23.28
->^3.27.12
v4.2.1
->v4.2.2
v1.4.9
->v1.4.10
^8.6.1
->^8.17.5
v6.7.12
->v6.7.16
^3.29.3
->^3.31.1
^0.25.0
->^0.25.1
^4.19.2
->^4.21.2
v3.28.10
->v3.28.11
^14.0.2
->^14.1.0
v7.0.6
->v7.0.8
^3.5.2
->^3.5.3
^2.0.10
->^2.0.11
^4.7.3
->^4.19.3
^0.27.8
->^0.27.9
^28.4.0
->^28.4.1
^1.0.2
->^1.6.3
^3.0.6
->^3.0.8
^3.4.38
->^3.5.13
Release Notes
braintree/sanitize-url (@braintree/sanitize-url)
v7.1.1
Compare Source
DevDependency Changes
Update (sub-)dependencies
cypress-io/code-coverage (@cypress/code-coverage)
v3.13.12
Compare Source
Bug Fixes
v3.13.11
Compare Source
Bug Fixes
v3.13.10
Compare Source
Bug Fixes
v3.13.9
Compare Source
Bug Fixes
v3.13.8
Compare Source
Bug Fixes
v3.13.7
Compare Source
Bug Fixes
v3.13.6
Compare Source
Bug Fixes
v3.13.5
Compare Source
Bug Fixes
vitest-dev/vitest (@vitest/coverage-v8)
v3.0.8
Compare Source
🐞 Bug Fixes
@vitest/spy
- by @mrginglymus in https://github.com/vitest-dev/vitest/issues/7575 (7f7ff)beforeEach/All
cleanup callback timeout - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7500 (0c292)Task.suite
initialization - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7414 (ca9ff)buildStart
on Vite 6 - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7480 (c0f47)View changes on GitHub
v3.0.7
Compare Source
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
actions/cache (actions/cache)
v4.2.2
Compare Source
What's Changed
Full Changelog: actions/cache@v4.2.1...v4.2.2
changesets/action (changesets/action)
v1.4.10
Compare Source
Patch Changes
8b16070
Thanks @bluwy! - Use full git email (41898282+github-actions[bot]@​users.noreply.github.com
) for github-actions bot when making commitsstreetsidesoftware/cspell (cspell)
v8.17.5
Compare Source
cypress-io/github-action (cypress-io/github-action)
v6.7.16
Compare Source
Bug Fixes
v6.7.15
Compare Source
Bug Fixes
v6.7.14
Compare Source
Bug Fixes
v6.7.13
Compare Source
Bug Fixes
cytoscape/cytoscape.js (cytoscape)
v3.31.1
Compare Source
Release version v3.31.1
evanw/esbuild (esbuild)
v0.25.1
Compare Source
Fix incorrect paths in inline source maps (#4070, #4075, #4105)
This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline
sourceMappingURL
data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing thesourceMappingURL
comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.Fix invalid generated source maps (#4080, #4082, #4104, #4107)
This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.
This fix was contributed by @jridgewell.
Fix a regression with non-file source map paths (#4078)
The format of paths in source maps that aren't in the
file
namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths fromfile
paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a:
character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.Fix a crash with
switch
optimization (#4088)The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:
Update Go from 1.23.5 to 1.23.7 (#4076, #4077)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.
This PR was contributed by @MikeWillCook.
expressjs/express (express)
v4.21.2
Compare Source
What's Changed
Full Changelog: expressjs/express@4.21.1...4.21.2
v4.21.1
Compare Source
What's Changed
Full Changelog: expressjs/express@4.21.0...4.21.1
github/codeql-action (github/codeql-action)
v3.28.11
Compare Source
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.28.11 - 07 Mar 2025
See the full CHANGELOG.md for more information.
peter-evans/create-pull-request (peter-evans/create-pull-request)
v7.0.8
: Create Pull Request v7.0.8Compare Source
What's Changed
Full Changelog: peter-evans/create-pull-request@v7.0.7...v7.0.8
v7.0.7
: Create Pull Request v7.0.7Compare Source
⚙️ Fixes an issue with commit signing where modifications to the same file in multiple commits squash into the first commit.
What's Changed
New Contributors
Full Changelog: peter-evans/create-pull-request@v7.0.6...v7.0.7
prettier/prettier (prettier)
v3.5.3
Compare Source
bahmutov/start-server-and-test (start-server-and-test)
v2.0.11
Compare Source
TypeStrong/TypeDoc (typedoc)
[
v0.27.9
](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.