@ember/app-blueprint 6.8.0-beta.5 → 6.8.0-beta.7
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/.github/workflows/ci.yml +15 -3
- package/.release-plan.json +11 -3
- package/CHANGELOG.md +41 -0
- package/files/README.md +3 -5
- package/files/app/services/.gitkeep +0 -0
- package/files/package.json +24 -24
- package/package.json +2 -2
- package/tests/lint.test.mjs +14 -2
- package/vitest.config.mjs +13 -0
- package/vitest.config.ts +0 -10
package/.github/workflows/ci.yml
CHANGED
|
@@ -16,20 +16,32 @@ jobs:
|
|
|
16
16
|
- uses: pnpm/action-setup@v4
|
|
17
17
|
- uses: actions/setup-node@v4
|
|
18
18
|
with:
|
|
19
|
-
node-version:
|
|
19
|
+
node-version: 22
|
|
20
20
|
cache: pnpm
|
|
21
21
|
- run: pnpm install --frozen-lockfile
|
|
22
22
|
- run: pnpm lint
|
|
23
23
|
|
|
24
24
|
test:
|
|
25
25
|
name: Test
|
|
26
|
-
runs-on:
|
|
26
|
+
runs-on: ${{ matrix.os }}
|
|
27
|
+
strategy:
|
|
28
|
+
fail-fast: false
|
|
29
|
+
matrix:
|
|
30
|
+
os:
|
|
31
|
+
- ubuntu-latest
|
|
32
|
+
- windows-latest
|
|
33
|
+
|
|
27
34
|
steps:
|
|
28
35
|
- uses: actions/checkout@v4
|
|
29
36
|
- uses: pnpm/action-setup@v4
|
|
30
37
|
- uses: actions/setup-node@v4
|
|
31
38
|
with:
|
|
32
|
-
node-version:
|
|
39
|
+
node-version: 20
|
|
33
40
|
cache: pnpm
|
|
41
|
+
- name: Set TEMP to D:/Temp on windows
|
|
42
|
+
if: ${{matrix.os}} == windows-latest
|
|
43
|
+
run: |
|
|
44
|
+
mkdir "D:\\Temp"
|
|
45
|
+
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
|
|
34
46
|
- run: pnpm install --frozen-lockfile
|
|
35
47
|
- run: pnpm test
|
package/.release-plan.json
CHANGED
|
@@ -2,17 +2,25 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "minor",
|
|
5
|
-
"oldVersion": "6.8.0-beta.
|
|
6
|
-
"newVersion": "6.8.0-beta.
|
|
5
|
+
"oldVersion": "6.8.0-beta.6",
|
|
6
|
+
"newVersion": "6.8.0-beta.7",
|
|
7
7
|
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
10
|
"impact": "minor",
|
|
11
11
|
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"impact": "patch",
|
|
15
|
+
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"impact": "patch",
|
|
19
|
+
"reason": "Appears in changelog section :house: Internal"
|
|
12
20
|
}
|
|
13
21
|
],
|
|
14
22
|
"pkgJSONPath": "./package.json"
|
|
15
23
|
}
|
|
16
24
|
},
|
|
17
|
-
"description": "## Release (2025-10-
|
|
25
|
+
"description": "## Release (2025-10-13)\n\n* @ember/app-blueprint 6.8.0-beta.7 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))\n * [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#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))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
|
|
18
26
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-10-13)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.8.0-beta.7 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))
|
|
10
|
+
* [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
11
|
+
|
|
12
|
+
#### :bug: Bug Fix
|
|
13
|
+
* `@ember/app-blueprint`
|
|
14
|
+
* [#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))
|
|
15
|
+
|
|
16
|
+
#### :house: Internal
|
|
17
|
+
* `@ember/app-blueprint`
|
|
18
|
+
* [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))
|
|
19
|
+
|
|
20
|
+
#### Committers: 2
|
|
21
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
22
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
23
|
+
|
|
24
|
+
## Release (2025-10-10)
|
|
25
|
+
|
|
26
|
+
* @ember/app-blueprint 6.8.0-beta.6 (minor)
|
|
27
|
+
|
|
28
|
+
#### :rocket: Enhancement
|
|
29
|
+
* `@ember/app-blueprint`
|
|
30
|
+
* [#95](https://github.com/ember-cli/ember-app-blueprint/pull/95) [Beta] add services directory ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
31
|
+
|
|
32
|
+
#### :memo: Documentation
|
|
33
|
+
* `@ember/app-blueprint`
|
|
34
|
+
* [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))
|
|
35
|
+
|
|
36
|
+
#### :house: Internal
|
|
37
|
+
* `@ember/app-blueprint`
|
|
38
|
+
* [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
39
|
+
|
|
40
|
+
#### Committers: 2
|
|
41
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
42
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
43
|
+
|
|
3
44
|
## Release (2025-10-06)
|
|
4
45
|
|
|
5
46
|
* @ember/app-blueprint 6.8.0-beta.5 (minor)
|
package/files/README.md
CHANGED
|
@@ -11,7 +11,6 @@ You will need the following things properly installed on your computer.
|
|
|
11
11
|
- [Node.js](https://nodejs.org/)<% if (pnpm) { %>
|
|
12
12
|
- [pnpm](https://pnpm.io/)<% } else if (yarn) { %>
|
|
13
13
|
- [Yarn](https://yarnpkg.com/)<% } else { %> (with npm)<% } %>
|
|
14
|
-
- [Ember CLI](https://cli.emberjs.com/release/)
|
|
15
14
|
- [Google Chrome](https://google.com/chrome/)
|
|
16
15
|
|
|
17
16
|
## Installation
|
|
@@ -28,12 +27,11 @@ You will need the following things properly installed on your computer.
|
|
|
28
27
|
|
|
29
28
|
### Code Generators
|
|
30
29
|
|
|
31
|
-
Make use of the many generators for code, try
|
|
30
|
+
Make use of the many generators for code, try `<%= execBinPrefix %> ember help generate` for more details
|
|
32
31
|
|
|
33
32
|
### Running Tests
|
|
34
33
|
|
|
35
34
|
- `<%= invokeScriptPrefix %> test`
|
|
36
|
-
- `<%= invokeScriptPrefix %> test <% if (npm) { %>-- <% } %>--server`
|
|
37
35
|
|
|
38
36
|
### Linting
|
|
39
37
|
|
|
@@ -42,7 +40,7 @@ Make use of the many generators for code, try `ember help generate` for more det
|
|
|
42
40
|
|
|
43
41
|
### Building
|
|
44
42
|
|
|
45
|
-
- `<%= execBinPrefix %>
|
|
43
|
+
- `<%= execBinPrefix %> vite build --mode development` (development)
|
|
46
44
|
- `<%= invokeScriptPrefix %> build` (production)
|
|
47
45
|
|
|
48
46
|
### Deploying
|
|
@@ -52,7 +50,7 @@ Specify what it takes to deploy your app.
|
|
|
52
50
|
## Further Reading / Useful Links
|
|
53
51
|
|
|
54
52
|
- [ember.js](https://emberjs.com/)
|
|
55
|
-
- [
|
|
53
|
+
- [Vite](https://vite.dev)
|
|
56
54
|
- Development Browser Extensions
|
|
57
55
|
- [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
|
|
58
56
|
- [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)
|
|
File without changes
|
package/files/package.json
CHANGED
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"./*": "./app/*"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@babel/core": "^7.28.
|
|
35
|
-
"@babel/runtime": "^7.28.
|
|
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.
|
|
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.
|
|
51
|
+
"@ember/test-helpers": "^5.3.0",
|
|
52
52
|
"@ember/test-waiters": "^4.1.1",
|
|
53
|
-
"@embroider/macros": "^1.
|
|
54
|
-
"@embroider/core": "^4.
|
|
55
|
-
"@embroider/vite": "^1.2
|
|
56
|
-
"@embroider/compat": "^4.1.
|
|
57
|
-
"@embroider/router": "^3.0.
|
|
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.
|
|
60
|
-
"@eslint/js": "^9.
|
|
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.
|
|
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.
|
|
75
|
-
"ember-cli": "~6.8.0-beta.
|
|
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.
|
|
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.
|
|
87
|
+
"eslint": "^9.37.0",
|
|
88
88
|
"eslint-config-prettier": "^10.1.8",
|
|
89
|
-
"eslint-plugin-ember": "^12.7.
|
|
90
|
-
"eslint-plugin-n": "^17.
|
|
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.
|
|
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.
|
|
95
|
+
"qunit": "^2.24.2",
|
|
96
96
|
"qunit-dom": "^3.5.0",
|
|
97
|
-
"stylelint": "^16.
|
|
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.
|
|
102
|
-
"typescript-eslint": "^8.
|
|
103
|
-
"vite": "^
|
|
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.
|
|
3
|
+
"version": "6.8.0-beta.7",
|
|
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": "^
|
|
44
|
+
"vitest": "^4.0.0-beta.17"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"lint": "concurrently 'pnpm:lint:*(!fix)'",
|
package/tests/lint.test.mjs
CHANGED
|
@@ -14,7 +14,13 @@ describe('linting & formatting', function () {
|
|
|
14
14
|
app = await generateApp({ flags: ['--pnpm'], skipNpm: false });
|
|
15
15
|
});
|
|
16
16
|
|
|
17
|
-
it('yields output without errors', async function () {
|
|
17
|
+
it('yields output without errors', async function (context) {
|
|
18
|
+
// Lint errors on windows machines - probably because of line-endings.
|
|
19
|
+
// TODO fix the config so that a newly generated app doens't fail lint on windows
|
|
20
|
+
if (process.platform === 'win32') {
|
|
21
|
+
context.skip();
|
|
22
|
+
}
|
|
23
|
+
|
|
18
24
|
let { exitCode } = await app.execa('pnpm', ['lint']);
|
|
19
25
|
|
|
20
26
|
expect(exitCode).to.equal(0);
|
|
@@ -35,7 +41,13 @@ describe('linting & formatting', function () {
|
|
|
35
41
|
});
|
|
36
42
|
});
|
|
37
43
|
|
|
38
|
-
it('yields output without errors', async function () {
|
|
44
|
+
it('yields output without errors', async function (context) {
|
|
45
|
+
// Lint errors on windows machines - probably because of line-endings.
|
|
46
|
+
// TODO fix the config so that a newly generated app doens't fail lint on windows
|
|
47
|
+
if (process.platform === 'win32') {
|
|
48
|
+
context.skip();
|
|
49
|
+
}
|
|
50
|
+
|
|
39
51
|
let { exitCode } = await app.execa('pnpm', ['lint']);
|
|
40
52
|
|
|
41
53
|
expect(exitCode).to.equal(0);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineConfig } from 'vitest/config';
|
|
2
|
+
|
|
3
|
+
const ONE_SECOND = 1_000;
|
|
4
|
+
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
/**
|
|
7
|
+
* add a 3x factor for windows tests... because windows 😭
|
|
8
|
+
*/
|
|
9
|
+
test: {
|
|
10
|
+
testTimeout: 240 * ONE_SECOND * (process.platform === 'win32' ? 3 : 1),
|
|
11
|
+
hookTimeout: 240 * ONE_SECOND * (process.platform === 'win32' ? 3 : 1),
|
|
12
|
+
},
|
|
13
|
+
});
|