diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 85179a5..8db2893 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "packages/compat": "1.2.1", - "packages/config-array": "0.18.0", - "packages/core": "0.7.0", - "packages/migrate-config": "1.3.2", + "packages/compat": "1.2.2", + "packages/config-array": "0.19.0", + "packages/core": "0.8.0", + "packages/migrate-config": "1.3.3", "packages/object-schema": "2.1.4", - "packages/plugin-kit": "0.2.1" + "packages/plugin-kit": "0.2.2" } diff --git a/packages/compat/CHANGELOG.md b/packages/compat/CHANGELOG.md index 9b47a00..860e0f6 100644 --- a/packages/compat/CHANGELOG.md +++ b/packages/compat/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.2.2](https://github.com/eslint/rewrite/compare/compat-v1.2.1...compat-v1.2.2) (2024-10-25) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @eslint/core bumped from ^0.7.0 to ^0.8.0 + ## [1.2.1](https://github.com/eslint/rewrite/compare/compat-v1.2.0...compat-v1.2.1) (2024-10-18) diff --git a/packages/compat/jsr.json b/packages/compat/jsr.json index 2699e4d..921003f 100644 --- a/packages/compat/jsr.json +++ b/packages/compat/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/compat", - "version": "1.2.1", + "version": "1.2.2", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/packages/compat/package.json b/packages/compat/package.json index 35fc992..92c67c9 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/compat", - "version": "1.2.1", + "version": "1.2.2", "description": "Compatibility utilities for ESLint", "type": "module", "main": "dist/esm/index.js", @@ -48,7 +48,7 @@ }, "homepage": "https://github.com/eslint/rewrite#readme", "devDependencies": { - "@eslint/core": "^0.7.0", + "@eslint/core": "^0.8.0", "c8": "^9.1.0", "eslint": "^9.11.0", "mocha": "^10.4.0", diff --git a/packages/config-array/CHANGELOG.md b/packages/config-array/CHANGELOG.md index dedfa6d..73e6d32 100644 --- a/packages/config-array/CHANGELOG.md +++ b/packages/config-array/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.19.0](https://github.com/eslint/rewrite/compare/config-array-v0.18.0...config-array-v0.19.0) (2024-10-25) + + +### ⚠ BREAKING CHANGES + +* correctly detect if file is outside base path on Windows ([#59](https://github.com/eslint/rewrite/issues/59)) + +### Bug Fixes + +* correctly detect if file is outside base path on Windows ([#59](https://github.com/eslint/rewrite/issues/59)) ([f93aa4c](https://github.com/eslint/rewrite/commit/f93aa4ca0a9a68b5c90847cd3d24801196abb405)) + ## [0.18.0](https://github.com/eslint/rewrite/compare/config-array-v0.17.1...config-array-v0.18.0) (2024-08-12) diff --git a/packages/config-array/jsr.json b/packages/config-array/jsr.json index c2b2fdd..dc1f6f2 100644 --- a/packages/config-array/jsr.json +++ b/packages/config-array/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/config-array", - "version": "0.18.0", + "version": "0.19.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/packages/config-array/package.json b/packages/config-array/package.json index 246ce5e..299906b 100644 --- a/packages/config-array/package.json +++ b/packages/config-array/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/config-array", - "version": "0.18.0", + "version": "0.19.0", "description": "General purpose glob-based configuration matching.", "author": "Nicholas C. Zakas", "type": "module", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 171e6f1..7d6e540 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.0](https://github.com/eslint/rewrite/compare/core-v0.7.0...core-v0.8.0) (2024-10-25) + + +### Features + +* Add rule types ([#110](https://github.com/eslint/rewrite/issues/110)) ([ffa176f](https://github.com/eslint/rewrite/commit/ffa176f0c80c14c8ba088d2ba359af4b2805c4f5)) + ## [0.7.0](https://github.com/eslint/rewrite/compare/core-v0.6.0...core-v0.7.0) (2024-10-18) diff --git a/packages/core/jsr.json b/packages/core/jsr.json index a57252a..cd858a0 100644 --- a/packages/core/jsr.json +++ b/packages/core/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/core", - "version": "0.7.0", + "version": "0.8.0", "exports": "./dist/esm/types.d.ts", "publish": { "include": [ diff --git a/packages/core/package.json b/packages/core/package.json index 3708043..5329f2d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/core", - "version": "0.7.0", + "version": "0.8.0", "description": "Runtime-agnostic core of ESLint", "type": "module", "types": "./dist/esm/types.d.ts", diff --git a/packages/migrate-config/CHANGELOG.md b/packages/migrate-config/CHANGELOG.md index a291b84..887735d 100644 --- a/packages/migrate-config/CHANGELOG.md +++ b/packages/migrate-config/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.3.3](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.2...migrate-config-v1.3.3) (2024-10-25) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @eslint/compat bumped from ^1.2.1 to ^1.2.2 + ## [1.3.2](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.1...migrate-config-v1.3.2) (2024-10-18) diff --git a/packages/migrate-config/package.json b/packages/migrate-config/package.json index b85021d..542d32c 100644 --- a/packages/migrate-config/package.json +++ b/packages/migrate-config/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/migrate-config", - "version": "1.3.2", + "version": "1.3.3", "description": "Configuration migration for ESLint", "type": "module", "bin": { @@ -46,7 +46,7 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "dependencies": { - "@eslint/compat": "^1.2.1", + "@eslint/compat": "^1.2.2", "@eslint/eslintrc": "^3.1.0", "camelcase": "^8.0.0", "recast": "^0.23.7" diff --git a/packages/plugin-kit/CHANGELOG.md b/packages/plugin-kit/CHANGELOG.md index a00bea1..a32a478 100644 --- a/packages/plugin-kit/CHANGELOG.md +++ b/packages/plugin-kit/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.2](https://github.com/eslint/rewrite/compare/plugin-kit-v0.2.1...plugin-kit-v0.2.2) (2024-10-25) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @eslint/core bumped from ^0.7.0 to ^0.8.0 + ## [0.2.1](https://github.com/eslint/rewrite/compare/plugin-kit-v0.2.0...plugin-kit-v0.2.1) (2024-10-18) diff --git a/packages/plugin-kit/jsr.json b/packages/plugin-kit/jsr.json index 2e9b74b..901d012 100644 --- a/packages/plugin-kit/jsr.json +++ b/packages/plugin-kit/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/plugin-kit", - "version": "0.2.1", + "version": "0.2.2", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/packages/plugin-kit/package.json b/packages/plugin-kit/package.json index 3169820..7f8cda1 100644 --- a/packages/plugin-kit/package.json +++ b/packages/plugin-kit/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/plugin-kit", - "version": "0.2.1", + "version": "0.2.2", "description": "Utilities for building ESLint plugins.", "author": "Nicholas C. Zakas", "type": "module", @@ -46,7 +46,7 @@ ], "license": "Apache-2.0", "devDependencies": { - "@eslint/core": "^0.7.0", + "@eslint/core": "^0.8.0", "c8": "^9.1.0", "mocha": "^10.4.0", "rollup": "^4.16.2",