ember-cli 6.12.0-alpha.4 → 6.12.0-alpha.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # ember-cli Changelog
2
2
 
3
+ ## Release (2026-02-09)
4
+
5
+ * ember-cli 6.12.0-alpha.5 (patch)
6
+
7
+ #### :bug: Bug Fix
8
+ * `ember-cli`
9
+ * [#10949](https://github.com/ember-cli/ember-cli/pull/10949) [backport release] remove unused isbinaryfile from ember-cli package ([@mansona](https://github.com/mansona))
10
+ * [#10940](https://github.com/ember-cli/ember-cli/pull/10940) [bugfix release] remove fixturify-project from dependencies ([@mansona](https://github.com/mansona))
11
+
12
+ #### :house: Internal
13
+ * `ember-cli`
14
+ * [#10955](https://github.com/ember-cli/ember-cli/pull/10955) Merge beta into master ([@mansona](https://github.com/mansona))
15
+ * [#10952](https://github.com/ember-cli/ember-cli/pull/10952) add correct --publish-branch to pnpm publish ([@mansona](https://github.com/mansona))
16
+ * [#10951](https://github.com/ember-cli/ember-cli/pull/10951) Fix PR name for stable release-plan pull request ([@mansona](https://github.com/mansona))
17
+ * [#10950](https://github.com/ember-cli/ember-cli/pull/10950) [backport release] update release-plan for OIDC ([@mansona](https://github.com/mansona))
18
+
19
+ #### Committers: 1
20
+ - Chris Manson ([@mansona](https://github.com/mansona))
21
+
3
22
  ## Release (2026-02-07)
4
23
 
5
24
  * ember-cli 6.12.0-alpha.4 (patch)
@@ -3,7 +3,7 @@
3
3
  "logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
4
4
  "name": "ember-cli",
5
5
  "description": "Command line tool for developing ambitious ember.js apps",
6
- "version": "6.12.0-alpha.4-master-19200d7e39"
6
+ "version": "6.12.0-alpha.5-master-14ad69880a"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "6.12.0-alpha.4",
3
+ "version": "6.12.0-alpha.5",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -73,7 +73,6 @@
73
73
  "filesize": "^11.0.13",
74
74
  "find-up": "^8.0.0",
75
75
  "find-yarn-workspace-root": "^2.0.0",
76
- "fixturify-project": "^2.1.1",
77
76
  "fs-extra": "^11.3.3",
78
77
  "fs-tree-diff": "^2.0.1",
79
78
  "get-caller-file": "^2.0.5",
@@ -138,6 +137,7 @@
138
137
  "eslint-plugin-mocha": "^10.5.0",
139
138
  "eslint-plugin-n": "^17.23.1",
140
139
  "fixturify": "^3.0.0",
140
+ "fixturify-project": "^2.1.1",
141
141
  "jsdom": "^21.1.1",
142
142
  "latest-version": "^9.0.0",
143
143
  "mocha": "^11.7.5",
@@ -60,7 +60,7 @@
60
60
  "broccoli-asset-rev": "^3.0.0",
61
61
  "concurrently": "^9.2.1",
62
62
  "ember-auto-import": "^2.12.0",
63
- "ember-cli": "~6.12.0-alpha.4",
63
+ "ember-cli": "~6.12.0-alpha.5",
64
64
  "ember-cli-app-version": "^7.0.0",
65
65
  "ember-cli-babel": "^8.3.1",
66
66
  "ember-cli-clean-css": "^3.0.0",
@@ -2,6 +2,8 @@
2
2
 
3
3
  const path = require('path');
4
4
  const merge = require('lodash/merge');
5
+ // this is a test-only dependency
6
+ // eslint-disable-next-line n/no-unpublished-require
5
7
  const FixturifyProject = require('fixturify-project');
6
8
  const Project = require('../../lib/models/project');
7
9
  const MockCLI = require('./mock-cli');