Skip to content

Commit be89343

Browse files
committed
add ember.js bug fixes and deps removals
1 parent 4864978 commit be89343

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

content/ember-6-0-released.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ For help or advice along the way, visit [Ember's forums or chat groups](https://
9696

9797
## The journey towards Ember Polaris
9898

99-
Polaris is the name of an upcoming edition of Ember, first announced at EmberConf 2021. Over the course of 5.x, new features will be added to Ember that will eventually make up the new edition.
99+
Polaris is the name of an upcoming edition of Ember, first announced at EmberConf 2021. Over the course of 6.x, new features will be added to Ember that will eventually make up the new edition.
100100

101101
Since our major versions tend to be uneventful, Editions are the moment where the Ember community comes together to learn and build in new ways.
102102
An edition is a set of features, corresponding documentation, and tools that create a cohesive programming model.
@@ -117,7 +117,7 @@ Ember.js 6.0 introduces no new public API. Instead, it is comprised of bug fixes
117117

118118
#### Bug Fixes
119119

120-
[list bug fixes]
120+
- [#20731](https://github.com/emberjs/ember.js/pull/20731) - Bump barrel file deprecations until 7.0.0
121121

122122
#### Features
123123

@@ -130,6 +130,11 @@ introduced before 5.10 and slated for removal in 6.0.
130130

131131
Ember 6.0 removes the following features deprecated during 5.x:
132132

133+
- [Removing](https://deprecations.emberjs.com/id/deprecate-implicit-route-model) the implicit route model hook behavior where if no `Route#model` hook was specified and a `_id` parameter was present, Ember would attempt to figure out how to load that model for you.
134+
- [Removing](https://deprecations.emberjs.com/id/template-action) the `(action)` template helper and `{{action}}` modifier now that we have native classes and the `{{on}}` modifier.
135+
- [Removing](https://deprecations.emberjs.com/id/component-template-resolving) the runtime resolution of component templates, so if there is an import involved, there is no runtime resolution.
136+
- [Removing](https://deprecations.emberjs.com/id/deprecate-array-prototype-extensions) the extension of the prototypes of native Javascript arrays to implement `Ember.Enumerable`, `Ember.MutableEnumerable`, `Ember.MutableArray`, `Ember.Array`. For convenient functions like `filterBy` or `compact`, you can directly convert to use native array methods.
137+
133138
[list deprecation removals]
134139

135140
For more details on how to resolve these deprecations in your app, see [the deprecations guide](https://deprecations.emberjs.com/v5.x).

0 commit comments

Comments
 (0)