Skip to content

Commit

Permalink
release: 1.5.2 (#1562)
Browse files Browse the repository at this point in the history
Co-authored-by: Emanuele Stoppa <[email protected]>
  • Loading branch information
Conaclos and ematipico authored Jan 15, 2024
1 parent c24c4c5 commit 80bb3d7
Show file tree
Hide file tree
Showing 10 changed files with 2,606 additions and 35 deletions.
12 changes: 1 addition & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +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

### Analyzer
## 1.5.2 (2024-01-15)

### CLI

Expand Down Expand Up @@ -70,8 +68,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
A file is processed if it is included and not ignored.
If `include` is not set all files are considered included.
### Editors
### Formatter
#### Bug fixes
Expand All @@ -84,12 +80,8 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
- Fix [#1511](https://github.com/biomejs/biome/issues/1511) that made the JavaScript formatter crash. Contributed @Conaclos
### JavaScript APIs
### Linter
#### New features
#### Enhancements
- Add an unsafe code fix for [noConsoleLog](https://biomejs.dev/linter/rules/no-console-log/). Contributed by @vasucp1207
Expand Down Expand Up @@ -125,8 +117,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
- Fix [#1514](https://github.com/biomejs/biome/issues/1514). Fix autofix suggestion to avoid the syntax error in `no_useless_fragments`. Contributed by @togami2864
### Parser
## 1.5.1 (2024-01-10)
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.5.1",
"version": "1.5.2",
"bin": "bin/biome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/guides/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ After running the `init` command, you'll now have a new `biome.json` file in you

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"organizeImports": {
"enabled": false
},
Expand Down
12 changes: 1 addition & 11 deletions website/src/content/docs/internals/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +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

### Analyzer
## 1.5.2 (2024-01-15)

### CLI

Expand Down Expand Up @@ -76,8 +74,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
A file is processed if it is included and not ignored.
If `include` is not set all files are considered included.
### Editors
### Formatter
#### Bug fixes
Expand All @@ -90,12 +86,8 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
- Fix [#1511](https://github.com/biomejs/biome/issues/1511) that made the JavaScript formatter crash. Contributed @Conaclos
### JavaScript APIs
### Linter
#### New features
#### Enhancements
- Add an unsafe code fix for [noConsoleLog](https://biomejs.dev/linter/rules/no-console-log/). Contributed by @vasucp1207
Expand Down Expand Up @@ -131,8 +123,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
- Fix [#1514](https://github.com/biomejs/biome/issues/1514). Fix autofix suggestion to avoid the syntax error in `no_useless_fragments`. Contributed by @togami2864
### Parser
## 1.5.1 (2024-01-10)
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/ja/guides/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Biomeをインストールする際には、バージョン範囲演算子を使

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"organizeImports": {
"enabled": false
},
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/pt-br/guides/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Após utilizar o comando, você terá um novo arquivo `biome.json` no seu diret

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"organizeImports": {
"enabled": false
},
Expand Down
8 changes: 4 additions & 4 deletions website/src/content/docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you have problems with resolving the physical file, you can use the one publi

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json"
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json"
}
```

Expand All @@ -41,14 +41,14 @@ A list of paths to other JSON files. Biome resolves and applies the options of t

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"extends": ["./formatter.json", "./linter.json"]
}
```

```json title="formatter.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"formatter": {
"indentSize": 2
},
Expand All @@ -62,7 +62,7 @@ A list of paths to other JSON files. Biome resolves and applies the options of t

```json title="linter.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"linter": {
"rules": {
"complexity": {
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/zh-cn/guides/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import PackageManagerCommand from "@src/components/PackageManagerCommand.astro";

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"organizeImports": {
"enabled": false
},
Expand Down
8 changes: 4 additions & 4 deletions website/src/content/docs/zh-cn/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import LintGroups from "@src/components/generated/Groups.astro";

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json"
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json"
}
```

Expand All @@ -37,14 +37,14 @@ import LintGroups from "@src/components/generated/Groups.astro";

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"extends": ["./formatter.json", "./linter.json"]
}
```

```json title="formatter.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"formatter": {
"indentSize": 2
},
Expand All @@ -58,7 +58,7 @@ import LintGroups from "@src/components/generated/Groups.astro";

```json title="linter.json"
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"linter": {
"rules": {
"complexity": {
Expand Down
Loading

0 comments on commit 80bb3d7

Please sign in to comment.