Skip to content

Commit 54b4c9a

Browse files
authored
release: v1.8.2 (#3243)
1 parent 698612b commit 54b4c9a

File tree

3 files changed

+11
-24
lines changed

3 files changed

+11
-24
lines changed

CHANGELOG.md

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@ New entries must be placed in a section entitled `Unreleased`.
99
Read
1010
our [guidelines for writing a good changelog entry](https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md#changelog).
1111

12-
## Unreleased
13-
14-
### Analyzer
15-
16-
#### New features
17-
18-
- Add [nursery/noShorthandPropertyOverrides](https://biomejs.dev/linter/rules/no-shorthand-property-overrides). [#2958](https://github.com/biomejs/biome/issues/2958) Contributed by @neokidev
19-
20-
#### Bug fixes
21-
22-
- Fix [[#3084](https://github.com/biomejs/biome/issues/3084)] false positive by correctly recognize parenthesized return statement. Contributed by @unvalley
12+
## v1.8.2 (2024-06-20)
2313

2414
### CLI
2515

@@ -85,8 +75,6 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
8575

8676
Contributed by @Conaclos
8777

88-
### Editors
89-
9078
### Formatter
9179

9280
#### Bug fixes
@@ -96,6 +84,10 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
9684

9785
### JavaScript APIs
9886

87+
#### Bug fixes
88+
89+
- Fix a regression introduced by the release of `v1.8.0`
90+
9991
### Linter
10092

10193
#### New features
@@ -104,6 +96,8 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
10496

10597
#### Bug fixes
10698

99+
- Add [nursery/noShorthandPropertyOverrides](https://biomejs.dev/linter/rules/no-shorthand-property-overrides). [#2958](https://github.com/biomejs/biome/issues/2958) Contributed by @neokidev
100+
- Fix [[#3084](https://github.com/biomejs/biome/issues/3084)] false positive by correctly recognize parenthesized return statement. Contributed by @unvalley
107101
- [useImportExtensions](https://biomejs.dev/linter/rules/use-import-extensions/) now suggests a correct fix for `import '.'` and `import './.'`. Contributed by @minht11
108102
- 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.
109103
- 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
152146

153147
## v1.8.1 (2024-06-10)
154148

155-
### Analyzer
156-
157149
### CLI
158150

159151
#### Bug fixes
@@ -167,17 +159,13 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
167159

168160
- Fix [#3067](https://github.com/biomejs/biome/issues/3067), by assigning the correct default value to `indentWidth`. Contributed by @ematipico
169161

170-
### Editors
171-
172162
### Formatter
173163

174164
#### Bug fixes
175165
- Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes [#3061](https://github.com/biomejs/biome/issues/3061). Contributed by @denbezrukov
176166
- 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
177167
- Fix the formatting of CSS grid layout properties. Contributed by @denbezrukov
178168

179-
### JavaScript APIs
180-
181169
### Linter
182170

183171
#### Bug fixes
@@ -224,10 +212,9 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b
224212

225213
### Parser
226214

227-
#### New features
228-
- Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by @denbezrukov
229-
230215
#### Bug fixes
216+
217+
- Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by @denbezrukov
231218
- Fix [#3055](https://github.com/biomejs/biome/issues/3055) CSS: Layout using named grid lines is now correctly parsed. Contributed by @denbezrukov
232219
- 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
233220

packages/@biomejs/biome/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/biome",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"bin": {
55
"biome": "bin/biome"
66
},

packages/@biomejs/js-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/js-api",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "JavaScript APIs for the Biome package",
55
"scripts": {
66
"tsc": "tsc --noEmit",

0 commit comments

Comments
 (0)