Skip to content

Commit

Permalink
release: 1.3.2 (#635)
Browse files Browse the repository at this point in the history
Co-authored-by: Superchupu <[email protected]>
  • Loading branch information
ematipico and SuperchupuDev authored Oct 30, 2023
1 parent 16b4324 commit 6c38b0f
Show file tree
Hide file tree
Showing 6 changed files with 2,194 additions and 21 deletions.
16 changes: 7 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Read our [guidelines to categorize a change](https://biomejs.dev/internals/versi
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
## 1.3.2 (2023-10-30)

### Analyzer

Expand All @@ -24,20 +24,19 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
Now the options inside `overrides` override the top-level options.
- Bootstrap the logger only when needed. Contributed by @ematipico

### Configuration

### Editors

#### Bug fixes

- Fix [#592](https://github.com/biomejs/biome/issues/592), by changing binary resolution in the IntelliJ plugin. Contributed by @Joshuabaker2

### Formatter

#### Bug fixes

- Apply the correct layout when the right hand of an assignment expression is a await expression or a yield expression. Contributed by @ematipico
- Fix [#303](https://github.com/biomejs/biome/issues/303), where nested arrow functions didn't break. Contributed by @victor-teles


### JavaScript APIs

### Linter

#### Bug fixes
Expand All @@ -52,16 +51,15 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

- Fix [#591](https://github.com/biomejs/biome/issues/591) which made [noRedeclare](https://biomejs.dev/linter/rules/no-redeclare) report type parameters with identical names but in different method signatures. Contributed by @Conaclos
- Support more a11y roles and fix some methods for a11y lint rules Contributed @nissy-dev

- Fix `useExhaustiveDependencies`, by removing `useContext`, `useId` and `useSyncExternalStore` from the known hooks. Contributed by @msdlisper
-
### Parser

#### Enhancements

- Support RegExp v flag. Contributed by @nissy-dev
- Improve error messages. Contributed by @ematipico

### VSCode

## 1.3.1 (2023-10-20)

### CLI
Expand Down
2 changes: 1 addition & 1 deletion editors/intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.biomejs.intellijbiome
pluginName = Biome
pluginRepositoryUrl = https://github.com/biomejs/biome
# SemVer format -> https://semver.org
pluginVersion = 0.0.5
pluginVersion = 0.0.6

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "biomejs",
"displayName": "Biome",
"description": "Biome LSP VS Code Extension",
"version": "1.6.1",
"version": "1.6.2",
"icon": "icon.png",
"activationEvents": [
"onLanguage:javascript",
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.3.1",
"version": "1.3.2",
"bin": "bin/biome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down
16 changes: 7 additions & 9 deletions website/src/content/docs/internals/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Read our [guidelines to categorize a change](https://biomejs.dev/internals/versi
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
## 1.3.2

### Analyzer

Expand All @@ -30,20 +30,19 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
Now the options inside `overrides` override the top-level options.
- Bootstrap the logger only when needed. Contributed by @ematipico

### Configuration

### Editors

#### Bug fixes

- Fix [#592](https://github.com/biomejs/biome/issues/592), by changing binary resolution in the IntelliJ plugin. Contributed by @Joshuabaker2

### Formatter

#### Bug fixes

- Apply the correct layout when the right hand of an assignment expression is a await expression or a yield expression. Contributed by @ematipico
- Fix [#303](https://github.com/biomejs/biome/issues/303), where nested arrow functions didn't break. Contributed by @victor-teles


### JavaScript APIs

### Linter

#### Bug fixes
Expand All @@ -58,16 +57,15 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

- Fix [#591](https://github.com/biomejs/biome/issues/591) which made [noRedeclare](https://biomejs.dev/linter/rules/no-redeclare) report type parameters with identical names but in different method signatures. Contributed by @Conaclos
- Support more a11y roles and fix some methods for a11y lint rules Contributed @nissy-dev

- Fix `useExhaustiveDependencies`, by removing `useContext`, `useId` and `useSyncExternalStore` from the known hooks. Contributed by @msdlisper
-
### Parser

#### Enhancements

- Support RegExp v flag. Contributed by @nissy-dev
- Improve error messages. Contributed by @ematipico

### VSCode

## 1.3.1 (2023-10-20)

### CLI
Expand Down
Loading

0 comments on commit 6c38b0f

Please sign in to comment.