@ember/app-blueprint 6.9.0-beta.1 → 6.9.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.release-plan.json +4 -12
- package/CHANGELOG.md +56 -0
- package/files/_ts_eslint.config.mjs +1 -0
- package/files/package.json +1 -1
- package/package.json +1 -1
package/.release-plan.json
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.9.0-beta.
|
|
6
|
-
"newVersion": "6.9.0-beta.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "6.9.0-beta.1",
|
|
6
|
+
"newVersion": "6.9.0-beta.2",
|
|
7
7
|
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
|
-
{
|
|
10
|
-
"impact": "minor",
|
|
11
|
-
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
-
},
|
|
13
9
|
{
|
|
14
10
|
"impact": "patch",
|
|
15
11
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
12
|
},
|
|
17
|
-
{
|
|
18
|
-
"impact": "patch",
|
|
19
|
-
"reason": "Appears in changelog section :memo: Documentation"
|
|
20
|
-
},
|
|
21
13
|
{
|
|
22
14
|
"impact": "patch",
|
|
23
15
|
"reason": "Appears in changelog section :house: Internal"
|
|
@@ -26,5 +18,5 @@
|
|
|
26
18
|
"pkgJSONPath": "./package.json"
|
|
27
19
|
}
|
|
28
20
|
},
|
|
29
|
-
"description": "## Release (2025-
|
|
21
|
+
"description": "## Release (2025-11-06)\n\n* @ember/app-blueprint 6.9.0-beta.2 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))\n * [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))\n * [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#122](https://github.com/ember-cli/ember-app-blueprint/pull/122) Merge release into beta ([@mansona](https://github.com/mansona))\n * [#127](https://github.com/ember-cli/ember-app-blueprint/pull/127) Prepare Stable Release v6.8.3 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#121](https://github.com/ember-cli/ember-app-blueprint/pull/121) Prepare Stable Release v6.8.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#117](https://github.com/ember-cli/ember-app-blueprint/pull/117) Prepare Stable Release v6.8.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n\n#### Committers: 4\n- Alexey Kulakov ([@aklkv](https://github.com/aklkv))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Markus Sanin ([@mkszepp](https://github.com/mkszepp))\n- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
|
|
30
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-11-06)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.9.0-beta.2 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))
|
|
10
|
+
* [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))
|
|
11
|
+
* [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))
|
|
12
|
+
|
|
13
|
+
#### :house: Internal
|
|
14
|
+
* `@ember/app-blueprint`
|
|
15
|
+
* [#122](https://github.com/ember-cli/ember-app-blueprint/pull/122) Merge release into beta ([@mansona](https://github.com/mansona))
|
|
16
|
+
* [#127](https://github.com/ember-cli/ember-app-blueprint/pull/127) Prepare Stable Release v6.8.3 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
17
|
+
* [#121](https://github.com/ember-cli/ember-app-blueprint/pull/121) Prepare Stable Release v6.8.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
18
|
+
* [#117](https://github.com/ember-cli/ember-app-blueprint/pull/117) Prepare Stable Release v6.8.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
19
|
+
|
|
20
|
+
#### Committers: 4
|
|
21
|
+
- Alexey Kulakov ([@aklkv](https://github.com/aklkv))
|
|
22
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
23
|
+
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
24
|
+
- [@github-actions[bot]](https://github.com/apps/github-actions)
|
|
25
|
+
|
|
26
|
+
## Release (2025-11-02)
|
|
27
|
+
|
|
28
|
+
* @ember/app-blueprint 6.8.3 (patch)
|
|
29
|
+
|
|
30
|
+
#### :bug: Bug Fix
|
|
31
|
+
* `@ember/app-blueprint`
|
|
32
|
+
* [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))
|
|
33
|
+
|
|
34
|
+
#### Committers: 1
|
|
35
|
+
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
36
|
+
|
|
37
|
+
## Release (2025-10-24)
|
|
38
|
+
|
|
39
|
+
* @ember/app-blueprint 6.8.2 (patch)
|
|
40
|
+
|
|
41
|
+
#### :bug: Bug Fix
|
|
42
|
+
* `@ember/app-blueprint`
|
|
43
|
+
* [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))
|
|
44
|
+
|
|
45
|
+
#### Committers: 1
|
|
46
|
+
- Alexey Kulakov ([@aklkv](https://github.com/aklkv))
|
|
47
|
+
|
|
48
|
+
## Release (2025-10-17)
|
|
49
|
+
|
|
50
|
+
* @ember/app-blueprint 6.8.1 (patch)
|
|
51
|
+
|
|
52
|
+
#### :bug: Bug Fix
|
|
53
|
+
* `@ember/app-blueprint`
|
|
54
|
+
* [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))
|
|
55
|
+
|
|
56
|
+
#### Committers: 1
|
|
57
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
58
|
+
|
|
3
59
|
## Release (2025-10-14)
|
|
4
60
|
|
|
5
61
|
* @ember/app-blueprint 6.9.0-beta.1 (minor)
|
package/files/package.json
CHANGED