ember-cli 6.9.0-beta.1 → 6.9.1
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
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
-
## Release (2025-
|
|
3
|
+
## Release (2025-12-11)
|
|
4
4
|
|
|
5
|
-
* ember-cli 6.9.
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
* ember-cli 6.9.1 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `ember-cli`
|
|
9
|
+
* [#10888](https://github.com/ember-cli/ember-cli/pull/10888) Upgrade broccoli ([@kategengler](https://github.com/kategengler))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Katie Gengler ([@kategengler](https://github.com/kategengler))
|
|
13
|
+
|
|
14
|
+
## Release (2025-12-10)
|
|
15
|
+
|
|
16
|
+
* ember-cli 6.9.0 (minor)
|
|
17
|
+
* @ember-tooling/classic-build-addon-blueprint 6.9.0 (minor)
|
|
18
|
+
* @ember-tooling/classic-build-app-blueprint 6.9.0 (minor)
|
|
8
19
|
|
|
9
20
|
#### :rocket: Enhancement
|
|
21
|
+
* `ember-cli`, `@ember-tooling/classic-build-app-blueprint`
|
|
22
|
+
* [#10885](https://github.com/ember-cli/ember-cli/pull/10885) Promote Beta and update all dependencies for 6.9 release ([@mansona](https://github.com/mansona))
|
|
10
23
|
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
|
|
11
|
-
* [#
|
|
12
|
-
* [#10853](https://github.com/ember-cli/ember-cli/pull/10853) Promote Beta and update all dependencies for 6.8 release ([@mansona](https://github.com/mansona))
|
|
24
|
+
* [#10854](https://github.com/ember-cli/ember-cli/pull/10854) Prepare Beta Release ([@mansona](https://github.com/mansona))
|
|
13
25
|
|
|
14
26
|
#### :house: Internal
|
|
15
27
|
* `ember-cli`
|
|
@@ -20,6 +32,17 @@
|
|
|
20
32
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
21
33
|
- Edward Faulkner ([@ef4](https://github.com/ef4))
|
|
22
34
|
|
|
35
|
+
## Release (2025-11-29)
|
|
36
|
+
|
|
37
|
+
* ember-cli 6.8.1 (patch)
|
|
38
|
+
|
|
39
|
+
#### :bug: Bug Fix
|
|
40
|
+
* `ember-cli`
|
|
41
|
+
* [#10860](https://github.com/ember-cli/ember-cli/pull/10860) [BUGFIX release]: Enter the WatchDetector branch of the build command when EMBROIDER_PREBUILD is present ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
42
|
+
|
|
43
|
+
#### Committers: 1
|
|
44
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
45
|
+
|
|
23
46
|
## Release (2025-10-14)
|
|
24
47
|
|
|
25
48
|
* ember-cli 6.8.0 (minor)
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "6.9.
|
|
6
|
+
"version": "6.9.1-release-a1d1a35f71"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/models/command.js
CHANGED
|
@@ -312,7 +312,7 @@ let Command = CoreObject.extend({
|
|
|
312
312
|
|
|
313
313
|
let options = commandOptions.options;
|
|
314
314
|
|
|
315
|
-
if (this.hasOption('watcher')) {
|
|
315
|
+
if (this.hasOption('watcher') || process.env.EMBROIDER_PREBUILD) {
|
|
316
316
|
// Do stuff to try and provide a good experience when it comes to file watching:
|
|
317
317
|
let watchPreference = detector.findBestWatcherOption(options);
|
|
318
318
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.1",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -26,21 +26,13 @@
|
|
|
26
26
|
"bin": {
|
|
27
27
|
"ember": "./bin/ember"
|
|
28
28
|
},
|
|
29
|
-
"release-plan": {
|
|
30
|
-
"semverIncrementAs": {
|
|
31
|
-
"minor": "prerelease",
|
|
32
|
-
"patch": "prerelease"
|
|
33
|
-
},
|
|
34
|
-
"semverIncrementTag": "beta",
|
|
35
|
-
"publishTag": "beta"
|
|
36
|
-
},
|
|
37
29
|
"dependencies": {
|
|
38
30
|
"@ember-tooling/blueprint-blueprint": "^0.2.1",
|
|
39
31
|
"@ember-tooling/blueprint-model": "^0.4.1",
|
|
40
|
-
"@ember/app-blueprint": "~6.9.0
|
|
32
|
+
"@ember/app-blueprint": "~6.9.0",
|
|
41
33
|
"@pnpm/find-workspace-dir": "^1000.1.0",
|
|
42
34
|
"babel-remove-types": "^1.0.1",
|
|
43
|
-
"broccoli": "^
|
|
35
|
+
"broccoli": "^4.0.0",
|
|
44
36
|
"broccoli-concat": "^4.2.5",
|
|
45
37
|
"broccoli-config-loader": "^1.0.1",
|
|
46
38
|
"broccoli-config-replace": "^1.1.2",
|
|
@@ -120,8 +112,8 @@
|
|
|
120
112
|
"watch-detector": "^1.0.2",
|
|
121
113
|
"workerpool": "^9.2.0",
|
|
122
114
|
"yam": "^1.0.0",
|
|
123
|
-
"@ember-tooling/classic-build-addon-blueprint": "6.9.0
|
|
124
|
-
"@ember-tooling/classic-build-app-blueprint": "6.9.0
|
|
115
|
+
"@ember-tooling/classic-build-addon-blueprint": "6.9.0",
|
|
116
|
+
"@ember-tooling/classic-build-app-blueprint": "6.9.0"
|
|
125
117
|
},
|
|
126
118
|
"devDependencies": {
|
|
127
119
|
"broccoli-plugin": "^4.0.3",
|
|
@@ -157,10 +149,10 @@
|
|
|
157
149
|
"yuidocjs": "0.10.2"
|
|
158
150
|
},
|
|
159
151
|
"engines": {
|
|
160
|
-
"node": ">= 20.
|
|
152
|
+
"node": ">= 20.19.0"
|
|
161
153
|
},
|
|
162
154
|
"volta": {
|
|
163
|
-
"node": "20.
|
|
155
|
+
"node": "20.19.6",
|
|
164
156
|
"pnpm": "10.12.1"
|
|
165
157
|
},
|
|
166
158
|
"publishConfig": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-addon-blueprint",
|
|
3
|
-
"version": "6.9.0
|
|
3
|
+
"version": "6.9.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
@@ -20,13 +20,5 @@
|
|
|
20
20
|
"silent-error": "^1.1.1",
|
|
21
21
|
"sort-package-json": "^2.12.0",
|
|
22
22
|
"walk-sync": "^3.0.0"
|
|
23
|
-
},
|
|
24
|
-
"release-plan": {
|
|
25
|
-
"semverIncrementAs": {
|
|
26
|
-
"minor": "prerelease",
|
|
27
|
-
"patch": "prerelease"
|
|
28
|
-
},
|
|
29
|
-
"semverIncrementTag": "beta",
|
|
30
|
-
"publishTag": "beta"
|
|
31
23
|
}
|
|
32
24
|
}
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"test:ember": "ember test"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@babel/core": "^7.28.
|
|
32
|
-
"@babel/eslint-parser": "^7.28.
|
|
31
|
+
"@babel/core": "^7.28.5",
|
|
32
|
+
"@babel/eslint-parser": "^7.28.5",
|
|
33
33
|
"@babel/plugin-proposal-decorators": "^7.28.0<% if (typescript && emberData) { %>",
|
|
34
34
|
"@ember-data/adapter": "~5.7.0",
|
|
35
35
|
"@ember-data/graph": "~5.7.0",
|
|
@@ -41,26 +41,26 @@
|
|
|
41
41
|
"@ember-data/serializer": "~5.7.0",
|
|
42
42
|
"@ember-data/store": "~5.7.0",
|
|
43
43
|
"@warp-drive/ember": "~5.7.0<% } %>",
|
|
44
|
-
"@ember/optional-features": "^2.
|
|
45
|
-
"@ember/test-helpers": "^5.
|
|
46
|
-
"@embroider/compat": "^3.9.
|
|
47
|
-
"@embroider/core": "^3.5.
|
|
48
|
-
"@embroider/macros": "^1.19.
|
|
49
|
-
"@embroider/webpack": "^4.1.
|
|
50
|
-
"@eslint/js": "^9.
|
|
44
|
+
"@ember/optional-features": "^2.3.0",
|
|
45
|
+
"@ember/test-helpers": "^5.4.1<% if (embroider) { %>",
|
|
46
|
+
"@embroider/compat": "^3.9.3",
|
|
47
|
+
"@embroider/core": "^3.5.9<% } %>",
|
|
48
|
+
"@embroider/macros": "^1.19.5<% if (embroider) { %>",
|
|
49
|
+
"@embroider/webpack": "^4.1.2<% } %>",
|
|
50
|
+
"@eslint/js": "^9.39.1",
|
|
51
51
|
"@glimmer/component": "^2.0.0",
|
|
52
52
|
"@glimmer/tracking": "^1.1.2<% if (typescript) { %>",
|
|
53
53
|
"@glint/environment-ember-loose": "^1.5.2",
|
|
54
54
|
"@glint/environment-ember-template-imports": "^1.5.2",
|
|
55
|
-
"@glint/template": "^1.
|
|
56
|
-
"@tsconfig/ember": "^3.0.
|
|
55
|
+
"@glint/template": "^1.7.3",
|
|
56
|
+
"@tsconfig/ember": "^3.0.12",
|
|
57
57
|
"@types/qunit": "^2.19.13",
|
|
58
58
|
"@types/rsvp": "^4.0.9<% if (emberData) {%>",
|
|
59
59
|
"@warp-drive/core-types": "~5.7.0<% }} %>",
|
|
60
60
|
"broccoli-asset-rev": "^3.0.0",
|
|
61
61
|
"concurrently": "^9.2.1",
|
|
62
|
-
"ember-auto-import": "^2.
|
|
63
|
-
"ember-cli": "~6.9.
|
|
62
|
+
"ember-auto-import": "^2.12.0",
|
|
63
|
+
"ember-cli": "~6.9.1",
|
|
64
64
|
"ember-cli-app-version": "^7.0.0",
|
|
65
65
|
"ember-cli-babel": "^8.2.0",
|
|
66
66
|
"ember-cli-clean-css": "^3.0.0",
|
|
@@ -76,27 +76,27 @@
|
|
|
76
76
|
"ember-page-title": "^9.0.3",
|
|
77
77
|
"ember-qunit": "^9.0.4",
|
|
78
78
|
"ember-resolver": "^13.1.1",
|
|
79
|
-
"ember-source": "~6.9.0
|
|
79
|
+
"ember-source": "~6.9.0",
|
|
80
80
|
"ember-template-imports": "^4.3.0",
|
|
81
81
|
"ember-template-lint": "^6.1.0<% if (welcome) { %>",
|
|
82
82
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
83
|
-
"eslint": "^9.
|
|
83
|
+
"eslint": "^9.39.1",
|
|
84
84
|
"eslint-config-prettier": "^9.1.2",
|
|
85
|
-
"eslint-plugin-ember": "^12.7.
|
|
85
|
+
"eslint-plugin-ember": "^12.7.5",
|
|
86
86
|
"eslint-plugin-n": "^17.23.1",
|
|
87
87
|
"eslint-plugin-qunit": "^8.2.5",
|
|
88
88
|
"globals": "^15.15.0",
|
|
89
89
|
"loader.js": "^4.7.0",
|
|
90
|
-
"prettier": "^3.
|
|
91
|
-
"prettier-plugin-ember-template-tag": "^2.1.
|
|
92
|
-
"qunit": "^2.24.
|
|
90
|
+
"prettier": "^3.7.4",
|
|
91
|
+
"prettier-plugin-ember-template-tag": "^2.1.2",
|
|
92
|
+
"qunit": "^2.24.3",
|
|
93
93
|
"qunit-dom": "^3.5.0",
|
|
94
|
-
"stylelint": "^16.
|
|
94
|
+
"stylelint": "^16.26.1",
|
|
95
95
|
"stylelint-config-standard": "^36.0.1",
|
|
96
96
|
"tracked-built-ins": "^3.4.0<% if (typescript) { %>",
|
|
97
97
|
"typescript": "^5.9.3",
|
|
98
|
-
"typescript-eslint": "^8.
|
|
99
|
-
"webpack": "^5.
|
|
98
|
+
"typescript-eslint": "^8.49.0<% } %>",
|
|
99
|
+
"webpack": "^5.103.0"
|
|
100
100
|
},
|
|
101
101
|
"engines": {
|
|
102
102
|
"node": ">= 20.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-app-blueprint",
|
|
3
|
-
"version": "6.9.0
|
|
3
|
+
"version": "6.9.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
@@ -14,13 +14,5 @@
|
|
|
14
14
|
"@ember-tooling/blueprint-model": "^0.4.1",
|
|
15
15
|
"chalk": "^4.1.2",
|
|
16
16
|
"ember-cli-string-utils": "^1.1.0"
|
|
17
|
-
},
|
|
18
|
-
"release-plan": {
|
|
19
|
-
"semverIncrementAs": {
|
|
20
|
-
"minor": "prerelease",
|
|
21
|
-
"patch": "prerelease"
|
|
22
|
-
},
|
|
23
|
-
"semverIncrementTag": "beta",
|
|
24
|
-
"publishTag": "beta"
|
|
25
17
|
}
|
|
26
18
|
}
|