Skip to content

Commit

Permalink
Merge pull request #336 from javierbrea/release
Browse files Browse the repository at this point in the history
Release v4.2.2
  • Loading branch information
javierbrea authored Jul 7, 2024
2 parents 5636625 + cdfe3de commit dfd7b81
Show file tree
Hide file tree
Showing 8 changed files with 360 additions and 252 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-package-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4
- name: Get NPM version is new
id: check
uses: EndBug/[email protected].1
uses: EndBug/[email protected].4
with:
diff-search: true
file-name: ./package.json
Expand All @@ -30,7 +30,7 @@ jobs:
uses: martinbeentjes/[email protected]
- name: Check Changelog version
id: changelog_reader
uses: mindsers/[email protected].2
uses: mindsers/[email protected].3
with:
version: ${{ steps.package-version.outputs.current-version }}
path: ./CHANGELOG.md
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
### Removed
### BREAKING CHANGES

## [4.2.2] - 2024-07-07

### Changed
- chore([#334](https://github.com/javierbrea/eslint-plugin-boundaries/issues/334)): Remove is-core-module dependency ([@hmnzr](https://github.com/hmnzr))
- chore(dependencies): Bump micromatch to 4.0.7
- chore(devDependencies): Bum @typescript-eslint/eslint-plugin" to 7.15.0
- chore(devDependencies): Bump @typescript-eslint/parser to 7.15.0
- chore(devDependencies): Bump eslint to 8.57.0
- chore(devDependencies): Bump eslint-plugin-local-rules to 3.0.2
- chore(devDependencies): Bump lint-staged to 15.2.7
- chore(devDependencies): Bump mindsers/changelog-reader-action action to v2.2.3
- chore(devDependencies): Bumb prettier to 3.3.2
- chore(devDependencies): Bump EndBug/version-check action to v2.1.4

## [4.2.1] - 2024-05-16

### Changed
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,18 @@ Activate the plugin and one of the canned configs in your `.eslintrc.(yml|json|j
}
```

### Eslint v9 and above

You must use beta versions of this plugin starting from 5.0.0-beta.0 to use it with eslint v9 and above. The compatibility is not guaranteed yet. In case you face any issue, please open an issue.

To install the latest beta version, you can use the next command:

```sh
npm install --save-dev eslint-plugin-boundaries@beta
```

The beta eslint v9 beta versions are maintained in the [`release-eslint-v9` branch](https://github.com/javierbrea/eslint-plugin-boundaries/tree/release-eslint-v9). Once we have tested enough the compatibility with eslint v9 of predefined configurations, examples, and the integration with other eslint plugins, such as those needed to use TypeScript with this plugin, we will release a stable version.

## Overview

All of the plugin rules need to be able to identify the elements in the project, so, first of all you have to define your project element types by using the `boundaries/elements` setting.
Expand Down
Loading

0 comments on commit dfd7b81

Please sign in to comment.