@ember/app-blueprint 6.6.0 → 6.8.0-beta.1
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/{plan-release.yml → plan-beta-release.yml} +6 -7
- package/.github/workflows/{publish.yml → publish-beta.yml} +3 -4
- package/.release-plan.json +4 -4
- package/CHANGELOG.md +45 -0
- package/README.md +10 -0
- package/files/package.json +3 -3
- package/package.json +9 -1
- package/tests/lint.test.mjs +17 -6
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
name: Plan Release
|
|
1
|
+
name: Plan Beta Release
|
|
2
2
|
on:
|
|
3
3
|
workflow_dispatch:
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
|
-
-
|
|
7
|
-
- master
|
|
6
|
+
- beta
|
|
8
7
|
pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
|
|
9
8
|
types:
|
|
10
9
|
- labeled
|
|
11
10
|
- unlabeled
|
|
12
11
|
|
|
13
12
|
concurrency:
|
|
14
|
-
group: plan-release # only the latest one of these should ever be running
|
|
13
|
+
group: plan-release-beta # only the latest one of these should ever be running
|
|
15
14
|
cancel-in-progress: true
|
|
16
15
|
|
|
17
16
|
jobs:
|
|
@@ -25,7 +24,7 @@ jobs:
|
|
|
25
24
|
- uses: actions/checkout@v4
|
|
26
25
|
with:
|
|
27
26
|
fetch-depth: 2
|
|
28
|
-
ref: '
|
|
27
|
+
ref: 'beta'
|
|
29
28
|
# This will only cause the `is-this-a-release` job to have a "command" of `release`
|
|
30
29
|
# when the .release-plan.json file was changed on the last commit.
|
|
31
30
|
- id: check-release
|
|
@@ -50,7 +49,7 @@ jobs:
|
|
|
50
49
|
# github-changelog can discover what's changed since the last release
|
|
51
50
|
with:
|
|
52
51
|
fetch-depth: 0
|
|
53
|
-
ref: '
|
|
52
|
+
ref: 'beta'
|
|
54
53
|
- uses: pnpm/action-setup@v4
|
|
55
54
|
- uses: actions/setup-node@v4
|
|
56
55
|
with:
|
|
@@ -85,7 +84,7 @@ jobs:
|
|
|
85
84
|
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
|
|
86
85
|
labels: "internal"
|
|
87
86
|
branch: release-preview
|
|
88
|
-
title: Prepare Release ${{ steps.explanation.outputs.new_version }}
|
|
87
|
+
title: Prepare Beta Release ${{ steps.explanation.outputs.new_version }}
|
|
89
88
|
body: |
|
|
90
89
|
This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
|
|
91
90
|
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# For every push to the primary branch with .release-plan.json modified,
|
|
2
2
|
# runs release-plan.
|
|
3
3
|
|
|
4
|
-
name: Publish
|
|
4
|
+
name: Publish Beta
|
|
5
5
|
|
|
6
6
|
on:
|
|
7
7
|
workflow_dispatch:
|
|
8
8
|
push:
|
|
9
9
|
branches:
|
|
10
|
-
-
|
|
11
|
-
- master
|
|
10
|
+
- beta
|
|
12
11
|
paths:
|
|
13
12
|
- '.release-plan.json'
|
|
14
13
|
|
|
@@ -37,7 +36,7 @@ jobs:
|
|
|
37
36
|
cache: pnpm
|
|
38
37
|
- run: pnpm install --frozen-lockfile
|
|
39
38
|
- name: Publish to NPM
|
|
40
|
-
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
|
|
39
|
+
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=beta --github-prerelease
|
|
41
40
|
env:
|
|
42
41
|
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
|
43
42
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.release-plan.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "minor",
|
|
5
|
-
"oldVersion": "6.
|
|
6
|
-
"newVersion": "6.
|
|
7
|
-
"tagName": "
|
|
5
|
+
"oldVersion": "6.8.0-beta.0",
|
|
6
|
+
"newVersion": "6.8.0-beta.1",
|
|
7
|
+
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
10
|
"impact": "minor",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"pkgJSONPath": "./package.json"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"description": "## Release (2025-09-
|
|
21
|
+
"description": "## Release (2025-09-05)\n\n* @ember/app-blueprint 6.8.0-beta.1 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#73](https://github.com/ember-cli/ember-app-blueprint/pull/73) Prepare 6.8 beta ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#75](https://github.com/ember-cli/ember-app-blueprint/pull/75) update the beta version ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
|
|
22
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-09-05)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.8.0-beta.1 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#73](https://github.com/ember-cli/ember-app-blueprint/pull/73) Prepare 6.8 beta ([@mansona](https://github.com/mansona))
|
|
10
|
+
|
|
11
|
+
#### :house: Internal
|
|
12
|
+
* `@ember/app-blueprint`
|
|
13
|
+
* [#75](https://github.com/ember-cli/ember-app-blueprint/pull/75) update the beta version ([@mansona](https://github.com/mansona))
|
|
14
|
+
|
|
15
|
+
#### Committers: 1
|
|
16
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
17
|
+
|
|
18
|
+
## Release (2025-09-04)
|
|
19
|
+
|
|
20
|
+
* @ember/app-blueprint 6.7.1 (patch)
|
|
21
|
+
|
|
22
|
+
#### :house: Internal
|
|
23
|
+
* `@ember/app-blueprint`
|
|
24
|
+
* [#71](https://github.com/ember-cli/ember-app-blueprint/pull/71) fix publish-branch for pnpm publish ([@mansona](https://github.com/mansona))
|
|
25
|
+
|
|
26
|
+
#### Committers: 1
|
|
27
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
28
|
+
|
|
29
|
+
## Release (2025-09-04)
|
|
30
|
+
|
|
31
|
+
* @ember/app-blueprint 6.7.0 (minor)
|
|
32
|
+
|
|
33
|
+
#### :rocket: Enhancement
|
|
34
|
+
* `@ember/app-blueprint`
|
|
35
|
+
* [#65](https://github.com/ember-cli/ember-app-blueprint/pull/65) Update all dependencies for 6.7 release ([@mansona](https://github.com/mansona))
|
|
36
|
+
|
|
37
|
+
#### :bug: Bug Fix
|
|
38
|
+
* `@ember/app-blueprint`
|
|
39
|
+
* [#67](https://github.com/ember-cli/ember-app-blueprint/pull/67) make sure that release-plan publishes from release branch ([@mansona](https://github.com/mansona))
|
|
40
|
+
|
|
41
|
+
#### :memo: Documentation
|
|
42
|
+
* `@ember/app-blueprint`
|
|
43
|
+
* [#70](https://github.com/ember-cli/ember-app-blueprint/pull/70) add a basic readme ([@mansona](https://github.com/mansona))
|
|
44
|
+
|
|
45
|
+
#### Committers: 1
|
|
46
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
47
|
+
|
|
3
48
|
## Release (2025-09-04)
|
|
4
49
|
|
|
5
50
|
* @ember/app-blueprint 6.6.0 (minor)
|
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @ember/app-blueprint
|
|
2
|
+
|
|
3
|
+
This is the blueprint that is used to generate a **new** Ember app using [Vite](https://vite.dev/) as the primary build system.
|
|
4
|
+
|
|
5
|
+
If you have an existing app that you would like to upgrade to use Vite consider using the [ember-vite-codemod](https://github.com/mainmatter/ember-vite-codemod)
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
pnpm dlx ember-cli@latest app my-app-name -b @ember/app-blueprint --pnpm
|
|
10
|
+
|
package/files/package.json
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"concurrently": "^9.2.1",
|
|
72
72
|
"decorator-transforms": "^2.3.0",
|
|
73
73
|
"ember-auto-import": "^2.10.0",
|
|
74
|
-
"ember-cli": "
|
|
74
|
+
"ember-cli": "^6.6.0",
|
|
75
75
|
"ember-cli-babel": "^8.2.0",
|
|
76
76
|
"ember-cli-deprecation-workflow": "^3.4.0<% if (emberData) { %>",
|
|
77
77
|
"ember-data": "~5.6.0<% } %>",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"ember-page-title": "^9.0.3",
|
|
81
81
|
"ember-qunit": "^9.0.3",
|
|
82
82
|
"ember-resolver": "^13.1.1",
|
|
83
|
-
"ember-source": "~6.
|
|
83
|
+
"ember-source": "~6.8.0-beta.1",
|
|
84
84
|
"ember-template-lint": "^7.9.3<% if (welcome) { %>",
|
|
85
85
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
86
86
|
"eslint": "^9.34.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"testem": "^3.16.0",
|
|
99
99
|
"tracked-built-ins": "^4.0.0<% if (typescript) { %>",
|
|
100
100
|
"typescript": "^5.9.2",
|
|
101
|
-
"typescript-eslint": "^8.
|
|
101
|
+
"typescript-eslint": "^8.42.0<% } %>",
|
|
102
102
|
"vite": "^6.3.5"
|
|
103
103
|
},
|
|
104
104
|
"engines": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.8.0-beta.1",
|
|
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": "beta",
|
|
21
|
+
"publishTag": "beta"
|
|
22
|
+
},
|
|
15
23
|
"dependencies": {
|
|
16
24
|
"chalk": "^4.1.2",
|
|
17
25
|
"ember-cli-string-utils": "^1.1.0",
|
package/tests/lint.test.mjs
CHANGED
|
@@ -3,13 +3,17 @@ import { beforeAll, describe, it, expect } from 'vitest';
|
|
|
3
3
|
import { generateApp } from './helpers.mjs';
|
|
4
4
|
|
|
5
5
|
describe('linting & formatting', function () {
|
|
6
|
-
|
|
6
|
+
describe('JavaScript', function () {
|
|
7
|
+
let app;
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
beforeAll(async function () {
|
|
10
|
+
/**
|
|
11
|
+
* We are passing --pnpm here because it's just faster to run in CI and realistically
|
|
12
|
+
* we don't need to worry about the differences between pnpm and npm at this level
|
|
13
|
+
*/
|
|
14
|
+
app = await generateApp({ flags: ['--pnpm'], skipNpm: false });
|
|
15
|
+
});
|
|
11
16
|
|
|
12
|
-
describe('JavaScript', function () {
|
|
13
17
|
it('yields output without errors', async function () {
|
|
14
18
|
let { exitCode } = await app.execa('pnpm', ['lint']);
|
|
15
19
|
|
|
@@ -21,7 +25,14 @@ describe('linting & formatting', function () {
|
|
|
21
25
|
let app;
|
|
22
26
|
|
|
23
27
|
beforeAll(async function () {
|
|
24
|
-
|
|
28
|
+
/**
|
|
29
|
+
* We are passing --pnpm here because it's just faster to run in CI and realistically
|
|
30
|
+
* we don't need to worry about the differences between pnpm and npm at this level
|
|
31
|
+
*/
|
|
32
|
+
app = await generateApp({
|
|
33
|
+
flags: ['--typescript', '--pnpm'],
|
|
34
|
+
skipNpm: false,
|
|
35
|
+
});
|
|
25
36
|
});
|
|
26
37
|
|
|
27
38
|
it('yields output without errors', async function () {
|