ember-cli 4.1.0 → 4.2.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.
@@ -14,6 +14,10 @@ on:
14
14
  schedule:
15
15
  - cron: '0 3 * * *' # daily, at 3am
16
16
 
17
+ concurrency:
18
+ group: ci-${{ github.head_ref || github.ref }}
19
+ cancel-in-progress: true
20
+
17
21
  jobs:
18
22
  linting:
19
23
  name: Linting
@@ -21,7 +25,7 @@ jobs:
21
25
 
22
26
  steps:
23
27
  - uses: actions/checkout@v2
24
- - uses: actions/setup-node@v2.5.0
28
+ - uses: actions/setup-node@v2.5.1
25
29
  with:
26
30
  node-version: 12.x
27
31
  cache: 'yarn'
@@ -39,7 +43,7 @@ jobs:
39
43
 
40
44
  steps:
41
45
  - uses: actions/checkout@v2
42
- - uses: actions/setup-node@v2.5.0
46
+ - uses: actions/setup-node@v2.5.1
43
47
  with:
44
48
  node-version: 12.x
45
49
  cache: 'yarn'
@@ -61,7 +65,7 @@ jobs:
61
65
 
62
66
  steps:
63
67
  - uses: actions/checkout@v2
64
- - uses: actions/setup-node@v2.5.0
68
+ - uses: actions/setup-node@v2.5.1
65
69
  with:
66
70
  node-version: ${{ matrix.node-version }}
67
71
  cache: 'yarn'
@@ -86,7 +90,7 @@ jobs:
86
90
 
87
91
  steps:
88
92
  - uses: actions/checkout@v2
89
- - uses: actions/setup-node@v2.5.0
93
+ - uses: actions/setup-node@v2.5.1
90
94
  with:
91
95
  node-version: 12.x
92
96
  cache: 'yarn'
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # ember-cli Changelog
2
2
 
3
+ ## v4.2.0-beta.1
4
+
5
+ #### Blueprint Changes
6
+
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.1.0...v4.2.0-beta.1)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.1.0...v4.2.0-beta.1)
9
+
10
+ #### Changelog
11
+
12
+ - [#9681](https://github.com/ember-cli/ember-cli/pull/9681) Update URL to Ember CLI website everywhere [@bertdeblock](https://github.com/bertdeblock)
13
+ - [#9726](https://github.com/ember-cli/ember-cli/pull/9726) Cancel stale workflows when starting a new one. [@rwjblue](https://github.com/rwjblue)
14
+ - [#9731](https://github.com/ember-cli/ember-cli/pull/9731) Add an `assert` and a `deprecate` utility [@bertdeblock](https://github.com/bertdeblock)
15
+ - [#9753](https://github.com/ember-cli/ember-cli/pull/9753) Upgrade to `ember-template-lint` v4 in blueprint [@bmish](https://github.com/bmish)
16
+
17
+ Thank you to all who took the time to contribute!
18
+
3
19
  ## v4.1.0
4
20
 
5
21
  #### Blueprint Changes
package/README.md CHANGED
@@ -65,7 +65,7 @@ Community
65
65
 
66
66
  - Discord: [Get your invite](https://discord.gg/emberjs)
67
67
  - Issues: [ember-cli/issues](https://github.com/ember-cli/ember-cli/issues)
68
- - Documentation: [ember-cli.com](https://cli.emberjs.com/release/)
68
+ - Documentation: [cli.emberjs.com](https://cli.emberjs.com/release/)
69
69
 
70
70
 
71
71
 
package/bin/ember CHANGED
File without changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@embroider/test-setup": "^0.49.0",
3
+ "@embroider/test-setup": "^0.50.0",
4
4
  "ember-disable-prototype-extensions": "^1.1.3",
5
5
  "ember-try": "^2.0.0",
6
6
  "ember-source-channel-url": "^3.0.0"
@@ -22,4 +22,4 @@
22
22
  * `ember serve`
23
23
  * Visit the dummy application at [http://localhost:4200](http://localhost:4200).
24
24
 
25
- For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
25
+ For more information on using ember-cli, visit [https://cli.emberjs.com/release/](https://cli.emberjs.com/release/).
@@ -10,7 +10,7 @@ You will need the following things properly installed on your computer.
10
10
  * [Git](https://git-scm.com/)
11
11
  * [Node.js](https://nodejs.org/)<% if (yarn) { %>
12
12
  * [Yarn](https://yarnpkg.com/)<% } else { %> (with npm)<% } %>
13
- * [Ember CLI](https://ember-cli.com/)
13
+ * [Ember CLI](https://cli.emberjs.com/release/)
14
14
  * [Google Chrome](https://google.com/chrome/)
15
15
 
16
16
  ## Installation
@@ -51,7 +51,7 @@ Specify what it takes to deploy your app.
51
51
  ## Further Reading / Useful Links
52
52
 
53
53
  * [ember.js](https://emberjs.com/)
54
- * [ember-cli](https://ember-cli.com/)
54
+ * [ember-cli](https://cli.emberjs.com/release/)
55
55
  * Development Browser Extensions
56
56
  * [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
57
57
  * [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)
@@ -25,9 +25,9 @@
25
25
  "devDependencies": {
26
26
  "@ember/optional-features": "^2.0.0",
27
27
  "@ember/test-helpers": "^2.6.0<% if (embroider) { %>",
28
- "@embroider/compat": "^0.49.0",
29
- "@embroider/core": "^0.49.0",
30
- "@embroider/webpack": "^0.49.0<% } %>",
28
+ "@embroider/compat": "^0.50.0",
29
+ "@embroider/core": "^0.50.0",
30
+ "@embroider/webpack": "^0.50.0<% } %>",
31
31
  "@glimmer/component": "^1.0.4",
32
32
  "@glimmer/tracking": "^1.0.4",
33
33
  "babel-eslint": "^10.1.0",
@@ -41,16 +41,16 @@
41
41
  "ember-cli-inject-live-reload": "^2.1.0",
42
42
  "ember-cli-sri": "^2.1.1",
43
43
  "ember-cli-terser": "^4.0.2",
44
- "ember-data": "~4.1.0",
44
+ "ember-data": "~4.2.0-beta.0",
45
45
  "ember-export-application-global": "^2.0.1",
46
46
  "ember-fetch": "^8.1.1",
47
47
  "ember-load-initializers": "^2.1.2",
48
48
  "ember-page-title": "^7.0.0",
49
49
  "ember-qunit": "^5.1.5",
50
50
  "ember-resolver": "^8.0.3",
51
- "ember-source": "~4.1.0",
52
- "ember-template-lint": "^3.15.0<% if (welcome) { %>",
53
- "ember-welcome-page": "^6.0.0<% } %>",
51
+ "ember-source": "~4.2.0-beta.1",
52
+ "ember-template-lint": "^4.0.0<% if (welcome) { %>",
53
+ "ember-welcome-page": "^6.1.0<% } %>",
54
54
  "eslint": "^7.32.0",
55
55
  "eslint-config-prettier": "^8.3.0",
56
56
  "eslint-plugin-ember": "^10.5.8",
File without changes
File without changes