ember-cli 6.10.2 → 6.10.3

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,5 +1,29 @@
1
1
  # ember-cli Changelog
2
2
 
3
+ ## Release (2026-04-03)
4
+
5
+ * ember-cli 6.10.3 (patch)
6
+ * @ember-tooling/classic-build-addon-blueprint 6.10.1 (patch)
7
+ * @ember-tooling/classic-build-app-blueprint 6.10.1 (patch)
8
+
9
+ #### :bug: Bug Fix
10
+ * `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
11
+ * [#10986](https://github.com/ember-cli/ember-cli/pull/10986) [backport 6.10] Add use-ember-modules: true to blueprint optional-features.json ([@mansona](https://github.com/mansona))
12
+ * `@ember-tooling/classic-build-app-blueprint`, `ember-cli`
13
+ * [#10985](https://github.com/ember-cli/ember-cli/pull/10985) [backport 6.10] Update ember-cli-htmlbars to ^7.0.0 in blueprints ([@mansona](https://github.com/mansona))
14
+ * `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`, `ember-cli`
15
+ * [#10984](https://github.com/ember-cli/ember-cli/pull/10984) [backport 6.10] Remove tracked-built-ins ([@mansona](https://github.com/mansona))
16
+
17
+ #### :house: Internal
18
+ * `ember-cli`
19
+ * [#10989](https://github.com/ember-cli/ember-cli/pull/10989) bump node on publish.yml and stop updating npm ([@mansona](https://github.com/mansona))
20
+ * [#10981](https://github.com/ember-cli/ember-cli/pull/10981) Update publish.yml to use RELEASE_PLAN_GH_PAT ([@kategengler](https://github.com/kategengler))
21
+ * [#10979](https://github.com/ember-cli/ember-cli/pull/10979) enable releasing packports to 6.10 ([@mansona](https://github.com/mansona))
22
+
23
+ #### Committers: 2
24
+ - Chris Manson ([@mansona](https://github.com/mansona))
25
+ - Katie Gengler ([@kategengler](https://github.com/kategengler))
26
+
3
27
  ## Release (2026-02-09)
4
28
 
5
29
  * ember-cli 6.10.2 (patch)
@@ -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.10.2-release-6b0023b518"
6
+ "version": "6.10.3-v-6-10-6c0b52fca8"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "6.10.2",
3
+ "version": "6.10.3",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -20,6 +20,9 @@
20
20
  "type": "git",
21
21
  "url": "https://github.com/ember-cli/ember-cli.git"
22
22
  },
23
+ "release-plan": {
24
+ "publishTag": "v-6-10"
25
+ },
23
26
  "license": "MIT",
24
27
  "author": "Stefan Penner, Robert Jackson and ember-cli contributors",
25
28
  "main": "lib/cli/index.js",
@@ -110,8 +113,8 @@
110
113
  "watch-detector": "^1.0.2",
111
114
  "workerpool": "^10.0.1",
112
115
  "yam": "^1.0.0",
113
- "@ember-tooling/classic-build-addon-blueprint": "6.10.0",
114
- "@ember-tooling/classic-build-app-blueprint": "6.10.0"
116
+ "@ember-tooling/classic-build-addon-blueprint": "6.10.1",
117
+ "@ember-tooling/classic-build-app-blueprint": "6.10.1"
115
118
  },
116
119
  "devDependencies": {
117
120
  "broccoli-plugin": "^4.0.3",
@@ -2,5 +2,6 @@
2
2
  "application-template-wrapper": false,
3
3
  "default-async-observers": true,
4
4
  "jquery-integration": false,
5
- "template-only-glimmer-components": true
5
+ "template-only-glimmer-components": true,
6
+ "use-ember-modules": true
6
7
  }
@@ -90,10 +90,6 @@ module.exports = {
90
90
  // @see https://github.com/emberjs/rfcs/blob/master/text/0811-element-modifiers.md#detailed-design
91
91
  delete contents.devDependencies['ember-modifier'];
92
92
 
93
- // Per RFC #812, addons should not have this dependency.
94
- // @see https://github.com/emberjs/rfcs/blob/master/text/0812-tracked-built-ins.md#detailed-design
95
- delete contents.devDependencies['tracked-built-ins'];
96
-
97
93
  // 100% of addons don't need ember-cli-app-version, make it opt-in instead
98
94
  delete contents.devDependencies['ember-cli-app-version'];
99
95
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-tooling/classic-build-addon-blueprint",
3
- "version": "6.10.0",
3
+ "version": "6.10.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ember-cli/ember-cli.git",
@@ -3,5 +3,6 @@
3
3
  "default-async-observers": true,
4
4
  "jquery-integration": false,
5
5
  "template-only-glimmer-components": true,
6
- "no-implicit-route-model": true
6
+ "no-implicit-route-model": true,
7
+ "use-ember-modules": true
7
8
  }
@@ -60,13 +60,13 @@
60
60
  "broccoli-asset-rev": "^3.0.0",
61
61
  "concurrently": "^9.2.1",
62
62
  "ember-auto-import": "^2.12.0",
63
- "ember-cli": "~6.10.2",
63
+ "ember-cli": "~6.10.3",
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",
67
67
  "ember-cli-dependency-checker": "^3.3.3",
68
68
  "ember-cli-deprecation-workflow": "^3.4.0",
69
- "ember-cli-htmlbars": "^6.3.0",
69
+ "ember-cli-htmlbars": "^7.0.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<% } %><% if (emberData) { %>",
@@ -92,8 +92,7 @@
92
92
  "qunit": "^2.25.0",
93
93
  "qunit-dom": "^3.5.0",
94
94
  "stylelint": "^16.26.1",
95
- "stylelint-config-standard": "^36.0.1",
96
- "tracked-built-ins": "^3.4.0<% if (typescript) { %>",
95
+ "stylelint-config-standard": "^36.0.1<% if (typescript) { %>",
97
96
  "typescript": "^5.9.3",
98
97
  "typescript-eslint": "^8.53.1<% } %>",
99
98
  "webpack": "^5.104.1"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-tooling/classic-build-app-blueprint",
3
- "version": "6.10.0",
3
+ "version": "6.10.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ember-cli/ember-cli.git",