Skip to content

Commit

Permalink
release: v1.7.3 (#2722)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed May 6, 2024
1 parent 84e8b99 commit b9f90b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")],
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/biome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/biome",
"version": "1.7.2",
"version": "1.7.3",
"bin": "bin/biome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down

0 comments on commit b9f90b7

Please sign in to comment.