diff --git a/.release-plan.json b/.release-plan.json index d6f01ed83..1e09fdd02 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -1,7 +1,16 @@ { "solution": { "@embroider/addon-dev": { - "oldVersion": "5.0.0" + "impact": "minor", + "oldVersion": "5.0.0", + "newVersion": "5.1.0", + "constraints": [ + { + "impact": "minor", + "reason": "Appears in changelog section :rocket: Enhancement" + } + ], + "pkgJSONPath": "./packages/addon-dev/package.json" }, "@embroider/addon-shim": { "oldVersion": "1.8.9" @@ -10,13 +19,34 @@ "oldVersion": "3.1.1" }, "@embroider/compat": { - "oldVersion": "3.6.1" + "impact": "patch", + "oldVersion": "3.6.1", + "newVersion": "3.6.2", + "constraints": [ + { + "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": { "impact": "patch", - "oldVersion": "3.4.15", - "newVersion": "3.4.16", + "oldVersion": "3.4.16", + "newVersion": "3.4.17", "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + }, + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/macros" + }, { "impact": "patch", "reason": "Appears in changelog section :bug: Bug Fix" @@ -28,7 +58,16 @@ "oldVersion": "3.0.3" }, "@embroider/macros": { - "oldVersion": "1.16.6" + "impact": "patch", + "oldVersion": "1.16.6", + "newVersion": "1.16.7", + "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 +76,20 @@ "oldVersion": "2.1.8" }, "@embroider/shared-internals": { - "oldVersion": "2.6.3" + "impact": "minor", + "oldVersion": "2.6.3", + "newVersion": "2.7.0", + "constraints": [ + { + "impact": "minor", + "reason": "Appears in changelog section :rocket: Enhancement" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + } + ], + "pkgJSONPath": "./packages/shared-internals/package.json" }, "@embroider/test-setup": { "oldVersion": "4.0.0" @@ -46,11 +98,33 @@ "oldVersion": "1.13.2" }, "@embroider/vite": { - "oldVersion": "0.2.0" + "impact": "patch", + "oldVersion": "0.2.0", + "newVersion": "0.2.1", + "constraints": [ + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + } + ], + "pkgJSONPath": "./packages/vite/package.json" }, "@embroider/webpack": { - "oldVersion": "4.0.5" + "impact": "patch", + "oldVersion": "4.0.5", + "newVersion": "4.0.6", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + } + ], + "pkgJSONPath": "./packages/webpack/package.json" } }, - "description": "## Release (2024-09-20)\n\n@embroider/core 3.4.16 (patch)\n\n#### :bug: Bug Fix\n* `@embroider/core`, `@embroider/test-scenarios`\n * [#2088](https://github.com/embroider-build/embroider/pull/2088) Implement ember's component-template-resolving deprecation ([@ef4](https://github.com/ef4))\n\n#### Committers: 1\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n" + "description": "## Release (2024-09-26)\n\n@embroider/addon-dev 5.1.0 (minor)\n@embroider/compat 3.6.2 (patch)\n@embroider/core 3.4.17 (patch)\n@embroider/macros 1.16.7 (patch)\n@embroider/shared-internals 2.7.0 (minor)\n@embroider/vite 0.2.1 (patch)\n@embroider/webpack 4.0.6 (patch)\n\n#### :rocket: Enhancement\n* `@embroider/addon-dev`, `@embroider/shared-internals`, `@embroider/test-scenarios`\n * [#2121](https://github.com/embroider-build/embroider/pull/2121) backport #1855 addon-dev: incremental updates to output ([@patricklx](https://github.com/patricklx))\n\n#### :bug: Bug Fix\n* `@embroider/compat`, `@embroider/core`, `@embroider/vite`, `@embroider/webpack`, `@embroider/test-scenarios`\n * [#2127](https://github.com/embroider-build/embroider/pull/2127) Bump jsdom to fix punycode deprecation messages from tr46, psl, and whatwg-url ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@embroider/shared-internals`, `@embroider/test-scenarios`\n * [#2122](https://github.com/embroider-build/embroider/pull/2122) speedup windows ci on stable ([@patricklx](https://github.com/patricklx))\n\n#### Committers: 2\n- Patrick Pircher ([@patricklx](https://github.com/patricklx))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index efec08c5b..96874e19c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Embroider Changelog +## Release (2024-09-26) + +@embroider/addon-dev 5.1.0 (minor) +@embroider/compat 3.6.2 (patch) +@embroider/core 3.4.17 (patch) +@embroider/macros 1.16.7 (patch) +@embroider/shared-internals 2.7.0 (minor) +@embroider/vite 0.2.1 (patch) +@embroider/webpack 4.0.6 (patch) + +#### :rocket: Enhancement +* `@embroider/addon-dev`, `@embroider/shared-internals`, `@embroider/test-scenarios` + * [#2121](https://github.com/embroider-build/embroider/pull/2121) backport #1855 addon-dev: incremental updates to output ([@patricklx](https://github.com/patricklx)) + +#### :bug: Bug Fix +* `@embroider/compat`, `@embroider/core`, `@embroider/vite`, `@embroider/webpack`, `@embroider/test-scenarios` + * [#2127](https://github.com/embroider-build/embroider/pull/2127) Bump jsdom to fix punycode deprecation messages from tr46, psl, and whatwg-url ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) +* `@embroider/shared-internals`, `@embroider/test-scenarios` + * [#2122](https://github.com/embroider-build/embroider/pull/2122) speedup windows ci on stable ([@patricklx](https://github.com/patricklx)) + +#### Committers: 2 +- Patrick Pircher ([@patricklx](https://github.com/patricklx)) +- [@NullVoxPopuli](https://github.com/NullVoxPopuli) + ## Release (2024-09-20) @embroider/core 3.4.16 (patch) diff --git a/packages/addon-dev/package.json b/packages/addon-dev/package.json index fb89e6367..9cae68f58 100644 --- a/packages/addon-dev/package.json +++ b/packages/addon-dev/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/addon-dev", - "version": "5.0.0", + "version": "5.1.0", "description": "Utilities for addon authors", "repository": { "type": "git", diff --git a/packages/compat/package.json b/packages/compat/package.json index 795fbb1fe..2f26ec6d9 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/compat", - "version": "3.6.1", + "version": "3.6.2", "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 0a20749e8..b3200a523 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/core", - "version": "3.4.16", + "version": "3.4.17", "private": false, "description": "A build system for EmberJS applications.", "repository": { diff --git a/packages/macros/package.json b/packages/macros/package.json index 5811c4807..027ac6c56 100644 --- a/packages/macros/package.json +++ b/packages/macros/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/macros", - "version": "1.16.6", + "version": "1.16.7", "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 032f4c48f..b4e858026 100644 --- a/packages/shared-internals/package.json +++ b/packages/shared-internals/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/shared-internals", - "version": "2.6.3", + "version": "2.7.0", "private": false, "description": "Utilities shared among the other embroider packages", "repository": { diff --git a/packages/vite/package.json b/packages/vite/package.json index 1ef4e2913..728617db5 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/vite", - "version": "0.2.0", + "version": "0.2.1", "main": "index.mjs", "peerDependencies": { "@embroider/core": "workspace:^", diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 5b84b6f2f..9e7c94097 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/webpack", - "version": "4.0.5", + "version": "4.0.6", "private": false, "description": "Builds EmberJS apps with Webpack", "repository": {