Skip to content

Commit c05d415

Browse files
authored
Merge pull request #2160 from embroider-build/release-preview-stable
Prepare Release
2 parents 79f2339 + 6211cc5 commit c05d415

File tree

3 files changed

+32
-57
lines changed

3 files changed

+32
-57
lines changed

.release-plan.json

Lines changed: 16 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@
44
"oldVersion": "6.0.1"
55
},
66
"@embroider/addon-shim": {
7-
"oldVersion": "1.8.9"
7+
"impact": "minor",
8+
"oldVersion": "1.8.9",
9+
"newVersion": "1.9.0",
10+
"constraints": [
11+
{
12+
"impact": "minor",
13+
"reason": "Appears in changelog section :rocket: Enhancement"
14+
}
15+
],
16+
"pkgJSONPath": "./packages/addon-shim/package.json"
817
},
918
"@embroider/babel-loader-9": {
1019
"oldVersion": "3.1.1"
@@ -13,47 +22,16 @@
1322
"oldVersion": "1.0.1"
1423
},
1524
"@embroider/compat": {
16-
"impact": "patch",
17-
"oldVersion": "3.6.4",
18-
"newVersion": "3.6.5",
19-
"constraints": [
20-
{
21-
"impact": "patch",
22-
"reason": "Has dependency `workspace:*` on @embroider/macros"
23-
}
24-
],
25-
"pkgJSONPath": "./packages/compat/package.json"
25+
"oldVersion": "3.6.5"
2626
},
2727
"@embroider/core": {
28-
"impact": "patch",
29-
"oldVersion": "3.4.18",
30-
"newVersion": "3.4.19",
31-
"constraints": [
32-
{
33-
"impact": "patch",
34-
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
35-
},
36-
{
37-
"impact": "patch",
38-
"reason": "Has dependency `workspace:*` on @embroider/macros"
39-
}
40-
],
41-
"pkgJSONPath": "./packages/core/package.json"
28+
"oldVersion": "3.4.19"
4229
},
4330
"@embroider/hbs-loader": {
4431
"oldVersion": "3.0.3"
4532
},
4633
"@embroider/macros": {
47-
"impact": "patch",
48-
"oldVersion": "1.16.8",
49-
"newVersion": "1.16.9",
50-
"constraints": [
51-
{
52-
"impact": "patch",
53-
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
54-
}
55-
],
56-
"pkgJSONPath": "./packages/macros/package.json"
34+
"oldVersion": "1.16.9"
5735
},
5836
"@embroider/reverse-exports": {
5937
"oldVersion": "0.1.0"
@@ -62,16 +40,7 @@
6240
"oldVersion": "2.1.8"
6341
},
6442
"@embroider/shared-internals": {
65-
"impact": "patch",
66-
"oldVersion": "2.8.0",
67-
"newVersion": "2.8.1",
68-
"constraints": [
69-
{
70-
"impact": "patch",
71-
"reason": "Appears in changelog section :bug: Bug Fix"
72-
}
73-
],
74-
"pkgJSONPath": "./packages/shared-internals/package.json"
43+
"oldVersion": "2.8.1"
7544
},
7645
"@embroider/test-setup": {
7746
"oldVersion": "4.0.0"
@@ -83,17 +52,8 @@
8352
"oldVersion": "0.2.1"
8453
},
8554
"@embroider/webpack": {
86-
"impact": "patch",
87-
"oldVersion": "4.0.7",
88-
"newVersion": "4.0.8",
89-
"constraints": [
90-
{
91-
"impact": "patch",
92-
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
93-
}
94-
],
95-
"pkgJSONPath": "./packages/webpack/package.json"
55+
"oldVersion": "4.0.8"
9656
}
9757
},
98-
"description": "## Release (2024-10-09)\n\n@embroider/compat 3.6.5 (patch)\n@embroider/core 3.4.19 (patch)\n@embroider/macros 1.16.9 (patch)\n@embroider/shared-internals 2.8.1 (patch)\n@embroider/webpack 4.0.8 (patch)\n\n#### :bug: Bug Fix\n* `@embroider/shared-internals`\n * [#2151](https://github.com/embroider-build/embroider/pull/2151) Fix hbs plugin not resolving .hbs due to broken Regex ([@simonihmig](https://github.com/simonihmig))\n\n#### Committers: 1\n- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))\n"
58+
"description": "## Release (2024-10-31)\n\n@embroider/addon-shim 1.9.0 (minor)\n\n#### :rocket: Enhancement\n* `@embroider/addon-shim`\n * [#2158](https://github.com/embroider-build/embroider/pull/2158) Add a new option for addon-shim to pass config to ember-auto-import ([@ef4](https://github.com/ef4))\n\n#### :house: Internal\n* `@embroider/test-scenarios`, `ts-app-template`\n * [#2159](https://github.com/embroider-build/embroider/pull/2159) pinning @types/qunit to fix ci ([@ef4](https://github.com/ef4))\n\n#### Committers: 1\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n"
9959
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Embroider Changelog
22

3+
## Release (2024-10-31)
4+
5+
@embroider/addon-shim 1.9.0 (minor)
6+
7+
#### :rocket: Enhancement
8+
* `@embroider/addon-shim`
9+
* [#2158](https://github.com/embroider-build/embroider/pull/2158) Add a new option for addon-shim to pass config to ember-auto-import ([@ef4](https://github.com/ef4))
10+
11+
#### :house: Internal
12+
* `@embroider/test-scenarios`, `ts-app-template`
13+
* [#2159](https://github.com/embroider-build/embroider/pull/2159) pinning @types/qunit to fix ci ([@ef4](https://github.com/ef4))
14+
15+
#### Committers: 1
16+
- Edward Faulkner ([@ef4](https://github.com/ef4))
17+
318
## Release (2024-10-09)
419

520
@embroider/compat 3.6.5 (patch)

packages/addon-shim/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/addon-shim",
3-
"version": "1.8.9",
3+
"version": "1.9.0",
44
"description": "Make v2 addons work in non-Embroider apps.",
55
"keywords": [],
66
"main": "./src/index.js",

0 commit comments

Comments
 (0)