Skip to content

Commit

Permalink
release: 1.1.0 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Sep 6, 2023
1 parent ed63b35 commit f015196
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 12 deletions.
23 changes: 18 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

## Unreleased

### CLI
### Configuration
### Editors
### Formatter
### JavaScript APIs
### Linter
### Parser
### VSCode

## 1.1.0 (2023-09-05)

### Analyzer

#### Enhancements

- Add a code action to replace `rome-ignore` with `biome-ignore`. Use `rome check --apply-unsafe` to update all the comments. The action is not bulletproof, and it might generate unwanted code, that's why it's unsafe action.


### CLI

#### Enhancements
Expand All @@ -30,6 +42,12 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

### Configuration
### Editors

#### Bug fixes

- The LSP now uses its own socket and won't rely on Rome's socket. This fixes some cases where users were seeing
multiple servers in the `rage` output.

### Formatter

#### Enhancements
Expand Down Expand Up @@ -166,11 +184,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
Previously [noUnreachableSuper](https://biomejs.dev/linter/rules/no-unreacheable-super/) reported valid codes with complex nesting of control flow structures.
### Parser
### VSCode
## 1.0.0 (2023-08-28)
### Analyzer
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.0.1",
"version": "1.2.0",
"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.0.0",
"version": "1.1.0",
"bin": "bin/biome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down
23 changes: 18 additions & 5 deletions website/src/content/docs/internals/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,24 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

## Unreleased

### CLI
### Configuration
### Editors
### Formatter
### JavaScript APIs
### Linter
### Parser
### VSCode

## 1.1.0 (2023-09-05)

### Analyzer

#### Enhancements

- Add a code action to replace `rome-ignore` with `biome-ignore`. Use `rome check --apply-unsafe` to update all the comments. The action is not bulletproof, and it might generate unwanted code, that's why it's unsafe action.


### CLI

#### Enhancements
Expand All @@ -36,6 +48,12 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom

### Configuration
### Editors

#### Bug fixes

- The LSP now uses its own socket and won't rely on Rome's socket. This fixes some cases where users were seeing
multiple servers in the `rage` output.

### Formatter

#### Enhancements
Expand Down Expand Up @@ -172,11 +190,6 @@ Read our [guidelines for writing a good changelog entry](https://github.com/biom
Previously [noUnreachableSuper](https://biomejs.dev/linter/rules/no-unreacheable-super/) reported valid codes with complex nesting of control flow structures.
### Parser
### VSCode
## 1.0.0 (2023-08-28)
### Analyzer
Expand Down
18 changes: 18 additions & 0 deletions website/src/pages/schemas/1.1.0/schema.json.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Run `BIOME_VERSION=<version number> cargo codegen-website
// to generate a new schema
import { readFileSync } from "fs";
import { join, resolve } from "path";

export function get() {
const schemaPath = resolve(
join("..", "packages", "@biomejs", "biome", "configuration_schema.json"),
);
const schema = readFileSync(schemaPath, "utf8");

return new Response(schema, {
status: 200,
headers: {
"content-type": "application/json",
},
});
}

0 comments on commit f015196

Please sign in to comment.