@ember/app-blueprint 6.7.1 → 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.
@@ -1,16 +1,16 @@
1
- name: Plan Stable Release
1
+ name: Plan Beta Release
2
2
  on:
3
3
  workflow_dispatch:
4
4
  push:
5
5
  branches:
6
- - release
6
+ - beta
7
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/
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
11
 
12
12
  concurrency:
13
- 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
14
14
  cancel-in-progress: true
15
15
 
16
16
  jobs:
@@ -24,7 +24,7 @@ jobs:
24
24
  - uses: actions/checkout@v4
25
25
  with:
26
26
  fetch-depth: 2
27
- ref: 'release'
27
+ ref: 'beta'
28
28
  # This will only cause the `is-this-a-release` job to have a "command" of `release`
29
29
  # when the .release-plan.json file was changed on the last commit.
30
30
  - id: check-release
@@ -49,7 +49,7 @@ jobs:
49
49
  # github-changelog can discover what's changed since the last release
50
50
  with:
51
51
  fetch-depth: 0
52
- ref: 'release'
52
+ ref: 'beta'
53
53
  - uses: pnpm/action-setup@v4
54
54
  - uses: actions/setup-node@v4
55
55
  with:
@@ -84,7 +84,7 @@ jobs:
84
84
  commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
85
85
  labels: "internal"
86
86
  branch: release-preview
87
- title: Prepare Stable Release ${{ steps.explanation.outputs.new_version }}
87
+ title: Prepare Beta Release ${{ steps.explanation.outputs.new_version }}
88
88
  body: |
89
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 👍
90
90
 
@@ -1,13 +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 Stable
4
+ name: Publish Beta
5
5
 
6
6
  on:
7
7
  workflow_dispatch:
8
8
  push:
9
9
  branches:
10
- - release
10
+ - beta
11
11
  paths:
12
12
  - '.release-plan.json'
13
13
 
@@ -36,7 +36,7 @@ jobs:
36
36
  cache: pnpm
37
37
  - run: pnpm install --frozen-lockfile
38
38
  - name: Publish to NPM
39
- run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=release
39
+ run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=beta --github-prerelease
40
40
  env:
41
41
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
42
42
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
- "impact": "patch",
5
- "oldVersion": "6.7.0",
6
- "newVersion": "6.7.1",
7
- "tagName": "latest",
4
+ "impact": "minor",
5
+ "oldVersion": "6.8.0-beta.0",
6
+ "newVersion": "6.8.0-beta.1",
7
+ "tagName": "beta",
8
8
  "constraints": [
9
+ {
10
+ "impact": "minor",
11
+ "reason": "Appears in changelog section :rocket: Enhancement"
12
+ },
9
13
  {
10
14
  "impact": "patch",
11
15
  "reason": "Appears in changelog section :house: Internal"
@@ -14,5 +18,5 @@
14
18
  "pkgJSONPath": "./package.json"
15
19
  }
16
20
  },
17
- "description": "## Release (2025-09-04)\n\n* @ember/app-blueprint 6.7.1 (patch)\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#71](https://github.com/ember-cli/ember-app-blueprint/pull/71) fix publish-branch for pnpm publish ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
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"
18
22
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
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
+
3
18
  ## Release (2025-09-04)
4
19
 
5
20
  * @ember/app-blueprint 6.7.1 (patch)
@@ -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.7.0",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.7.1",
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",
@@ -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
- let app;
6
+ describe('JavaScript', function () {
7
+ let app;
7
8
 
8
- beforeAll(async function () {
9
- app = await generateApp({ flags: ['--typescript'], skipNpm: false });
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
- app = await generateApp({ flags: ['--typescript'], skipNpm: false });
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 () {