Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v1.9.3 #4140

Merged
merged 4 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ 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
## v1.9.3 (2024-10-01)

### CLI

Expand Down Expand Up @@ -80,6 +78,10 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b

#### New features

- Add [noDescendingSpecificity](https://biomejs.dev/linter/rules/no-descending-specificity/). Contributed by @tunamaguro

- Add [noNestedTernary](https://biomejs.dev/linter/rules/no-nested-ternary/). Contributed by @kaykdm

- Add [noTemplateCurlyInString](https://biomejs.dev/linter/rules/no-template-curly-in-string/). Contributed by @fireairforce

- Add [noOctalEscape](https://biomejs.dev/linter/rules/no-octal-escape/). Contributed by @fireairforce
Expand Down
Empty file removed aria-data-1-3-draft.json
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ declare_lint_rule! {
/// ```
///
pub NoDescendingSpecificity {
version: "next",
version: "1.9.3",
name: "noDescendingSpecificity",
language: "css",
recommended: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ declare_lint_rule! {
/// ```
///
pub NoNestedTernary {
version: "next",
version: "1.9.3",
name: "noNestedTernary",
language: "js",
recommended: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ declare_lint_rule! {
/// ```
///
pub NoOctalEscape {
version: "next",
version: "1.9.3",
name: "noOctalEscape",
language: "js",
sources: &[RuleSource::Eslint("no-octal-escape")],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ declare_lint_rule! {
/// ```
///
pub NoTemplateCurlyInString {
version: "next",
version: "1.9.3",
name: "noTemplateCurlyInString",
language: "js",
sources: &[RuleSource::Eslint("no-template-curly-in-string")],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ declare_lint_rule! {
/// ```
///
pub UseExplicitFunctionReturnType {
version: "next",
version: "1.9.3",
name: "useExplicitFunctionReturnType",
language: "ts",
recommended: false,
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.9.2",
"version": "1.9.3",
"bin": {
"biome": "bin/biome"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/js-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/js-api",
"version": "0.6.2",
"version": "0.7.0",
"description": "JavaScript APIs for the Biome package",
"scripts": {
"tsc": "tsc --noEmit",
Expand Down
9 changes: 5 additions & 4 deletions packages/@biomejs/wasm-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@biomejs/biome_wasm",
"name": "@biomejs/wasm-nodejs",
"collaborators": [
"Biome Developers and Contributors"
],
"description": "WebAssembly bindings to the Biome workspace API",
"version": "1.7.3",
"version": "1.8.3",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/biomejs/biome"
"url": "git+https://github.com/biomejs/biome.git",
"directory": "packages/@biomejs/biome/wasm-nodejs"
Comment on lines +2 to +12
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am restoring unwanted changes that were introduced by another PR of mine

},
"files": [
"biome_wasm_bg.wasm",
Expand All @@ -24,4 +25,4 @@
"formatter",
"wasm"
]
}
}