Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.7 #125

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/utils/ember-versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@ export const VERSIONS = Object.freeze([
'5.4',
'5.5',
'5.6',
'5.7',
]);
7 changes: 7 additions & 0 deletions source/ember-cli-changes/5.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: '5.7'
changes:
- feature: true
title: 'Add an optional feature `no-implicit-route-model` to opt-in to the removal of the implicit loading of a model'
link: 'https://blog.emberjs.com/ember-released-5-7'
---
10 changes: 10 additions & 0 deletions source/ember-js-changes/5.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
version: '5.7'
changes:
- feature: true
title: 'Add an optional feature `no-implicit-route-model` to opt-in to the removal of the implicit loading of a model'
link: 'https://blog.emberjs.com/ember-released-5-7'
- feature: true
title: 'Add explicit support for TypeScript versions 5.1, 5.2, and 5.3'
link: 'https://blog.emberjs.com/ember-released-5-7'
---
8 changes: 4 additions & 4 deletions tests/acceptance/changes-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ module('Acceptance | changes', function (hooks) {

assert.strictEqual(
newFeaturesInEmberJS.length,
40,
'We see 40 new features that occurred in Ember.js since version 3.15'
42,
'We see 42 new features that occurred in Ember.js since version 3.15'
);

// Check deprecations in Ember.js
Expand Down Expand Up @@ -60,8 +60,8 @@ module('Acceptance | changes', function (hooks) {

assert.strictEqual(
newFeaturesInEmberCLI.length,
69,
'We see 69 new features that occurred in Ember CLI since version 3.15'
70,
'We see 70 new features that occurred in Ember CLI since version 3.15'
);

// Check deprecations in Ember CLI
Expand Down
Loading