From 1b4996c3170e9a1f350512ab6fe307f0de06fcf0 Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Fri, 24 Jan 2025 09:26:31 +0000 Subject: [PATCH] release(oxlint): v0.15.8 --- Cargo.lock | 4 ++-- apps/oxlint/CHANGELOG.md | 12 ++++++++++++ apps/oxlint/Cargo.toml | 2 +- crates/oxc_linter/CHANGELOG.md | 14 ++++++++++++++ crates/oxc_linter/Cargo.toml | 2 +- editors/vscode/CHANGELOG.md | 6 ++++++ editors/vscode/package.json | 2 +- npm/oxlint/CHANGELOG.md | 6 ++++++ npm/oxlint/package.json | 2 +- 9 files changed, 44 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3a5aa0cb8cea..def6ffd4185ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1773,7 +1773,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.15.7" +version = "0.15.8" dependencies = [ "bitflags 2.7.0", "convert_case 0.7.1", @@ -2215,7 +2215,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.15.7" +version = "0.15.8" dependencies = [ "bpaf", "ignore", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 52056ff43e8b5..7b1faf0f2030b 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/oxlint/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.8] - 2025-01-24 + +### Features + +- 4ae568e linter: Add DiagnosticResult to the Reporters for receiving a sub part result (#8666) (Alexander S.) +- 8a0eb2a oxlint: Add stylish formatter (#8607) (Andrew Powell) + +### Bug Fixes + +- 40316af linter: Fix github `endColumn` output (#8647) (Alexander S.) +- dc912fa linter: Added missing $schema property to default config (#8625) (Tapan Prakash) + ## [0.15.7] - 2025-01-19 ### Features diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index a27156fa1c83a..e4c81eb50f326 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.15.7" +version = "0.15.8" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index f9a84938c5787..81f38c46230f5 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.8] - 2025-01-24 + +### Features + +- dcaebe6 linter: Add "strict" option to `promise/prefer-await-to-then` rule (#8674) (Neil Fisher) + +### Refactor + +- a3dc4c3 crates: Clean up snapshot files (#8680) (Boshen) +- e66da9f isolated_declarations, linter, minifier, prettier, semantic, transformer: Remove unnecessary `ref` / `ref mut` syntax (#8643) (overlookmotel) +- 23b49a6 linter: Use `cow_to_ascii_lowercase` instead `cow_to_lowercase` (#8678) (Boshen) +- b8d9a51 span: Deal only in owned `Atom`s (#8641) (overlookmotel) +- ac4f98e span: Derive `Copy` on `Atom` (#8596) (branchseer) + ## [0.15.7] - 2025-01-19 - 4ce6329 semantic: [**BREAKING**] Ensure program outlives semantic (#8455) (Valentinas Janeiko) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 0fe2751b148f7..a504ae725f343 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.15.7" +version = "0.15.8" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 0d69527b2e03c..5490bb241bdc1 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.8] - 2025-01-24 + +### Refactor + +- 259a47b vscode: Move commands and `findBinary` to separate files (#8605) (Alexander S.) + ## [0.15.4] - 2024-12-30 ### Bug Fixes diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 5ec99ee8c26b0..1afc505aeb010 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "oxc-vscode", "description": "oxc vscode extension", "license": "MIT", - "version": "0.15.7", + "version": "0.15.8", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/CHANGELOG.md b/npm/oxlint/CHANGELOG.md index b6c1d85346ef0..2036c05996086 100644 --- a/npm/oxlint/CHANGELOG.md +++ b/npm/oxlint/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.8] - 2025-01-24 + +### Features + +- 79ba9b5 linter: Added support to run in Node.JS legacy versions (#8648) (Luiz Felipe Weber) + ## [0.15.7] - 2025-01-19 ### Features diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index c22329c3a1722..db160ae1a0f74 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.15.7", + "version": "0.15.8", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",