ember-cli 5.10.0-beta.0 → 5.11.0-beta.0

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,15 +1,32 @@
1
1
  # ember-cli Changelog
2
2
 
3
- ## v5.10.0-beta.0
3
+ ## v5.11.0-beta.0
4
4
 
5
5
  #### Blueprint Changes
6
6
 
7
- - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.9.0...v5.10.0-beta.0)
8
- - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.9.0...v5.10.0-beta.0)
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.10.0...v5.11.0-beta.0)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.10.0...v5.11.0-beta.0)
9
9
 
10
10
  #### Changelog
11
11
 
12
- no changes
12
+ - [#10474](https://github.com/ember-cli/ember-cli/pull/10474) Improve dx when WelcomePage is present [@ef4](https://github.com/ef4)
13
+ - [#10475](https://github.com/ember-cli/ember-cli/pull/10475) Document WRITE_FIXTURES [@kategengler](https://github.com/kategengler)
14
+ - [#10476](https://github.com/ember-cli/ember-cli/pull/10476) Bump content-tag to v2 [@SergeAstapov](https://github.com/SergeAstapov)
15
+
16
+ Thank you to all who took the time to contribute!
17
+
18
+ ## v5.10.0
19
+
20
+ #### Blueprint Changes
21
+
22
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.9.0...v5.10.0)
23
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.9.0...v5.10.0)
24
+
25
+ #### Changelog
26
+
27
+ - [#10464](https://github.com/ember-cli/ember-cli/pull/10464) Specified the locale in setupIntl() [@ijlee2](https://github.com/ijlee2)
28
+
29
+ Thank you to all who took the time to contribute!
13
30
 
14
31
  ## v5.9.0
15
32
 
package/CONTRIBUTING.md CHANGED
@@ -48,6 +48,13 @@ ember-cli is using [Mocha](https://mochajs.org/) for its internal tests. If
48
48
  you want to run a specific subset of tests have a look at their
49
49
  [documentation](https://mochajs.org/#exclusive-tests).
50
50
 
51
+ ## Update fixtures
52
+
53
+ ### `ember new`
54
+
55
+ To update fixtures with `ember new`, run the tests with `WRITE_FIXTURES=true`.
56
+
57
+ To update `ember help` fixtures, run the tests with `WRITE_HELP_FIXTURES=true`.
51
58
 
52
59
  ## Build the documentation
53
60
 
@@ -1,8 +1,10 @@
1
1
  {{page-title "<%= namespace %>"}}
2
+ <% if (welcome) { %>
3
+ {{outlet}}
2
4
 
3
- <% if (welcome) { %>{{! The following component displays Ember's default welcome message. }}
5
+ {{! The following component displays Ember's default welcome message. }}
4
6
  <WelcomePage />
5
- {{! Feel free to remove this! }}
6
- <% } else { %><h2 id="title">Welcome to Ember</h2>
7
- <% } %>
8
- {{outlet}}
7
+ {{! Feel free to remove this! }}<% } else { %>
8
+ <h2 id="title">Welcome to Ember</h2>
9
+
10
+ {{outlet}}<% } %>
@@ -32,8 +32,8 @@
32
32
  "<% } %>@ember/optional-features": "^2.1.0",
33
33
  "@ember/string": "^3.1.1",
34
34
  "@ember/test-helpers": "^3.3.0<% if (embroider) { %>",
35
- "@embroider/compat": "^3.5.1",
36
- "@embroider/core": "^3.4.10",
35
+ "@embroider/compat": "^3.5.6",
36
+ "@embroider/core": "^3.4.14",
37
37
  "@embroider/webpack": "^3.2.3<% } %>",
38
38
  "@glimmer/component": "^1.1.2",
39
39
  "@glimmer/tracking": "^1.1.2<% if (typescript) { %>",
@@ -54,7 +54,7 @@
54
54
  "@types/ember__destroyable": "^4.0.5",
55
55
  "@types/ember__engine": "^4.0.11",
56
56
  "@types/ember__error": "^4.0.6",
57
- "@types/ember__helper": "^4.0.7",
57
+ "@types/ember__helper": "^4.0.8",
58
58
  "@types/ember__modifier": "^4.0.9",
59
59
  "@types/ember__object": "^4.0.12",
60
60
  "@types/ember__owner": "^4.0.9",
@@ -72,7 +72,7 @@
72
72
  "@typescript-eslint/parser": "^6.21.0<% } %>",
73
73
  "broccoli-asset-rev": "^3.0.0",
74
74
  "concurrently": "^8.2.2",
75
- "ember-auto-import": "^2.7.3",
75
+ "ember-auto-import": "^2.7.4",
76
76
  "ember-cli": "~<%= emberCLIVersion %>",
77
77
  "ember-cli-app-version": "^6.0.1",
78
78
  "ember-cli-babel": "^8.2.0",
@@ -82,14 +82,14 @@
82
82
  "ember-cli-inject-live-reload": "^2.1.0<% if (!embroider) { %>",
83
83
  "ember-cli-sri": "^2.1.1",
84
84
  "ember-cli-terser": "^4.0.2<% } %>",
85
- "ember-data": "~5.4.0-beta.4",
85
+ "ember-data": "~5.4.0-beta.11",
86
86
  "ember-fetch": "^8.1.2",
87
87
  "ember-load-initializers": "^2.1.2",
88
- "ember-modifier": "^4.1.0",
88
+ "ember-modifier": "^4.2.0",
89
89
  "ember-page-title": "^8.2.3",
90
- "ember-qunit": "^8.0.2",
90
+ "ember-qunit": "^8.1.0",
91
91
  "ember-resolver": "^11.0.1",
92
- "ember-source": "~5.10.0-beta.1",
92
+ "ember-source": "~5.11.0-beta.1",
93
93
  "ember-template-lint": "^5.13.0<% if (welcome) { %>",
94
94
  "ember-welcome-page": "^7.0.2<% } %>",
95
95
  "eslint": "^8.57.0",
@@ -99,15 +99,15 @@
99
99
  "eslint-plugin-prettier": "^5.1.3",
100
100
  "eslint-plugin-qunit": "^8.1.1",
101
101
  "loader.js": "^4.7.0",
102
- "prettier": "^3.3.1",
102
+ "prettier": "^3.3.2",
103
103
  "qunit": "^2.21.0",
104
104
  "qunit-dom": "^2.0.0",
105
105
  "stylelint": "^15.11.0",
106
106
  "stylelint-config-standard": "^34.0.0",
107
107
  "stylelint-prettier": "^4.1.0",
108
108
  "tracked-built-ins": "^3.3.0<% if (typescript) { %>",
109
- "typescript": "^5.4.5<% } %>",
110
- "webpack": "^5.91.0"
109
+ "typescript": "^5.5.3<% } %>",
110
+ "webpack": "^5.92.1"
111
111
  },
112
112
  "engines": {
113
113
  "node": ">= 18"
@@ -24,7 +24,7 @@ function setupApplicationTest(hooks: NestedHooks, options?: SetupTestOptions) {
24
24
  // This is also a good place to call test setup functions coming
25
25
  // from other addons:
26
26
  //
27
- // setupIntl(hooks); // ember-intl
27
+ // setupIntl(hooks, 'en-us'); // ember-intl
28
28
  // setupMirage(hooks); // ember-cli-mirage
29
29
  }
30
30
 
@@ -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": "5.10.0-beta.0-beta-0afd82225c"
6
+ "version": "5.11.0-beta.0-beta-a560c1f635"
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": "5.10.0-beta.0",
3
+ "version": "5.11.0-beta.0",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -59,7 +59,7 @@
59
59
  "compression": "^1.7.4",
60
60
  "configstore": "^5.0.1",
61
61
  "console-ui": "^3.1.2",
62
- "content-tag": "^1.2.2",
62
+ "content-tag": "^2.0.1",
63
63
  "core-object": "^3.1.5",
64
64
  "dag-map": "^2.0.2",
65
65
  "diff": "^5.1.0",