From 21b964b214758d8fe3685ca2a6515cb4742a26e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 17:01:56 +0800 Subject: [PATCH] Release oxlint v0.5.1 (#3967) ## [0.5.1] - 2024-06-29 ### Features - f64ad4b semantic: Make jsdoc building optional (turned off by default) (#3955) (Boshen) ### Bug Fixes - c26975a linter: Only show the filename for max-lines (#3966) (Boshen) - 94329e4 linter: Handle useful but empty constructors in no-useless-constructor (#3951) (DonIsaac) - 6498a08 linter: No-useless-spread fixer with multiple spread elements (#3950) (DonIsaac) - 750cb43 oxlint: Gate custom allocators by feature flag (#3945) (Luca Bruno) ### Refactor - 1cca2a8 eslint: Convert with_labels to with_label where applicable (#3946) (Jelle van der Waa) - 2705df9 linter: Improve diagnostic labeling (#3960) (DonIsaac) Co-authored-by: Boshen --- Cargo.lock | 4 ++-- apps/oxlint/CHANGELOG.md | 6 ++++++ apps/oxlint/Cargo.toml | 2 +- crates/oxc_linter/CHANGELOG.md | 17 +++++++++++++++++ crates/oxc_linter/Cargo.toml | 2 +- editors/vscode/package.json | 2 +- npm/oxlint/package.json | 2 +- 7 files changed, 29 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5fef401372a7..80aeaf994fda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1484,7 +1484,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.5.0" +version = "0.5.1" dependencies = [ "convert_case", "dashmap", @@ -1824,7 +1824,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 08c6f30cf9d7..01f511be2596 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/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.5.1] - 2024-06-29 + +### Bug Fixes + +- 750cb43 oxlint: Gate custom allocators by feature flag (#3945) (Luca Bruno) + ## [0.5.0] - 2024-06-27 ### Features diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 07ec5a6461e9..b9b57d7c671f 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.5.0" +version = "0.5.1" publish = false authors.workspace = true description.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index d858bed3c30f..32b78022fc43 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,23 @@ 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.5.1] - 2024-06-29 + +### Features + +- f64ad4b semantic: Make jsdoc building optional (turned off by default) (#3955) (Boshen) + +### Bug Fixes + +- c26975a linter: Only show the filename for max-lines (#3966) (Boshen) +- 94329e4 linter: Handle useful but empty constructors in no-useless-constructor (#3951) (DonIsaac) +- 6498a08 linter: No-useless-spread fixer with multiple spread elements (#3950) (DonIsaac) + +### Refactor + +- 1cca2a8 eslint: Convert with_labels to with_label where applicable (#3946) (Jelle van der Waa) +- 2705df9 linter: Improve diagnostic labeling (#3960) (DonIsaac) + ## [0.5.0] - 2024-06-27 - 6796891 ast: [**BREAKING**] Rename all instances of `BigintLiteral` to `BigIntLiteral`. (#3898) (rzvxa) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 3c788fbd13a3..a8a4e0feb690 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.5.0" +version = "0.5.1" publish = false authors.workspace = true description.workspace = true diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 57f2e6519074..cba82a7750b0 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.5.0", + "version": "0.5.1", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 1c289b7540e9..d7ad2f354efe 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.5.0", + "version": "0.5.1", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",