diff --git a/CHANGELOG.md b/CHANGELOG.md index 3066b71f780f..3e3643d8b8ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,7 @@ New entries must be placed in a section entitled `Unreleased`. Read our [guidelines for writing a good changelog entry](https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md#changelog). -## Unreleased - -### Analyzer +## 1.7.3 (2024-05-06) ### CLI @@ -25,14 +23,8 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b - `biome migrate eslint` now correctly resolve `@scope/eslint-config` ([#2705](https://github.com/biomejs/biome/issues/2705)). Contributed by @Conaclos -### Configuration - -### Editors - ### Formatter -### JavaScript APIs - ### Linter #### New features @@ -86,11 +78,19 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b Contributed by @Conaclos +- [useJsxKeyInIterable](https://biomejs.dev/linter/rules/use-jsx-key-in-iterable/) no longer reports false positive when iterating on non-jsx items ([#2590](https://github.com/biomejs/biome/issues/2590)). + + The following snipet of code no longer triggers the rule: + + ```jsx + <>{data.reduce((total, next) => total + next, 0)} + ``` + + Contributed by @dyc3 + - Fix typo by renaming `useConsistentBuiltinInstatiation` to `useConsistentBuiltinInstantiation` Contributed by @minht11 -### Parser - ## 1.7.2 (2024-04-30) diff --git a/crates/biome_js_analyze/src/lint/nursery/use_explicit_length_check.rs b/crates/biome_js_analyze/src/lint/nursery/use_explicit_length_check.rs index 5ce00b88f8f5..6e2f534afab2 100644 --- a/crates/biome_js_analyze/src/lint/nursery/use_explicit_length_check.rs +++ b/crates/biome_js_analyze/src/lint/nursery/use_explicit_length_check.rs @@ -121,7 +121,7 @@ declare_rule! { /// We recommend disabling this rule when working with non-numeric `length`/`size` properties. /// pub UseExplicitLengthCheck { - version: "next", + version: "1.7.3", name: "useExplicitLengthCheck", recommended: false, sources: &[RuleSource::EslintUnicorn("explicit-length-check")], diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 217a9c985e2c..cab1817702d5 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "1.7.2", + "version": "1.7.3", "bin": "bin/biome", "scripts": { "postinstall": "node scripts/postinstall.js"