also looking at this
chore(deps): update all non-major dependencies
#1This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @biomejs/biome (source) | ^1.9.2 -> ^1.9.3 | ||||
| bumpp | ^9.5.2 -> ^9.6.1 | ||||
| bun-plugin-dts-auto | ^0.15.0 -> ^0.17.0 | ||||
| commitizen | ^4.3.0 -> ^4.3.1 | ||||
| cz-git (source) | ^1.9.4 -> ^1.10.0 |
Release Notes
biomejs/biome (@​biomejs/biome)
v1.9.3
CLI
New features
GritQL queries that match functions or methods will now match async functions or methods as well.
If this is not what you want, you can capture the
asynckeyword (or its absence) in a metavariable and assert its emptiness:$async function foo() {} where $async <: .Contributed by @arendjr
Bug fixes
Fix #4077: Grit queries no longer need to match the statement's trailing semicolon. Contributed by @arendjr
Fix #4102. Now the CLI command
lintdoesn't exit with an error code when using--write/--fix. Contributed by @ematipico
Configuration
Bug fixes
- Fix #4125, where
noLabelWithoutControloptions where incorrectly marked as mandatory. Contributed by @ematipico
Editors
- Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by @ematipico
Formatter
Bug fixes
Fix #3924 where GraphQL formatter panics in block comments with empty line. Contributed by @vohoanglong0107
Fix a case where raw values inside
url()functions weren't properly trimmed..value { - background: url( - whitespace-around-string - ); + background: url(whitespace-around-string); }Contributed by @ematipico
Fixed #4076, where a media query wasn't correctly formatted:
.class { - @​media (1024px <= width <=1280px) { + @​media (1024px <= width <= 1280px) { color: red; } }Contributed by @blaze-d83
JavaScript API
Bug fixes
- Fix #3881, by updating the APIs to use the latest WASM changes. Contributed by @ematipico
Linter
New features
Add noDescendingSpecificity. Contributed by @tunamaguro
Add noNestedTernary. Contributed by @kaykdm
Add noTemplateCurlyInString. Contributed by @fireairforce
Add noOctalEscape. Contributed by @fireairforce
Enhancements
Add an option
reportUnnecessaryDependenciesto useExhaustiveDependencies.Defaults to true. When set to false, errors will be suppressed for React hooks that declare dependencies but do not use them.
Contributed by @simon-paris
Add an option
reportMissingDependenciesArrayto useExhaustiveDependencies. Contributed by @simon-paris
Bug fixes
noControlCharactersInRegex no longer panics on regexes with incomplete escape sequences. Contributed by @Conaclos
noMisleadingCharacterClass no longer reports issues outside of character classes.
The following code is no longer reported:
/[a-z]��/;Contributed by @Conaclos
noUndeclaredDependencies no longer reports Node.js builtin modules as undeclared dependencies.
The rule no longer reports the following code:
import * as fs from "fs";Contributed by @Conaclos
noUnusedVariables no longer panics when suggesting the renaming of a variable at the start of a file (#4114). Contributed by @Conaclos
noUselessEscapeInRegex no longer panics on regexes that start with an empty character class. Contributed by @Conaclos
noUselessStringConcat no longer panics when it encounters malformed code. Contributed by @Conaclos
noUnusedFunctionParameters no longer reports unused parameters inside an object pattern with a rest parameter.
In the following code, the rule no longer reports
aas unused.function f({ a, ...rest }) { return rest; }This matches the behavior of noUnusedVariables.
Contributed by @Conaclos
useButtonType no longer reports dynamically created button with a valid type (#4072).
The following code is no longer reported:
React.createElement("button", { type: "button" }, "foo")Contributed by @Conaclos
useSemanticElements now ignores elements with the
imgrole (#3994).MDN recommends using
role="img"for grouping images or creating an image from other elements. The following code is no longer reported:<div role="img" aria-label="That cat is so cute"> <p>🐈 😂</p> </div>Contributed by @Conaclos
useSemanticElements now ignores
alertandalertdialogroles (#3858). Contributed by @ConaclosnoUselessFragments don't create invaild JSX code when Fragments children contains JSX Expression and in a LogicalExpression. Contributed by @fireairforce
Parser
Bug fixes
- Forbid undefined as type name for typescript parser. Contributed by @fireairforce
antfu/bumpp (bumpp)
v9.6.1
🚀 Features
- Improve commit printing - by @antfu <samp>(aaad5)</samp>
View changes on GitHub
v9.6.0
🚀 Features
- Print recent commits since last tag - by @antfu <samp>(0e377)</samp>
🐞 Bug Fixes
- The recursive option is not working in the bump.config.ts file - by @gz65555 in https://github.com/antfu-collective/bumpp/issues/42 <samp>(4fda6)</samp>
- Improve printed commit messages - by @antfu <samp>(2e634)</samp>
View changes on GitHub
stacksjs/bun-plugin-dts-auto (bun-plugin-dts-auto)
v0.17.0
🚀 Features
- Use oxc to generate dts - by @chrisbbreuer <samp>(9ae7a)</samp>
🐞 Bug Fixes
- Typecheck - by @chrisbbreuer <samp>(2a847)</samp>
View changes on GitHub
v0.16.0
🚀 Enhancements
- Use oxc to generate dts (9ae7af1)
🩹 Fixes
- Typecheck (2a84772)
❤️ Contributors
- Chris <chrisbreuer93@>gmail.com>
v0.15.4
🏡 Chore
- Several minor fixes (7af35f6)
❤️ Contributors
- Chris <chrisbreuer93@>gmail.com>
v0.15.3
🩹 Fixes
- Monorepo problems (e518b30)
❤️ Contributors
- Chris <chrisbreuer93@>gmail.com>
v0.15.2
🩹 Fixes
- Filter entry points (37c93a1)
🏡 Chore
- Update readme (9081b61)
❤️ Contributors
- Chris <chrisbreuer93@>gmail.com>
v0.15.1
🩹 Fixes
- Generate declaration files with correct references (eb3eb0d)
❤️ Contributors
- Chris <chrisbreuer93@>gmail.com>
Zhengqbbb/cz-git (cz-git)
v1.10.0
Bug Fixes
Features
- cz-git,cli: add
aiModeloption to support multiple OpenAI models (#185) (241577b), closes #180 - cz-git: add env
CZ_EDITORto change editor during confirm (#174) (0fad291)
Performance Improvements
- cli: remove
fs-extra. bundle size -100KB (79a7833)
1.9.4 (2024-07-19)
Bug Fixes
1.9.3 (2024-06-11)
Bug Fixes
1.9.2 (2024-05-26)
Bug Fixes
1.9.1 (2024-03-30)
Bug Fixes
Configuration
📅 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.
- If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
2 changed files on the files tab, with 0 review threads.