@ember/app-blueprint 6.8.0-beta.6 → 6.8.0-beta.8

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.
@@ -16,7 +16,7 @@ jobs:
16
16
  - uses: pnpm/action-setup@v4
17
17
  - uses: actions/setup-node@v4
18
18
  with:
19
- node-version: 18
19
+ node-version: 22
20
20
  cache: pnpm
21
21
  - run: pnpm install --frozen-lockfile
22
22
  - run: pnpm lint
@@ -36,7 +36,7 @@ jobs:
36
36
  - uses: pnpm/action-setup@v4
37
37
  - uses: actions/setup-node@v4
38
38
  with:
39
- node-version: 18
39
+ node-version: 20
40
40
  cache: pnpm
41
41
  - name: Set TEMP to D:/Temp on windows
42
42
  if: ${{matrix.os}} == windows-latest
@@ -1,19 +1,11 @@
1
1
  {
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
- "impact": "minor",
5
- "oldVersion": "6.8.0-beta.5",
6
- "newVersion": "6.8.0-beta.6",
4
+ "impact": "patch",
5
+ "oldVersion": "6.8.0-beta.7",
6
+ "newVersion": "6.8.0-beta.8",
7
7
  "tagName": "beta",
8
8
  "constraints": [
9
- {
10
- "impact": "minor",
11
- "reason": "Appears in changelog section :rocket: Enhancement"
12
- },
13
- {
14
- "impact": "patch",
15
- "reason": "Appears in changelog section :memo: Documentation"
16
- },
17
9
  {
18
10
  "impact": "patch",
19
11
  "reason": "Appears in changelog section :house: Internal"
@@ -22,5 +14,5 @@
22
14
  "pkgJSONPath": "./package.json"
23
15
  }
24
16
  },
25
- "description": "## Release (2025-10-10)\n\n* @ember/app-blueprint 6.8.0-beta.6 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#95](https://github.com/ember-cli/ember-app-blueprint/pull/95) [Beta] add services directory ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
17
+ "description": "## Release (2025-10-14)\n\n* @ember/app-blueprint 6.8.0-beta.8 (patch)\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#104](https://github.com/ember-cli/ember-app-blueprint/pull/104) Merge release into beta ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
26
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-10-14)
4
+
5
+ * @ember/app-blueprint 6.8.0-beta.8 (patch)
6
+
7
+ #### :house: Internal
8
+ * `@ember/app-blueprint`
9
+ * [#104](https://github.com/ember-cli/ember-app-blueprint/pull/104) Merge release into beta ([@mansona](https://github.com/mansona))
10
+
11
+ #### Committers: 1
12
+ - Chris Manson ([@mansona](https://github.com/mansona))
13
+
14
+ ## Release (2025-10-13)
15
+
16
+ * @ember/app-blueprint 6.8.0-beta.7 (minor)
17
+
18
+ #### :rocket: Enhancement
19
+ * `@ember/app-blueprint`
20
+ * [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))
21
+ * [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
22
+
23
+ #### :bug: Bug Fix
24
+ * `@ember/app-blueprint`
25
+ * [#100](https://github.com/ember-cli/ember-app-blueprint/pull/100) [beta] swap to the Vitest beta to fix CI ([@mansona](https://github.com/mansona))
26
+
27
+ #### :house: Internal
28
+ * `@ember/app-blueprint`
29
+ * [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))
30
+
31
+ #### Committers: 2
32
+ - Chris Manson ([@mansona](https://github.com/mansona))
33
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
34
+
3
35
  ## Release (2025-10-10)
4
36
 
5
37
  * @ember/app-blueprint 6.8.0-beta.6 (minor)
@@ -26,6 +26,7 @@ assert(
26
26
 
27
27
  export default config as {
28
28
  modulePrefix: string;
29
+ podModulePrefix?: string;
29
30
  locationType: string;
30
31
  rootURL: string;
31
32
  APP: Record<string, unknown>;
@@ -31,11 +31,11 @@
31
31
  "./*": "./app/*"
32
32
  },
33
33
  "devDependencies": {
34
- "@babel/core": "^7.28.3",
35
- "@babel/runtime": "^7.28.3",
34
+ "@babel/core": "^7.28.4",
35
+ "@babel/runtime": "^7.28.4",
36
36
  "@babel/plugin-transform-runtime": "^7.28.3<% if (typescript) { %>",
37
37
  "@babel/plugin-transform-typescript": "^7.28.0<% } %>",
38
- "@babel/eslint-parser": "^7.28.0<% if (typescript && emberData) { %>",
38
+ "@babel/eslint-parser": "^7.28.4<% if (typescript && emberData) { %>",
39
39
  "@ember-data/adapter": "~5.6.0",
40
40
  "@ember-data/graph": "~5.6.0",
41
41
  "@ember-data/json-api": "~5.6.0",
@@ -48,21 +48,21 @@
48
48
  "@ember/app-tsconfig": "^1.0.3<% } %>",
49
49
  "@ember/optional-features": "^2.2.0",
50
50
  "@ember/string": "^4.0.1",
51
- "@ember/test-helpers": "^5.2.2",
51
+ "@ember/test-helpers": "^5.3.0",
52
52
  "@ember/test-waiters": "^4.1.1",
53
- "@embroider/macros": "^1.18.1",
54
- "@embroider/core": "^4.1.3",
55
- "@embroider/vite": "^1.2.0",
56
- "@embroider/compat": "^4.1.3",
57
- "@embroider/router": "^3.0.3",
53
+ "@embroider/macros": "^1.19.1",
54
+ "@embroider/core": "^4.2.4",
55
+ "@embroider/vite": "^1.3.2",
56
+ "@embroider/compat": "^4.1.7",
57
+ "@embroider/router": "^3.0.4",
58
58
  "@embroider/config-meta-loader": "^1.0.0",
59
- "@embroider/legacy-inspector-support": "^0.1.2",
60
- "@eslint/js": "^9.34.0",
59
+ "@embroider/legacy-inspector-support": "^0.1.3",
60
+ "@eslint/js": "^9.37.0",
61
61
  "@glimmer/component": "^2.0.0<% if (typescript) { %>",
62
62
  "@glint/core": "^1.5.2",
63
63
  "@glint/environment-ember-loose": "^1.5.2",
64
64
  "@glint/environment-ember-template-imports": "^1.5.2",
65
- "@glint/template": "^1.5.2<% } %>",
65
+ "@glint/template": "^1.6.1<% } %>",
66
66
  "@rollup/plugin-babel": "^6.0.4<% if (typescript) { %>",
67
67
  "@types/qunit": "^2.19.13",
68
68
  "@types/rsvp": "^4.0.9<% if (emberData) {%>",
@@ -71,36 +71,36 @@
71
71
  "babel-plugin-ember-template-compilation": "^2.4.1",
72
72
  "concurrently": "^9.2.1",
73
73
  "decorator-transforms": "^2.3.0",
74
- "ember-auto-import": "^2.10.0",
75
- "ember-cli": "~6.8.0-beta.2",
74
+ "ember-auto-import": "^2.11.1",
75
+ "ember-cli": "~6.8.0-beta.3",
76
76
  "ember-cli-babel": "^8.2.0",
77
77
  "ember-cli-deprecation-workflow": "^3.4.0<% if (emberData) { %>",
78
78
  "ember-data": "~5.6.0<% } %>",
79
79
  "ember-load-initializers": "^3.0.1",
80
80
  "ember-modifier": "^4.2.2",
81
81
  "ember-page-title": "^9.0.3",
82
- "ember-qunit": "^9.0.3",
82
+ "ember-qunit": "^9.0.4",
83
83
  "ember-resolver": "^13.1.1",
84
84
  "ember-source": "~6.8.0-beta.4",
85
85
  "ember-template-lint": "^7.9.3<% if (welcome) { %>",
86
86
  "ember-welcome-page": "^7.0.2<% } %>",
87
- "eslint": "^9.34.0",
87
+ "eslint": "^9.37.0",
88
88
  "eslint-config-prettier": "^10.1.8",
89
- "eslint-plugin-ember": "^12.7.3",
90
- "eslint-plugin-n": "^17.21.3",
89
+ "eslint-plugin-ember": "^12.7.4",
90
+ "eslint-plugin-n": "^17.23.1",
91
91
  "eslint-plugin-qunit": "^8.2.5",
92
- "globals": "^16.3.0",
92
+ "globals": "^16.4.0",
93
93
  "prettier": "^3.6.2",
94
94
  "prettier-plugin-ember-template-tag": "^2.1.0",
95
- "qunit": "^2.24.1",
95
+ "qunit": "^2.24.2",
96
96
  "qunit-dom": "^3.5.0",
97
- "stylelint": "^16.23.1",
97
+ "stylelint": "^16.25.0",
98
98
  "stylelint-config-standard": "^38.0.0",
99
99
  "testem": "^3.16.0",
100
100
  "tracked-built-ins": "^4.0.0<% if (typescript) { %>",
101
- "typescript": "^5.9.2",
102
- "typescript-eslint": "^8.42.0<% } %>",
103
- "vite": "^6.3.5"
101
+ "typescript": "^5.9.3",
102
+ "typescript-eslint": "^8.46.0<% } %>",
103
+ "vite": "^7.1.9"
104
104
  },
105
105
  "engines": {
106
106
  "node": ">= 18"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.8.0-beta.6",
3
+ "version": "6.8.0-beta.8",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -41,7 +41,7 @@
41
41
  "release-plan": "^0.16.0",
42
42
  "strip-ansi": "^7.1.0",
43
43
  "tmp-promise": "^3.0.3",
44
- "vitest": "^3.2.4"
44
+ "vitest": "^4.0.0-beta.17"
45
45
  },
46
46
  "scripts": {
47
47
  "lint": "concurrently 'pnpm:lint:*(!fix)'",
File without changes