@ember/app-blueprint 6.10.0-alpha.2 → 6.10.0-alpha.4

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.
@@ -2,21 +2,17 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "patch",
5
- "oldVersion": "6.10.0-alpha.1",
6
- "newVersion": "6.10.0-alpha.2",
5
+ "oldVersion": "6.10.0-alpha.3",
6
+ "newVersion": "6.10.0-alpha.4",
7
7
  "tagName": "alpha",
8
8
  "constraints": [
9
9
  {
10
10
  "impact": "patch",
11
11
  "reason": "Appears in changelog section :bug: Bug Fix"
12
- },
13
- {
14
- "impact": "patch",
15
- "reason": "Appears in changelog section :house: Internal"
16
12
  }
17
13
  ],
18
14
  "pkgJSONPath": "./package.json"
19
15
  }
20
16
  },
21
- "description": "## Release (2025-11-07)\n\n* @ember/app-blueprint 6.10.0-alpha.2 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))\n * [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))\n * [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#130](https://github.com/ember-cli/ember-app-blueprint/pull/130) Merge beta into main ([@mansona](https://github.com/mansona))\n * [#131](https://github.com/ember-cli/ember-app-blueprint/pull/131) fix warpdrive lint tests ([@mansona](https://github.com/mansona))\n * [#129](https://github.com/ember-cli/ember-app-blueprint/pull/129) Prepare Beta Release v6.9.0-beta.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#122](https://github.com/ember-cli/ember-app-blueprint/pull/122) Merge release into beta ([@mansona](https://github.com/mansona))\n * [#127](https://github.com/ember-cli/ember-app-blueprint/pull/127) Prepare Stable Release v6.8.3 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#121](https://github.com/ember-cli/ember-app-blueprint/pull/121) Prepare Stable Release v6.8.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#117](https://github.com/ember-cli/ember-app-blueprint/pull/117) Prepare Stable Release v6.8.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n\n#### Committers: 4\n- Alexey Kulakov ([@aklkv](https://github.com/aklkv))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Markus Sanin ([@mkszepp](https://github.com/mkszepp))\n- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
17
+ "description": "## Release (2025-11-12)\n\n* @ember/app-blueprint 6.10.0-alpha.4 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#133](https://github.com/ember-cli/ember-app-blueprint/pull/133) remove ember-auto-import from newly generated app ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
22
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-11-12)
4
+
5
+ * @ember/app-blueprint 6.10.0-alpha.4 (patch)
6
+
7
+ #### :bug: Bug Fix
8
+ * `@ember/app-blueprint`
9
+ * [#133](https://github.com/ember-cli/ember-app-blueprint/pull/133) remove ember-auto-import from newly generated app ([@mansona](https://github.com/mansona))
10
+
11
+ #### Committers: 1
12
+ - Chris Manson ([@mansona](https://github.com/mansona))
13
+
14
+ ## Release (2025-11-12)
15
+
16
+ * @ember/app-blueprint 6.10.0-alpha.3 (patch)
17
+
18
+ #### :bug: Bug Fix
19
+ * `@ember/app-blueprint`
20
+ * [#134](https://github.com/ember-cli/ember-app-blueprint/pull/134) Restore correct version of babel-plugin-ember-template-compilation ([@ef4](https://github.com/ef4))
21
+
22
+ #### Committers: 1
23
+ - Edward Faulkner ([@ef4](https://github.com/ef4))
24
+
3
25
  ## Release (2025-11-07)
4
26
 
5
27
  * @ember/app-blueprint 6.10.0-alpha.2 (patch)
@@ -21,7 +21,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
21
21
  import qunit from 'eslint-plugin-qunit';
22
22
  import n from 'eslint-plugin-n';
23
23
 
24
- import babelParser from '@babel/eslint-parser';
24
+ import babelParser from '@babel/eslint-parser/experimental-worker';
25
25
 
26
26
  const esmParserOptions = {
27
27
  ecmaFeatures: { modules: true },
@@ -24,7 +24,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
24
24
  import qunit from 'eslint-plugin-qunit';
25
25
  import n from 'eslint-plugin-n';
26
26
 
27
- import babelParser from '@babel/eslint-parser';
27
+ import babelParser from '@babel/eslint-parser/experimental-worker';
28
28
 
29
29
  const parserOptions = {
30
30
  esm: {
@@ -34,7 +34,6 @@ const parserOptions = {
34
34
  },
35
35
  ts: {
36
36
  projectService: true,
37
- project: true,
38
37
  tsconfigRootDir: import.meta.dirname,
39
38
  },
40
39
  },
@@ -61,10 +61,9 @@
61
61
  "@warp-drive/json-api": "5.8.0",
62
62
  "@warp-drive/legacy": "5.8.0",
63
63
  "@warp-drive/utilities": "5.8.0<% } %>",
64
- "babel-plugin-ember-template-compilation": "^2.4.1",
64
+ "babel-plugin-ember-template-compilation": "^3.0.1",
65
65
  "concurrently": "^9.2.1",
66
66
  "decorator-transforms": "^2.3.0",
67
- "ember-auto-import": "^2.11.1",
68
67
  "ember-cli": "~6.9.0-alpha.1",
69
68
  "ember-cli-babel": "^8.2.0",
70
69
  "ember-cli-deprecation-workflow": "^3.4.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.10.0-alpha.2",
3
+ "version": "6.10.0-alpha.4",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"