release(oxlint): v0.15.5 (#8218)

## [0.15.5] - 2025-01-02

### Features

- 0e168b8 linter: Catch more cases in const-comparisons (#8215)
(Cameron)
- bde44a3 linter: Add `statement_span` to `ModuleRecord/ImportEntry`
(#8195) (Alexander S.)
- ccaa9f7 linter: Implement `eslint/new-cap`  (#8146) (Alexander S.)

### Bug Fixes

- 2b14a6f linter: Fix `ignorePattern` config for windows (#8214)
(Alexander S.)

### Testing

- cb709c9 linter: Fix some oxlint tests on windows (#8204) (Cameron)

Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
This commit is contained in:
oxc-bot 2025-01-02 18:55:31 +08:00 committed by GitHub
parent 2b14a6fb54
commit d2d90b077b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 28 additions and 6 deletions

4
Cargo.lock generated
View file

@ -1693,7 +1693,7 @@ dependencies = [
[[package]]
name = "oxc_linter"
version = "0.15.4"
version = "0.15.5"
dependencies = [
"bitflags 2.6.0",
"convert_case",
@ -2128,7 +2128,7 @@ dependencies = [
[[package]]
name = "oxlint"
version = "0.15.4"
version = "0.15.5"
dependencies = [
"bpaf",
"glob",

View file

@ -4,6 +4,16 @@ 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.5] - 2025-01-02
### Bug Fixes
- 2b14a6f linter: Fix `ignorePattern` config for windows (#8214) (Alexander S.)
### Testing
- cb709c9 linter: Fix some oxlint tests on windows (#8204) (Cameron)
## [0.15.4] - 2024-12-30
### Bug Fixes

View file

@ -1,6 +1,6 @@
[package]
name = "oxlint"
version = "0.15.4"
version = "0.15.5"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -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.5] - 2025-01-02
### Features
- 0e168b8 linter: Catch more cases in const-comparisons (#8215) (Cameron)
- bde44a3 linter: Add `statement_span` to `ModuleRecord/ImportEntry` (#8195) (Alexander S.)
- ccaa9f7 linter: Implement `eslint/new-cap` (#8146) (Alexander S.)
### Bug Fixes
- 2b14a6f linter: Fix `ignorePattern` config for windows (#8214) (Alexander S.)
## [0.15.4] - 2024-12-30
- ed75e42 semantic: [**BREAKING**] Make SymbolTable fields `pub(crate)` instead of `pub` (#7999) (Boshen)

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_linter"
version = "0.15.4"
version = "0.15.5"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -2,7 +2,7 @@
"name": "oxc-vscode",
"description": "oxc vscode extension",
"license": "MIT",
"version": "0.15.4",
"version": "0.15.5",
"icon": "icon.png",
"publisher": "oxc",
"displayName": "Oxc",

View file

@ -1,6 +1,6 @@
{
"name": "oxlint",
"version": "0.15.4",
"version": "0.15.5",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
"author": "Boshen and oxc contributors",