@ember/app-blueprint 6.10.0 → 6.10.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 -16
- package/CHANGELOG.md +22 -0
- package/files/package.json +1 -1
- package/package.json +2 -1
package/.release-plan.json
CHANGED
|
@@ -1,30 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.
|
|
6
|
-
"newVersion": "6.10.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "6.10.1",
|
|
6
|
+
"newVersion": "6.10.2",
|
|
7
7
|
"tagName": "latest",
|
|
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
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"impact": "patch",
|
|
19
|
-
"reason": "Appears in changelog section :memo: Documentation"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"impact": "patch",
|
|
23
|
-
"reason": "Appears in changelog section :house: Internal"
|
|
24
12
|
}
|
|
25
13
|
],
|
|
26
14
|
"pkgJSONPath": "./package.json"
|
|
27
15
|
}
|
|
28
16
|
},
|
|
29
|
-
"description": "## Release (2026-01-
|
|
17
|
+
"description": "## Release (2026-01-23)\n\n* @ember/app-blueprint 6.10.2 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#197](https://github.com/ember-cli/ember-app-blueprint/pull/197) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
|
|
30
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2026-01-23)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.10.2 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#197](https://github.com/ember-cli/ember-app-blueprint/pull/197) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
13
|
+
|
|
14
|
+
## Release (2026-01-23)
|
|
15
|
+
|
|
16
|
+
* @ember/app-blueprint 6.10.1 (patch)
|
|
17
|
+
|
|
18
|
+
#### :bug: Bug Fix
|
|
19
|
+
* `@ember/app-blueprint`
|
|
20
|
+
* [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))
|
|
21
|
+
|
|
22
|
+
#### Committers: 1
|
|
23
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
24
|
+
|
|
3
25
|
## Release (2026-01-18)
|
|
4
26
|
|
|
5
27
|
* @ember/app-blueprint 6.10.0 (minor)
|
package/files/package.json
CHANGED
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"babel-plugin-ember-template-compilation": "^3.1.0",
|
|
65
65
|
"concurrently": "^9.2.1",
|
|
66
66
|
"decorator-transforms": "^2.3.1",
|
|
67
|
-
"ember-cli": "~6.
|
|
67
|
+
"ember-cli": "~6.10.0",
|
|
68
68
|
"ember-cli-babel": "^8.2.0",
|
|
69
69
|
"ember-cli-deprecation-workflow": "^3.4.0",
|
|
70
70
|
"ember-load-initializers": "^3.0.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "6.10.
|
|
3
|
+
"version": "6.10.2",
|
|
4
4
|
"description": "Blueprint for next generation of Ember apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-blueprint"
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"ejs": "^3.1.10",
|
|
18
18
|
"ember-cli-string-utils": "^1.1.0",
|
|
19
19
|
"lodash": "^4.17.21",
|
|
20
|
+
"sort-package-json": "^3.6.0",
|
|
20
21
|
"walk-sync": "^3.0.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|