@ember/app-blueprint 6.10.4 → 6.10.5

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,9 +1,9 @@
1
- name: Plan Stable Release
1
+ name: Plan v6.10.x Release
2
2
  on:
3
3
  workflow_dispatch:
4
4
  push:
5
5
  branches:
6
- - release
6
+ - v-6-10
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
@@ -22,7 +22,7 @@ jobs:
22
22
  steps:
23
23
  - uses: release-plan/actions/should-prepare-release@v1
24
24
  with:
25
- ref: 'release'
25
+ ref: 'v-6-10'
26
26
  id: should-prepare
27
27
 
28
28
  create-prepare-release-pr:
@@ -39,7 +39,7 @@ jobs:
39
39
  - uses: release-plan/actions/prepare@v1
40
40
  name: Run release-plan prepare
41
41
  with:
42
- ref: 'release'
42
+ ref: 'v-6-10'
43
43
  env:
44
44
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
45
  id: explanation
@@ -50,8 +50,8 @@ jobs:
50
50
  commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
51
51
  labels: "internal"
52
52
  sign-commits: true
53
- branch: release-preview-stable
54
- title: Prepare Stable Release ${{ steps.explanation.outputs.new-version }}
53
+ branch: release-preview-v-6-10
54
+ title: Prepare Release ${{ steps.explanation.outputs.new-version }}
55
55
  body: |
56
56
  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 👍
57
57
 
@@ -11,6 +11,7 @@ on:
11
11
  - master
12
12
  - release
13
13
  - beta
14
+ - v-*
14
15
  paths:
15
16
  - '.release-plan.json'
16
17
 
@@ -41,12 +42,12 @@ jobs:
41
42
  # pass --github-prerelease when we are only branch other than release
42
43
  # pass --publish-branch=<branch-name> when we are on a branch other than master/main
43
44
  run: |
44
- if [ ${{ github.ref }} = "refs/heads/release" ]; then
45
- pnpm release-plan publish --publish-branch=release
46
- elif [ ${{ github.ref }} = "refs/heads/beta" ]; then
45
+ if [ ${{ github.ref }} = "refs/heads/beta" ]; then
47
46
  pnpm release-plan publish --github-prerelease --publish-branch=beta
48
- else
47
+ elif [ ${{ github.ref }} = "refs/heads/main" ]; then
49
48
  pnpm release-plan publish --github-prerelease
49
+ else
50
+ pnpm release-plan publish --publish-branch=${{github.ref_name}}
50
51
  fi
51
52
  env:
52
53
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
@@ -2,9 +2,9 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "patch",
5
- "oldVersion": "6.10.3",
6
- "newVersion": "6.10.4",
7
- "tagName": "latest",
5
+ "oldVersion": "6.10.4",
6
+ "newVersion": "6.10.5",
7
+ "tagName": "v-6-10",
8
8
  "constraints": [
9
9
  {
10
10
  "impact": "patch",
@@ -18,5 +18,5 @@
18
18
  "pkgJSONPath": "./package.json"
19
19
  }
20
20
  },
21
- "description": "## Release (2026-02-09)\n\n* @ember/app-blueprint 6.10.4 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#209](https://github.com/ember-cli/ember-app-blueprint/pull/209) Remove unnecessary empty lines when `--no-warp-drive` was passed ([@mkszepp](https://github.com/mkszepp))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#217](https://github.com/ember-cli/ember-app-blueprint/pull/217) update release-plan to support OIDC ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Markus Sanin ([@mkszepp](https://github.com/mkszepp))\n"
21
+ "description": "## Release (2026-03-03)\n\n* @ember/app-blueprint 6.10.5 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#229](https://github.com/ember-cli/ember-app-blueprint/pull/229) [v6.10 backport] fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#236](https://github.com/ember-cli/ember-app-blueprint/pull/236) [v6.10 backport] setup release for v6.10.x branch ([@mansona](https://github.com/mansona))\n * [#230](https://github.com/ember-cli/ember-app-blueprint/pull/230) setup release for v6.10.x branch ([@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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2026-03-03)
4
+
5
+ * @ember/app-blueprint 6.10.5 (patch)
6
+
7
+ #### :bug: Bug Fix
8
+ * `@ember/app-blueprint`
9
+ * [#229](https://github.com/ember-cli/ember-app-blueprint/pull/229) [v6.10 backport] fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
10
+
11
+ #### :house: Internal
12
+ * `@ember/app-blueprint`
13
+ * [#236](https://github.com/ember-cli/ember-app-blueprint/pull/236) [v6.10 backport] setup release for v6.10.x branch ([@mansona](https://github.com/mansona))
14
+ * [#230](https://github.com/ember-cli/ember-app-blueprint/pull/230) setup release for v6.10.x branch ([@mansona](https://github.com/mansona))
15
+
16
+ #### Committers: 1
17
+ - Chris Manson ([@mansona](https://github.com/mansona))
18
+
3
19
  ## Release (2026-02-09)
4
20
 
5
21
  * @ember/app-blueprint 6.10.4 (patch)
@@ -22,7 +22,9 @@ export default {
22
22
  'module:decorator-transforms',
23
23
  {
24
24
  runtime: {
25
- import: import.meta.resolve('decorator-transforms/runtime-esm'),
25
+ import: fileURLToPath(
26
+ import.meta.resolve('decorator-transforms/runtime-esm'),
27
+ ),
26
28
  },
27
29
  },
28
30
  ],
@@ -30,7 +30,9 @@ export default {
30
30
  'module:decorator-transforms',
31
31
  {
32
32
  runtime: {
33
- import: import.meta.resolve('decorator-transforms/runtime-esm'),
33
+ import: fileURLToPath(
34
+ import.meta.resolve('decorator-transforms/runtime-esm'),
35
+ ),
34
36
  },
35
37
  },
36
38
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.10.4",
3
+ "version": "6.10.5",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -9,6 +9,9 @@
9
9
  "type": "git",
10
10
  "url": "git@github.com:ember-cli/ember-app-blueprint.git"
11
11
  },
12
+ "release-plan": {
13
+ "publishTag": "v-6-10"
14
+ },
12
15
  "license": "MIT",
13
16
  "author": "",
14
17
  "main": "index.js",
@@ -1,60 +0,0 @@
1
- name: Plan Alpha Release
2
- on:
3
- workflow_dispatch:
4
- push:
5
- branches:
6
- - main
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
- types:
9
- - labeled
10
- - unlabeled
11
-
12
- concurrency:
13
- group: plan-release-alpha # only the latest one of these should ever be running
14
- cancel-in-progress: true
15
-
16
- jobs:
17
- should-run-release-plan-prepare:
18
- name: Should we run release-plan prepare?
19
- runs-on: ubuntu-latest
20
- outputs:
21
- should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
22
- steps:
23
- - uses: release-plan/actions/should-prepare-release@v1
24
- with:
25
- ref: 'main'
26
- id: should-prepare
27
-
28
- create-prepare-release-pr:
29
- name: Create Prepare Release PR
30
- runs-on: ubuntu-latest
31
- timeout-minutes: 5
32
- needs: should-run-release-plan-prepare
33
- permissions:
34
- contents: write
35
- issues: read
36
- pull-requests: write
37
- if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
38
- steps:
39
- - uses: release-plan/actions/prepare@v1
40
- name: Run release-plan prepare
41
- with:
42
- ref: 'main'
43
- env:
44
- GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
- id: explanation
46
-
47
- - uses: peter-evans/create-pull-request@v8
48
- name: Create Prepare Release PR
49
- with:
50
- commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
51
- labels: "internal"
52
- sign-commits: true
53
- branch: release-preview
54
- title: Prepare Alpha Release ${{ steps.explanation.outputs.new-version }}
55
- body: |
56
- 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 👍
57
-
58
- -----------------------------------------
59
-
60
- ${{ steps.explanation.outputs.text }}
@@ -1,60 +0,0 @@
1
- name: Plan Beta Release
2
- on:
3
- workflow_dispatch:
4
- push:
5
- branches:
6
- - beta
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
- types:
9
- - labeled
10
- - unlabeled
11
-
12
- concurrency:
13
- group: plan-release-beta # only the latest one of these should ever be running
14
- cancel-in-progress: true
15
-
16
- jobs:
17
- should-run-release-plan-prepare:
18
- name: Should we run release-plan prepare?
19
- runs-on: ubuntu-latest
20
- outputs:
21
- should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
22
- steps:
23
- - uses: release-plan/actions/should-prepare-release@v1
24
- with:
25
- ref: 'beta'
26
- id: should-prepare
27
-
28
- create-prepare-release-pr:
29
- name: Create Prepare Release PR
30
- runs-on: ubuntu-latest
31
- timeout-minutes: 5
32
- needs: should-run-release-plan-prepare
33
- permissions:
34
- contents: write
35
- issues: read
36
- pull-requests: write
37
- if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
38
- steps:
39
- - uses: release-plan/actions/prepare@v1
40
- name: Run release-plan prepare
41
- with:
42
- ref: 'beta'
43
- env:
44
- GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
- id: explanation
46
-
47
- - uses: peter-evans/create-pull-request@v8
48
- name: Create Prepare Release PR
49
- with:
50
- commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
51
- labels: "internal"
52
- sign-commits: true
53
- branch: release-preview-beta
54
- title: Prepare Beta Release ${{ steps.explanation.outputs.new-version }}
55
- body: |
56
- 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 👍
57
-
58
- -----------------------------------------
59
-
60
- ${{ steps.explanation.outputs.text }}