Skip to content

Commit 09f49ba

Browse files
ci: release (#6467)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ccc18db commit 09f49ba

File tree

31 files changed

+76
-62
lines changed

31 files changed

+76
-62
lines changed

.changeset/late-flies-glow.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/little-things-brush.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/mean-ways-make.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/modern-meals-end.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

packages/@biomejs/backend-jsonrpc/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/backend-jsonrpc
22

3+
## 2.0.5
4+
35
## 2.0.4
46

57
## 2.0.3

packages/@biomejs/backend-jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/backend-jsonrpc",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"main": "dist/index.js",
55
"scripts": {
66
"test": "vitest",

packages/@biomejs/biome/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# @biomejs/biome
22

3+
## 2.0.5
4+
5+
### Patch Changes
6+
7+
- [#6461](https://github.com/biomejs/biome/pull/6461) [`38862e6`](https://github.com/biomejs/biome/commit/38862e645c07935f2daf52799dce38656d589d40) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#6419](https://github.com/biomejs/biome/issues/6419), a regression where stdin mode would create a temporary new file instead of using the one provided by the user. This was an intended regression.
8+
9+
Now Biome will use the file path passed via `--std-file-path`, and apply the configuration that matches it.
10+
11+
- [#6480](https://github.com/biomejs/biome/pull/6480) [`050047f`](https://github.com/biomejs/biome/commit/050047f4a3c1379abcf3cf57f1bfecd20bb7d8c1) Thanks [@Conaclos](https://github.com/Conaclos)! - Fixed [#6371](https://github.com/biomejs/biome/issues/6371).
12+
[useNamingConvention](https://biomejs.dev/linter/rules/use-naming-convention/) now checks the string case of objects' property shorthand.
13+
14+
- [#6477](https://github.com/biomejs/biome/pull/6477) [`b98379d`](https://github.com/biomejs/biome/commit/b98379d42d97540c3bd911263a0af1eb7bc4803e) Thanks [@ematipico](https://github.com/ematipico)! - Fixed an issue where Biome formatter didn't format consistently CSS value separated by commas.
15+
16+
```diff
17+
.font-heading {
18+
- font-feature-settings: var(--heading-salt), var(--heading-ss06),
19+
- var(--heading-ss11), var(--heading-cv09), var(--heading-liga),
20+
- var(--heading-calt);
21+
22+
+ font-feature-settings:
23+
+ var(--heading-salt), var(--heading-ss06), var(--heading-ss11),
24+
+ var(--heading-cv09), var(--heading-liga), var(--heading-calt);
25+
}
26+
27+
```
28+
29+
- [#6248](https://github.com/biomejs/biome/pull/6248) [`ec7126c`](https://github.com/biomejs/biome/commit/ec7126ca3d6777344191f3463b430a44fce02489) Thanks [@fireairforce](https://github.com/fireairforce)! - Fixed grit pattern matching for different kinds of import statements.
30+
31+
The grit pattern `import $imports from "foo"` will match the following code:
32+
33+
```ts
34+
import bar from "foo";
35+
import { bar } from "foo";
36+
import { bar, baz } from "foo";
37+
```
38+
339
## 2.0.4
440

541
### Patch Changes

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": "2.0.4",
3+
"version": "2.0.5",
44
"bin": {
55
"biome": "bin/biome"
66
},

packages/@biomejs/cli-darwin-arm64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/cli-darwin-arm64
22

3+
## 2.0.5
4+
35
## 2.0.4
46

57
## 2.0.3

packages/@biomejs/cli-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/cli-darwin-arm64",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"license": "MIT OR Apache-2.0",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)