Skip to content

Commit

Permalink
release(oxlint): v0.15.11 (#9150)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxc-bot authored Feb 16, 2025
1 parent 85b14a3 commit 7f5c5d2
Show file tree
Hide file tree
Showing 9 changed files with 78 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions apps/oxlint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11] - 2025-02-16

### Features

- 5d508a4 linter: Support `env` and `globals` in `overrides` configuration (#8915) (Sysix)

### Bug Fixes

- 47c1649 linter: Output line/column for `--format=stylish` instead of offset + length (#9136) (Sysix)

### Styling

- a4a8e7d all: Replace `#[allow]` with `#[expect]` (#8930) (overlookmotel)

## [0.15.10] - 2025-02-06

### Features
Expand Down
2 changes: 1 addition & 1 deletion apps/oxlint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxlint"
version = "0.15.10"
version = "0.15.11"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
46 changes: 46 additions & 0 deletions crates/oxc_linter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,52 @@ 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.11] - 2025-02-16

- 21a9476 ast: [**BREAKING**] Remove `TSLiteral::RegExpLiteral` (#9056) (Dunqing)

- 9091387 ast: [**BREAKING**] Remove `TSType::TSQualifiedName` (#9051) (Dunqing)

### Features

- d93bf0e linter: Implement func-style rule (#8977) (yefan)
- a870526 linter: Add vitest/no-standalone-expect rule (#8986) (Tyler Earls)
- addaa8e linter: Support es2025 env (#8985) (Sysix)
- 5d508a4 linter: Support `env` and `globals` in `overrides` configuration (#8915) (Sysix)
- 41ad42a linter: Add init-declarations rule (#8909) (yefan)
- 125d610 minifier: Fold String::charAt / String::charCodeAt more precisely (#9082) (sapphi-red)

### Bug Fixes

- 8cbdf00 ecmascript: To_boolean for shadowed undefined (#9105) (sapphi-red)
- cfc71f9 ecmascript: To_string for shadowed undefined (#9103) (sapphi-red)
- b68e240 linter: Rule `unicorn/new-for-builtins` do not look into `globals` (#9146) (Sysix)
- 490c77d linter: Rule `no-constant-binary-expression` do not look into `globals` (#9145) (Sysix)
- b36734c linter: Rule `promise/avoid-new` do not look into `globals` (#9144) (Sysix)
- 091a5c1 linter: Rule `no-new-native-nonconstructor` do not look into globals (#9143) (Sysix)
- 1c1d2e6 linter: Rule `symbol-description` do not look into `globals` (#9142) (Sysix)
- 6d15153 linter: Rule `prefer-object-spreads` do not look into `globals` (#9141) (Sysix)
- 9214661 linter: Rule `valid-typeof` do not check for `globals` (#9140) (Sysix)
- 29141d6 linter: Rule `no-restricted-globals`: do not check for `globals` entries (#9139) (Sysix)
- 23d0d95 linter: Report `no-console` when the `globals.console` is `off` (#9138) (Sysix)
- 157e1a1 linter: False positive in `jest/no-conditional-expect` (#9053) (dalaoshu)
- 28b5990 linter: Rule `no-restricted-imports`: improve diagnostics (#8113) (Alexander S.)
- b191390 linter: `no-global-assign` look into `globals` config (#8963) (Sysix)
- 44d985b linter: Correct the `is_reference_to_global_variable` (#8920) (dalaoshu)

### Documentation

- 02cb45b linter: Add prettier-ignore where formatting ruins code (#8978) (camchenry)

### Refactor

- 97cc1c8 ast: Remove `TSLiteral::NullLiteral` (replaced by `TSNullKeyword`) (#9147) (Boshen)
- 9ca22f4 linter: Improve `jsx-a11y/heading-has-content` (#9089) (dalaoshu)

### Styling

- a4a8e7d all: Replace `#[allow]` with `#[expect]` (#8930) (overlookmotel)

## [0.15.10] - 2025-02-06

- b7ff7e1 span: [**BREAKING**] Export `ContentEq` trait from root of `oxc_span` crate (#8869) (overlookmotel)
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_linter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_linter"
version = "0.15.10"
version = "0.15.11"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11] - 2025-02-16

### Bug Fixes

- bcd4e49 editors/vscode: Fix `no-useless-call` warning (Boshen)

## [0.15.10] - 2025-02-06

### Features
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "oxc-vscode",
"description": "oxc vscode extension",
"license": "MIT",
"version": "0.15.10",
"version": "0.15.11",
"icon": "icon.png",
"publisher": "oxc",
"displayName": "Oxc",
Expand Down
6 changes: 6 additions & 0 deletions npm/oxlint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11] - 2025-02-16

### Features

- 5d508a4 linter: Support `env` and `globals` in `overrides` configuration (#8915) (Sysix)

## [0.15.8] - 2025-01-24

### Features
Expand Down
2 changes: 1 addition & 1 deletion npm/oxlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxlint",
"version": "0.15.10",
"version": "0.15.11",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
"author": "Boshen and oxc contributors",
Expand Down

0 comments on commit 7f5c5d2

Please sign in to comment.