From be282fca476ae5397d3a162c14a38f8821bb459b Mon Sep 17 00:00:00 2001 From: ef4 <319282+ef4@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:31:38 +0000 Subject: [PATCH] Prepare Release using 'release-plan' --- .release-plan.json | 68 ++++++++++++++++++++++---- CHANGELOG.md | 27 ++++++++++ packages/compat/package.json | 2 +- packages/core/package.json | 2 +- packages/macros/package.json | 2 +- packages/shared-internals/package.json | 2 +- packages/webpack/package.json | 2 +- 7 files changed, 90 insertions(+), 15 deletions(-) diff --git a/.release-plan.json b/.release-plan.json index cb2be8fcf..b952ce76f 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -10,25 +10,51 @@ "oldVersion": "3.1.1" }, "@embroider/compat": { - "impact": "minor", - "oldVersion": "3.5.7", - "newVersion": "3.6.0", + "impact": "patch", + "oldVersion": "3.6.0", + "newVersion": "3.6.1", "constraints": [ { - "impact": "minor", - "reason": "Appears in changelog section :rocket: Enhancement" + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/macros" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" } ], "pkgJSONPath": "./packages/compat/package.json" }, "@embroider/core": { - "oldVersion": "3.4.14" + "impact": "patch", + "oldVersion": "3.4.14", + "newVersion": "3.4.15", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + }, + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/macros" + } + ], + "pkgJSONPath": "./packages/core/package.json" }, "@embroider/hbs-loader": { "oldVersion": "3.0.3" }, "@embroider/macros": { - "oldVersion": "1.16.5" + "impact": "patch", + "oldVersion": "1.16.5", + "newVersion": "1.16.6", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + } + ], + "pkgJSONPath": "./packages/macros/package.json" }, "@embroider/reverse-exports": { "oldVersion": "0.1.0" @@ -37,7 +63,16 @@ "oldVersion": "2.1.8" }, "@embroider/shared-internals": { - "oldVersion": "2.6.2" + "impact": "patch", + "oldVersion": "2.6.2", + "newVersion": "2.6.3", + "constraints": [ + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + } + ], + "pkgJSONPath": "./packages/shared-internals/package.json" }, "@embroider/test-setup": { "oldVersion": "4.0.0" @@ -49,8 +84,21 @@ "oldVersion": "0.2.0" }, "@embroider/webpack": { - "oldVersion": "4.0.4" + "impact": "patch", + "oldVersion": "4.0.4", + "newVersion": "4.0.5", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :house: Internal" + } + ], + "pkgJSONPath": "./packages/webpack/package.json" } }, - "description": "## Release (2024-07-18)\n\n@embroider/compat 3.6.0 (minor)\n\n#### :rocket: Enhancement\n* `@embroider/compat`, `@embroider/test-scenarios`\n * [#1842](https://github.com/embroider-build/embroider/pull/1842) [beta] template-tag code mod ([@void-mAlex](https://github.com/void-mAlex))\n\n#### Committers: 1\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n" + "description": "## Release (2024-08-30)\n\n@embroider/compat 3.6.1 (patch)\n@embroider/core 3.4.15 (patch)\n@embroider/macros 1.16.6 (patch)\n@embroider/shared-internals 2.6.3 (patch)\n@embroider/webpack 4.0.5 (patch)\n\n#### :bug: Bug Fix\n* `@embroider/shared-internals`\n * [#2075](https://github.com/embroider-build/embroider/pull/2075) Update ember standard modules to include @ember/renderer and @ember/-internals and ember-testing ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@embroider/compat`\n * [#2067](https://github.com/embroider-build/embroider/pull/2067) codemod fixes ([@void-mAlex](https://github.com/void-mAlex))\n\n#### :memo: Documentation\n* [#2055](https://github.com/embroider-build/embroider/pull/2055) document templateTagCodemod usage ([@void-mAlex](https://github.com/void-mAlex))\n\n#### :house: Internal\n* `@embroider/webpack`\n * [#2076](https://github.com/embroider-build/embroider/pull/2076) [Stable]: Follow upstream type change from webpack ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* Other\n * [#2058](https://github.com/embroider-build/embroider/pull/2058) Set the packageManager field ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4841bd17a..2ffd05cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Embroider Changelog +## Release (2024-08-30) + +@embroider/compat 3.6.1 (patch) +@embroider/core 3.4.15 (patch) +@embroider/macros 1.16.6 (patch) +@embroider/shared-internals 2.6.3 (patch) +@embroider/webpack 4.0.5 (patch) + +#### :bug: Bug Fix +* `@embroider/shared-internals` + * [#2075](https://github.com/embroider-build/embroider/pull/2075) Update ember standard modules to include @ember/renderer and @ember/-internals and ember-testing ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) +* `@embroider/compat` + * [#2067](https://github.com/embroider-build/embroider/pull/2067) codemod fixes ([@void-mAlex](https://github.com/void-mAlex)) + +#### :memo: Documentation +* [#2055](https://github.com/embroider-build/embroider/pull/2055) document templateTagCodemod usage ([@void-mAlex](https://github.com/void-mAlex)) + +#### :house: Internal +* `@embroider/webpack` + * [#2076](https://github.com/embroider-build/embroider/pull/2076) [Stable]: Follow upstream type change from webpack ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) +* Other + * [#2058](https://github.com/embroider-build/embroider/pull/2058) Set the packageManager field ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) + +#### Committers: 2 +- Alex ([@void-mAlex](https://github.com/void-mAlex)) +- [@NullVoxPopuli](https://github.com/NullVoxPopuli) + ## Release (2024-07-18) @embroider/compat 3.6.0 (minor) diff --git a/packages/compat/package.json b/packages/compat/package.json index 0095272cc..1dc447ea9 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/compat", - "version": "3.6.0", + "version": "3.6.1", "private": false, "description": "Backward compatibility layer for the Embroider build system.", "repository": { diff --git a/packages/core/package.json b/packages/core/package.json index f653cddae..63989b0c8 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/core", - "version": "3.4.14", + "version": "3.4.15", "private": false, "description": "A build system for EmberJS applications.", "repository": { diff --git a/packages/macros/package.json b/packages/macros/package.json index 5221cff90..5811c4807 100644 --- a/packages/macros/package.json +++ b/packages/macros/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/macros", - "version": "1.16.5", + "version": "1.16.6", "private": false, "description": "Standardized build-time macros for ember apps.", "keywords": [ diff --git a/packages/shared-internals/package.json b/packages/shared-internals/package.json index 3ddb0ba49..032f4c48f 100644 --- a/packages/shared-internals/package.json +++ b/packages/shared-internals/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/shared-internals", - "version": "2.6.2", + "version": "2.6.3", "private": false, "description": "Utilities shared among the other embroider packages", "repository": { diff --git a/packages/webpack/package.json b/packages/webpack/package.json index f59418923..e35b793ef 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/webpack", - "version": "4.0.4", + "version": "4.0.5", "private": false, "description": "Builds EmberJS apps with Webpack", "repository": {