Skip to content

Commit 2a7bed4

Browse files
chore: release main (#49)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 52fbf5c commit 2a7bed4

File tree

12 files changed

+72
-13
lines changed

12 files changed

+72
-13
lines changed

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"packages/object-schema": "2.1.3",
3-
"packages/config-array": "0.15.1",
4-
"packages/compat": "1.0.3",
5-
"packages/migrate-config": "1.0.1"
2+
"packages/object-schema": "2.1.4",
3+
"packages/config-array": "0.16.0",
4+
"packages/compat": "1.1.0",
5+
"packages/migrate-config": "1.1.0"
66
}

packages/compat/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/eslint/rewrite/compare/compat-v1.0.3...compat-v1.1.0) (2024-06-12)
4+
5+
6+
### Features
7+
8+
* Add includeIgnoreFile() method ([#47](https://github.com/eslint/rewrite/issues/47)) ([b5f74ed](https://github.com/eslint/rewrite/commit/b5f74ed7bf20f287cc88579f2c6d9a27943d1105))
9+
10+
11+
### Bug Fixes
12+
13+
* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))
14+
315
## [1.0.3](https://github.com/eslint/rewrite/compare/compat-v1.0.2...compat-v1.0.3) (2024-05-30)
416

517

packages/compat/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/compat",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/compat",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"description": "Compatibility utilities for ESLint",
55
"type": "module",
66
"main": "dist/esm/index.js",

packages/config-array/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [0.16.0](https://github.com/eslint/rewrite/compare/config-array-v0.15.1...config-array-v0.16.0) (2024-06-12)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* treat `*` as a universal pattern ([#50](https://github.com/eslint/rewrite/issues/50))
9+
* Remove `ConfigArray#isExplicitMatch()` ([#53](https://github.com/eslint/rewrite/issues/53))
10+
11+
### Features
12+
13+
* Remove `ConfigArray#isExplicitMatch()` ([#53](https://github.com/eslint/rewrite/issues/53)) ([10d8200](https://github.com/eslint/rewrite/commit/10d8200fbc99ae4496fc308af82930bb41aeacfa))
14+
15+
16+
### Bug Fixes
17+
18+
* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))
19+
* treat `*` as a universal pattern ([#50](https://github.com/eslint/rewrite/issues/50)) ([79ad4bc](https://github.com/eslint/rewrite/commit/79ad4bcd09f73e66168ee3936c3c260af2c9953a))
20+
21+
22+
### Dependencies
23+
24+
* The following workspace dependencies were updated
25+
* dependencies
26+
* @eslint/object-schema bumped from ^2.1.3 to ^2.1.4
27+
328
## [0.15.1](https://github.com/eslint/rewrite/compare/config-array-v0.15.0...config-array-v0.15.1) (2024-05-30)
429

530

packages/config-array/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-array",
3-
"version": "0.15.1",
3+
"version": "0.16.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/config-array/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-array",
3-
"version": "0.15.1",
3+
"version": "0.16.0",
44
"description": "General purpose glob-based configuration matching.",
55
"author": "Nicholas C. Zakas",
66
"type": "module",
@@ -46,7 +46,7 @@
4646
],
4747
"license": "Apache-2.0",
4848
"dependencies": {
49-
"@eslint/object-schema": "^2.1.3",
49+
"@eslint/object-schema": "^2.1.4",
5050
"debug": "^4.3.1",
5151
"minimatch": "^3.0.5"
5252
},

packages/migrate-config/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/eslint/rewrite/compare/migrate-config-v1.0.1...migrate-config-v1.1.0) (2024-06-12)
4+
5+
6+
### Features
7+
8+
* Add --gitignore flag to read in .gitignore files ([#55](https://github.com/eslint/rewrite/issues/55)) ([3d9f7ce](https://github.com/eslint/rewrite/commit/3d9f7cedd9a2bfc9827fe338fa3b948a00cd088f))
9+
* Add includeIgnoreFile() method ([#47](https://github.com/eslint/rewrite/issues/47)) ([b5f74ed](https://github.com/eslint/rewrite/commit/b5f74ed7bf20f287cc88579f2c6d9a27943d1105))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @eslint/compat bumped from ^1.0.3 to ^1.1.0
17+
318
## [1.0.1](https://github.com/eslint/rewrite/compare/migrate-config-v1.0.0...migrate-config-v1.0.1) (2024-06-03)
419

520

packages/migrate-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/migrate-config",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Configuration migration for ESLint",
55
"type": "module",
66
"bin": {
@@ -46,7 +46,7 @@
4646
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
4747
},
4848
"dependencies": {
49-
"@eslint/compat": "^1.0.3",
49+
"@eslint/compat": "^1.1.0",
5050
"@eslint/eslintrc": "^3.1.0",
5151
"camelcase": "^8.0.0",
5252
"recast": "^0.23.7"

packages/object-schema/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.1.4](https://github.com/eslint/rewrite/compare/object-schema-v2.1.3...object-schema-v2.1.4) (2024-06-12)
4+
5+
6+
### Bug Fixes
7+
8+
* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))
9+
310
## [2.1.3](https://github.com/eslint/rewrite/compare/object-schema-v2.1.2...object-schema-v2.1.3) (2024-05-30)
411

512

0 commit comments

Comments
 (0)