Update all dependencies (major)#2606
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
Thank you for submitting your pull request, @renovate[bot]! 🙌 We'll review it as soon as possible. If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution to our Algo project! 😊 |
|
❌ Error: PR must reference an issue (e.g., 'Fixes #123'). |
⚡️ Lighthouse Report for the Deploy Preview of this PR 🚀
|
0339436 to
48b5bf2
Compare
|
❌ Error: PR must reference an issue (e.g., 'Fixes #123'). |
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:
^6.6.0→^7.0.0^0.2.2→^3.0.0v4→v6v4.2.2→v6.0.3v4→v5.0.0v4→v5v7→v9v7.0.1→v9.0.0v4→v6v4.1.0→v6.4.0v5→v6v9→v10v3→v5^8.2.2→^10.0.0^11.9.0→^12.0.0v3→v4^17.13.3→^18.0.0v2.9.0→v3.0.418→2420→24^18.0.0→^19.0.0^18.0.0→^19.0.0^2.4.0→^3.0.0^10.0.5→^11.0.0^4.7.1→^6.0.0v6→v7v2→v3^4.4.1→^6.0.0^11.1.14→^12.0.0^3.4.13→^4.0.0Release Notes
FortAwesome/Font-Awesome (@fortawesome/free-brands-svg-icons)
v7.2.0Compare Source
v7.1.0Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v7.0.1Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v7.0.0Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.7.2Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.7.1Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.7.0Compare Source
Change log available at https://fontawesome.com/docs/changelog/
FortAwesome/react-fontawesome (@fortawesome/react-fontawesome)
v3.3.1Compare Source
Chores
v3.3.0Compare Source
Features
Chores
CI/CD
v3.2.0Compare Source
Features
Bug Fixes
Chores
v3.1.1Compare Source
Bug Fixes
Documentation
Chores
v3.1.0Compare Source
Features
Bug Fixes
Testing
Documentation
Chores
v3.0.2Compare Source
Bug Fixes
Testing
Chores
CI/CD
v3.0.1Compare Source
Bug Fixes
package.json(b078d99)bc7cad0)v3.0.0Compare Source
BREAKING
Changes
rollupwithtsupfor providing both ESM and CJS exports from one TypeScript sourceprop-typesin favour of colocated typings for React component propseslintfrom v6 to v9, rewrote config as Flat Config, modernised ESLint config, plugins and rulesreact-test-rendererto the industry standard@testing-library/reactFontAwesomeIconby reducing per-render function calls and memory allocationsclassListfunction by removing runtime semver checks and array operationsconverterwith a full rewrite for significant performance increases (~70%)getClassListFromPropsto pre-computed mapsBug Fixes
titleId, maskId) for SSR ensuring a consistent ID across server and client renders (#93, #550, #573)aria-hiddenso it isfalseif there is a non-emptyaria-labelattribute (#126)npm auditissues by removing and updating dependenciesv0.2.6Compare Source
Fixed
processbefore readingprocess.env(#585)Full Changelog: FortAwesome/react-fontawesome@0.2.5...0.2.6
v0.2.5Compare Source
What's Changed
New Contributors
Full Changelog: FortAwesome/react-fontawesome@0.2.4...0.2.5
v0.2.3Compare Source
Changed
Font Awesome Pro+ icons are now available with an active Pro+ subscription.
Removed example directory and files
Deprecated
fa-fwpropAdded
Added
widthAutopropAdded
rotateBypropactions/checkout (actions/checkout)
v6.0.3Compare Source
v6.0.2Compare Source
v6.0.1Compare Source
v6.0.0Compare Source
v6Compare Source
v5.0.1Compare Source
What's Changed
Full Changelog: actions/checkout@v5...v5.0.1
v5.0.0Compare Source
What's Changed
v2.327.1
Release Notes
Make sure your runner is updated to this version or newer to use this release.
Full Changelog: actions/checkout@v4...v5.0.0
v5Compare Source
actions/dependency-review-action (actions/dependency-review-action)
v5.0.0: 5.0.0Compare Source
This is a new major version of the Dependency Review Action which updates the runtime to node24. This requires a minimum Actions Runner version v2.327.1 to run.
What's Changed
New Contributors
Full Changelog: actions/dependency-review-action@v4.9.0...v5.0.0
actions/deploy-pages (actions/deploy-pages)
v5.0.0Compare Source
Changelog
See details of all code changes since previous release.
v5Compare Source
actions/github-script (actions/github-script)
v9.0.0Compare Source
New features:
getOctokitfactory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients withgetOctokitfor details and examples.ACTIONS_ORCHESTRATION_IDenvironment variable is automatically appended to the user-agent string for request tracing.Breaking changes:
require('@​actions/github')no longer works in scripts. The upgrade to@actions/githubv9 (ESM-only) meansrequire('@​actions/github')will fail at runtime. If you previously used patterns likeconst { getOctokit } = require('@​actions/github')to create secondary clients, use the new injectedgetOctokitfunction instead — it's available directly in the script context with no imports needed.getOctokitis now an injected function parameter. Scripts that declareconst getOctokit = ...orlet getOctokit = ...will get aSyntaxErrorbecause JavaScript does not allowconst/letredeclaration of function parameters. Use the injectedgetOctokitdirectly, or usevar getOctokit = ...if you need to redeclare it.@actions/githubinternals beyond the standardgithub/octokitclient, you may need to update those references for v9 compatibility.What's Changed
New Contributors
Full Changelog: actions/github-script@v8.0.0...v9.0.0
v9Compare Source
v8.0.0Compare Source
v8: .0.0Compare Source
What's Changed
v2.327.1
Release Notes
Make sure your runner is updated to this version or newer to use this release.
New Contributors
Full Changelog: actions/github-script@v7.1.0...v8.0.0
actions/setup-node (actions/setup-node)
v6.4.0Compare Source
v6.3.0Compare Source
What's Changed
Enhancements:
devEnginesfield by @susnux in #1283Dependency updates:
Bug fixes:
New Contributors
Full Changelog: actions/setup-node@v6...v6.3.0
v6.2.0Compare Source
v6.1.0Compare Source
What's Changed
Enhancement:
Dependency updates:
Documentation update:
Full Changelog: actions/setup-node@v6...v6.1.0
v6.0.0Compare Source
What's Changed
Breaking Changes
Dependency Upgrades
Full Changelog: actions/setup-node@v5...v6.0.0
v6Compare Source
v5.0.0Compare Source
What's Changed
Breaking Changes
This update, introduces automatic caching when a valid
packageManagerfield is present in yourpackage.json. This aims to improve workflow performance and make dependency management more seamless.To disable this automatic caching, set
package-manager-cache: falseMake sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes
Dependency Upgrades
New Contributors
Full Changelog: actions/setup-node@v4...v5.0.0
v5Compare Source
actions/setup-python (actions/setup-python)
v6.2.0Compare Source
v6.1.0Compare Source
What's Changed
Enhancements:
pip-installinput by @gowridurgad in #1201Dependency and Documentation updates:
allow-prereleasesby @yarikoptic in #979New Contributors
Full Changelog: actions/setup-python@v6...v6.1.0
v6.0.0Compare Source
What's Changed
Breaking Changes
Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes
Enhancements:
pip-versionby @priyagupta108 in #1129Bug fixes:
Dependency updates:
New Contributors
Full Changelog: actions/setup-python@v5...v6.0.0
v6Compare Source
actions/stale (actions/stale)
v10.3.0Compare Source
What's Changed
Bug Fix
Dependency Updates
New Contributors
Full Changelog: actions/stale@v10...v10.3.0
v10.2.0Compare Source
v10.1.1Compare Source
What's Changed
Bug Fix
only-issue-typesby @Bibo-Joshi in #1298Improvement
Dependency Upgrades