@ember/app-blueprint 0.3.0 → 0.4.0
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 +3 -3
- package/CHANGELOG.md +16 -0
- package/files/package.json +22 -23
- package/package.json +1 -1
package/.release-plan.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "minor",
|
|
5
|
-
"oldVersion": "0.
|
|
6
|
-
"newVersion": "0.
|
|
5
|
+
"oldVersion": "0.3.0",
|
|
6
|
+
"newVersion": "0.4.0",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"pkgJSONPath": "./package.json"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"description": "## Release (2025-05-
|
|
21
|
+
"description": "## Release (2025-05-22)\n\n* @ember/app-blueprint 0.4.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#23](https://github.com/ember-cli/ember-app-blueprint/pull/23) run update-blueprint-deps ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#21](https://github.com/ember-cli/ember-app-blueprint/pull/21) Remove @ember-data/tracking ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
|
|
22
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-05-22)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 0.4.0 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#23](https://github.com/ember-cli/ember-app-blueprint/pull/23) run update-blueprint-deps ([@mansona](https://github.com/mansona))
|
|
10
|
+
|
|
11
|
+
#### :bug: Bug Fix
|
|
12
|
+
* `@ember/app-blueprint`
|
|
13
|
+
* [#21](https://github.com/ember-cli/ember-app-blueprint/pull/21) Remove @ember-data/tracking ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
14
|
+
|
|
15
|
+
#### Committers: 2
|
|
16
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
17
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
18
|
+
|
|
3
19
|
## Release (2025-05-20)
|
|
4
20
|
|
|
5
21
|
* @ember/app-blueprint 0.3.0 (minor)
|
package/files/package.json
CHANGED
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"./*": "./app/*"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@babel/core": "^7.
|
|
36
|
-
"@babel/runtime": "^7.
|
|
37
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
38
|
-
"@babel/plugin-transform-typescript":"^7.27.
|
|
39
|
-
"@babel/eslint-parser": "^7.
|
|
40
|
-
"@ember-data/adapter": "~5.
|
|
35
|
+
"@babel/core": "^7.27.1",
|
|
36
|
+
"@babel/runtime": "^7.27.1",
|
|
37
|
+
"@babel/plugin-transform-runtime": "^7.27.1<% if (typescript) { %>",
|
|
38
|
+
"@babel/plugin-transform-typescript": "^7.27.1<% } %>",
|
|
39
|
+
"@babel/eslint-parser": "^7.27.1<% if (typescript && emberData) { %>",
|
|
40
|
+
"@ember-data/adapter": "~5.5.0",
|
|
41
41
|
"@ember-data/graph": "~5.5.0",
|
|
42
42
|
"@ember-data/json-api": "~5.5.0",
|
|
43
43
|
"@ember-data/legacy-compat": "~5.5.0",
|
|
@@ -45,20 +45,19 @@
|
|
|
45
45
|
"@ember-data/request": "~5.5.0",
|
|
46
46
|
"@ember-data/request-utils": "~5.5.0",
|
|
47
47
|
"@ember-data/serializer": "~5.5.0",
|
|
48
|
-
"@ember-data/store": "~5.5.0",
|
|
49
|
-
"@ember-data/tracking": "~5.5.0<% } %><% if (typescript) { %>",
|
|
48
|
+
"@ember-data/store": "~5.5.0<% } %><% if (typescript) { %>",
|
|
50
49
|
"@ember/app-tsconfig": "^1.0.3<% } %>",
|
|
51
50
|
"@ember/optional-features": "^2.2.0",
|
|
52
|
-
"@ember/string": "^4.0.
|
|
53
|
-
"@ember/test-helpers": "^5.
|
|
51
|
+
"@ember/string": "^4.0.1",
|
|
52
|
+
"@ember/test-helpers": "^5.2.2",
|
|
54
53
|
"@ember/test-waiters": "^4.1.0",
|
|
55
54
|
"@embroider/macros": "^1.18.0",
|
|
56
55
|
"@embroider/core": "^4.1.0",
|
|
57
|
-
"@embroider/vite": "^1.1.
|
|
56
|
+
"@embroider/vite": "^1.1.5",
|
|
58
57
|
"@embroider/compat": "^4.1.0",
|
|
59
58
|
"@embroider/router": "^3.0.1",
|
|
60
59
|
"@embroider/config-meta-loader": "^1.0.0",
|
|
61
|
-
"@eslint/js": "^9.
|
|
60
|
+
"@eslint/js": "^9.27.0",
|
|
62
61
|
"@glimmer/component": "^2.0.0<% if (typescript) { %>",
|
|
63
62
|
"@glint/core": "^1.5.2",
|
|
64
63
|
"@glint/environment-ember-loose": "^1.5.2",
|
|
@@ -79,31 +78,31 @@
|
|
|
79
78
|
"ember-cli-htmlbars": "^6.3.0<% if (emberData) { %>",
|
|
80
79
|
"ember-data": "~5.5.0<% } %>",
|
|
81
80
|
"ember-load-initializers": "^3.0.1",
|
|
82
|
-
"ember-modifier": "^4.2.
|
|
83
|
-
"ember-page-title": "^9.0.
|
|
84
|
-
"ember-qunit": "^9.0.
|
|
85
|
-
"ember-resolver": "^13.1.
|
|
81
|
+
"ember-modifier": "^4.2.2",
|
|
82
|
+
"ember-page-title": "^9.0.2",
|
|
83
|
+
"ember-qunit": "^9.0.3",
|
|
84
|
+
"ember-resolver": "^13.1.1",
|
|
86
85
|
"ember-source": "~6.5.0-beta.1",
|
|
87
86
|
"ember-template-imports": "^4.3.0",
|
|
88
87
|
"ember-template-lint": "^6.1.0<% if (welcome) { %>",
|
|
89
88
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
90
|
-
"eslint": "^9.
|
|
89
|
+
"eslint": "^9.27.0",
|
|
91
90
|
"eslint-config-prettier": "^9.1.0",
|
|
92
91
|
"eslint-plugin-ember": "^12.5.0",
|
|
93
|
-
"eslint-plugin-n": "^17.
|
|
92
|
+
"eslint-plugin-n": "^17.18.0",
|
|
94
93
|
"eslint-plugin-qunit": "^8.1.2",
|
|
95
94
|
"globals": "^15.15.0",
|
|
96
95
|
"prettier": "^3.5.3",
|
|
97
|
-
"prettier-plugin-ember-template-tag": "^2.0.
|
|
96
|
+
"prettier-plugin-ember-template-tag": "^2.0.5",
|
|
98
97
|
"qunit": "^2.24.1",
|
|
99
98
|
"qunit-dom": "^3.4.0",
|
|
100
|
-
"stylelint": "^16.
|
|
99
|
+
"stylelint": "^16.19.1",
|
|
101
100
|
"stylelint-config-standard": "^36.0.1",
|
|
102
101
|
"testem": "^3.16.0",
|
|
103
102
|
"tracked-built-ins": "^3.4.0<% if (typescript) { %>",
|
|
104
|
-
"typescript": "^5.8.
|
|
105
|
-
"typescript-eslint": "^8.
|
|
106
|
-
"vite": "^6.
|
|
103
|
+
"typescript": "^5.8.3",
|
|
104
|
+
"typescript-eslint": "^8.32.1<% } %>",
|
|
105
|
+
"vite": "^6.3.5"
|
|
107
106
|
},
|
|
108
107
|
"engines": {
|
|
109
108
|
"node": ">= 18"
|