@ember/app-blueprint 6.12.0 → 7.0.0-alpha.2

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.
@@ -25,32 +25,19 @@ jobs:
25
25
  - run: pnpm install --frozen-lockfile
26
26
  - run: pnpm lint
27
27
 
28
- matrix-job:
29
- name: "Setup Matrix"
30
- runs-on: ubuntu-latest
31
- timeout-minutes: 1
32
- outputs:
33
- matrix: ${{ steps.set-matrix.outputs.matrix }}
34
-
35
- steps:
36
- - uses: actions/checkout@v6
37
- - uses: pnpm/action-setup@v4
38
- - uses: actions/setup-node@v6
39
- with:
40
- node-version: 24
41
- cache: 'pnpm'
42
- - run: pnpm install
43
- - id: set-matrix
44
- run: echo "matrix=$(pnpm vitest-matrix --node 20 22 24 --os ubuntu-latest windows-latest)" >> $GITHUB_OUTPUT
45
-
46
- tests:
47
- name: ${{ matrix.name }} - Node ${{matrix.node}} - ${{matrix.os}}
28
+ test:
29
+ name: Test
48
30
  runs-on: ${{ matrix.os }}
49
- needs: "matrix-job"
50
31
  strategy:
51
32
  fail-fast: false
52
33
  matrix:
53
- include: ${{fromJson(needs.matrix-job.outputs.matrix)}}
34
+ os:
35
+ - ubuntu-latest
36
+ - windows-latest
37
+ node:
38
+ - 20
39
+ - 22
40
+ - 24
54
41
 
55
42
  steps:
56
43
  - uses: actions/checkout@v4
@@ -60,9 +47,9 @@ jobs:
60
47
  node-version: ${{ matrix.node }}
61
48
  cache: pnpm
62
49
  - name: Set TEMP to D:/Temp on windows
63
- if: ${{matrix.os == 'windows-latest'}}
50
+ if: ${{matrix.os}} == windows-latest
64
51
  run: |
65
52
  mkdir "D:\\Temp"
66
53
  echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
67
54
  - run: pnpm install --frozen-lockfile
68
- - run: pnpm ${{matrix.command}}
55
+ - run: pnpm test
@@ -2,9 +2,9 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "6.11.2",
6
- "newVersion": "6.12.0",
7
- "tagName": "latest",
5
+ "oldVersion": "7.0.0-alpha.1",
6
+ "newVersion": "7.0.0-alpha.2",
7
+ "tagName": "alpha",
8
8
  "constraints": [
9
9
  {
10
10
  "impact": "minor",
@@ -14,10 +14,6 @@
14
14
  "impact": "patch",
15
15
  "reason": "Appears in changelog section :bug: Bug Fix"
16
16
  },
17
- {
18
- "impact": "patch",
19
- "reason": "Appears in changelog section :memo: Documentation"
20
- },
21
17
  {
22
18
  "impact": "patch",
23
19
  "reason": "Appears in changelog section :house: Internal"
@@ -26,5 +22,5 @@
26
22
  "pkgJSONPath": "./package.json"
27
23
  }
28
24
  },
29
- "description": "## Release (2026-04-09)\n\n* @ember/app-blueprint 6.12.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#243](https://github.com/ember-cli/ember-app-blueprint/pull/243) Promote Beta and update all dependencies for 6.12 release ([@mansona](https://github.com/mansona))\n * [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))\n * [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))\n * [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#204](https://github.com/ember-cli/ember-app-blueprint/pull/204) Update Release.md ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#247](https://github.com/ember-cli/ember-app-blueprint/pull/247) update node for Publish CI to a version that doesn't need to update npm ([@mansona](https://github.com/mansona))\n * [#244](https://github.com/ember-cli/ember-app-blueprint/pull/244) split tests into individual matrix jobs ([@mansona](https://github.com/mansona))\n * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))\n * [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))\n\n#### Committers: 4\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\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"
25
+ "description": "## Release (2026-04-17)\n\n* @ember/app-blueprint 7.0.0-alpha.2 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#242](https://github.com/ember-cli/ember-app-blueprint/pull/242) Prepare 7.0-alpha ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))\n * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#249](https://github.com/ember-cli/ember-app-blueprint/pull/249) fix publish ([@mansona](https://github.com/mansona))\n * [#234](https://github.com/ember-cli/ember-app-blueprint/pull/234) Prepare Alpha Release v7.0.0-alpha.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- GitHub Actions [Bot] ([@github-actions](https://github.com/apps/github-actions))\n"
30
26
  }
package/CHANGELOG.md CHANGED
@@ -1,16 +1,61 @@
1
1
  # Changelog
2
2
 
3
- ## Release (2026-04-09)
3
+ ## Release (2026-04-17)
4
4
 
5
- * @ember/app-blueprint 6.12.0 (minor)
5
+ * @ember/app-blueprint 7.0.0-alpha.2 (minor)
6
6
 
7
7
  #### :rocket: Enhancement
8
8
  * `@ember/app-blueprint`
9
- * [#243](https://github.com/ember-cli/ember-app-blueprint/pull/243) Promote Beta and update all dependencies for 6.12 release ([@mansona](https://github.com/mansona))
9
+ * [#242](https://github.com/ember-cli/ember-app-blueprint/pull/242) Prepare 7.0-alpha ([@mansona](https://github.com/mansona))
10
+
11
+ #### :bug: Bug Fix
12
+ * `@ember/app-blueprint`
13
+ * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
14
+ * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
15
+
16
+ #### :house: Internal
17
+ * `@ember/app-blueprint`
18
+ * [#249](https://github.com/ember-cli/ember-app-blueprint/pull/249) fix publish ([@mansona](https://github.com/mansona))
19
+ * [#234](https://github.com/ember-cli/ember-app-blueprint/pull/234) Prepare Alpha Release v7.0.0-alpha.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
20
+ * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))
21
+
22
+ #### Committers: 2
23
+ - Chris Manson ([@mansona](https://github.com/mansona))
24
+ - GitHub Actions [Bot] ([@github-actions](https://github.com/apps/github-actions))
25
+
26
+ ## Release (2026-04-17)
27
+
28
+ * @ember/app-blueprint 7.0.0-alpha.1 (minor)
29
+
30
+ #### :rocket: Enhancement
31
+ * `@ember/app-blueprint`
32
+ * [#242](https://github.com/ember-cli/ember-app-blueprint/pull/242) Prepare 7.0-alpha ([@mansona](https://github.com/mansona))
33
+
34
+ #### :bug: Bug Fix
35
+ * `@ember/app-blueprint`
36
+ * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
37
+ * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
38
+
39
+ #### :house: Internal
40
+ * `@ember/app-blueprint`
41
+ * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))
42
+
43
+ #### Committers: 1
44
+ - Chris Manson ([@mansona](https://github.com/mansona))
45
+
46
+ ## Release (2026-04-02)
47
+
48
+ * @ember/app-blueprint 6.12.0-beta.1 (minor)
49
+
50
+ #### :rocket: Enhancement
51
+ * `@ember/app-blueprint`
52
+ * [#238](https://github.com/ember-cli/ember-app-blueprint/pull/238) Promote 6.12 to beta and update dependencies ([@mansona](https://github.com/mansona))
10
53
  * [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))
11
54
 
12
55
  #### :bug: Bug Fix
13
56
  * `@ember/app-blueprint`
57
+ * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
58
+ * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
14
59
  * [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))
15
60
  * [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))
16
61
  * [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))
@@ -21,8 +66,6 @@
21
66
 
22
67
  #### :house: Internal
23
68
  * `@ember/app-blueprint`
24
- * [#247](https://github.com/ember-cli/ember-app-blueprint/pull/247) update node for Publish CI to a version that doesn't need to update npm ([@mansona](https://github.com/mansona))
25
- * [#244](https://github.com/ember-cli/ember-app-blueprint/pull/244) split tests into individual matrix jobs ([@mansona](https://github.com/mansona))
26
69
  * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))
27
70
  * [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))
28
71
 
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@babel/core": "^7.29.0",
35
- "@babel/runtime": "^7.29.2",
35
+ "@babel/runtime": "^7.28.6",
36
36
  "@babel/plugin-transform-runtime": "^7.29.0<% if (typescript) { %>",
37
37
  "@babel/plugin-transform-typescript": "^7.28.6<% } %>",
38
38
  "@babel/eslint-parser": "^7.28.6<% if (typescript) { %>",
@@ -41,18 +41,18 @@
41
41
  "@ember/string": "^4.0.1",
42
42
  "@ember/test-helpers": "^5.4.1",
43
43
  "@ember/test-waiters": "^4.1.1",
44
- "@embroider/macros": "^1.20.2",
45
- "@embroider/core": "^4.4.7",
46
- "@embroider/vite": "^1.7.2",
47
- "@embroider/compat": "^4.1.17",
44
+ "@embroider/macros": "^1.19.7",
45
+ "@embroider/core": "^4.4.3",
46
+ "@embroider/vite": "^1.5.2",
47
+ "@embroider/compat": "^4.1.13",
48
48
  "@embroider/router": "^3.0.6",
49
49
  "@embroider/config-meta-loader": "^1.0.0",
50
50
  "@embroider/legacy-inspector-support": "^0.1.3",
51
- "@eslint/js": "^9.39.4",
51
+ "@eslint/js": "^9.39.2",
52
52
  "@glimmer/component": "^2.0.0<% if (typescript) { %>",
53
- "@glint/ember-tsc": "^1.5.0",
54
- "@glint/template": "^1.7.7",
55
- "@glint/tsserver-plugin": "^2.4.0<% } %>",
53
+ "@glint/ember-tsc": "^1.1.1",
54
+ "@glint/template": "^1.7.4",
55
+ "@glint/tsserver-plugin": "^2.1.0<% } %>",
56
56
  "@rollup/plugin-babel": "^6.1.0<% if (typescript) { %>",
57
57
  "@types/qunit": "^2.19.13",
58
58
  "@types/rsvp": "^4.0.9<% } %><% if (warpDrive) { %>",
@@ -64,18 +64,18 @@
64
64
  "babel-plugin-ember-template-compilation": "^3.1.0",
65
65
  "concurrently": "^9.2.1",
66
66
  "decorator-transforms": "^2.3.1",
67
- "ember-cli": "~6.11.2",
67
+ "ember-cli": "~6.11.0",
68
68
  "ember-cli-babel": "^8.3.1",
69
69
  "ember-cli-deprecation-workflow": "^3.4.0",
70
70
  "ember-load-initializers": "^3.0.1",
71
71
  "ember-modifier": "^4.3.0",
72
72
  "ember-page-title": "^9.0.3",
73
73
  "ember-qunit": "^9.0.4",
74
- "ember-resolver": "^13.2.0",
75
- "ember-source": "~6.12.0",
74
+ "ember-resolver": "^13.1.1",
75
+ "ember-source": "~7.0.0-beta.1",
76
76
  "ember-template-lint": "^7.9.3<% if (welcome) { %>",
77
77
  "ember-welcome-page": "^8.0.5<% } %>",
78
- "eslint": "^9.39.4",
78
+ "eslint": "^9.39.2",
79
79
  "eslint-config-prettier": "^10.1.8",
80
80
  "eslint-plugin-ember": "^12.7.5",
81
81
  "eslint-plugin-n": "^17.24.0",
@@ -88,9 +88,9 @@
88
88
  "qunit-dom": "^3.5.0",
89
89
  "stylelint": "^16.26.1",
90
90
  "stylelint-config-standard": "^38.0.0",
91
- "testem": "^3.19.1<% if (typescript) { %>",
91
+ "testem": "^3.17.0<% if (typescript) { %>",
92
92
  "typescript": "^5.9.3",
93
- "typescript-eslint": "^8.58.0<% } %>",
93
+ "typescript-eslint": "^8.56.0<% } %>",
94
94
  "vite": "^7.3.1"
95
95
  },
96
96
  "engines": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.12.0",
3
+ "version": "7.0.0-alpha.2",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -12,6 +12,14 @@
12
12
  "license": "MIT",
13
13
  "author": "",
14
14
  "main": "index.js",
15
+ "release-plan": {
16
+ "semverIncrementAs": {
17
+ "minor": "prerelease",
18
+ "patch": "prerelease"
19
+ },
20
+ "semverIncrementTag": "alpha",
21
+ "publishTag": "alpha"
22
+ },
15
23
  "dependencies": {
16
24
  "chalk": "^4.1.2",
17
25
  "ejs": "^3.1.10",
@@ -35,8 +43,7 @@
35
43
  "release-plan": "^0.17.2",
36
44
  "strip-ansi": "^7.1.0",
37
45
  "tmp-promise": "^3.0.3",
38
- "vitest": "^4.0.0-beta.17",
39
- "vitest-matrix": "^0.2.0"
46
+ "vitest": "^4.0.0-beta.17"
40
47
  },
41
48
  "scripts": {
42
49
  "lint": "concurrently 'pnpm:lint:*(!fix)'",
@@ -20,7 +20,7 @@ function testemProxy(targetURL) {
20
20
  res && res.status && res.status(500).json(err);
21
21
  });
22
22
 
23
- app.all('*', (req, res, next) => {
23
+ app.all('*name', (req, res, next) => {
24
24
  let url = req.url;
25
25
  if (url === '/testem.js' || url.startsWith('/testem/')) {
26
26
  return next();