This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
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:
^1.9.3
->^1.9.4
^19.5.0
->^19.6.1
^0.7.2
->^0.8.0
^0.2.3
->^0.2.4
^11.13.3
->^11.14.0
^11.13.0
->^11.14.0
^22.7.5
->^22.10.2
^1.0.12
->^1.1.0
^2.1.3
->^2.1.8
^2.1.3
->^2.1.8
^1.0.0
->^1.0.4
^9.1.6
->^9.1.7
^5.33.3
->^5.41.1
^15.2.10
->^15.2.11
^5.3.0
->^5.4.0
^15.5.0
->^15.6.1
^1.79.5
->^1.83.0
^5.6.3
->^5.7.2
^2.1.3
->^2.1.8
^3.23.8
->^3.24.1
^5.0.0
->^5.0.2
Release Notes
biomejs/biome (@biomejs/biome)
v1.9.4
Compare Source
Analyzer
Bug fixes
Implement GraphQL suppression action. Contributed by @vohoanglong0107
Improved the message for unused suppression comments. Contributed by @dyc3
Fix #4228, where the rule
a11y/noInteractiveElementToNoninteractiveRole
incorrectly reports arole
for non-interactive elements. Contributed by @eryue0220noSuspiciousSemicolonInJsx
now catches suspicious semicolons in React fragments. Contributed by @vasucp1207CLI
Enhancements
The
--summary
reporter now reports parsing diagnostics too. Contributed by @ematipicoImproved performance of GritQL queries by roughly 25-30%. Contributed by @arendjr
Configuration
Bug fixes
Editors
Formatter
Bug fixes
JavaScript APIs
Linter
New features
Bug Fixes
Biome no longer crashes when it encounters a string that contain a multibyte character (#4181).
This fixes a regression introduced in Biome 1.9.3
The regression affected the following linter rules:
nursery/useSortedClasses
nursery/useTrimStartEnd
style/useTemplate
suspicious/noMisleadingCharacterClass
Contributed by @Conaclos
Fix #4190, where the rule
noMissingVarFunction
wrongly reported a variable as missing when used inside avar()
function that was a newline. Contributed by @ematipicoFix #4041. Now the rule
useSortedClasses
won't be triggered ifclassName
is composed only by inlined variables. Contributed by @ematipicouseImportType and useExportType now report useless inline type qualifiers (#4178).
The following fix is now proposed:
Contributed by @Conaclos
useExportType now reports ungrouped
export from
.The following fix is now proposed:
Contributed by @Conaclos
noVoidTypeReturn now accepts
void
expressions in return position (#4173).The following code is now accepted:
Contributed by @Conaclos
noUselessFragments now correctly handles fragments containing HTML escapes (e.g.
) inside expression escapes{ ... }
(#4059).The following code is no longer reported:
Contributed by @fireairforce
noUnusedFunctionParameters and noUnusedVariables no longer reports a parameter as unused when another parameter has a constructor type with the same parameter name (#4227).
In the following code, the
name
parameter is no longer reported as unused.Contributed by @Conaclos
noUndeclaredDependencies now accepts dependency names with dots. Contributed by @Conaclos
useFilenamingConvention now correctly handles renamed exports (#4254).
The rule allows the filename to be named as one of the exports of the module.
For instance, the file containing the following export can be named
Button
.The rule now correctly handles the renaming of an export.
For example, the file containing the following export can only be named
Button
.Previously the rule expected the file to be named
A
.Contributed by @Conaclos
useConsistentMemberAccessibility now ignore private class members such as
#property
(#4276). Contributed by @ConaclosnoUnknownFunction correctly handles
calc-size
function (#4212).The following code
calc-size
is no longer reported as unknown:Contributed by @fireairforce
useNamingConvention now allows configuring conventions for readonly index signatures.
Contributed by @sepruko
Previously, the rule incorrectly reported duplicates for all properties, including non-custom ones. Contributed by @togami2864
Parser
Bug Fixes
The CSS parser now accepts more emoji in identifiers (#3627).
Browsers accept more emoji than the standard allows.
Biome now accepts these additional emojis.
The following code is now correctly parsed:
Contributed by @Conaclos
Add support for parsing typescript's
resolution-mode
in Import Types(#2115)Contributed by @fireairforce
conventional-changelog/commitlint (@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
emotion-js/emotion (@emotion/react)
v11.14.0
Compare Source
Minor Changes
a19d019
Thanks @Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.Patch Changes
e1bf17e
]:v11.13.5
Compare Source
vercel/speed-insights (@vercel/speed-insights)
v1.1.0
Compare Source
What's Changed
Full Changelog: vercel/speed-insights@1.0.14...1.1.0
v1.0.14
Compare Source
What's Changed
Full Changelog: vercel/speed-insights@1.0.13...1.0.14
v1.0.13
Compare Source
What's Changed
New Contributors
Full Changelog: vercel/speed-insights@1.0.12...1.0.13
vitest-dev/vitest (@vitest/coverage-v8)
v2.1.8
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.1.7
Compare Source
🐞 Bug Fixes
pnpm.overrides
or yarn resolutions to override thevite
version in thevitest
package - the APIs are compatible.View changes on GitHub
v2.1.6
Compare Source
🚀 Features
View changes on GitHub
v2.1.5
Compare Source
🐞 Bug Fixes
dangerouslyIgnoreUnhandledErrors
without base reporter - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6808 (0bf0a)unhandledRejection
even when base reporter is not used - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6812 (8878b)sequence.concurrent
from theRuntimeConfig
type - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6880 (6af73).poll
,.element
,.rejects
/.resolves
, andlocator.*
weren't awaited - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6877 (93b67)enter
or'a'
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6848 (487c8)🏎 Performance
View changes on GitHub
v2.1.4
Compare Source
🚀 Features
transformIndexHtml
- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6725 (16902)🐞 Bug Fixes
v=
queries to setup files imports - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6759 (b8258)toThrowError
with empty string parameter - by @shulaoda in https://github.com/vitest-dev/vitest/issues/6710 (a6129)test.extend
type exports - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6707 (e5c38)🏎 Performance
hash
to replacecreateHash
- by @btea in https://github.com/vitest-dev/vitest/issues/6703 (5d07b)View changes on GitHub
pacocoursey/cmdk (cmdk)
v1.0.4
Compare Source
What's Changed
New Contributors
Full Changelog: pacocoursey/cmdk@v1.0.3...v1.0.4
v1.0.3
Compare Source
use-sync-external-store
shim for compatibility with Next.js 15 and React 19 RCv1.0.2
Compare Source
use-sync-external-store
shim to support Next.js 15 and React 19 RCFull Changelog: pacocoursey/cmdk@v1.0.1...v1.0.2
v1.0.1
Compare Source
What's Changed
New Contributors
Full Changelog: pacocoursey/cmdk@v1.0.0...v1.0.1
typicode/husky (husky)
v9.1.7
Compare Source
webpro-nl/knip (knip)
v5.41.1
Compare Source
v5.41.0
Compare Source
expo
plugin (#879) (40f7be9
)9ce4a49
)34004ba
)17ddcb7
)f696807
)9ba0998
)v5.40.0
Compare Source
3d29854
)e43304b
)c738561
)e6340b0
)v5.39.4
Compare Source
df390a0
)containingFilePath
(de6682b
)v5.39.3
Compare Source
0f640e1
)055a2e3
)c80ac0e
)v5.39.2
Compare Source
382c909
)69d602a
)770685b
)isRootOnly
to moonrepo and yarn plugins (9c07294
)v5.39.1
Compare Source
d6dab3d
)v5.39.0
Compare Source
yarn.config.cjs
support (#864) (759503d
)7950bf3
)v5.38.4
Compare Source
9074440
](https://redirect.gitConfiguration
📅 Schedule: Branch creation - "before 1am on Monday" in timezone Asia/Jakarta, 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.