From 86cb697a338ad62a0ced6b069401ca85e352143f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 08:06:26 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 8 ++++---- packages/compat/CHANGELOG.md | 14 ++++++++++++++ packages/compat/jsr.json | 2 +- packages/compat/package.json | 4 ++-- packages/core/CHANGELOG.md | 7 +++++++ packages/core/jsr.json | 2 +- packages/core/package.json | 2 +- packages/migrate-config/CHANGELOG.md | 9 +++++++++ packages/migrate-config/package.json | 4 ++-- packages/plugin-kit/CHANGELOG.md | 9 +++++++++ packages/plugin-kit/jsr.json | 2 +- packages/plugin-kit/package.json | 4 ++-- 12 files changed, 53 insertions(+), 14 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8db2893a..6f51b2ca 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "packages/compat": "1.2.2", + "packages/compat": "1.2.3", "packages/config-array": "0.19.0", - "packages/core": "0.8.0", - "packages/migrate-config": "1.3.3", + "packages/core": "0.8.1", + "packages/migrate-config": "1.3.4", "packages/object-schema": "2.1.4", - "packages/plugin-kit": "0.2.2" + "packages/plugin-kit": "0.2.3" } diff --git a/packages/compat/CHANGELOG.md b/packages/compat/CHANGELOG.md index 860e0f65..7017b7c0 100644 --- a/packages/compat/CHANGELOG.md +++ b/packages/compat/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.3](https://github.com/eslint/rewrite/compare/compat-v1.2.2...compat-v1.2.3) (2024-11-13) + + +### Bug Fixes + +* Support legacy `schema` properties ([#128](https://github.com/eslint/rewrite/issues/128)) ([3a87bbb](https://github.com/eslint/rewrite/commit/3a87bbb7f0b501c74507f32083c289304d6c03a6)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @eslint/core bumped from ^0.8.0 to ^0.8.1 + ## [1.2.2](https://github.com/eslint/rewrite/compare/compat-v1.2.1...compat-v1.2.2) (2024-10-25) diff --git a/packages/compat/jsr.json b/packages/compat/jsr.json index 921003f7..55278842 100644 --- a/packages/compat/jsr.json +++ b/packages/compat/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/compat", - "version": "1.2.2", + "version": "1.2.3", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/packages/compat/package.json b/packages/compat/package.json index 92c67c9d..c1a20929 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/compat", - "version": "1.2.2", + "version": "1.2.3", "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.8.0", + "@eslint/core": "^0.8.1", "c8": "^9.1.0", "eslint": "^9.11.0", "mocha": "^10.4.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 7d6e5407..b952bbf5 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.1](https://github.com/eslint/rewrite/compare/core-v0.8.0...core-v0.8.1) (2024-11-13) + + +### Bug Fixes + +* non-optional properties in generic interfaces ([#132](https://github.com/eslint/rewrite/issues/132)) ([d0b2e70](https://github.com/eslint/rewrite/commit/d0b2e705c49709cfb92a9110c65cd628c91aaa29)) + ## [0.8.0](https://github.com/eslint/rewrite/compare/core-v0.7.0...core-v0.8.0) (2024-10-25) diff --git a/packages/core/jsr.json b/packages/core/jsr.json index cd858a08..6e3cedac 100644 --- a/packages/core/jsr.json +++ b/packages/core/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/core", - "version": "0.8.0", + "version": "0.8.1", "exports": "./dist/esm/types.d.ts", "publish": { "include": [ diff --git a/packages/core/package.json b/packages/core/package.json index 5329f2df..5b305d4a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/core", - "version": "0.8.0", + "version": "0.8.1", "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 887735d0..99c7b605 100644 --- a/packages/migrate-config/CHANGELOG.md +++ b/packages/migrate-config/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.3.4](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.3...migrate-config-v1.3.4) (2024-11-13) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @eslint/compat bumped from ^1.2.2 to ^1.2.3 + ## [1.3.3](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.2...migrate-config-v1.3.3) (2024-10-25) diff --git a/packages/migrate-config/package.json b/packages/migrate-config/package.json index 542d32ca..0e47fd03 100644 --- a/packages/migrate-config/package.json +++ b/packages/migrate-config/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/migrate-config", - "version": "1.3.3", + "version": "1.3.4", "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.2", + "@eslint/compat": "^1.2.3", "@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 a32a4781..6a8ce870 100644 --- a/packages/plugin-kit/CHANGELOG.md +++ b/packages/plugin-kit/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.3](https://github.com/eslint/rewrite/compare/plugin-kit-v0.2.2...plugin-kit-v0.2.3) (2024-11-13) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @eslint/core bumped from ^0.8.0 to ^0.8.1 + ## [0.2.2](https://github.com/eslint/rewrite/compare/plugin-kit-v0.2.1...plugin-kit-v0.2.2) (2024-10-25) diff --git a/packages/plugin-kit/jsr.json b/packages/plugin-kit/jsr.json index 901d0122..a6501bc9 100644 --- a/packages/plugin-kit/jsr.json +++ b/packages/plugin-kit/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/plugin-kit", - "version": "0.2.2", + "version": "0.2.3", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/packages/plugin-kit/package.json b/packages/plugin-kit/package.json index 7f8cda1d..426762dc 100644 --- a/packages/plugin-kit/package.json +++ b/packages/plugin-kit/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/plugin-kit", - "version": "0.2.2", + "version": "0.2.3", "description": "Utilities for building ESLint plugins.", "author": "Nicholas C. Zakas", "type": "module", @@ -46,7 +46,7 @@ ], "license": "Apache-2.0", "devDependencies": { - "@eslint/core": "^0.8.0", + "@eslint/core": "^0.8.1", "c8": "^9.1.0", "mocha": "^10.4.0", "rollup": "^4.16.2",