Skip to content

Commit fae4059

Browse files
Merge pull request #2056 from embroider-build/release-preview-stable
Prepare Release
2 parents 1b3ebb2 + be282fc commit fae4059

File tree

7 files changed

+90
-15
lines changed

7 files changed

+90
-15
lines changed

.release-plan.json

+58-10
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,51 @@
1010
"oldVersion": "3.1.1"
1111
},
1212
"@embroider/compat": {
13-
"impact": "minor",
14-
"oldVersion": "3.5.7",
15-
"newVersion": "3.6.0",
13+
"impact": "patch",
14+
"oldVersion": "3.6.0",
15+
"newVersion": "3.6.1",
1616
"constraints": [
1717
{
18-
"impact": "minor",
19-
"reason": "Appears in changelog section :rocket: Enhancement"
18+
"impact": "patch",
19+
"reason": "Has dependency `workspace:*` on @embroider/macros"
20+
},
21+
{
22+
"impact": "patch",
23+
"reason": "Appears in changelog section :bug: Bug Fix"
2024
}
2125
],
2226
"pkgJSONPath": "./packages/compat/package.json"
2327
},
2428
"@embroider/core": {
25-
"oldVersion": "3.4.14"
29+
"impact": "patch",
30+
"oldVersion": "3.4.14",
31+
"newVersion": "3.4.15",
32+
"constraints": [
33+
{
34+
"impact": "patch",
35+
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
36+
},
37+
{
38+
"impact": "patch",
39+
"reason": "Has dependency `workspace:*` on @embroider/macros"
40+
}
41+
],
42+
"pkgJSONPath": "./packages/core/package.json"
2643
},
2744
"@embroider/hbs-loader": {
2845
"oldVersion": "3.0.3"
2946
},
3047
"@embroider/macros": {
31-
"oldVersion": "1.16.5"
48+
"impact": "patch",
49+
"oldVersion": "1.16.5",
50+
"newVersion": "1.16.6",
51+
"constraints": [
52+
{
53+
"impact": "patch",
54+
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
55+
}
56+
],
57+
"pkgJSONPath": "./packages/macros/package.json"
3258
},
3359
"@embroider/reverse-exports": {
3460
"oldVersion": "0.1.0"
@@ -37,7 +63,16 @@
3763
"oldVersion": "2.1.8"
3864
},
3965
"@embroider/shared-internals": {
40-
"oldVersion": "2.6.2"
66+
"impact": "patch",
67+
"oldVersion": "2.6.2",
68+
"newVersion": "2.6.3",
69+
"constraints": [
70+
{
71+
"impact": "patch",
72+
"reason": "Appears in changelog section :bug: Bug Fix"
73+
}
74+
],
75+
"pkgJSONPath": "./packages/shared-internals/package.json"
4176
},
4277
"@embroider/test-setup": {
4378
"oldVersion": "4.0.0"
@@ -49,8 +84,21 @@
4984
"oldVersion": "0.2.0"
5085
},
5186
"@embroider/webpack": {
52-
"oldVersion": "4.0.4"
87+
"impact": "patch",
88+
"oldVersion": "4.0.4",
89+
"newVersion": "4.0.5",
90+
"constraints": [
91+
{
92+
"impact": "patch",
93+
"reason": "Has dependency `workspace:*` on @embroider/shared-internals"
94+
},
95+
{
96+
"impact": "patch",
97+
"reason": "Appears in changelog section :house: Internal"
98+
}
99+
],
100+
"pkgJSONPath": "./packages/webpack/package.json"
53101
}
54102
},
55-
"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"
103+
"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"
56104
}

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Embroider Changelog
22

3+
## Release (2024-08-30)
4+
5+
@embroider/compat 3.6.1 (patch)
6+
@embroider/core 3.4.15 (patch)
7+
@embroider/macros 1.16.6 (patch)
8+
@embroider/shared-internals 2.6.3 (patch)
9+
@embroider/webpack 4.0.5 (patch)
10+
11+
#### :bug: Bug Fix
12+
* `@embroider/shared-internals`
13+
* [#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))
14+
* `@embroider/compat`
15+
* [#2067](https://github.com/embroider-build/embroider/pull/2067) codemod fixes ([@void-mAlex](https://github.com/void-mAlex))
16+
17+
#### :memo: Documentation
18+
* [#2055](https://github.com/embroider-build/embroider/pull/2055) document templateTagCodemod usage ([@void-mAlex](https://github.com/void-mAlex))
19+
20+
#### :house: Internal
21+
* `@embroider/webpack`
22+
* [#2076](https://github.com/embroider-build/embroider/pull/2076) [Stable]: Follow upstream type change from webpack ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
23+
* Other
24+
* [#2058](https://github.com/embroider-build/embroider/pull/2058) Set the packageManager field ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
25+
26+
#### Committers: 2
27+
- Alex ([@void-mAlex](https://github.com/void-mAlex))
28+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
29+
330
## Release (2024-07-18)
431

532
@embroider/compat 3.6.0 (minor)

packages/compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/compat",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
44
"private": false,
55
"description": "Backward compatibility layer for the Embroider build system.",
66
"repository": {

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/core",
3-
"version": "3.4.14",
3+
"version": "3.4.15",
44
"private": false,
55
"description": "A build system for EmberJS applications.",
66
"repository": {

packages/macros/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/macros",
3-
"version": "1.16.5",
3+
"version": "1.16.6",
44
"private": false,
55
"description": "Standardized build-time macros for ember apps.",
66
"keywords": [

packages/shared-internals/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/shared-internals",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"private": false,
55
"description": "Utilities shared among the other embroider packages",
66
"repository": {

packages/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@embroider/webpack",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"private": false,
55
"description": "Builds EmberJS apps with Webpack",
66
"repository": {

0 commit comments

Comments
 (0)