From 54b4c9a39078836843ef363bb6986fad74834480 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Thu, 20 Jun 2024 11:11:15 +0100 Subject: [PATCH] release: v1.8.2 (#3243) --- CHANGELOG.md | 31 ++++++++------------------- packages/@biomejs/biome/package.json | 2 +- packages/@biomejs/js-api/package.json | 2 +- 3 files changed, 11 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55fff264031d..d27c85887150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +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 - -#### New features - -- Add [nursery/noShorthandPropertyOverrides](https://biomejs.dev/linter/rules/no-shorthand-property-overrides). [#2958](https://github.com/biomejs/biome/issues/2958) Contributed by @neokidev - -#### Bug fixes - -- Fix [[#3084](https://github.com/biomejs/biome/issues/3084)] false positive by correctly recognize parenthesized return statement. Contributed by @unvalley +## v1.8.2 (2024-06-20) ### CLI @@ -85,8 +75,6 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b Contributed by @Conaclos -### Editors - ### Formatter #### Bug fixes @@ -96,6 +84,10 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b ### JavaScript APIs +#### Bug fixes + +- Fix a regression introduced by the release of `v1.8.0` + ### Linter #### New features @@ -104,6 +96,8 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b #### Bug fixes +- Add [nursery/noShorthandPropertyOverrides](https://biomejs.dev/linter/rules/no-shorthand-property-overrides). [#2958](https://github.com/biomejs/biome/issues/2958) Contributed by @neokidev +- Fix [[#3084](https://github.com/biomejs/biome/issues/3084)] false positive by correctly recognize parenthesized return statement. Contributed by @unvalley - [useImportExtensions](https://biomejs.dev/linter/rules/use-import-extensions/) now suggests a correct fix for `import '.'` and `import './.'`. Contributed by @minht11 - Fix [useDateNow](https://biomejs.dev/linter/rules/use-date-now/) false positive when new Date object has arguments `new Date(0).getTime()`. Contributed by @minht11. - The [`noUnmatchableAnbSelector`](https://biomejs.dev/linter/rules/no-unmatchable-anb-selector/) rule is now able to catch unmatchable `an+b` selectors like `0n+0` or `-0n+0`. Contributed by @Sec-ant. @@ -152,8 +146,6 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b ## v1.8.1 (2024-06-10) -### Analyzer - ### CLI #### Bug fixes @@ -167,8 +159,6 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b - Fix [#3067](https://github.com/biomejs/biome/issues/3067), by assigning the correct default value to `indentWidth`. Contributed by @ematipico -### Editors - ### Formatter #### Bug fixes @@ -176,8 +166,6 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b - Fix [#3068](https://github.com/biomejs/biome/issues/3068) where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @denbezrukov - Fix the formatting of CSS grid layout properties. Contributed by @denbezrukov -### JavaScript APIs - ### Linter #### Bug fixes @@ -224,10 +212,9 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b ### Parser -#### New features -- Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by @denbezrukov - #### Bug fixes + +- Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by @denbezrukov - Fix [#3055](https://github.com/biomejs/biome/issues/3055) CSS: Layout using named grid lines is now correctly parsed. Contributed by @denbezrukov - Fix [#3091](https://github.com/biomejs/biome/issues/3091). Allows the parser to handle nested style rules and at-rules properly, enhancing the parser's compatibility with the CSS Nesting Module. Contributed by @denbezrukov diff --git a/packages/@biomejs/biome/package.json b/packages/@biomejs/biome/package.json index 0752038acd0a..6140a4adfd16 100644 --- a/packages/@biomejs/biome/package.json +++ b/packages/@biomejs/biome/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/biome", - "version": "1.8.1", + "version": "1.8.2", "bin": { "biome": "bin/biome" }, diff --git a/packages/@biomejs/js-api/package.json b/packages/@biomejs/js-api/package.json index 03b44717ce7f..7b0595aa5428 100644 --- a/packages/@biomejs/js-api/package.json +++ b/packages/@biomejs/js-api/package.json @@ -1,6 +1,6 @@ { "name": "@biomejs/js-api", - "version": "0.6.0", + "version": "0.6.1", "description": "JavaScript APIs for the Biome package", "scripts": { "tsc": "tsc --noEmit",