mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
release(oxlint): v0.15.5 (#8218)
## [0.15.5] - 2025-01-02 ### Features -0e168b8linter: Catch more cases in const-comparisons (#8215) (Cameron) -bde44a3linter: Add `statement_span` to `ModuleRecord/ImportEntry` (#8195) (Alexander S.) -ccaa9f7linter: Implement `eslint/new-cap` (#8146) (Alexander S.) ### Bug Fixes -2b14a6flinter: Fix `ignorePattern` config for windows (#8214) (Alexander S.) ### Testing -cb709c9linter: Fix some oxlint tests on windows (#8204) (Cameron) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
This commit is contained in:
parent
2b14a6fb54
commit
d2d90b077b
7 changed files with 28 additions and 6 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxlint"
|
||||
version = "0.15.4"
|
||||
version = "0.15.5"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue