ember-cli 6.1.0-beta.0 → 6.1.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/CHANGELOG.md +18 -3
- package/blueprints/app/files/package.json +24 -24
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
-
## v6.1.0
|
|
3
|
+
## v6.1.0
|
|
4
4
|
|
|
5
5
|
#### Blueprint Changes
|
|
6
6
|
|
|
7
|
-
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.0.0...v6.1.0
|
|
8
|
-
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.0.0...v6.1.0
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.0.0...v6.1.0)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.0.0...v6.1.0)
|
|
9
9
|
|
|
10
10
|
#### Changelog
|
|
11
11
|
|
|
12
|
+
- [#10563](https://github.com/ember-cli/ember-cli/pull/10563) [Backport release]: update @ember/test-helpers. #10522 [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
- [#10564](https://github.com/ember-cli/ember-cli/pull/10564) [BUGFIX] Add missing package for TS eslint config [@mkszepp](https://github.com/mkszepp)
|
|
12
14
|
- [#10514](https://github.com/ember-cli/ember-cli/pull/10514) [backport release] use fork of remove-types with config: false [@mansona](https://github.com/mansona)
|
|
13
15
|
- [#10515](https://github.com/ember-cli/ember-cli/pull/10515) Use colors for the concurrently prefixes in package.json [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
14
16
|
- [#10516](https://github.com/ember-cli/ember-cli/pull/10516) Use ESLint 9 and Flat Config [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
@@ -22,6 +24,19 @@
|
|
|
22
24
|
|
|
23
25
|
Thank you to all who took the time to contribute!
|
|
24
26
|
|
|
27
|
+
## v6.0.1
|
|
28
|
+
|
|
29
|
+
#### Blueprint Changes
|
|
30
|
+
|
|
31
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.0.0...v6.0.1)
|
|
32
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.0.0...v6.0.1)
|
|
33
|
+
|
|
34
|
+
#### Changelog
|
|
35
|
+
|
|
36
|
+
- [#10563](https://github.com/ember-cli/ember-cli/pull/10563) [Backport release]: update @ember/test-helpers. #10522 [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
37
|
+
|
|
38
|
+
Thank you to all who took the time to contribute!
|
|
39
|
+
|
|
25
40
|
## v6.0.0
|
|
26
41
|
|
|
27
42
|
#### Blueprint Changes
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"test:ember": "ember test"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@babel/core": "^7.26.0
|
|
29
|
+
"@babel/core": "^7.26.0",
|
|
30
30
|
"@babel/eslint-parser": "^7.25.9",
|
|
31
|
-
"@babel/plugin-proposal-decorators": "^7.25.9<%
|
|
31
|
+
"@babel/plugin-proposal-decorators": "^7.25.9<% if (typescript) { %>",
|
|
32
32
|
"@ember-data/adapter": "~5.4.0-beta.12",
|
|
33
33
|
"@ember-data/graph": "~5.4.0-beta.12",
|
|
34
34
|
"@ember-data/json-api": "~5.4.0-beta.12",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"@ember/optional-features": "^2.2.0",
|
|
43
43
|
"@ember/string": "^4.0.0",
|
|
44
44
|
"@ember/test-helpers": "^4.0.4<% if (embroider) { %>",
|
|
45
|
-
"@embroider/compat": "^3.7.
|
|
46
|
-
"@embroider/core": "^3.4.
|
|
47
|
-
"@embroider/webpack": "^4.0.
|
|
48
|
-
"@eslint/js": "^9.
|
|
45
|
+
"@embroider/compat": "^3.7.1",
|
|
46
|
+
"@embroider/core": "^3.4.20",
|
|
47
|
+
"@embroider/webpack": "^4.0.9<% } %>",
|
|
48
|
+
"@eslint/js": "^9.17.0",
|
|
49
49
|
"@glimmer/component": "^1.1.2",
|
|
50
50
|
"@glimmer/tracking": "^1.1.2<% if (typescript) { %>",
|
|
51
51
|
"@glint/environment-ember-loose": "^1.5.0",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"@types/eslint__js": "^8.42.3",
|
|
56
56
|
"@types/qunit": "^2.19.12",
|
|
57
57
|
"@types/rsvp": "^4.0.9",
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
59
|
-
"@typescript-eslint/parser": "^8.
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
59
|
+
"@typescript-eslint/parser": "^8.18.2",
|
|
60
60
|
"@warp-drive/core-types": "~0.0.0-beta.12<% } %>",
|
|
61
61
|
"broccoli-asset-rev": "^3.0.0",
|
|
62
62
|
"concurrently": "^9.1.0",
|
|
@@ -65,41 +65,41 @@
|
|
|
65
65
|
"ember-cli-app-version": "^7.0.0",
|
|
66
66
|
"ember-cli-babel": "^8.2.0",
|
|
67
67
|
"ember-cli-clean-css": "^3.0.0",
|
|
68
|
-
"ember-cli-dependency-checker": "^3.3.
|
|
68
|
+
"ember-cli-dependency-checker": "^3.3.3",
|
|
69
69
|
"ember-cli-htmlbars": "^6.3.0",
|
|
70
70
|
"ember-cli-inject-live-reload": "^2.1.0<% if (!embroider) { %>",
|
|
71
71
|
"ember-cli-sri": "^2.1.1",
|
|
72
72
|
"ember-cli-terser": "^4.0.2<% } %>",
|
|
73
|
-
"ember-data": "~5.
|
|
73
|
+
"ember-data": "~5.3.9",
|
|
74
74
|
"ember-fetch": "^8.1.2",
|
|
75
75
|
"ember-load-initializers": "^3.0.1",
|
|
76
76
|
"ember-modifier": "^4.2.0",
|
|
77
77
|
"ember-page-title": "^8.2.3",
|
|
78
78
|
"ember-qunit": "^8.1.1",
|
|
79
|
-
"ember-resolver": "^13.0
|
|
80
|
-
"ember-source": "~6.1.0
|
|
79
|
+
"ember-resolver": "^13.1.0",
|
|
80
|
+
"ember-source": "~6.1.0",
|
|
81
81
|
"ember-template-imports": "^4.2.0",
|
|
82
82
|
"ember-template-lint": "^6.0.0<% if (welcome) { %>",
|
|
83
83
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
84
|
-
"eslint": "^9.
|
|
84
|
+
"eslint": "^9.17.0",
|
|
85
85
|
"eslint-config-prettier": "^9.1.0",
|
|
86
|
-
"eslint-plugin-ember": "^12.3.
|
|
87
|
-
"eslint-plugin-n": "^17.
|
|
86
|
+
"eslint-plugin-ember": "^12.3.3",
|
|
87
|
+
"eslint-plugin-n": "^17.15.1",
|
|
88
88
|
"eslint-plugin-prettier": "^5.2.1",
|
|
89
89
|
"eslint-plugin-qunit": "^8.1.2",
|
|
90
|
-
"globals": "^15.
|
|
90
|
+
"globals": "^15.14.0",
|
|
91
91
|
"loader.js": "^4.7.0",
|
|
92
|
-
"prettier": "^3.
|
|
92
|
+
"prettier": "^3.4.2",
|
|
93
93
|
"prettier-plugin-ember-template-tag": "^2.0.4",
|
|
94
|
-
"qunit": "^2.
|
|
95
|
-
"qunit-dom": "^3.
|
|
96
|
-
"stylelint": "^16.
|
|
94
|
+
"qunit": "^2.23.1",
|
|
95
|
+
"qunit-dom": "^3.4.0",
|
|
96
|
+
"stylelint": "^16.12.0",
|
|
97
97
|
"stylelint-config-standard": "^36.0.1",
|
|
98
98
|
"stylelint-prettier": "^5.0.2",
|
|
99
|
-
"tracked-built-ins": "^3.
|
|
100
|
-
"typescript": "^5.
|
|
101
|
-
"typescript-eslint": "^8.
|
|
102
|
-
"webpack": "^5.
|
|
99
|
+
"tracked-built-ins": "^3.4.0<% if (typescript) { %>",
|
|
100
|
+
"typescript": "^5.7.2",
|
|
101
|
+
"typescript-eslint": "^8.18.2<% } %>",
|
|
102
|
+
"webpack": "^5.97.1"
|
|
103
103
|
},
|
|
104
104
|
"engines": {
|
|
105
105
|
"node": ">= 18"
|