@ember/app-blueprint 6.11.0 → 6.11.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,22 +1,18 @@
1
1
  {
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
- "impact": "minor",
5
- "oldVersion": "6.10.4",
6
- "newVersion": "6.11.0",
4
+ "impact": "patch",
5
+ "oldVersion": "6.11.0",
6
+ "newVersion": "6.11.1",
7
7
  "tagName": "latest",
8
8
  "constraints": [
9
- {
10
- "impact": "minor",
11
- "reason": "Appears in changelog section :rocket: Enhancement"
12
- },
13
9
  {
14
10
  "impact": "patch",
15
- "reason": "Appears in changelog section :house: Internal"
11
+ "reason": "Appears in changelog section :bug: Bug Fix"
16
12
  }
17
13
  ],
18
14
  "pkgJSONPath": "./package.json"
19
15
  }
20
16
  },
21
- "description": "## Release (2026-02-17)\n\n* @ember/app-blueprint 6.11.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#222](https://github.com/ember-cli/ember-app-blueprint/pull/222) Promote Beta and update all dependencies for 6.11 release ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
17
+ "description": "## Release (2026-03-01)\n\n* @ember/app-blueprint 6.11.1 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\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#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
22
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2026-03-01)
4
+
5
+ * @ember/app-blueprint 6.11.1 (patch)
6
+
7
+ #### :bug: Bug Fix
8
+ * `@ember/app-blueprint`
9
+ * [#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))
10
+
11
+ #### Committers: 1
12
+ - Chris Manson ([@mansona](https://github.com/mansona))
13
+
3
14
  ## Release (2026-02-17)
4
15
 
5
16
  * @ember/app-blueprint 6.11.0 (minor)
@@ -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.11.0",
3
+ "version": "6.11.1",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"