Skip to content

Commit

Permalink
chore: release main (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Jun 12, 2024
1 parent 52fbf5c commit 2a7bed4
Show file tree
Hide file tree
Showing 12 changed files with 72 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/object-schema": "2.1.3",
"packages/config-array": "0.15.1",
"packages/compat": "1.0.3",
"packages/migrate-config": "1.0.1"
"packages/object-schema": "2.1.4",
"packages/config-array": "0.16.0",
"packages/compat": "1.1.0",
"packages/migrate-config": "1.1.0"
}
12 changes: 12 additions & 0 deletions packages/compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [1.1.0](https://github.com/eslint/rewrite/compare/compat-v1.0.3...compat-v1.1.0) (2024-06-12)


### Features

* Add includeIgnoreFile() method ([#47](https://github.com/eslint/rewrite/issues/47)) ([b5f74ed](https://github.com/eslint/rewrite/commit/b5f74ed7bf20f287cc88579f2c6d9a27943d1105))


### Bug Fixes

* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))

## [1.0.3](https://github.com/eslint/rewrite/compare/compat-v1.0.2...compat-v1.0.3) (2024-05-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/compat/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/compat",
"version": "1.0.3",
"version": "1.1.0",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion packages/compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/compat",
"version": "1.0.3",
"version": "1.1.0",
"description": "Compatibility utilities for ESLint",
"type": "module",
"main": "dist/esm/index.js",
Expand Down
25 changes: 25 additions & 0 deletions packages/config-array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.16.0](https://github.com/eslint/rewrite/compare/config-array-v0.15.1...config-array-v0.16.0) (2024-06-12)


### ⚠ BREAKING CHANGES

* treat `*` as a universal pattern ([#50](https://github.com/eslint/rewrite/issues/50))
* Remove `ConfigArray#isExplicitMatch()` ([#53](https://github.com/eslint/rewrite/issues/53))

### Features

* Remove `ConfigArray#isExplicitMatch()` ([#53](https://github.com/eslint/rewrite/issues/53)) ([10d8200](https://github.com/eslint/rewrite/commit/10d8200fbc99ae4496fc308af82930bb41aeacfa))


### Bug Fixes

* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))
* treat `*` as a universal pattern ([#50](https://github.com/eslint/rewrite/issues/50)) ([79ad4bc](https://github.com/eslint/rewrite/commit/79ad4bcd09f73e66168ee3936c3c260af2c9953a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @eslint/object-schema bumped from ^2.1.3 to ^2.1.4

## [0.15.1](https://github.com/eslint/rewrite/compare/config-array-v0.15.0...config-array-v0.15.1) (2024-05-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/config-array/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/config-array",
"version": "0.15.1",
"version": "0.16.0",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
4 changes: 2 additions & 2 deletions packages/config-array/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/config-array",
"version": "0.15.1",
"version": "0.16.0",
"description": "General purpose glob-based configuration matching.",
"author": "Nicholas C. Zakas",
"type": "module",
Expand Down Expand Up @@ -46,7 +46,7 @@
],
"license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.3",
"@eslint/object-schema": "^2.1.4",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/migrate-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.1.0](https://github.com/eslint/rewrite/compare/migrate-config-v1.0.1...migrate-config-v1.1.0) (2024-06-12)


### Features

* Add --gitignore flag to read in .gitignore files ([#55](https://github.com/eslint/rewrite/issues/55)) ([3d9f7ce](https://github.com/eslint/rewrite/commit/3d9f7cedd9a2bfc9827fe338fa3b948a00cd088f))
* Add includeIgnoreFile() method ([#47](https://github.com/eslint/rewrite/issues/47)) ([b5f74ed](https://github.com/eslint/rewrite/commit/b5f74ed7bf20f287cc88579f2c6d9a27943d1105))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @eslint/compat bumped from ^1.0.3 to ^1.1.0

## [1.0.1](https://github.com/eslint/rewrite/compare/migrate-config-v1.0.0...migrate-config-v1.0.1) (2024-06-03)


Expand Down
4 changes: 2 additions & 2 deletions packages/migrate-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/migrate-config",
"version": "1.0.1",
"version": "1.1.0",
"description": "Configuration migration for ESLint",
"type": "module",
"bin": {
Expand Down Expand Up @@ -46,7 +46,7 @@
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"dependencies": {
"@eslint/compat": "^1.0.3",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"camelcase": "^8.0.0",
"recast": "^0.23.7"
Expand Down
7 changes: 7 additions & 0 deletions packages/object-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.1.4](https://github.com/eslint/rewrite/compare/object-schema-v2.1.3...object-schema-v2.1.4) (2024-06-12)


### Bug Fixes

* Add 'main' and 'types' entries to package.json ([#48](https://github.com/eslint/rewrite/issues/48)) ([16ee1fa](https://github.com/eslint/rewrite/commit/16ee1fad998cc654208628ccb06958d29f95a3a5))

## [2.1.3](https://github.com/eslint/rewrite/compare/object-schema-v2.1.2...object-schema-v2.1.3) (2024-05-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/object-schema/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/object-schema",
"version": "2.1.3",
"version": "2.1.4",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion packages/object-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/object-schema",
"version": "2.1.3",
"version": "2.1.4",
"description": "An object schema merger/validator",
"type": "module",
"main": "dist/esm/index.js",
Expand Down

0 comments on commit 2a7bed4

Please sign in to comment.