Skip to content

chore: release eslint-plugin-regexp (next) #626

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

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,39 @@
},
"changesets": [
"beige-fireants-dress",
"beige-suns-clap",
"brown-dragons-dance",
"calm-onions-yell",
"clean-kids-mate",
"clever-jobs-clap",
"curvy-shoes-kiss",
"cyan-rats-attend",
"cyan-waves-notice",
"early-guests-hug",
"friendly-walls-reply",
"gold-baboons-clap",
"green-peaches-explode",
"heavy-rings-reply",
"hungry-spoons-mix",
"itchy-trains-exist",
"khaki-colts-tell",
"large-dingos-allow",
"loud-flowers-search",
"lovely-brooms-explode",
"neat-rats-sneeze",
"rare-spiders-drop",
"rich-ways-exercise",
"short-dingos-dance",
"silly-bees-wave",
"six-squids-look",
"small-doors-lie",
"smart-chefs-poke",
"sour-feet-explain",
"spotty-phones-deliver",
"swift-guests-trade",
"tasty-penguins-cheat",
"thin-ears-relax",
"twenty-snails-chew",
"warm-ladybugs-wonder",
"wicked-rules-rhyme",
"young-hairs-bow"
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# eslint-plugin-regexp

## 2.0.0-next.9

### Major Changes

- Add `regexp/prefer-set-operation` rule ([#616](https://github.com/ota-meshi/eslint-plugin-regexp/pull/616))

### Minor Changes

- Add support for `v` flag to `regexp/optimal-quantifier-concatenation` ([#618](https://github.com/ota-meshi/eslint-plugin-regexp/pull/618))

- Add support for `v` flag to `regexp/prefer-character-class` ([#619](https://github.com/ota-meshi/eslint-plugin-regexp/pull/619))

- Add support for `v` flag to `regexp/use-ignore-case` ([#617](https://github.com/ota-meshi/eslint-plugin-regexp/pull/617))

- Add support for `v` flag to `regexp/no-misleading-capturing-group` ([#620](https://github.com/ota-meshi/eslint-plugin-regexp/pull/620))

- Add suggestions for `regexp/no-lazy-ends` ([#624](https://github.com/ota-meshi/eslint-plugin-regexp/pull/624))

- Add suggestions for `regexp/optimal-lookaround-quantifier` ([#623](https://github.com/ota-meshi/eslint-plugin-regexp/pull/623))

- Add suggestions for `regexp/no-empty-alternative` ([#621](https://github.com/ota-meshi/eslint-plugin-regexp/pull/621))

- Added suggestions for `regexp/no-escape-backspace` ([#622](https://github.com/ota-meshi/eslint-plugin-regexp/pull/622))

## 2.0.0-next.8

### Minor Changes
Expand Down
3 changes: 2 additions & 1 deletion docs/rules/prefer-set-operation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/prefer-set-operation"
description: "prefer character class set operations instead of lookarounds"
since: "v2.0.0-next.9"
---
# regexp/prefer-set-operation

Expand Down Expand Up @@ -40,7 +41,7 @@ Nothing.

## :rocket: Version

:exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
This rule was introduced in eslint-plugin-regexp v2.0.0-next.9

## :mag: Implementation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-regexp",
"version": "2.0.0-next.8",
"version": "2.0.0-next.9",
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
"engines": {
"node": "^18 || >=20"
Expand Down