Open
Conversation
✅ Deploy Preview for endearing-brigadeiros-63f9d0 canceled.
|
Dependency ReviewThe following issues were found:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1379 +/- ##
=======================================
Coverage 89.66% 89.66%
=======================================
Files 68 68
Lines 4869 4869
Branches 888 888
=======================================
Hits 4366 4366
Misses 485 485
Partials 18 18 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
25d5918 to
9eba341
Compare
9bfc238 to
b3c86b6
Compare
7b9e42a to
736d606
Compare
03860bd to
6a806b6
Compare
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:
^3.980.0→^3.1016.03.1019.0(+2)^7.28.6→^7.29.0^0.27.2→^0.27.4^0.27.2→^0.27.40.27.2→0.27.40.27.2→0.27.4^2.0.2→^2.0.3^9.39.2→^9.39.4^1.0.1→^1.2.0^5.2.9→^5.2.10^19.21.2→^19.23.1^4.17.23→^4.17.24^22.19.7→^22.19.15^5.1.2→^5.2.0^1.13.4→^1.13.61.14.0^15.9.0→^15.13.0^9.39.2→^9.39.4^5.2.1→^5.3.0^8.2.1→^8.3.1^4.5.3→^4.6.0^1.36.3→^1.37.4^16.2.7→^16.4.0606f8e0→f2b40855a593d7→bb20cf75a593d7→bb20cf7^6.8.1→^6.8.2^3.30.0→^3.33.0^8.54.0→^8.57.2Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
aws/aws-sdk-js-v3 (@aws-sdk/credential-providers)
v3.1016.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1015.0Compare Source
3.1015.0(2026-03-23)
Chores
New Features
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.1015.0.zip
v3.1014.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1013.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1012.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1011.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1010.0Compare Source
3.1010.0(2026-03-16)
New Features
Tests
For list of updated packages, view updated-packages.md in assets-3.1010.0.zip
v3.1009.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1008.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1007.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1006.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1005.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1004.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1003.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1002.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1001.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.1000.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.999.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.998.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.997.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.996.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.995.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.994.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.993.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
evanw/esbuild (@esbuild/darwin-arm64)
v0.27.4Compare Source
Fix a regression with CSS media queries (#4395, #4405, #4406)
Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the
<media-type> and <media-condition-without-or>grammar. Specifically, esbuild was failing to wrap anorclause with parentheses when inside<media-condition-without-or>. This release fixes the regression.Here is an example:
Fix an edge case with the
injectfeature (#4407)This release fixes an edge case where esbuild's
injectfeature could not be used with arbitrary module namespace names exported using anexport {} fromstatement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.With the fix, the following
injectfile:Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:
Attempt to improve API handling of huge metafiles (#4329, #4415)
This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.
The primary issue is that V8 has an implementation-specific maximum string length, so using the
JSON.parseAPI with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of usingJSON.parsewhen the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).
v0.27.3Compare Source
Preserve URL fragments in data URLs (#4370)
Consider the following HTML, CSS, and SVG:
index.html:icons.css:triangle.svg:The CSS uses a URL fragment (the
#x) to reference theclipPathelement in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using thedataurlloader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:Parse and print CSS
@scoperules (#4322)This release includes dedicated support for parsing
@scoperules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside@scoperules has also improved slightly.Here's an example:
Fix a minification bug with lowering of
for await(#4378, #4385)This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated
catchclause of loweredfor awaitloops. The code that generated the loop previously failed to mark the internal variable references as used.Update the Go compiler from v1.25.5 to v1.25.7 (#4383, #4388)
This PR was contributed by @MikeWillCook.
eslint/rewrite (@eslint/compat)
v2.0.3Compare Source
Dependencies
eslint/eslint (@eslint/js)
v9.39.4Compare Source
v9.39.3Compare Source
Bug Fixes
791bf8dfix: restore TypeScript 4.0 compatibility in types (#20504) (sethamus)Chores
8594a43chore: upgrade @eslint/js@9.39.3 (#20529) (Milos Djermanovic)9ceef92chore: package.json update for @eslint/js release (Jenkins)af498c6chore: ignore/docs/v9.xin link checker (#20453) (Milos Djermanovic)eslint/json (@eslint/json)
v1.2.0Compare Source
Features
sort-keys(#216) (3534818)v1.1.0Compare Source
Features
no-unnormalized-keys(#151) (fc3beec)Bug Fixes
JSONRuleDefinitionto report on tokens (#210) (87ea56f)fontsource/font-files (@fontsource/roboto)
v5.2.10Compare Source
primer/octicons (@primer/octicons-react)
v19.23.1Compare Source
Patch Changes
ea8e6bb7Thanks @kylewaynebenson! - - Remove set fill from svgsv19.23.0Compare Source
Minor Changes
63bc8d01Thanks @kylewaynebenson! - - Addition of lockup iconv19.22.1Compare Source
Patch Changes
6567d755Thanks @francinelucca! - various dep updatesv19.22.0Compare Source
Minor Changes
18e3b9fdThanks @janmaarten-a11y! - Add book-locked iconAdd comment-locked icon
Add issue-locked icon
Add git-pull-request-locked icon
vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.2.0Compare Source
v5.1.4Compare Source
Fix
canSkipBabelnot accounting forbabel.overrides(#1098)When configuring
babel.overrideswithout top-level plugins or presets, Babel was incorrectly skipped. ThecanSkipBabelfunction now checks foroverrides.lengthto ensure override configurations are processed.cypress-io/cypress (cypress)
v15.13.0Compare Source
v15.12.0Compare Source
v15.11.0Compare Source
Changelog: https://docs.cypress.io/app/references/changelog#15-11-0
v15.10.0Compare Source
Changelog: https://docs.cypress.io/app/references/changelog#15-10-0
eslint/eslint (eslint)
v9.39.4Compare Source
Bug Fixes
f18f6c8fix: update dependency minimatch to ^3.1.5 (#20564) (Milos Djermanovic)a3c868ffix: update dependency @eslint/eslintrc to ^3.3.4 (#20554) (Milos Djermanovic)234d005fix: minimatch security vulnerability patch for v9.x (#20549) (Andrej Beles)b1b37eefix: updateajvto6.14.0to address security vulnerabilities (#20538) (루밀LuMir)Documentation
4675152docs: add deprecation notice partial (#20520) (Milos Djermanovic)Chores
b8b4eb1chore: update dependencies for ESLint v9.39.4 (#20596) (Francesco Trotta)71b2f6bchore: package.json update for @eslint/js release (Jenkins)1d16c2fci: pin Node.js 25.6.1 (#20563) (Milos Djermanovic)v9.39.3Compare Source
Bug Fixes
791bf8dfix: restore TypeScript 4.0 compatibility in types (#20504) (sethamus)Chores
8594a43chore: upgrade @eslint/js@9.39.3 (#20529) (Milos Djermanovic)9ceef92chore: package.json update for @eslint/js release (Jenkins)af498c6chore: ignore/docs/v9.xin link checker (#20453) (Milos Djermanovic)dubzzz/fast-check (fast-check)
v4.6.0Compare Source
Better
stringMatchingwithmaxLength[Code][Diff]
Features
maxLengthsupport tostringMatchingmaxLengthonstringMatchingRandom::next(n)andRandom::nextInt()Fixes
fast-checkusingrolldownpermissions: {}to workflows missing itflatMapwithchainin error messageisomorphic-git/isomorphic-git (isomorphic-git)
v1.37.4Compare Source
Bug Fixes
v1.37.3Compare Source
Bug Fixes
v1.37.2Compare Source
Bug Fixes
v1.37.1Compare Source
Bug Fixes
v1.37.0Compare Source
Features
lint-staged/lint-staged (lint-staged)
v16.4.0Compare Source
Minor Changes
687fc90Thanks @hyperz111! - Replacemicromatchwithpicomatchto reduce dependencies.v16.3.4Compare Source
Patch Changes
9d6e827Thanks @iiroj! - Update dependencies, includingtinyexec@1.0.4to make sure localnode_modules/.binare preferred to global locations (released intinyexec@1.0.3).v16.3.3Compare Source
Patch Changes
0109e8dThanks @iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.v16.3.2Compare Source
Patch Changes
2adaf6cThanks @iiroj! - Hide the extracmdwConfiguration
📅 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.