Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Publish v9.6.0 release highlights #593

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/content/blog/2024-06-28-eslint-v9.6.0-released.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ layout: post
title: ESLint v9.6.0 released
teaser: "We just pushed ESLint v9.6.0, which is a minor release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release."
image: release-notes-minor.png
draft: true
authors:
- eslintbot
- mdjermanovic
categories:
- Release Notes
tags:
Expand All @@ -15,6 +14,11 @@ tags:



## Highlights

* ESLint's default parser `espree` now supports [RegExp duplicate named capturing groups](https://github.com/tc39/proposal-duplicate-named-capturing-groups) ES2025 syntax when `languageOptions.ecmaVersion` is set to `2025` or `"latest"` (default). Please note that the core rules have not yet been updated to support this syntax.
* Backslash (`\`) can now be used as an escape character in `files` and `ignores` patterns, regardless of the operating system. Note that only forward slash (`/`) is interpreted as a path separator in `files` and `ignores` patterns, regardless of the operating system.
* The messages reported by the [`no-unused-vars`](/docs/latest/rules/no-unused-vars) rule have been improved to include configured ignore patterns for different kinds of variables.



Expand Down Expand Up @@ -45,7 +49,7 @@ tags:


* [`13dbecd`](https://github.com/eslint/eslint/commit/13dbecdea749abf51951ce61662eec2621a4b9af) docs: Limit search to just docs ([#18627](https://github.com/eslint/eslint/issues/18627)) (Nicholas C. Zakas)
* [`375227f`](https://github.com/eslint/eslint/commit/375227f94da3c1c4ff6c61a29b272889fa48ca79) docs: Update getting-started.md - add pnpm to init eslint config ([#18599](https://github.com/eslint/eslint/issues/18599)) (Kostiantyn Ochenash)
* [`375227f`](https://github.com/eslint/eslint/commit/375227f94da3c1c4ff6c61a29b272889fa48ca79) docs: Update `getting-started.md` - add pnpm to init eslint config ([#18599](https://github.com/eslint/eslint/issues/18599)) (Kostiantyn Ochenash)
* [`44915bb`](https://github.com/eslint/eslint/commit/44915bb95dfa21f946021d77b3b361e7e9b140e0) docs: Update README (GitHub Actions Bot)
* [`d50db7b`](https://github.com/eslint/eslint/commit/d50db7bcb4c19c0631ab80b120249ecf155824ce) docs: Update vscode-eslint info ([#18595](https://github.com/eslint/eslint/issues/18595)) (Nicholas C. Zakas)

Expand Down
Loading