diff --git a/.release-plan.json b/.release-plan.json index b86dc57ad..73ab49c6d 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -11,30 +11,69 @@ }, "@embroider/compat": { "impact": "patch", - "oldVersion": "3.1.1", - "newVersion": "3.1.2", + "oldVersion": "3.1.2", + "newVersion": "3.1.3", "constraints": [ { "impact": "patch", - "reason": "Appears in changelog section :bug: Bug Fix" + "reason": "Has dependency `workspace:*` on @embroider/macros" } ], "pkgJSONPath": "/Users/edward/hacking/embroider/packages/compat/package.json" }, "@embroider/core": { - "oldVersion": "3.1.0" + "impact": "patch", + "oldVersion": "3.1.0", + "newVersion": "3.1.1", + "constraints": [ + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + }, + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + }, + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/macros" + } + ], + "pkgJSONPath": "/Users/edward/hacking/embroider/packages/core/package.json" }, "@embroider/hbs-loader": { "oldVersion": "3.0.0" }, "@embroider/macros": { - "oldVersion": "1.12.0" + "impact": "patch", + "oldVersion": "1.12.0", + "newVersion": "1.12.1", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + } + ], + "pkgJSONPath": "/Users/edward/hacking/embroider/packages/macros/package.json" }, "@embroider/router": { "oldVersion": "2.1.2" }, "@embroider/shared-internals": { - "oldVersion": "2.2.0" + "impact": "patch", + "oldVersion": "2.2.0", + "newVersion": "2.2.1", + "constraints": [ + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :house: Internal" + } + ], + "pkgJSONPath": "/Users/edward/hacking/embroider/packages/shared-internals/package.json" }, "@embroider/test-setup": { "oldVersion": "3.0.1" @@ -43,8 +82,17 @@ "oldVersion": "1.11.1" }, "@embroider/webpack": { - "oldVersion": "3.1.0" + "impact": "patch", + "oldVersion": "3.1.0", + "newVersion": "3.1.1", + "constraints": [ + { + "impact": "patch", + "reason": "Has dependency `workspace:*` on @embroider/shared-internals" + } + ], + "pkgJSONPath": "/Users/edward/hacking/embroider/packages/webpack/package.json" } }, - "description": "## Release (2023-06-29)\n\n@embroider/compat 3.1.2 (patch)\n\n#### :bug: Bug Fix\n* `compat`\n * Previous release was published incorrectly.\n" + "description": "## Release (2023-06-30)\n\n@embroider/compat 3.1.3 (patch)\n@embroider/core 3.1.1 (patch)\n@embroider/macros 1.12.1 (patch)\n@embroider/shared-internals 2.2.1 (patch)\n@embroider/webpack 3.1.1 (patch)\n\n#### :bug: Bug Fix\n* `core`, `shared-internals`\n * [#1495](https://github.com/embroider-build/embroider/pull/1495) Eagerly virtualize emberVirtualPackages ([@ef4](https://github.com/ef4))\n* `shared-internals`\n * [#1493](https://github.com/embroider-build/embroider/pull/1493) Fix rewritten-package-cache when app has symlink to node_modules ([@ef4](https://github.com/ef4))\n\n#### :house: Internal\n* Other\n * [#1496](https://github.com/embroider-build/embroider/pull/1496) Unskip some core-resolver tests ([@ef4](https://github.com/ef4))\n* `shared-internals`\n * [#1494](https://github.com/embroider-build/embroider/pull/1494) Make proxied rewritten-package-cache methods clearer ([@ef4](https://github.com/ef4))\n\n#### Committers: 1\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9dbb7cc..594b4c179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Embroider Changelog +## Release (2023-06-30) + +@embroider/compat 3.1.3 (patch) +@embroider/core 3.1.1 (patch) +@embroider/macros 1.12.1 (patch) +@embroider/shared-internals 2.2.1 (patch) +@embroider/webpack 3.1.1 (patch) + +#### :bug: Bug Fix +* `core`, `shared-internals` + * [#1495](https://github.com/embroider-build/embroider/pull/1495) Eagerly virtualize emberVirtualPackages ([@ef4](https://github.com/ef4)) +* `shared-internals` + * [#1493](https://github.com/embroider-build/embroider/pull/1493) Fix rewritten-package-cache when app has symlink to node_modules ([@ef4](https://github.com/ef4)) + +#### :house: Internal +* Other + * [#1496](https://github.com/embroider-build/embroider/pull/1496) Unskip some core-resolver tests ([@ef4](https://github.com/ef4)) +* `shared-internals` + * [#1494](https://github.com/embroider-build/embroider/pull/1494) Make proxied rewritten-package-cache methods clearer ([@ef4](https://github.com/ef4)) + +#### Committers: 1 +- Edward Faulkner ([@ef4](https://github.com/ef4)) + ## Release (2023-06-29) @embroider/compat 3.1.2 (patch) diff --git a/packages/compat/package.json b/packages/compat/package.json index 5b24975c0..e47db1196 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/compat", - "version": "3.1.2", + "version": "3.1.3", "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 adc27ebe6..372065305 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/core", - "version": "3.1.0", + "version": "3.1.1", "private": false, "description": "A build system for EmberJS applications.", "repository": { diff --git a/packages/macros/package.json b/packages/macros/package.json index ba0a7cd1f..55548f576 100644 --- a/packages/macros/package.json +++ b/packages/macros/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/macros", - "version": "1.12.0", + "version": "1.12.1", "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 30b054abd..ca4804c5e 100644 --- a/packages/shared-internals/package.json +++ b/packages/shared-internals/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/shared-internals", - "version": "2.2.0", + "version": "2.2.1", "private": false, "description": "Utilities shared among the other embroider packages", "repository": { diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 7c2e9559e..91f463ff1 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@embroider/webpack", - "version": "3.1.0", + "version": "3.1.1", "private": false, "description": "Builds EmberJS apps with Webpack", "repository": {