ember-source 4.10.0-alpha.6 → 4.10.0-beta.2
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 +265 -261
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +4 -4
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +50 -74
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/container/index.js +1 -3
- package/dist/packages/@ember/-internals/glimmer/index.js +19 -17
- package/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js +3 -7
- package/dist/packages/@ember/-internals/views/lib/views/states/destroying.js +2 -3
- package/dist/packages/@ember/-internals/views/lib/views/states/has_element.js +2 -3
- package/dist/packages/@ember/-internals/views/lib/views/states/in_dom.js +2 -3
- package/dist/packages/@ember/-internals/views/lib/views/states/pre_render.js +1 -3
- package/dist/packages/@ember/application/index.js +2 -3
- package/dist/packages/@ember/application/instance.js +2 -3
- package/dist/packages/@ember/canary-features/index.js +2 -2
- package/dist/packages/@ember/engine/index.js +2 -3
- package/dist/packages/@ember/routing/lib/utils.js +1 -4
- package/dist/packages/@ember/routing/route.js +4 -14
- package/dist/packages/ember/index.js +3 -4
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +1 -1
- package/package.json +3 -3
- package/types/preview/ember/index.d.ts +6 -6
- package/types/preview/index.d.ts +0 -1
- package/types/preview/@ember/application/deprecations.d.ts +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,27 +1,40 @@
|
|
|
1
1
|
# Ember Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## v4.10.0-beta.2
|
|
4
4
|
|
|
5
|
-
- [#
|
|
6
|
-
- [#
|
|
5
|
+
- [#20283](https://github.com/emberjs/ember.js/pull/20283) [BUGFIX] revert TS `compilerOptions.target` to ES2017
|
|
6
|
+
- [#20284](https://github.com/emberjs/ember.js/pull/20284) [BUGFIX] remove incorrect types for deprecation functions
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## v3.28.11 (November 30, 2022)
|
|
9
9
|
|
|
10
|
-
- [#
|
|
10
|
+
- [#20286](https://github.com/emberjs/ember.js/pull/20286) [BUGFIX LTS] Allow class-based helpers in strict-mode
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## v4.10.0-beta.1 (November 28, 2022)
|
|
13
13
|
|
|
14
|
-
- [
|
|
14
|
+
- [#20253](https://github.com/emberjs/ember.js/pull/20253) [FEATURE] Add the `Resolver` type to preview types
|
|
15
|
+
- [#20270](https://github.com/emberjs/ember.js/pull/20270) / [#20271](https://github.com/emberjs/ember.js/pull/20271) [FEATURE] Add new imports for `getOwner` and `setOwner` from `@ember/owner` and introduce new `@ember/routing` sub-modules as part of [RFC #821](https://rfcs.emberjs.com/id/0821-public-types).
|
|
16
|
+
|
|
17
|
+
## v4.9.0 (November 28, 2022)
|
|
18
|
+
|
|
19
|
+
- [#20274](https://github.com/emberjs/ember.js/pull/20274) [BUGFIX] Add some missing types to preview types
|
|
20
|
+
- [#20256](https://github.com/emberjs/ember.js/pull/20256) [BUGFIX] Correct types for Ember Arrays
|
|
21
|
+
- [#20257](https://github.com/emberjs/ember.js/pull/20257) [BUGFIX] Fix types for `getOwner` and GlimmerComponent
|
|
15
22
|
- [#20233](https://github.com/emberjs/ember.js/pull/20233) [BUGFIX] Include package name in deprecation error message
|
|
16
23
|
- [#20235](https://github.com/emberjs/ember.js/pull/20235) [BUGFIX] Update `@types/node` for TS 4.9 issue
|
|
17
24
|
- [#20238](https://github.com/emberjs/ember.js/pull/20238) [BUGFIX] Update Node.js versions to match support policy
|
|
18
|
-
- [#
|
|
25
|
+
- [#20227](https://github.com/emberjs/ember.js/pull/20227) [BUGFIX] Fix unsafe internal cast for NativeArray
|
|
26
|
+
- [#20228](https://github.com/emberjs/ember.js/pull/20228) [BUGFIX] Remove type export for ControllerMixin
|
|
27
|
+
- [#20203](https://github.com/emberjs/ember.js/pull/20203) / [#20204](https://github.com/emberjs/ember.js/pull/20204) [FEATURE] Preview types: Update to Typescript 4.8
|
|
19
28
|
|
|
20
|
-
|
|
29
|
+
## v4.8.2 (November 3, 2022)
|
|
30
|
+
|
|
31
|
+
- [#20244](https://github.com/emberjs/ember.js/pull/20244) Add missing type for `getComponentTemplate` to preview types
|
|
32
|
+
|
|
33
|
+
## v4.8.1 (November 2, 2022)
|
|
21
34
|
|
|
22
35
|
- [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
## v4.4.4 (November 2, 2022)
|
|
25
38
|
|
|
26
39
|
- [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties
|
|
27
40
|
|
|
@@ -29,58 +42,49 @@
|
|
|
29
42
|
|
|
30
43
|
- [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
|
|
31
44
|
|
|
32
|
-
|
|
45
|
+
## v3.24.7 (November 2, 2022)
|
|
33
46
|
|
|
34
47
|
- [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
|
|
35
48
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- [#20227](https://github.com/emberjs/ember.js/pull/20227) [BUGFIX] Fix unsafe internal cast for NativeArray
|
|
39
|
-
- [#20228](https://github.com/emberjs/ember.js/pull/20228) [BUGFIX] Remove type export for ControllerMixin
|
|
40
|
-
|
|
41
|
-
### v4.9.0-beta.1 (October 17, 2022)
|
|
42
|
-
|
|
43
|
-
- [#20203](https://github.com/emberjs/ember.js/pull/20203) / [#20204](https://github.com/emberjs/ember.js/pull/20204) [FEATURE] Preview types: Update to Typescript 4.8
|
|
44
|
-
|
|
45
|
-
### v4.8.0 (October 17, 2022)
|
|
49
|
+
## v4.8.0 (October 17, 2022)
|
|
46
50
|
|
|
47
51
|
- [#20180](https://github.com/emberjs/ember.js/pull/20180) [FEATURE] Publish an opt-in preview of public types for Ember
|
|
48
52
|
- [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Upgrade router_js to fix Linked list of RouteInfos contains undefined object
|
|
49
53
|
|
|
50
|
-
|
|
54
|
+
## v4.4.3 (October 12, 2022)
|
|
51
55
|
|
|
52
56
|
- [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
|
|
53
57
|
|
|
54
|
-
|
|
58
|
+
## v4.7.1 (October 12, 2022)
|
|
55
59
|
|
|
56
60
|
- [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
|
|
57
61
|
|
|
58
|
-
|
|
62
|
+
## v4.7.0 (September 6, 2022)
|
|
59
63
|
|
|
60
64
|
- [#20126](https://github.com/emberjs/ember.js/pull/20126) [BUGFIX] Replace Firefox detection that used a deprecated browser API
|
|
61
65
|
|
|
62
|
-
|
|
66
|
+
## v4.6.0 (July 25, 2022)
|
|
63
67
|
|
|
64
68
|
- [#20125](https://github.com/emberjs/ember.js/pull/20125) [BUGFIX] Replace deprecated substr() method with substring() method.
|
|
65
69
|
|
|
66
|
-
|
|
70
|
+
## v4.5.1 (July 25, 2022)
|
|
67
71
|
|
|
68
72
|
- [#20120](https://github.com/emberjs/ember.js/pull/20120) [BUGFIX] Adjust uniqueId() implementation to only generate valid selectors.
|
|
69
73
|
|
|
70
|
-
|
|
74
|
+
## v4.5.0 (June 13, 2022)
|
|
71
75
|
|
|
72
76
|
- [#20052](https://github.com/emberjs/ember.js/pull/20052) / [#20055](https://github.com/emberjs/ember.js/pull/20055) [FEATURE] Add the default helper manager to implement [RFC #0756](https://github.com/emberjs/rfcs/blob/master/text/0756-helper-default-manager.md).
|
|
73
77
|
- [#20053](https://github.com/emberjs/ember.js/pull/20053) [FEATURE] Expose `renderSettled` from `@ember/renderer` to enable implementation of [RFC #0785](https://github.com/emberjs/rfcs/blob/master/text/0785-remove-set-get-in-tests.md).
|
|
74
78
|
|
|
75
|
-
|
|
79
|
+
## v4.4.2 (June 13, 2022)
|
|
76
80
|
|
|
77
81
|
- [#20114](https://github.com/emberjs/ember.js/pull/20114) [BUGFIX] Fix generated import paths for test setup functions in addons
|
|
78
82
|
|
|
79
|
-
|
|
83
|
+
## v4.4.1 (May 31, 2022)
|
|
80
84
|
|
|
81
85
|
- [#20082](https://github.com/emberjs/ember.js/pull/20082) [BUGFIX] Fix blueprints publication
|
|
82
86
|
|
|
83
|
-
|
|
87
|
+
## v4.4.0 (May 2, 2022)
|
|
84
88
|
|
|
85
89
|
- [#19882](https://github.com/emberjs/ember.js/pull/19882) / [#20005](https://github.com/emberjs/ember.js/pull/20005) [FEATURE] Implement the `unique-id` helper per [RFC #0659](https://github.com/emberjs/rfcs/blob/master/text/0659-unique-id-helper.md).
|
|
86
90
|
- [#19981](https://github.com/emberjs/ember.js/pull/19981) [FEATURE] Facilitate custom test setups per [RFC #0637](https://github.com/emberjs/rfcs/blob/master/text/0637-customizable-test-setups.md).
|
|
@@ -88,21 +92,21 @@
|
|
|
88
92
|
- [#17978](https://github.com/emberjs/ember.js/pull/17978) Make hasListeners public
|
|
89
93
|
- [#20014](https://github.com/emberjs/ember.js/pull/20014) Log `until` for deprecations
|
|
90
94
|
|
|
91
|
-
|
|
95
|
+
## v3.28.9 (April 19, 2022)
|
|
92
96
|
|
|
93
97
|
- [#20028](https://github.com/emberjs/ember.js/pull/20028) Fix a memory leak in the Router Service class
|
|
94
98
|
|
|
95
|
-
|
|
99
|
+
## v4.3.0 (March 21, 2022)
|
|
96
100
|
|
|
97
101
|
- [#20025](https://github.com/emberjs/ember.js/pull/20025) [BUGFIX] Fix a memory leak in the Router Service class
|
|
98
102
|
- [#19971](https://github.com/emberjs/ember.js/pull/19971) [BUGFIX] Don't serialize default Query Params on RouterService
|
|
99
103
|
- [#20024](https://github.com/emberjs/ember.js/pull/20024) [BUGFIX] Correctly associate props with factory and owner in FactoryManager
|
|
100
104
|
|
|
101
|
-
|
|
105
|
+
## v4.2.0 (February 7, 2022)
|
|
102
106
|
|
|
103
107
|
- [#19878](https://github.com/emberjs/ember.js/pull/19878) [BUGFIX] Allow class-based helpers to work in strict-mode.
|
|
104
108
|
|
|
105
|
-
|
|
109
|
+
## v4.1.0 (December 28, 2021)
|
|
106
110
|
|
|
107
111
|
- [#19772](https://github.com/emberjs/ember.js/pull/19772) / [#19826](https://github.com/emberjs/ember.js/pull/19826) [FEATURE] Add a `@cached` decorator per [RFC #0566](https://github.com/emberjs/rfcs/blob/af64915b5ecde010fce09309a47ee6d2447588d0/text/0566-memo-decorator.md).
|
|
108
112
|
- [#19471](https://github.com/emberjs/ember.js/pull/19471) / [#19834](https://github.com/emberjs/ember.js/pull/19834) [FEATURE] Add `refresh` method to the Router Service per [RFC #0631](https://github.com/emberjs/rfcs/blob/master/text/0631-refresh-method-for-router-service.md).
|
|
@@ -111,12 +115,12 @@
|
|
|
111
115
|
- [#17570](https://github.com/emberjs/ember.js/pull/17570) [BUGFIX] Passing ObjectProxy with a property size to `isEmpty` would throw assertion
|
|
112
116
|
- [#18269](https://github.com/emberjs/ember.js/pull/18269) [BUGFIX] Fix for when query params are using a nested value
|
|
113
117
|
|
|
114
|
-
|
|
118
|
+
## v4.0.1 (December 1, 2021)
|
|
115
119
|
|
|
116
120
|
- [#19858](https://github.com/emberjs/ember.js/pull/19858) [BUGFIX] Improve assert message in default store for when routes have dynamic segments but no model hook
|
|
117
121
|
- [#19860](https://github.com/emberjs/ember.js/pull/19860) [BUGFIX] Add model hook in route blueprint for routes with dynamic segments
|
|
118
122
|
|
|
119
|
-
|
|
123
|
+
## v4.0.0 (November 15, 2021)
|
|
120
124
|
|
|
121
125
|
- [#19761](https://github.com/emberjs/ember.js/pull/19761) [BREAKING] Require ember-auto-import >= 2 or higher to enable ember-source to become a v2 addon in the 4.x cycle
|
|
122
126
|
- [#19706](https://github.com/emberjs/ember.js/pull/19706) [BREAKING] Explicitly drop Node 10 support to match support policy.
|
|
@@ -218,7 +222,7 @@
|
|
|
218
222
|
|
|
219
223
|
- [glimmerjs/glimmer-vm#1351](https://github.com/glimmerjs/glimmer-vm/pull/1351) Support lexical scope in loose mode
|
|
220
224
|
|
|
221
|
-
|
|
225
|
+
## v3.24.6 (October 18, 2021)
|
|
222
226
|
|
|
223
227
|
- [glimmerjs/glimmer-vm#1347](https://github.com/glimmerjs/glimmer-vm/pull/1347) Avoid using a nested WeakMap for manager instances for a given owner (makes memory leak debugging easier)
|
|
224
228
|
|
|
@@ -226,7 +230,7 @@
|
|
|
226
230
|
|
|
227
231
|
- [#19733](https://github.com/emberjs/ember.js/pull/19733) [BUGFIX] Ensure that using `routerService.urlFor(...)` and `routerService.recognize(...)` does not error if the router is not fully initialized
|
|
228
232
|
|
|
229
|
-
|
|
233
|
+
## v3.28.0 (August 9, 2021)
|
|
230
234
|
|
|
231
235
|
- [#19697](https://github.com/emberjs/ember.js/pull/19697) [BUGFIX] Ensure `deserializeQueryParam` is called for lazy routes
|
|
232
236
|
- [#19681](https://github.com/emberjs/ember.js/pull/19681) [BUGFIX] Restore previous hash behavior
|
|
@@ -236,27 +240,27 @@
|
|
|
236
240
|
- [#19491](https://github.com/emberjs/ember.js/pull/19491) [BUGFIX] Fix `owner.lookup` `owner.register` behavior with `singleton: true` option
|
|
237
241
|
- [#19472](https://github.com/emberjs/ember.js/pull/19472) [BUGFIX] Prevent transformation of block params called `attrs`
|
|
238
242
|
|
|
239
|
-
|
|
243
|
+
## v3.24.5 (August 9, 2021)
|
|
240
244
|
|
|
241
245
|
- [#19685](https://github.com/emberjs/ember.js/pull/19685) Fix memory leak with `RouterService` under Chrome
|
|
242
246
|
- [#19683](https://github.com/emberjs/ember.js/pull/19683) Ensure `super.willDestroy` is called correctly in `Router`'s `willDestroy`
|
|
243
247
|
|
|
244
|
-
|
|
248
|
+
## v3.27.5 (June 10, 2021)
|
|
245
249
|
|
|
246
250
|
- [#19597](https://github.com/emberjs/ember.js/pull/19597) [BIGFIX] Fix `<LinkTo>` with nested children
|
|
247
251
|
|
|
248
|
-
|
|
252
|
+
## v3.27.4 (June 9, 2021)
|
|
249
253
|
|
|
250
254
|
- [#19594](https://github.com/emberjs/ember.js/pull/19594) [BUGFIX] Revert lazy hash changes
|
|
251
255
|
- [#19596](https://github.com/emberjs/ember.js/pull/19596) [DOC] Fix "Dormant" addon warning typo
|
|
252
256
|
|
|
253
|
-
|
|
257
|
+
## v3.27.3 (June 3, 2021)
|
|
254
258
|
|
|
255
259
|
- [#19565](https://github.com/emberjs/ember.js/pull/19565) [BUGFIX] Ensures that `computed` can depend on dynamic `(hash` keys
|
|
256
260
|
- [#19571](https://github.com/emberjs/ember.js/pull/19571) [BUGFIX] Extend `Route.prototype.transitionTo` deprecation until 5.0.0
|
|
257
261
|
- [#19586](https://github.com/emberjs/ember.js/pull/19586) [BUGFIX] Fix Embroider compatibility
|
|
258
262
|
|
|
259
|
-
|
|
263
|
+
## v3.27.2 (May 27, 2021)
|
|
260
264
|
|
|
261
265
|
- [#19511](https://github.com/emberjs/ember.js/pull/19511) / [#19548](https://github.com/emberjs/ember.js/pull/19548) [BUGFIX] Makes the (hash) helper lazy
|
|
262
266
|
- [#19530](https://github.com/emberjs/ember.js/pull/19530) [DOC] fix passing params to named blocks examples
|
|
@@ -266,14 +270,14 @@
|
|
|
266
270
|
- [#19557](https://github.com/emberjs/ember.js/pull/19557) [BUGFIX] Refine Ember Global deprecation message
|
|
267
271
|
- [#19564](https://github.com/emberjs/ember.js/pull/19564) [BUGFIX] Improve computed.* and run.* deprecation message (IE11)
|
|
268
272
|
|
|
269
|
-
|
|
273
|
+
## v3.27.1 (May 13, 2021)
|
|
270
274
|
|
|
271
275
|
- [#19540](https://github.com/emberjs/ember.js/pull/19540) [BUGFIX] Ensure ember-testing is loaded lazily
|
|
272
276
|
- [#19541](https://github.com/emberjs/ember.js/pull/19541) [BUGFIX] Add missing metadata for some deprecations enabled in 3.27.0
|
|
273
277
|
- [#19541](https://github.com/emberjs/ember.js/pull/19541) [BUGFIX] Ensure passing `@href` to `<LinkTo>` throws an error
|
|
274
278
|
- [#19541](https://github.com/emberjs/ember.js/pull/19541) [CLEANUP] Consistently use https://deprecations.emberjs.com/ in deprecation URLs
|
|
275
279
|
|
|
276
|
-
|
|
280
|
+
## v3.27.0 (May 3, 2021)
|
|
277
281
|
|
|
278
282
|
- [#19309](https://github.com/emberjs/ember.js/pull/19309) / [#19487](https://github.com/emberjs/ember.js/pull/19487) / [#19474](https://github.com/emberjs/ember.js/pull/19474) [FEATURE] Enable `(helper` and `(modifier` helpers per [RFC #432](https://github.com/emberjs/rfcs/blob/master/text/0432-contextual-helpers.md).
|
|
279
283
|
- [#19382](https://github.com/emberjs/ember.js/pull/19382) / [#19430](https://github.com/emberjs/ember.js/pull/19430) [FEATURE] Remaining implementation work per [RFC #671](https://github.com/emberjs/rfcs/blob/master/text/0671-modernize-built-in-components-1.md).
|
|
@@ -294,19 +298,19 @@
|
|
|
294
298
|
- [#19441](https://github.com/emberjs/ember.js/pull/19441) Add automated publishing of weekly alpha releases to NPM
|
|
295
299
|
- [#19462](https://github.com/emberjs/ember.js/pull/19462) Use `positional` and `named` as the argument names in `ember g helper` blueprint
|
|
296
300
|
|
|
297
|
-
|
|
301
|
+
## v3.24.4 (May 3, 2021)
|
|
298
302
|
|
|
299
303
|
- [#19477](https://github.com/emberjs/ember.js/pull/19477) Allow `<LinkToExternal />` to override internal assertion
|
|
300
304
|
|
|
301
|
-
|
|
305
|
+
## v3.26.2 (October 4, 2021)
|
|
302
306
|
|
|
303
307
|
- [#19683](https://github.com/emberjs/ember.js/pull/19683) [BUGFIX] Use `super.willDestroy` in native classes (instead of `this._super`)
|
|
304
308
|
|
|
305
|
-
|
|
309
|
+
## v3.26.1 (March 24, 2021)
|
|
306
310
|
|
|
307
311
|
- [#19473](https://github.com/emberjs/ember.js/pull/19473) Update Glimmer VM to latest.
|
|
308
312
|
|
|
309
|
-
|
|
313
|
+
## v3.26.0 (March 22, 2021)
|
|
310
314
|
|
|
311
315
|
- [#19255](https://github.com/emberjs/ember.js/pull/19255) [DEPRECATION] Deprecate transition methods of controller and route per [RFC #674](https://github.com/emberjs/rfcs/blob/master/text/0674-deprecate-transition-methods-of-controller-and-route.md).
|
|
312
316
|
- [#19345](https://github.com/emberjs/ember.js/pull/19345) [DEPRECATION] Deprecate `<LinkTo>` positional arguments per [RFC #698](https://github.com/emberjs/rfcs/blob/master/text/0698-deprecate-link-to-positional-arguments.md).
|
|
@@ -326,17 +330,17 @@
|
|
|
326
330
|
- [#19405](https://github.com/emberjs/ember.js/pull/19405) [BUGFIX] Avoid instantiation errors when `app/router.js` injects the router service.
|
|
327
331
|
- [#19436](https://github.com/emberjs/ember.js/pull/19436) [BUGFIX] Support observer keys with colons
|
|
328
332
|
|
|
329
|
-
|
|
333
|
+
## v3.25.4 (March 24, 2021)
|
|
330
334
|
|
|
331
335
|
- [#19473](https://github.com/emberjs/ember.js/pull/19473) Update Glimmer VM to latest.
|
|
332
336
|
|
|
333
|
-
|
|
337
|
+
## v3.25.3 (March 7, 2021)
|
|
334
338
|
|
|
335
339
|
- [#19448](https://github.com/emberjs/ember.js/pull/19448) Ensure query params are preserved through an intermediate loading state transition
|
|
336
340
|
- [#19450](https://github.com/emberjs/ember.js/pull/19450) Ensure `routerService.currentRoute.name` and `routerService.currentRouteName` match during loading states
|
|
337
341
|
|
|
338
342
|
|
|
339
|
-
|
|
343
|
+
## v3.25.2 (March 7, 2021)
|
|
340
344
|
|
|
341
345
|
- [#19389](https://github.com/emberjs/ember.js/pull/19389) Removes template ids
|
|
342
346
|
- [#19395](https://github.com/emberjs/ember.js/pull/19395) [BUGFIX] Ensure `<LinkTo>` can return a valid `href` most of the time
|
|
@@ -346,11 +350,11 @@
|
|
|
346
350
|
- [#19412](https://github.com/emberjs/ember.js/pull/19412) / [#19416](https://github.com/emberjs/ember.js/pull/19416) [BUGFIX] Update Glimmer VM to 0.77 (fix dynamic helpers/modifiers)
|
|
347
351
|
|
|
348
352
|
|
|
349
|
-
|
|
353
|
+
## v3.25.1 (February 10, 2021)
|
|
350
354
|
|
|
351
355
|
- [#19326](https://github.com/emberjs/ember.js/pull/19326) / [#19387](https://github.com/emberjs/ember.js/pull/19387) [BUGFIX] Fix usage of `<LinkTo />` prior to routing (e.g. component rendering tests)
|
|
352
356
|
|
|
353
|
-
|
|
357
|
+
## v3.25.0 (February 08, 2021)
|
|
354
358
|
|
|
355
359
|
- [#19302](https://github.com/emberjs/ember.js/pull/19302) / [#19306](https://github.com/emberjs/ember.js/pull/19306) / [#19319](https://github.com/emberjs/ember.js/pull/19319) [FEATURE] Implement the [Handlebars Strict Mode RFC](https://github.com/emberjs/rfcs/blob/master/text/0496-handlebars-strict-mode.md).
|
|
356
360
|
- [#19318](https://github.com/emberjs/ember.js/pull/19318) [FEATURE] Implement the [Named Blocks RFC](https://github.com/emberjs/rfcs/blob/master/text/0460-yieldable-named-blocks.md).
|
|
@@ -364,7 +368,7 @@
|
|
|
364
368
|
- [#19338](https://github.com/emberjs/ember.js/pull/19338) [BUGFIX] Add missing `deprecate` options (`for` + `since`)
|
|
365
369
|
- [#19342](https://github.com/emberjs/ember.js/pull/19342) [BUGFIX] Fix misleading LinkTo error message
|
|
366
370
|
|
|
367
|
-
|
|
371
|
+
## v3.24.3 (March 7, 2021)
|
|
368
372
|
|
|
369
373
|
- [#19448](https://github.com/emberjs/ember.js/pull/19448) Ensure query params are preserved through an intermediate loading state transition
|
|
370
374
|
- [#19450](https://github.com/emberjs/ember.js/pull/19450) Ensure `routerService.currentRoute.name` and `routerService.currentRouteName` match during loading states
|
|
@@ -372,15 +376,15 @@
|
|
|
372
376
|
- [#19397](https://github.com/emberjs/ember.js/pull/19397) [BUGFIX] Force building Ember bundles when `targets.node` is defined
|
|
373
377
|
|
|
374
378
|
|
|
375
|
-
|
|
379
|
+
## v3.24.2 (February 10, 2021)
|
|
376
380
|
|
|
377
381
|
- [#19326](https://github.com/emberjs/ember.js/pull/19326) / [#19387](https://github.com/emberjs/ember.js/pull/19387) [BUGFIX] Fix usage of `<LinkTo />` prior to routing (e.g. component rendering tests)
|
|
378
382
|
|
|
379
|
-
|
|
383
|
+
## v3.24.1 (January 14, 2021)
|
|
380
384
|
|
|
381
385
|
- [#19337](https://github.com/emberjs/ember.js/pull/19337) [BUGFIX] Ensure query param only `<LinkTo />` are properly scoped in engines
|
|
382
386
|
|
|
383
|
-
|
|
387
|
+
## v3.24.0 (December 28, 2020)
|
|
384
388
|
|
|
385
389
|
- [#19224](https://github.com/emberjs/ember.js/pull/19224) [FEATURE] Add `{{page-title}}` helper to route template blueprints to implement [RFC #0654](https://github.com/emberjs/rfcs/blob/master/text/0645-add-ember-page-title-addon.md).
|
|
386
390
|
- [#19133](https://github.com/emberjs/ember.js/pull/19133) [FEATURE / DEPRECATION] Add new options to `deprecate()` for `for` and `since` and deprecate using `deprecate()` without those options per the [Deprecation Staging RFC](https://github.com/emberjs/rfcs/blob/master/text/0649-deprecation-staging.md).
|
|
@@ -398,11 +402,11 @@
|
|
|
398
402
|
- [#19238](https://github.com/emberjs/ember.js/pull/19238) [CLEANUP] Removes the `expandLocalLookup` API
|
|
399
403
|
- [#19258](https://github.com/emberjs/ember.js/pull/19258) / [#19261](https://github.com/emberjs/ember.js/pull/19261) / [#19267](https://github.com/emberjs/ember.js/pull/19267) Update rendering engine to 0.65.0
|
|
400
404
|
|
|
401
|
-
|
|
405
|
+
## v3.23.1 (November 23, 2020)
|
|
402
406
|
|
|
403
407
|
- [#19282](https://github.com/emberjs/ember.js/pull/19282) [BUGFIX] Issue deprecations (instead of assertions) for tracked mutation in constructor during rendering
|
|
404
408
|
|
|
405
|
-
|
|
409
|
+
## v3.23.0 (November 16, 2020)
|
|
406
410
|
|
|
407
411
|
- [#19160](https://github.com/emberjs/ember.js/pull/19160) / [#19182](https://github.com/emberjs/ember.js/pull/19182) [FEATURE] Implements the helper manager feature specified in the [Helper Managers RFC](https://github.com/emberjs/rfcs/blob/master/text/0625-helper-managers.md).
|
|
408
412
|
- [#19171](https://github.com/emberjs/ember.js/pull/19171) / [#19182](https://github.com/emberjs/ember.js/pull/19182) [FEATURE] Implements `invokeHelper` from the [JavaScript Helper Invocation API RFC](https://github.com/emberjs/rfcs/blob/master/text/0626-invoke-helper.md).
|
|
@@ -418,19 +422,19 @@
|
|
|
418
422
|
- [#19221](https://github.com/emberjs/ember.js/pull/19221) [BUGFIX] Ensure fn and (mut) work with falsy values
|
|
419
423
|
- [#19213](https://github.com/emberjs/ember.js/pull/19213) [BUGFIX] Update rendering engine to improve error ergonomics.
|
|
420
424
|
|
|
421
|
-
|
|
425
|
+
## v3.22.2 (November 25, 2020)
|
|
422
426
|
|
|
423
427
|
- [#19282](https://github.com/emberjs/ember.js/pull/19282) [BUGFIX] Issue deprecations (instead of assertions) for tracked mutation in constructor during rendering
|
|
424
428
|
- [#19263](https://github.com/emberjs/ember.js/pull/19263) [BUGFIX] Remove `@dependentKeyCompat` assertion
|
|
425
429
|
|
|
426
|
-
|
|
430
|
+
## v3.22.1 (November 10, 2020)
|
|
427
431
|
|
|
428
432
|
- [#19193](https://github.com/emberjs/ember.js/pull/19193) [BUGFIX] Ensure `@ember/component` user lifecycle hooks are untracked
|
|
429
433
|
- [#19197](https://github.com/emberjs/ember.js/pull/19197) [BUGFIX] Restore the shadowed property set behavior
|
|
430
434
|
- [#19199](https://github.com/emberjs/ember.js/pull/19199) [BUGFIX] Cleans up the DebugRenderTree more thoroughly on errors
|
|
431
435
|
- [#19249](https://github.com/emberjs/ember.js/pull/19249) [BUGFIX] Fix issues with query params during intermediate transitions
|
|
432
436
|
|
|
433
|
-
|
|
437
|
+
## v3.22.0 (October 5, 2020)
|
|
434
438
|
|
|
435
439
|
- [#19062](https://github.com/emberjs/ember.js/pull/19062) / [#19068](https://github.com/emberjs/ember.js/pull/19068) [FEATURE] Add @ember/destroyable feature from the [Destroyables RFC](https://github.com/emberjs/rfcs/blob/master/text/0580-destroyables.md).
|
|
436
440
|
- [#18984](https://github.com/emberjs/ember.js/pull/18984) / [#19067](https://github.com/emberjs/ember.js/pull/19067) [FEATURE] Add low-level Cache API per [Autotracking Memoization RFC](https://github.com/emberjs/rfcs/blob/master/text/0615-autotracking-memoization.md)
|
|
@@ -440,27 +444,27 @@
|
|
|
440
444
|
- [#19170](https://github.com/emberjs/ember.js/pull/19170) [BUGFIX] Make modifier manager 3.22 accept the resolved value directly.
|
|
441
445
|
- [#19124](https://github.com/emberjs/ember.js/pull/19124) [BUGFIX] Fix rendering engine usage within a `fastboot` sandbox
|
|
442
446
|
|
|
443
|
-
|
|
447
|
+
## v3.21.3 (September 30, 2020)
|
|
444
448
|
|
|
445
449
|
- [#19172](https://github.com/emberjs/ember.js/pull/19172) [BUGFIX] Ensures that tracked properties initialize property
|
|
446
450
|
|
|
447
|
-
|
|
451
|
+
## v3.21.2 (September 30, 2020)
|
|
448
452
|
|
|
449
453
|
- [#19138](https://github.com/emberjs/ember.js/pull/19138) [BUGFIX] Fix tag cycles in query parameters
|
|
450
454
|
- [#19164](https://github.com/emberjs/ember.js/pull/19164) [BUGFIX] Entangles custom EmberArray implementations when accessed with `Ember.get`
|
|
451
455
|
|
|
452
|
-
|
|
456
|
+
## v3.21.1 (August 28, 2020)
|
|
453
457
|
|
|
454
458
|
- [#19106](https://github.com/emberjs/ember.js/pull/19106) [BUGFIX] Ensure `destroy` methods on `CoreObject` are invoked.
|
|
455
459
|
- [#19111](https://github.com/emberjs/ember.js/pull/19111) [BUGFIX] Fixes `ArrayProxy` length reactivity.
|
|
456
460
|
|
|
457
|
-
|
|
461
|
+
## v3.21.0 (August 24, 2020)
|
|
458
462
|
|
|
459
463
|
- [#18993](https://github.com/emberjs/ember.js/pull/18993) [DEPRECATION] Deprecate `getWithDefault` per [RFC #554](https://github.com/emberjs/rfcs/blob/master/text/0554-deprecate-getwithdefault.md).
|
|
460
464
|
- [#19087](https://github.com/emberjs/ember.js/pull/19087) [BUGFIX] Generated initializer tests no longer causes a deprecation warning
|
|
461
465
|
- [#17571](https://github.com/emberjs/ember.js/pull/17571) [BUGFIX] Avoid tampering `queryParam` argument in RouterService#isActive
|
|
462
466
|
|
|
463
|
-
|
|
467
|
+
## v3.20.6 (November 11, 2020)
|
|
464
468
|
|
|
465
469
|
- [#19138](https://github.com/emberjs/ember.js/pull/19138) [BUGFIX] Fix tag cycles in query parameters
|
|
466
470
|
- [#19158](https://github.com/emberjs/ember.js/pull/19158) [BUGFIX] `RouterService#isActive()` now consumes `currentURL` to 3.20
|
|
@@ -468,12 +472,12 @@
|
|
|
468
472
|
- [#19172](https://github.com/emberjs/ember.js/pull/19172) / [#19197](https://github.com/emberjs/ember.js/pull/19197) [BUGFIX] Ensures that tracked properties initialize property
|
|
469
473
|
- [#19178](https://github.com/emberjs/ember.js/pull/19178) [BUGFIX] Allow computeds to have cycles in their deps
|
|
470
474
|
|
|
471
|
-
|
|
475
|
+
## v3.20.5 (August 28, 2020)
|
|
472
476
|
|
|
473
477
|
- [#19106](https://github.com/emberjs/ember.js/pull/19106) [BUGFIX] Ensure `destroy` methods on `CoreObject` are invoked.
|
|
474
478
|
- [#19111](https://github.com/emberjs/ember.js/pull/19111) [BUGFIX] Fixes `ArrayProxy` length reactivity.
|
|
475
479
|
|
|
476
|
-
|
|
480
|
+
## v3.20.4 (August 11, 2020)
|
|
477
481
|
|
|
478
482
|
- [#19047](https://github.com/emberjs/ember.js/pull/19047) Ensure `inject-babel-helpers` plugin can be parallelized
|
|
479
483
|
- [#19089](https://github.com/emberjs/ember.js/pull/19089) Update rendering engine to improve immediate encoding performance
|
|
@@ -484,22 +488,22 @@
|
|
|
484
488
|
- [#19065](https://github.com/emberjs/ember.js/pull/19065) / [#19072](https://github.com/emberjs/ember.js/pull/19072) - Updates GlimmerVM to improve internal destroyable system and improve tag / revision computation.
|
|
485
489
|
- [#19081](https://github.com/emberjs/ember.js/pull/19081) Reduces template compilation size in production builds.
|
|
486
490
|
|
|
487
|
-
|
|
491
|
+
## v3.20.3 (July 30, 2020)
|
|
488
492
|
|
|
489
493
|
- [#19048](https://github.com/emberjs/ember.js/pull/19048) [BUGFIX] Update `router.js` to ensure `transition.abort` works for query param only transitions
|
|
490
494
|
- [#19059](https://github.com/emberjs/ember.js/pull/19059) [BUGFIX] Prevent `<base target="_parent">` from erroring in `HistoryLocation`
|
|
491
495
|
- [#19060](https://github.com/emberjs/ember.js/pull/19060) [BUGFIX] Update rendering engine to `@glimmer/*` 0.55.1
|
|
492
496
|
- [#19063](https://github.com/emberjs/ember.js/pull/19063) [DOC] Fix missing docs for `{{#in-element}}`
|
|
493
497
|
|
|
494
|
-
|
|
498
|
+
## v3.20.2 (July 26, 2020)
|
|
495
499
|
|
|
496
500
|
- [#19056](https://github.com/emberjs/ember.js/pull/19056) Update Glimmer rendering engine to 0.54.2. Fixes an issue with (private for now) destroyables work to enable the destroyables polyfill to work more appropriately.
|
|
497
501
|
|
|
498
|
-
|
|
502
|
+
## v3.20.1 (July 13, 2020)
|
|
499
503
|
|
|
500
504
|
- [#19040](https://github.com/emberjs/ember.js/pull/19040) [BUGFIX] Fix a memory leak that occurred when changing the array passed to `{{each}}`
|
|
501
505
|
|
|
502
|
-
|
|
506
|
+
## v3.20.0 (July 13, 2020)
|
|
503
507
|
|
|
504
508
|
- [#18867](https://github.com/emberjs/ember.js/pull/18867) / [#18927](https://github.com/emberjs/ember.js/pull/18927) / [#18928](https://github.com/emberjs/ember.js/pull/18928) [FEATURE] [Promote `{{in-element}}` to public API](https://github.com/emberjs/rfcs/blob/master/text/0287-promote-in-element-to-public-api.md) RFC.
|
|
505
509
|
- [#19025](https://github.com/emberjs/ember.js/pull/19025) [BUGFIX] Updates Glimmer VM to 0.54.0
|
|
@@ -509,7 +513,7 @@
|
|
|
509
513
|
- [#18859](https://github.com/emberjs/ember.js/pull/18859) [BUGFIX] Fix transitionTo with scoped aliased queryParam.
|
|
510
514
|
- [#18961](https://github.com/emberjs/ember.js/pull/18961) [BUGFIX] Remove assertions for updating auto-tracked state without Ember.set / this.set
|
|
511
515
|
|
|
512
|
-
|
|
516
|
+
## v3.19.0 (May 26, 2020)
|
|
513
517
|
|
|
514
518
|
- [#18982](https://github.com/emberjs/ember.js/pull/18982) / [#18913](https://github.com/emberjs/ember.js/pull/18913) [BUGFIX] Update rendering engine to latest version.
|
|
515
519
|
- Add a compile time error when passing arguments to regular HTML elements (e.g. `<a @foo=`)
|
|
@@ -524,35 +528,35 @@
|
|
|
524
528
|
- [#18832](https://github.com/emberjs/ember.js/pull/18832) [CLEANUP] Remove deprecated private`implicit-modifier-manager-capabilities`
|
|
525
529
|
- [#18839](https://github.com/emberjs/ember.js/pull/18839) [CLEANUP] Updates the VM and autotracking APIs
|
|
526
530
|
|
|
527
|
-
|
|
531
|
+
## v3.18.1 (May 4, 2020)
|
|
528
532
|
|
|
529
533
|
- [#18941](https://github.com/emberjs/ember.js/pull/18941) [BUGFIX] Update rendering engine to latest version.
|
|
530
534
|
- Reduce template size growth to near 3.16 levels (still ~ 3% higher than 3.16)
|
|
531
535
|
- Ensures destroyable items added to an `{{#each` after initial render are invoked properly
|
|
532
536
|
- Fixes an issue with key collisions in `{{#each`
|
|
533
537
|
|
|
534
|
-
|
|
538
|
+
## v3.18.0 (April 14, 2020)
|
|
535
539
|
|
|
536
540
|
- [#18869](https://github.com/emberjs/ember.js/pull/18869) / [#18861](https://github.com/emberjs/ember.js/pull/18861) / [#18811](https://github.com/emberjs/ember.js/pull/18811) [BUGFIX] Update to glimmer-vm 0.50.2.
|
|
537
541
|
- [#18807](https://github.com/emberjs/ember.js/pull/18807) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
|
|
538
542
|
- [#18774](https://github.com/emberjs/ember.js/pull/18774) [BUGFIX] Suspend observer deactivation during property changes
|
|
539
543
|
- [#18785](https://github.com/emberjs/ember.js/pull/18785) Drop Node 8 support.
|
|
540
544
|
|
|
541
|
-
|
|
545
|
+
## v3.17.3 (April 2, 2020)
|
|
542
546
|
|
|
543
547
|
- [#18857](https://github.com/emberjs/ember.js/pull/18857) Pass value through to `PROPERTY_DID_CHANGE` to avoid calling `get` when setting values for computed props
|
|
544
548
|
|
|
545
|
-
|
|
549
|
+
## v3.17.2 (March 26, 2020)
|
|
546
550
|
|
|
547
551
|
- [#18837](https://github.com/emberjs/ember.js/pull/18837) [BUGFIX] Fix `willDestroy` on class based helpers.
|
|
548
552
|
- [#18838](https://github.com/emberjs/ember.js/pull/18838) [BUGFIX] Ensure destructors (e.g. `will-destroy` modifier, `@ember/component`s with `willDestroyElement`, etc) fire when used within an `{{#each}}` block.
|
|
549
553
|
|
|
550
|
-
|
|
554
|
+
## v3.17.1 (March 22, 2020)
|
|
551
555
|
|
|
552
556
|
- [#18809](https://github.com/emberjs/ember.js/pull/18809) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
|
|
553
557
|
- [#18831](https://github.com/emberjs/ember.js/pull/18831) [BUGFIX] Fix transpilation issues (e.g. `_createSuper` is not a function) when used with Babel 7.9.0+.
|
|
554
558
|
|
|
555
|
-
|
|
559
|
+
## v3.17.0 (March 4, 2020)
|
|
556
560
|
|
|
557
561
|
- [#18688](https://github.com/emberjs/ember.js/pull/18688) / [#18621](https://github.com/emberjs/ember.js/pull/18621) / [#18714](https://github.com/emberjs/ember.js/pull/18714) / [#18743](https://github.com/emberjs/ember.js/pull/18743) / [#18762](https://github.com/emberjs/ember.js/pull/18762) Upgrades Glimmer VM to 0.47.9, fixes ignored `checked` attribute on `input`, fixes using `array` and `hash` helper together
|
|
558
562
|
- [#18741](https://github.com/emberjs/ember.js/pull/18741) [BUGFIX] Don't setup mandatory setters on array indexes
|
|
@@ -568,11 +572,11 @@
|
|
|
568
572
|
- [#18694](https://github.com/emberjs/ember.js/pull/18694) [BUGFIX] Ensure tag updates are buffered, remove error message
|
|
569
573
|
- [#18709](https://github.com/emberjs/ember.js/pull/18709) [BUGFIX] Fix `this` in `@tracked` initializer
|
|
570
574
|
|
|
571
|
-
|
|
575
|
+
## v3.16.10 (August 5, 2020)
|
|
572
576
|
|
|
573
577
|
- [#19028](https://github.com/emberjs/ember.js/pull/19028) [BUGFIX] Ensure setter CP's with dependent keys on curly components can be two way bound
|
|
574
578
|
|
|
575
|
-
|
|
579
|
+
## v3.16.9 (July 29, 2020)
|
|
576
580
|
|
|
577
581
|
- [#19001](https://github.com/emberjs/ember.js/pull/19001) [BUGFIX] Invoke methods correctly in `TextSupport` `sendAction`
|
|
578
582
|
- [#19023](https://github.com/emberjs/ember.js/pull/19023) [BUGFIX] Avoid over eager property access during `init`
|
|
@@ -580,23 +584,23 @@
|
|
|
580
584
|
- [#19057](https://github.com/emberjs/ember.js/pull/19057) [BUGFIX] Parallelize `inject-babel-helpers` plugin
|
|
581
585
|
- [#19059](https://github.com/emberjs/ember.js/pull/19059) [BUGFIX] Prevent `<base target="_parent">` from erroring in HistoryLocation
|
|
582
586
|
|
|
583
|
-
|
|
587
|
+
## v3.16.8 (April 24, 2020)
|
|
584
588
|
|
|
585
589
|
- [#18879](https://github.com/emberjs/ember.js/pull/18879) Ensure errors thrown during component construction do not cause (unrelated) errors during application teardown (fixes a common issue when using `setupOnerror` with components asserting during `constructor`/`init`/`didInsertElement`).
|
|
586
590
|
|
|
587
|
-
|
|
591
|
+
## v3.16.7 (April 13, 2020)
|
|
588
592
|
|
|
589
593
|
- [#18854](https://github.com/emberjs/ember.js/pull/18854) Pass value through to `PROPERTY_DID_CHANGE` to avoid calling `get` when setting values for computed props
|
|
590
594
|
|
|
591
|
-
|
|
595
|
+
## v3.16.6 (March 24, 2020)
|
|
592
596
|
|
|
593
597
|
- [#18835](https://github.com/emberjs/ember.js/pull/18835) [BUGFIX] Make `ArrayProxy` Lazy.
|
|
594
598
|
|
|
595
|
-
|
|
599
|
+
## v3.16.5 (March 23, 2020)
|
|
596
600
|
|
|
597
601
|
- [#18831](https://github.com/emberjs/ember.js/pull/18831) [BUGFIX] Fix transpilation issues (e.g. `_createSuper` is not a function) when used with Babel 7.9.0+.
|
|
598
602
|
|
|
599
|
-
|
|
603
|
+
## v3.16.4 (March 22, 2020)
|
|
600
604
|
|
|
601
605
|
- [#18741](https://github.com/emberjs/ember.js/pull/18741) [BUGFIX] Don't setup mandatory setters on array indexes
|
|
602
606
|
- [#18742](https://github.com/emberjs/ember.js/pull/18742) [BUGFIX] Fix `setDiff` computed macro used within glimmer component
|
|
@@ -604,16 +608,16 @@
|
|
|
604
608
|
- [#18780](https://github.com/emberjs/ember.js/pull/18780) [BUGFIX] Fix `owner.ownerInjection()` when used to create services directly
|
|
605
609
|
- [#18810](https://github.com/emberjs/ember.js/pull/18810) [BUGFIX] Do not error (RE: elementId changing) if elementId is not changed
|
|
606
610
|
|
|
607
|
-
|
|
611
|
+
## v3.16.3 (February 18, 2020)
|
|
608
612
|
|
|
609
613
|
- [#18730](https://github.com/emberjs/ember.js/pull/18730) Workaround for the Glimmer VM bug which encodes/decodes integer literals correctly.
|
|
610
614
|
|
|
611
|
-
|
|
615
|
+
## v3.16.2 (February 10, 2020)
|
|
612
616
|
|
|
613
617
|
- [#18721](https://github.com/emberjs/ember.js/pull/18721) [BUGFIX] Backport autotracking bugfixes
|
|
614
618
|
- [#18729](https://github.com/emberjs/ember.js/pull/18729) [BUGFIX] Remove deprecation for instantiation of new singleton instances (e.g. a service) during teardown (originally added in 3.16.1 by [#18717](https://github.com/emberjs/ember.js/pull/18717)).
|
|
615
619
|
|
|
616
|
-
|
|
620
|
+
## v3.16.1 (January 31, 2020)
|
|
617
621
|
|
|
618
622
|
- [#18691](https://github.com/emberjs/ember.js/pull/18691) [BUGFIX] Updated `component` and `helper` blueprints to use `import { hbs } from 'ember-cli-htmlbars'`.
|
|
619
623
|
- [#18698](https://github.com/emberjs/ember.js/pull/18698) [BUGFIX] Ensure tag updates are buffered
|
|
@@ -621,13 +625,13 @@
|
|
|
621
625
|
- [#18717](https://github.com/emberjs/ember.js/pull/18717) [BUGFIX] Ensure instantiation cannot happen after destruction.
|
|
622
626
|
- [#18720](https://github.com/emberjs/ember.js/pull/18720) [BUGFIX] Ensure correct `@ember/edition-utils` is used (1.2.0).
|
|
623
627
|
|
|
624
|
-
|
|
628
|
+
## v3.16.0 (January 20, 2020)
|
|
625
629
|
|
|
626
630
|
- [#18436](https://github.com/emberjs/ember.js/pull/18436) [DEPRECATION] Deprecate globals resolver per [RFC #331](https://github.com/emberjs/rfcs/blob/master/text/0331-deprecate-globals-resolver.md).
|
|
627
631
|
- [#18668](https://github.com/emberjs/ember.js/pull/18668) [BUGFIX] Fix some scenarios where the "backtracking assertion" would be thrown by consuming tags after fully getting values
|
|
628
632
|
- [#18651](https://github.com/emberjs/ember.js/pull/18651) [BUGFIX] Async functions were incorrectly treated as falsey in template conditionals
|
|
629
633
|
|
|
630
|
-
|
|
634
|
+
## v3.15.0 (December 9, 2019)
|
|
631
635
|
|
|
632
636
|
- [#17948](https://github.com/emberjs/ember.js/pull/17948) [DEPRECATION] Deprecate `Component#isVisible` per [RFC #324](https://github.com/emberjs/rfcs/blob/master/text/0324-deprecate-component-isvisible.md).
|
|
633
637
|
- [#18491](https://github.com/emberjs/ember.js/pull/18491) [DEPRECATION] Deprecate `{{partial}}` per [RFC #449](https://github.com/emberjs/rfcs/blob/master/text/0449-deprecate-partials.md).
|
|
@@ -635,20 +639,20 @@
|
|
|
635
639
|
- [#18554](https://github.com/emberjs/ember.js/pull/18554) [BREAKING BUGFIX] Adds autotracking transaction
|
|
636
640
|
- [#17834](https://github.com/emberjs/ember.js/pull/17834) [BUGFIX] Prevents autotracking ArrayProxy creation
|
|
637
641
|
|
|
638
|
-
|
|
642
|
+
## v3.14.3 (December 3, 2019)
|
|
639
643
|
|
|
640
644
|
- [#18582](https://github.com/emberjs/ember.js/pull/18582) [BUGFIX] Ensure `loader.js` is transpiled to the applications specified targets (from `config/targets.js`).
|
|
641
645
|
|
|
642
|
-
|
|
646
|
+
## v3.14.2 (November 20, 2019)
|
|
643
647
|
|
|
644
648
|
- [#18539](https://github.com/emberjs/ember.js/pull/18539) / [#18548](https://github.com/emberjs/ember.js/pull/18548) [BUGFIX] Fix issues with the new APIs to be used by ember-inspector for building the "component's tree" including `@glimmer/component`.
|
|
645
649
|
- [#18549](https://github.com/emberjs/ember.js/pull/18549) [BUGFIX] Add component reference to the mouse event handler deprecation warnings.
|
|
646
650
|
|
|
647
|
-
|
|
651
|
+
## v3.14.1 (October 30, 2019)
|
|
648
652
|
|
|
649
653
|
- [#18244](https://github.com/emberjs/ember.js/pull/18244) [BUGFIX] Fix query param assertion when using the router services `transitionTo` to redirect _during_ an existing transition.
|
|
650
654
|
|
|
651
|
-
|
|
655
|
+
## v3.14.0 (October 29, 2019)
|
|
652
656
|
|
|
653
657
|
- [#18345](https://github.com/emberjs/ember.js/pull/18345) / [#18363](https://github.com/emberjs/ember.js/pull/18363) [FEATURE] Implement the [Provide @model named argument to route templates](https://github.com/emberjs/rfcs/blob/master/text/0523-model-argument-for-route-templates.md) RFC.
|
|
654
658
|
- [#18458](https://github.com/emberjs/ember.js/pull/18458) [BUGFIX] Using query params helper outside of link-to
|
|
@@ -658,26 +662,26 @@
|
|
|
658
662
|
- [#18381](https://github.com/emberjs/ember.js/pull/18381) Drop Node 6 and 11 support.
|
|
659
663
|
- [#18410](https://github.com/emberjs/ember.js/pull/18410) Use ember-cli-htmlbars for inline precompilation if possible.
|
|
660
664
|
|
|
661
|
-
|
|
665
|
+
## v3.13.4 (October 29,2019)
|
|
662
666
|
|
|
663
667
|
- [#18476](https://github.com/emberjs/ember.js/pull/18476) [BUGFIX] Ensure model can be observed by sync observers.
|
|
664
668
|
- [#18477](https://github.com/emberjs/ember.js/pull/18477) [BUGFIX] Allows @each to work with arrays that contain falsy values.
|
|
665
669
|
- [#18500](https://github.com/emberjs/ember.js/pull/18500) [BUGFIX] Remove requirement for disabling jquery-integration in Octane.
|
|
666
670
|
|
|
667
|
-
|
|
671
|
+
## v3.13.3 (October 8, 2019)
|
|
668
672
|
|
|
669
673
|
- [#18462](https://github.com/emberjs/ember.js/pull/18462) [BUGFIX] Prevents observer re-entry.
|
|
670
674
|
|
|
671
|
-
|
|
675
|
+
## v3.13.2 (September 25, 2019)
|
|
672
676
|
|
|
673
677
|
- [#18429](https://github.com/emberjs/ember.js/pull/18429) [BUGFIX] Fix incorrect error message when opting into using Octane, and missing optional features.
|
|
674
678
|
|
|
675
|
-
|
|
679
|
+
## v3.13.1 (September 23, 2019)
|
|
676
680
|
|
|
677
681
|
- [#18273](https://github.com/emberjs/ember.js/pull/18273) [BUGFIX] Fix issues with SSR rehydration of <title>.
|
|
678
682
|
- [#18418](https://github.com/emberjs/ember.js/pull/18418) / [#18419](https://github.com/emberjs/ember.js/pull/18419) [BUGFIX] Require Octane features when using Octane preview.
|
|
679
683
|
|
|
680
|
-
|
|
684
|
+
## v3.13.0 (September 19, 2019)
|
|
681
685
|
|
|
682
686
|
- [#16366](https://github.com/emberjs/ember.js/pull/16366) / [#16903](https://github.com/emberjs/ember.js/pull/16903) / [#17572](https://github.com/emberjs/ember.js/pull/17572) / [#17682](https://github.com/emberjs/ember.js/pull/17682) / [#17765](https://github.com/emberjs/ember.js/pull/17765) / [#17751](https://github.com/emberjs/ember.js/pull/17751) / [#17835](https://github.com/emberjs/ember.js/pull/17835) / [#18059](https://github.com/emberjs/ember.js/pull/18059) / [#17951](https://github.com/emberjs/ember.js/pull/17951) / [#18069](https://github.com/emberjs/ember.js/pull/18069) / [#18074](https://github.com/emberjs/ember.js/pull/18074) / [#18073](https://github.com/emberjs/ember.js/pull/18073) / [#18091](https://github.com/emberjs/ember.js/pull/18091) / [#18186](https://github.com/emberjs/ember.js/pull/18186) / [#18223](https://github.com/emberjs/ember.js/pull/18223) / [#18358](https://github.com/emberjs/ember.js/pull/18358) / [#18266](https://github.com/emberjs/ember.js/pull/18266) [FEATURE] Implement the [Tracked Properties](https://github.com/emberjs/rfcs/blob/master/text/0410-tracked-properties.md) and [Tracked Property Updates](https://github.com/emberjs/rfcs/blob/master/text/0478-tracked-properties-updates.md) RFCs.
|
|
683
687
|
- [#18158](https://github.com/emberjs/ember.js/pull/18158) / [#18203](https://github.com/emberjs/ember.js/pull/18203) / [#18198](https://github.com/emberjs/ember.js/pull/18198) / [#18190](https://github.com/emberjs/ember.js/pull/18190) / [#18394](https://github.com/emberjs/ember.js/pull/18394) [FEATURE] Implement the [Component Templates Co-location](https://github.com/emberjs/rfcs/blob/master/text/0481-component-templates-co-location.md) RFC, including the setComponentTemplate(), getComponentTemplate() and templateOnlyComponent() APIs. Note that while these low-level APIs are enabled, the co-location feature is only enabled in Octane apps as of this release. This restriction will be removed in a future version.
|
|
@@ -703,25 +707,25 @@
|
|
|
703
707
|
- [#18217](https://github.com/emberjs/ember.js/pull/18217) [BUGFIX] Adds ability for computed props to depend on args
|
|
704
708
|
- [#18222](https://github.com/emberjs/ember.js/pull/18222) [BUGFIX] Matches assertion behavior for CPs computing after destroy
|
|
705
709
|
|
|
706
|
-
|
|
710
|
+
## v3.12.4 (May 21, 2020)
|
|
707
711
|
|
|
708
712
|
- [#18879](https://github.com/emberjs/ember.js/pull/18879) Ensure errors thrown during component construction do not cause (unrelated) errors during application teardown (fixes a common issue when using `setupOnerror` with components asserting during `constructor`/`init`/`didInssertElement`).
|
|
709
713
|
- [#18273](https://github.com/emberjs/ember.js/pull/18273) [BUGFIX] Fix issues with SSR rehydration of <title>.
|
|
710
714
|
|
|
711
|
-
|
|
715
|
+
## v3.12.3 (March 12, 2020)
|
|
712
716
|
|
|
713
717
|
- [#18809](https://github.com/emberjs/ember.js/pull/18809) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
|
|
714
718
|
|
|
715
|
-
|
|
719
|
+
## v3.12.2 (December 4, 2019)
|
|
716
720
|
|
|
717
721
|
- [#18576](https://github.com/emberjs/ember.js/pull/18576) [BUGFIX] Fix leftover `const` expressions in legacy builds
|
|
718
722
|
|
|
719
|
-
|
|
723
|
+
## v3.12.1 (November 20, 2019)
|
|
720
724
|
|
|
721
725
|
- [#18244](https://github.com/emberjs/ember.js/pull/18244) Fix query param assertion when using the router services `transitionTo` to redirect _during_ an existing transition.
|
|
722
726
|
- [#18458](https://github.com/emberjs/ember.js/pull/18458) / [#18555](https://github.com/emberjs/ember.js/pull/18555) Ensure `(query-params)` helper can be used outside of direct `{{link-to}}` / `<LinkTo />` invocation.
|
|
723
727
|
|
|
724
|
-
|
|
728
|
+
## v3.12.0 (August 5, 2019)
|
|
725
729
|
|
|
726
730
|
- [#18159](https://github.com/emberjs/ember.js/pull/18159) [BUGFIX] Update router.js to ensure buildRouteInfoMetadata does not eagerly cache routes in lazy Engines
|
|
727
731
|
- [#18226](https://github.com/emberjs/ember.js/pull/18226) [BUGFIX] Fix routing path with double slash (#18226)
|
|
@@ -729,12 +733,12 @@
|
|
|
729
733
|
- [#18150](https://github.com/emberjs/ember.js/pull/18150) [BUGFIX] Fix a memory retention issue with string-based event listeners
|
|
730
734
|
- [#18124](https://github.com/emberjs/ember.js/pull/18124) [CLEANUP] Remove deprecated `NAME_KEY`
|
|
731
735
|
|
|
732
|
-
|
|
736
|
+
## v3.11.1 (June 27, 2019)
|
|
733
737
|
|
|
734
738
|
- [#18159](https://github.com/emberjs/ember.js/pull/18159) Ensure `RouteInfo` object's do not eagerly cache routes in lazy Engines
|
|
735
739
|
- [#18150](https://github.com/emberjs/ember.js/pull/18150) Ensure string based event listeners that are removed are not retained
|
|
736
740
|
|
|
737
|
-
|
|
741
|
+
## v3.11.0 (June 24, 2019)
|
|
738
742
|
|
|
739
743
|
- [#17842](https://github.com/emberjs/ember.js/pull/17842) / [#17901](https://github.com/emberjs/ember.js/pull/17901) [FEATURE] Implement the [Forwarding Element Modifiers with "Splattributes" RFC](https://github.com/emberjs/rfcs/blob/master/text/0435-modifier-splattributes.md).
|
|
740
744
|
- [#17941](https://github.com/emberjs/ember.js/pull/17941) / [#17961](https://github.com/emberjs/ember.js/pull/17961) [FEATURE] Implement the [{{fn}} rfc](https://github.com/emberjs/rfcs/blob/master/text/0470-fn-helper.md).
|
|
@@ -746,17 +750,17 @@
|
|
|
746
750
|
- [#17940](https://github.com/emberjs/ember.js/pull/17940) [CLEANUP] Remove `sync` queue from @ember/runloop.
|
|
747
751
|
- [#18110](https://github.com/emberjs/ember.js/pull/18110) [BUGFIX] Ensure calling `recompute` on a class-based helper causes it to recompute
|
|
748
752
|
|
|
749
|
-
|
|
753
|
+
## v3.10.2 (June 18, 2019)
|
|
750
754
|
|
|
751
755
|
- [#17971](https://github.com/emberjs/ember.js/pull/17971) [BUGFIX] Ensure query param only link-to's work in error states.
|
|
752
756
|
- [#18080](https://github.com/emberjs/ember.js/pull/18080) [BUGFIX] Ensure that `ember-template-compiler` can be used during FastBoot runtime.
|
|
753
757
|
|
|
754
|
-
|
|
758
|
+
## v3.10.1 (June 4, 2019)
|
|
755
759
|
|
|
756
760
|
- [#18071](https://github.com/emberjs/ember.js/pull/18071) [BUGFIX] Ensure modifiers do not run in FastBoot modes. (#18071)
|
|
757
761
|
- [#18064](https://github.com/emberjs/ember.js/pull/18064) [BUGFIX] Fix 'hasAttribute is not a function' when jQuery is disabled (#18064)
|
|
758
762
|
|
|
759
|
-
|
|
763
|
+
## v3.10.0 (May 13, 2019)
|
|
760
764
|
|
|
761
765
|
- [#17836](https://github.com/emberjs/ember.js/pull/17836) [BREAKING] Explicitly drop support for Node 6
|
|
762
766
|
- [#17719](https://github.com/emberjs/ember.js/pull/17719) / [#17745](https://github.com/emberjs/ember.js/pull/17745) [FEATURE] Support for nested components in angle bracket invocation syntax (see [emberjs/rfcs#0457](https://github.com/emberjs/rfcs/blob/master/text/0457-nested-lookups.md)).
|
|
@@ -783,31 +787,31 @@
|
|
|
783
787
|
- [#17411](https://github.com/emberjs/ember.js/pull/17411) / [#17732](https://github.com/emberjs/ember.js/pull/17732) / [#17412](https://github.com/emberjs/ember.js/pull/17412) Update initializer blueprints for ember-mocha 0.14
|
|
784
788
|
- [#17702](https://github.com/emberjs/ember.js/pull/17702) Extend from glimmer component for octane blueprint
|
|
785
789
|
|
|
786
|
-
|
|
790
|
+
## v3.9.1 (April 09, 2019)
|
|
787
791
|
|
|
788
792
|
- [#17870](https://github.com/emberjs/ember.js/pull/17870) / [#17871](https://github.com/emberjs/ember.js/pull/17871) [BUGFIX] Fix issue where `...attributes` may incorrectly overwrite attributes, depending on its position.
|
|
789
793
|
- [#17874](https://github.com/emberjs/ember.js/pull/17874) [BUGFIX] Fix issue with `event.stopPropagation()` in component event handlers when jQuery is disabled.
|
|
790
794
|
- [#17876](https://github.com/emberjs/ember.js/pull/17876) [BUGFIX] Fix issue with multiple `{{action}}` modifiers on the same element when jQuery is disabled.
|
|
791
795
|
|
|
792
|
-
|
|
796
|
+
## v3.8.3 (June 28, 2019)
|
|
793
797
|
|
|
794
798
|
- [#18159](https://github.com/emberjs/ember.js/pull/18159) [BUGFIX] Ensure `RouteInfo` object's do not eagerly cache routes in lazy Engines
|
|
795
799
|
- [#18150](https://github.com/emberjs/ember.js/pull/18150) [BUGFIX] Ensure string based event listeners that are removed are not retained
|
|
796
800
|
- [#18080](https://github.com/emberjs/ember.js/pull/18080) [BUGFIX] Fix `ember-template-compiler` compatibility with Fastboot.
|
|
797
801
|
|
|
798
|
-
|
|
802
|
+
## v3.8.2 (June, 4, 2019)
|
|
799
803
|
|
|
800
804
|
- [#18071](https://github.com/emberjs/ember.js/pull/18071) [BUGFIX] Ensure modifiers do not run in FastBoot modes. (#18071)
|
|
801
805
|
- [#18064](https://github.com/emberjs/ember.js/pull/18064) [BUGFIX] Fix 'hasAttribute is not a function' when jQuery is disabled (#18064)
|
|
802
806
|
- [#17974](https://github.com/emberjs/ember.js/pull/17974) [BUGFIX] Ensure inheritable observers on object proxies are string based
|
|
803
807
|
- [#17859](https://github.com/emberjs/ember.js/pull/17859) [BUGFIX] Fixes a regression in the legacy build
|
|
804
808
|
|
|
805
|
-
|
|
809
|
+
## v3.8.1 (April 02, 2019)
|
|
806
810
|
|
|
807
811
|
- [#17684](https://github.com/emberjs/ember.js/pull/17684) [BUGFIX] Enable maximum rerendering limit to be customized.
|
|
808
812
|
- [#17823](https://github.com/emberjs/ember.js/pull/17823) Update router_js to 6.2.4
|
|
809
813
|
|
|
810
|
-
|
|
814
|
+
## v3.9.0 (April 01, 2019)
|
|
811
815
|
|
|
812
816
|
- [#17470](https://github.com/emberjs/ember.js/pull/17470) [DEPRECATION] Implements the Computed Property Modifier deprecation RFCs
|
|
813
817
|
* Deprecates `.property()` (see [emberjs/rfcs#0375](https://github.com/emberjs/rfcs/blob/master/text/0375-deprecate-computed-property-modifier.md)
|
|
@@ -825,7 +829,7 @@
|
|
|
825
829
|
- [#17649](https://github.com/emberjs/ember.js/pull/17649) [BUGFIX] Revert decorator refactors
|
|
826
830
|
- [#17487](https://github.com/emberjs/ember.js/pull/17487) [BUGFIX] Fix scenario where aliased properties did not update in production mode
|
|
827
831
|
|
|
828
|
-
|
|
832
|
+
## v3.8.0 (February 18, 2019)
|
|
829
833
|
|
|
830
834
|
- [#17143](https://github.com/emberjs/ember.js/pull/17143) / [#17375](https://github.com/emberjs/ember.js/pull/17375) [FEATURE] Implement Element Modifier Manager RFC (see [emberjs/rfcs#0373](https://github.com/emberjs/rfcs/blob/master/text/0373-Element-Modifier-Managers.md)).
|
|
831
835
|
- [#17054](https://github.com/emberjs/ember.js/pull/17054) / [#17376](https://github.com/emberjs/ember.js/pull/17376) [FEATURE] Implement `array` helper RFC (see [emberjs/rfcs#0318](https://github.com/emberjs/rfcs/blob/master/text/0318-array-helper.md))
|
|
@@ -846,23 +850,23 @@ Fixes a few issues:
|
|
|
846
850
|
- [#17340](https://github.com/emberjs/ember.js/pull/17340) Remove unused `hooks` variable from qunit-rfc-232 util-test blueprint
|
|
847
851
|
- [#17357](https://github.com/emberjs/ember.js/pull/17357) Allow notifyPropertyChange to be imported from @ember/object
|
|
848
852
|
|
|
849
|
-
|
|
853
|
+
## v3.7.3 (February 6, 2019)
|
|
850
854
|
|
|
851
855
|
- [#17563](https://github.com/emberjs/ember.js/pull/17563) [BUGFIX] Transition.send/trigger call signature
|
|
852
856
|
- [#17552](https://github.com/emberjs/ember.js/pull/17552) [BUGFIX] Support numbers in component names for Angle Brackets
|
|
853
857
|
|
|
854
|
-
|
|
858
|
+
## v3.7.2 (January 22, 2019)
|
|
855
859
|
|
|
856
860
|
* Upgrade @glimmer/* packages to 0.36.6. Fixes a few issues:
|
|
857
861
|
* Usage of positional arguments with custom components.
|
|
858
862
|
* Forwarding attributes via `...attributes` to a dynamic component.
|
|
859
863
|
* Prevent errors when rendering many template blocks (`Error: Operand over 16-bits. Got 65536`).
|
|
860
864
|
|
|
861
|
-
|
|
865
|
+
## v3.7.1 (January 21, 2019)
|
|
862
866
|
|
|
863
867
|
- [#17461](https://github.com/emberjs/ember.js/pull/17461) [BUGFIX] Fix substate interactions with aborts
|
|
864
868
|
|
|
865
|
-
|
|
869
|
+
## v3.7.0 (January 7, 2019)
|
|
866
870
|
|
|
867
871
|
- [#17254](https://github.com/emberjs/ember.js/pull/17254) [BREAKING] Explicitly drop support for Node 4
|
|
868
872
|
- [#17426](https://github.com/emberjs/ember.js/pull/17426) [BUGFIX] Fix 'strict mode does not allow function declarations'
|
|
@@ -876,12 +880,12 @@ Fixes a few issues:
|
|
|
876
880
|
- [#17133](https://github.com/emberjs/ember.js/pull/17133) [CLEANUP] Remove deprecated 'property{Did,Will}Change'
|
|
877
881
|
- [#16898](https://github.com/emberjs/ember.js/pull/16898) Add RFC 232 style util test blueprint for Mocha
|
|
878
882
|
|
|
879
|
-
|
|
883
|
+
## v3.6.1 (December 18, 2018)
|
|
880
884
|
|
|
881
885
|
- [#17328](https://github.com/emberjs/ember.js/pull/17328) [BUGFIX] Ensure that delayed transition retrys work
|
|
882
886
|
- [#17374](https://github.com/emberjs/ember.js/pull/17374) [BUGFIX] Fix cyclic references on Array.prototype
|
|
883
887
|
|
|
884
|
-
|
|
888
|
+
## v3.6.0 (December 6, 2018)
|
|
885
889
|
|
|
886
890
|
- [#17025](https://github.com/emberjs/ember.js/pull/17025) / [#17034](https://github.com/emberjs/ember.js/pull/17034) / [#17036](https://github.com/emberjs/ember.js/pull/17036) / [#17038](https://github.com/emberjs/ember.js/pull/17038) / [#17040](https://github.com/emberjs/ember.js/pull/17040) / [#17041](https://github.com/emberjs/ember.js/pull/17041) / [#17061](https://github.com/emberjs/ember.js/pull/17061) [FEATURE] Final stage of the router service RFC (see [emberjs/rfcs#95](https://github.com/emberjs/rfcs/blob/master/text/0095-router-service.md)
|
|
887
891
|
- [#16795](https://github.com/emberjs/ember.js/pull/16795) [FEATURE] Native Class Constructor Update (see [emberjs/rfcs#337](https://github.com/emberjs/rfcs/blob/master/text/0337-native-class-constructor-update.md)
|
|
@@ -904,57 +908,57 @@ Fixes a few issues:
|
|
|
904
908
|
- [#16865](https://github.com/emberjs/ember.js/pull/16865) / [#16899](https://github.com/emberjs/ember.js/pull/16899) / [#16914](https://github.com/emberjs/ember.js/pull/16914) / [#16897](https://github.com/emberjs/ember.js/pull/16897) / [#16913](https://github.com/emberjs/ember.js/pull/16913) / [#16894](https://github.com/emberjs/ember.js/pull/16894) / [#16896](https://github.com/emberjs/ember.js/pull/16896) [BUGFIX] Support RFC 232 and RFC 268 style tests with Mocha blueprints
|
|
905
909
|
- [#17051](https://github.com/emberjs/ember.js/pull/17051) Update glimmer-vm packages to 0.36.4
|
|
906
910
|
|
|
907
|
-
|
|
911
|
+
## v3.5.1 (October 29, 2018)
|
|
908
912
|
|
|
909
913
|
- [#17028](https://github.com/emberjs/ember.js/pull/17028) Mark `defineProperty` as public (yet low level) API.
|
|
910
914
|
- [#17115](https://github.com/emberjs/ember.js/pull/17115) [BUGFIX] Pass the event parameter to sendAction
|
|
911
915
|
- [#17128](https://github.com/emberjs/ember.js/pull/17128) [BUGFIX] Fix sourcemaping issues due to multiple sourcemap directives.
|
|
912
916
|
- [#17130](https://github.com/emberjs/ember.js/pull/17130) [BUGFIX] Ensure that timers scheduled after a system sleep are fired properly.
|
|
913
917
|
|
|
914
|
-
|
|
918
|
+
## v3.5.0 (October 8, 2018)
|
|
915
919
|
|
|
916
920
|
- [#16978](https://github.com/emberjs/ember.js/pull/16978) [BUGFIX] Properly teardown alias
|
|
917
921
|
- [#16877](https://github.com/emberjs/ember.js/pull/16877) [CLEANUP] Allow routes to be named "array" and "object"
|
|
918
922
|
|
|
919
|
-
|
|
923
|
+
## v3.4.8 (January 22, 2019)
|
|
920
924
|
|
|
921
925
|
* Upgrade @glimmer/* packages to 0.35.10. Fixes a few issues:
|
|
922
926
|
* Usage of positional arguments with custom components.
|
|
923
927
|
* Forwarding attributes via `...attributes` to a dynamic component.
|
|
924
928
|
* Prevent errors when rendering many template blocks (`Error: Operand over 16-bits. Got 65536`).
|
|
925
929
|
|
|
926
|
-
|
|
930
|
+
## v3.4.7 (December 7, 2018)
|
|
927
931
|
|
|
928
932
|
- [#17271](https://github.com/emberjs/ember.js/pull/17271) [BUGFIX] Update `backburner.js` to 2.4.2.
|
|
929
933
|
|
|
930
|
-
|
|
934
|
+
## v3.4.6 (October 29, 2018)
|
|
931
935
|
|
|
932
936
|
- [#17115](https://github.com/emberjs/ember.js/pull/17115) [BUGFIX] Ensure `{{input` continues to pass the event to the actions that it fires.
|
|
933
937
|
- [#17128](https://github.com/emberjs/ember.js/pull/17128) [BUGFIX] Fix invalid sourcemap declarations.
|
|
934
938
|
- [#17130](https://github.com/emberjs/ember.js/pull/17130) [BUGFIX] Ensure that timers scheduled after a system sleep are fired properly.
|
|
935
939
|
|
|
936
|
-
|
|
940
|
+
## v3.4.5 (October 4, 2018)
|
|
937
941
|
|
|
938
942
|
- [#17029](https://github.com/emberjs/ember.js/pull/17029) [BUGFIX] Update backburner.js to 2.4.0.
|
|
939
943
|
|
|
940
|
-
|
|
944
|
+
## v3.4.4 (September 27, 2018)
|
|
941
945
|
|
|
942
946
|
- [#17013](https://github.com/emberjs/ember.js/pull/17013) [BUGFIX] Fix rendering of empty content with `{{{...}}}` or `{{...}}` with `htmlSafe('')` in IE11
|
|
943
947
|
|
|
944
|
-
|
|
948
|
+
## v3.4.3 (September 25, 2018)
|
|
945
949
|
|
|
946
950
|
- [#17003](https://github.com/emberjs/ember.js/pull/17003) [BUGFIX] Fix rendering of empty content with `{{{...}}}` or `{{...}}` with `htmlSafe('')`
|
|
947
951
|
|
|
948
|
-
|
|
952
|
+
## v3.4.2 (September 24, 2018)
|
|
949
953
|
|
|
950
954
|
- [#16860](https://github.com/emberjs/ember.js/pull/16860) [BUGFIX] Clear chains in ProxyMixin when destroyed
|
|
951
955
|
- [#16999](https://github.com/emberjs/ember.js/pull/16999) [BUGFIX] Fix mouseEnter/Leave event delegation without jQuery
|
|
952
956
|
|
|
953
|
-
|
|
957
|
+
## v3.4.1 (September 10, 2018)
|
|
954
958
|
|
|
955
959
|
- [#16933](https://github.com/emberjs/ember.js/pull/16933) [BUGFIX] Update glimmer-vm packages to 0.35.8
|
|
956
960
|
|
|
957
|
-
|
|
961
|
+
## v3.4.0 (August 27, 2018)
|
|
958
962
|
|
|
959
963
|
- [#16603](https://github.com/emberjs/ember.js/pull/16603) [BUGFIX] Support mouseEnter/Leave events w/o jQuery
|
|
960
964
|
- [#16857](https://github.com/emberjs/ember.js/pull/16857) [BUGFIX] Prevents the recursive redefinition of root chains
|
|
@@ -969,16 +973,16 @@ Fixes a few issues:
|
|
|
969
973
|
- [#16794](https://github.com/emberjs/ember.js/pull/16794) [BUGFIX] Fix instance-initializer-test blueprint for new QUnit testing API ([emberjs/rfcs#232](https://github.com/emberjs/rfcs/pull/232))
|
|
970
974
|
- [#16797](https://github.com/emberjs/ember.js/pull/16797) [BUGFIX] Drop autorun assertion
|
|
971
975
|
|
|
972
|
-
|
|
976
|
+
## v3.3.2 (August 20, 2018)
|
|
973
977
|
|
|
974
978
|
- [#16853](https://github.com/emberjs/ember.js/pull/16853) [BUGFIX] Allow ArrayProxy#pushObjects to accept ArrayProxy again
|
|
975
979
|
- [#16870](https://github.com/emberjs/ember.js/pull/16870) [BUGFIX] Enable @ember/object#get to be called with an empty string
|
|
976
980
|
|
|
977
|
-
|
|
981
|
+
## v3.3.1 (July 23, 2018)
|
|
978
982
|
|
|
979
983
|
- [#16836](https://github.com/emberjs/ember.js/pull/16836/commits) [DOC] Fix Broken 3.3 API Documentation
|
|
980
984
|
|
|
981
|
-
|
|
985
|
+
## v3.3.0 (July 16, 2018)
|
|
982
986
|
|
|
983
987
|
- [#16687](https://github.com/emberjs/ember.js/pull/16687) [FEATURE] Implement optional jQuery integration (see [emberjs/rfcs#294](https://github.com/emberjs/rfcs/blob/master/text/0294-optional-jquery.md) for more details).
|
|
984
988
|
- [#16690](https://github.com/emberjs/ember.js/pull/16690) [DEPRECATION] [emberjs/rfcs#294](emberjs/rfcs#294) Deprecate accessing `jQuery.Event#originalEvent`.
|
|
@@ -993,15 +997,15 @@ Fixes a few issues:
|
|
|
993
997
|
- [#16619](https://github.com/emberjs/ember.js/pull/16619) [BUGFIX] Update router_js to ensure `(hash` works in query params.
|
|
994
998
|
- [#16632](https://github.com/emberjs/ember.js/pull/16632) [BUGFIX] computed.sort array should update if sort properties array is empty/
|
|
995
999
|
|
|
996
|
-
|
|
1000
|
+
## v3.2.2 (June 21, 2018)
|
|
997
1001
|
|
|
998
1002
|
- [#16754](https://github.com/emberjs/ember.js/pull/16754) [BUGFIX] Fix container destroy timing
|
|
999
1003
|
|
|
1000
|
-
|
|
1004
|
+
## v3.2.1 (June 19, 2018)
|
|
1001
1005
|
|
|
1002
1006
|
- [#16750](https://github.com/emberjs/ember.js/pull/16750) [BUGFIX] Bring back isObject guard for ember-utils/is_proxy
|
|
1003
1007
|
|
|
1004
|
-
|
|
1008
|
+
## v3.2.0 (May 31, 2018)
|
|
1005
1009
|
|
|
1006
1010
|
- [#16613](https://github.com/emberjs/ember.js/pull/16613) [BUGFIX] Prevent errors in ember-engines + 3.1 + proxies.
|
|
1007
1011
|
- [#16597](https://github.com/emberjs/ember.js/pull/16597) [BUGFIX] Ensure `Ember.run.cancelTimers` is present.
|
|
@@ -1034,21 +1038,21 @@ Fixes a few issues:
|
|
|
1034
1038
|
- [#16462](https://github.com/emberjs/ember.js/pull/16462) [CLEANUP] Remove deprecated `MODEL_FACTORY_INJECTIONS`.
|
|
1035
1039
|
- [emberjs/rfcs#286](https://github.com/emberjs/rfcs/blob/master/text/0286-block-let-template-helper.md) [FEATURE] Enabled block `let` handlebars helper by default.
|
|
1036
1040
|
|
|
1037
|
-
|
|
1041
|
+
## v3.1.4 (August 07, 2018)
|
|
1038
1042
|
|
|
1039
1043
|
- [#16565](https://github.com/emberjs/ember.js/pull/16565) Fix template / component caching during rendering.
|
|
1040
1044
|
- [#16853](https://github.com/emberjs/ember.js/pull/16853) [BUGFIX] Allow ArrayProxy#pushObjects to accept ArrayProxy again
|
|
1041
1045
|
|
|
1042
|
-
|
|
1046
|
+
## v3.1.3 (June 21, 2018)
|
|
1043
1047
|
- [#16754](https://github.com/emberjs/ember.js/pull/16754) [BUGFIX] Fix container destroy timing
|
|
1044
1048
|
|
|
1045
|
-
|
|
1049
|
+
## v3.1.2 (May 7, 2018)
|
|
1046
1050
|
- [#16600](https://github.com/emberjs/ember.js/pull/16600) [BUGFIX] Fix SimpleHelper memory leak
|
|
1047
1051
|
- [#16605](https://github.com/emberjs/ember.js/pull/16605) [BUGFIX] Use resetCache on container destroy.
|
|
1048
1052
|
- [182fc3](https://github.com/emberjs/ember.js/commit/182fc315664e8b4847f03133cc01e38767cad41e) [BUGFIX] Update glimmer-vm to ensure arguments are properly garbage collected.
|
|
1049
1053
|
- [#16281](https://github.com/emberjs/ember.js/pull/16281) [BUGFIX] Ensure warning from `{{#link-to` RE: loading state does not throw an assertion.
|
|
1050
1054
|
|
|
1051
|
-
|
|
1055
|
+
## v3.1.1 (April 23, 2018)
|
|
1052
1056
|
- [#16559](https://github.com/emberjs/ember.js/pull/16559) [BUGFIX] Fix property normalization, Update glimmer-vm to 0.34.0
|
|
1053
1057
|
- [#16493](https://github.com/emberjs/ember.js/pull/16493) [BUGFIX] Ensure proxies have access to `getOwner(this)`.
|
|
1054
1058
|
- [#16496](https://github.com/emberjs/ember.js/pull/16496) [BUGFIX] Add exception for `didRemoveListener` so evented proxy objects can function
|
|
@@ -1059,7 +1063,7 @@ Fixes a few issues:
|
|
|
1059
1063
|
- [#16564](https://github.com/emberjs/ember.js/pull/16564) [BUGFIX] Ensure Ember.isArray does not trigger proxy assertion.
|
|
1060
1064
|
- [#16572](https://github.com/emberjs/ember.js/pull/16572) [BUGFIX] Fix curly component class reference setup
|
|
1061
1065
|
|
|
1062
|
-
|
|
1066
|
+
## v3.1.0 (April 10, 2018)
|
|
1063
1067
|
- [#16293](https://github.com/emberjs/ember.js/pull/16293) [BUGFIX] Ignore --pod for -addon blueprints: helper, initializer, and instance-initializer
|
|
1064
1068
|
- [#16312](https://github.com/emberjs/ember.js/pull/16312) [DEPRECATION] Deprecate `Route.prototype.router` in favor of `Route.prototype._router`
|
|
1065
1069
|
- [#16326](https://github.com/emberjs/ember.js/pull/16326) [BUGFIX] Expanded syntax error for if handlebars helper to include source of error
|
|
@@ -1075,7 +1079,7 @@ Fixes a few issues:
|
|
|
1075
1079
|
- [emberjs/rfcs#281](https://github.com/emberjs/rfcs/blob/master/text/0281-es5-getters.md) [FEATURE native-es5-getters] Enabled by default.
|
|
1076
1080
|
- [#15828](https://github.com/emberjs/ember.js/pull/15828) Upgrade glimmer-vm to latest version.
|
|
1077
1081
|
|
|
1078
|
-
|
|
1082
|
+
## v3.0.0 (February 13, 2018)
|
|
1079
1083
|
|
|
1080
1084
|
- [#16218](https://github.com/emberjs/ember.js/pull/16218) [BUGFIX beta] Prevent errors when using const `(get arr 1)`.
|
|
1081
1085
|
- [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX lts] Avoid excessively calling Glimmer AST transforms.
|
|
@@ -1136,16 +1140,16 @@ Fixes a few issues:
|
|
|
1136
1140
|
- [#16036](https://github.com/emberjs/ember.js/pull/16036) [CLEANUP] Convert ember-metal accessors tests to new style
|
|
1137
1141
|
- [#16023](https://github.com/emberjs/ember.js/pull/16023) Make event dispatcher work without jQuery
|
|
1138
1142
|
|
|
1139
|
-
|
|
1143
|
+
## 2.18.2 (February 14, 2018)
|
|
1140
1144
|
|
|
1141
1145
|
- [#16245](https://github.com/emberjs/ember.js/pull/16245) [BUGFIX] Ensure errors in deferred component hooks can be recovered.
|
|
1142
1146
|
|
|
1143
|
-
|
|
1147
|
+
## 2.18.1 (February 13, 2018)
|
|
1144
1148
|
|
|
1145
1149
|
- [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
|
|
1146
1150
|
- [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
|
|
1147
1151
|
|
|
1148
|
-
|
|
1152
|
+
## 2.18.0 (January 1, 2018)
|
|
1149
1153
|
|
|
1150
1154
|
- [95b449](https://github.com/emberjs/ember.js/commit/95b4499b3667712a202bef834268e23867fc8842) [BUGFIX] Ensure `Ember.run.cancel` while the run loop is flushing works properly.
|
|
1151
1155
|
- [#15952](https://github.com/emberjs/ember.js/pull/15952) [BUGFIX] fix regression of clicking link-to with disabled=true
|
|
@@ -1159,12 +1163,12 @@ Fixes a few issues:
|
|
|
1159
1163
|
- [#14590](https://github.com/emberjs/ember.js/pull/14590) [DEPRECATION] Deprecate using `targetObject`.
|
|
1160
1164
|
- [#15754](https://github.com/emberjs/ember.js/pull/15754) [CLEANUP] Remove `router.router` deprecation.
|
|
1161
1165
|
|
|
1162
|
-
|
|
1166
|
+
## 2.17.1 (February 13, 2018)
|
|
1163
1167
|
|
|
1164
1168
|
- [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
|
|
1165
1169
|
- [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
|
|
1166
1170
|
|
|
1167
|
-
|
|
1171
|
+
## 2.17.0 (November 29, 2017)
|
|
1168
1172
|
|
|
1169
1173
|
- [#15855](https://github.com/emberjs/ember.js/pull/15855) [BUGFIX] fix regression with computed `filter/map/sort`
|
|
1170
1174
|
- [#15871](https://github.com/emberjs/ember.js/pull/15871) [BUGFIX lts] Refactor / fix error handling scenarios.
|
|
@@ -1187,25 +1191,25 @@ Fixes a few issues:
|
|
|
1187
1191
|
- [#15265](https://github.com/emberjs/ember.js/pull/15265) [BUGFIX] fixed issue when passing `false` to `activeClass` for `{{link-to}}`
|
|
1188
1192
|
- [#15672](https://github.com/emberjs/ember.js/pull/15672) Update router_js to 2.0.0.
|
|
1189
1193
|
|
|
1190
|
-
|
|
1194
|
+
## 2.16.3 (February 13, 2018)
|
|
1191
1195
|
|
|
1192
1196
|
- [#15927](https://github.com/emberjs/ember.js/pull/15927) blueprints: Extend test framework detection to `ember-qunit` and `ember-mocha`
|
|
1193
1197
|
- [#15935](https://github.com/emberjs/ember.js/pull/15935) [BUGFIX] blueprints: fix framework detection to work with prerelease versions of ember-cli-mocha
|
|
1194
1198
|
- [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
|
|
1195
1199
|
- [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
|
|
1196
1200
|
|
|
1197
|
-
|
|
1201
|
+
## 2.16.2 (November 1, 2017)
|
|
1198
1202
|
|
|
1199
1203
|
- [#15797](https://github.com/emberjs/ember.js/pull/15797) [BUGFIX] Fix issues with using partials nested within other partials.
|
|
1200
1204
|
|
|
1201
|
-
|
|
1205
|
+
## 2.16.1 (October 29, 2017)
|
|
1202
1206
|
|
|
1203
1207
|
- [#15722](https://github.com/emberjs/ember.js/pull/15722) [BUGFIX] Avoid assertion when using `(get` helper with empty paths.
|
|
1204
1208
|
- [#15746](https://github.com/emberjs/ember.js/pull/15746) [BUGFIX] Fix computed sort regression when array property is initially `null`.
|
|
1205
1209
|
- [#15613](https://github.com/emberjs/ember.js/pull/15613) [BUGFIX] Prevent an error from being thrown when partial set of query params are passed to the router service.
|
|
1206
1210
|
- [#15777](https://github.com/emberjs/ember.js/pull/15777) [BUGFIX] Fix various issues around accessing dynamic data within a partial.
|
|
1207
1211
|
|
|
1208
|
-
|
|
1212
|
+
## 2.16.0 (October 9, 2017)
|
|
1209
1213
|
|
|
1210
1214
|
- [#15604](https://github.com/emberjs/ember.js/pull/15604) Data Adapter: Only trigger model type update if the record live array count actually changed
|
|
1211
1215
|
- [#15610](https://github.com/emberjs/ember.js/pull/15610) [BUGFIX] add inflection to dependencies
|
|
@@ -1224,21 +1228,21 @@ Fixes a few issues:
|
|
|
1224
1228
|
- [#15528](https://github.com/emberjs/ember.js/pull/15528) [DEPRECATION] Deprecate `Controller#content` alias.
|
|
1225
1229
|
- [#15552](https://github.com/emberjs/ember.js/pull/15552) [FEATURE] Update blueprints and tests to RFC #176.
|
|
1226
1230
|
|
|
1227
|
-
|
|
1231
|
+
## 2.15.3 (October 9, 2017)
|
|
1228
1232
|
|
|
1229
1233
|
- [#15718](https://github.com/emberjs/ember.js/pull/15718) [BUGFIX] bump backburner (fixes clock + autorun interop)
|
|
1230
1234
|
|
|
1231
|
-
|
|
1235
|
+
## 2.15.2 (October 4, 2017)
|
|
1232
1236
|
|
|
1233
1237
|
- [#15604](https://github.com/emberjs/ember.js/pull/15604) [BUGFIX] Ember Inspector Data Adapter: Only trigger model type update if the record live array count actually changed.
|
|
1234
1238
|
- [#15695](https://github.com/emberjs/ember.js/pull/15695) [BUGFIX] Avoid creating event dispatcher in FastBoot with Engines.
|
|
1235
1239
|
|
|
1236
|
-
|
|
1240
|
+
## 2.15.1 (October 2, 2017)
|
|
1237
1241
|
|
|
1238
1242
|
- [#15600](https://github.com/emberjs/ember.js/pull/15600) [BUGFIX] ensure “pause on exception” pauses in the right place.
|
|
1239
1243
|
- [#15689](https://github.com/emberjs/ember.js/pull/15689) [BUGFIX] Mark error as handled before transition for error routes and substates.
|
|
1240
1244
|
|
|
1241
|
-
|
|
1245
|
+
## 2.15.0 (August 31, 2017)
|
|
1242
1246
|
|
|
1243
1247
|
- [#15577](https://github.com/emberjs/ember.js/pull/15577) [BUGFIX] Include missing sourcemaps in vendorTree.
|
|
1244
1248
|
- [#14848](https://github.com/emberjs/ember.js/pull/14848) [BUGFIX] Allow boolean values for current-when
|
|
@@ -1258,7 +1262,7 @@ Fixes a few issues:
|
|
|
1258
1262
|
- [#14805](https://github.com/emberjs/ember.js/pull/14805) / [#14861](https://github.com/emberjs/ember.js/pull/14861) / [#14979](https://github.com/emberjs/ember.js/pull/14979) / [#15414](https://github.com/emberjs/ember.js/pull/15414) / [#15415](https://github.com/emberjs/ember.js/pull/15415) [FEATURE ember-routing-router-service] Enable by default.
|
|
1259
1263
|
- [#15193](https://github.com/emberjs/ember.js/pull/15193) [CLEANUP] Remove `owner._lookupFactory` support.
|
|
1260
1264
|
|
|
1261
|
-
|
|
1265
|
+
## 2.14.0 (July 5, 2017)
|
|
1262
1266
|
|
|
1263
1267
|
- [#15312](https://github.com/emberjs/ember.js/pull/15312) [BUGFIX] Avoid re-freezing already frozen objects.
|
|
1264
1268
|
- [#15315](https://github.com/emberjs/ember.js/pull/15315) [FEATURE] Add minlength to TextSupport
|
|
@@ -1282,20 +1286,20 @@ Fixes a few issues:
|
|
|
1282
1286
|
- [#15178](https://github.com/emberjs/ember.js/pull/15178) Refactor route to lookup controller for QPs.
|
|
1283
1287
|
- [#15129](https://github.com/emberjs/ember.js/pull/15129) Fix access to service:-document in ember-engines
|
|
1284
1288
|
|
|
1285
|
-
|
|
1289
|
+
## 2.13.4 (July 5, 2017)
|
|
1286
1290
|
|
|
1287
1291
|
- [#15321](https://github.com/emberjs/ember.js/pull/15321) [BUGFIX] Improve fastboot debugger/repl experience.
|
|
1288
1292
|
|
|
1289
|
-
|
|
1293
|
+
## 2.13.3 (May 31, 2017)
|
|
1290
1294
|
|
|
1291
1295
|
- [#15284](https://github.com/emberjs/ember.js/pull/15284) [BUGFIX] remove nested transaction assertion from glimmer.
|
|
1292
1296
|
- [glimmerjs/glimmer-vm#529](https://github.com/glimmerjs/glimmer-vm/pull/529) [BUGFIX] Fix issues identified with custom element support.
|
|
1293
1297
|
|
|
1294
|
-
|
|
1298
|
+
## 2.13.2 (May 18, 2017)
|
|
1295
1299
|
|
|
1296
1300
|
- Revert over eager dependency upgrades in 2.13.1.
|
|
1297
1301
|
|
|
1298
|
-
|
|
1302
|
+
## 2.13.1 (May 17, 2017)
|
|
1299
1303
|
|
|
1300
1304
|
- [#15129](https://github.com/emberjs/ember.js/pull/15129) Fix access to document service in `ember-engines`.
|
|
1301
1305
|
- [#15138](https://github.com/emberjs/ember.js/pull/15138) [BUGFIX] Fix mocha blueprint service test filename
|
|
@@ -1304,7 +1308,7 @@ Fixes a few issues:
|
|
|
1304
1308
|
- [#15242](https://github.com/emberjs/ember.js/pull/15242) [BUGFIX] Fix `EmberError` import in system/router.
|
|
1305
1309
|
- [#15247](https://github.com/emberjs/ember.js/pull/15247) [BUGFIX] Ensure nested custom elements render properly.
|
|
1306
1310
|
|
|
1307
|
-
|
|
1311
|
+
## 2.13.0 (April 27, 2017)
|
|
1308
1312
|
|
|
1309
1313
|
- [#15111](https://github.com/emberjs/ember.js/pull/15111) / [#15029](https://github.com/emberjs/ember.js/pull/15029) [PERF] `factoryFor` should cache when possible.
|
|
1310
1314
|
- [#14961](https://github.com/emberjs/ember.js/pull/14961) [BUGIX] [Fixes #14925] remove duplicate `/` in pathname
|
|
@@ -1321,7 +1325,7 @@ Fixes a few issues:
|
|
|
1321
1325
|
- [#14970](https://github.com/emberjs/ember.js/pull/14970) [BUGFIX] Generate integration tests for template helpers by default.
|
|
1322
1326
|
- [#14976](https://github.com/emberjs/ember.js/pull/14976) [BUGFIX] Remove "no use strict" workaround for old versions of iOS 8.
|
|
1323
1327
|
|
|
1324
|
-
|
|
1328
|
+
## 2.12.2 (April 27, 2017)
|
|
1325
1329
|
|
|
1326
1330
|
- [#15160](https://github.com/emberjs/ember.js/pull/15160) [BUGFIX] Ensure `Ember.Test` global is setup when including `ember-testing.js`.
|
|
1327
1331
|
- [#15142](https://github.com/emberjs/ember.js/pull/15142) / [#15163](https://github.com/emberjs/ember.js/pull/15163) [BUGFIX] Don’t leak deprecated `container`.
|
|
@@ -1329,13 +1333,13 @@ Fixes a few issues:
|
|
|
1329
1333
|
- [#15180](https://github.com/emberjs/ember.js/pull/15180) [BUGFIX] Correct `until` values for `this.container` deprecations.
|
|
1330
1334
|
|
|
1331
1335
|
|
|
1332
|
-
|
|
1336
|
+
## 2.12.1 (April 7, 2017)
|
|
1333
1337
|
|
|
1334
1338
|
- [#14961](https://github.com/emberjs/ember.js/pull/14961) [BUGIX] Remove duplicate trailing `/` in pathname.
|
|
1335
1339
|
- [#15029](https://github.com/emberjs/ember.js/pull/15029) [PERF] [BUGFIX] cache `factoryFor` injections when possible
|
|
1336
1340
|
- [#15089](https://github.com/emberjs/ember.js/pull/15089) [BUGFIX] Fixing IE and Edge issue causing action handlers to be fired twice.
|
|
1337
1341
|
|
|
1338
|
-
|
|
1342
|
+
## 2.12.0 (March 14, 2017)
|
|
1339
1343
|
|
|
1340
1344
|
- [#15000](https://github.com/emberjs/ember.js/pull/15000) / [#15002](https://github.com/emberjs/ember.js/pull/15002) / [#15006](https://github.com/emberjs/ember.js/pull/15006) / [#15008](https://github.com/emberjs/ember.js/pull/15008) / [#15009](https://github.com/emberjs/ember.js/pull/15009) / [#15011](https://github.com/emberjs/ember.js/pull/15011) [PERF] Assorted performance improvements for modern browsers.
|
|
1341
1345
|
- [#14872](https://github.com/emberjs/ember.js/pull/14872) / [#14871](https://github.com/emberjs/ember.js/pull/14871) / [#14883](https://github.com/emberjs/ember.js/pull/14883) [PERF] Simplify action event handler.
|
|
@@ -1348,7 +1352,7 @@ Fixes a few issues:
|
|
|
1348
1352
|
- [#14852](https://github.com/emberjs/ember.js/pull/14852) [PERF] only `LOG_TRANSITIONS` and `LOG_TRANSITIONS_INTERNAL` in debug
|
|
1349
1353
|
- [#14854](https://github.com/emberjs/ember.js/pull/14854) [PERF] only `LOG_ACTIVE_GENERATION` and `LOG_RESOLVER` in debug
|
|
1350
1354
|
|
|
1351
|
-
|
|
1355
|
+
## 2.11.3 (March 8, 2017)
|
|
1352
1356
|
|
|
1353
1357
|
- [#14987](https://github.com/emberjs/ember.js/pull/14987) [BUGFIX] Fix a memory leak when components are destroyed.
|
|
1354
1358
|
- [#14986](https://github.com/emberjs/ember.js/pull/14986) [BUGFIX] Fix a memory leak in RSVP.js.
|
|
@@ -1356,11 +1360,11 @@ Fixes a few issues:
|
|
|
1356
1360
|
- [#14898](https://github.com/emberjs/ember.js/pull/14898) [BUGFIX] Fix an issue where errors in tests sometimes do not cause a failure.
|
|
1357
1361
|
- [#14707](https://github.com/emberjs/ember.js/pull/14707) [BUGFIX] Improve deprecation message for unsafe `style` attribute bindings.
|
|
1358
1362
|
|
|
1359
|
-
|
|
1363
|
+
## 2.11.2 (February 19, 2017)
|
|
1360
1364
|
|
|
1361
1365
|
- [#14937](https://github.com/emberjs/ember.js/pull/14937) [BUGFIX] Fix issue preventing `ember generate *` from creating test files as appropriate.
|
|
1362
1366
|
|
|
1363
|
-
|
|
1367
|
+
## 2.11.1 (February 16, 2017)
|
|
1364
1368
|
|
|
1365
1369
|
- [#14762](https://github.com/emberjs/ember.js/pull/14762) [BUGFIX] Make ember-template-compiler handle {{input}} helpers with sub-expression "type"
|
|
1366
1370
|
- [#14791](https://github.com/emberjs/ember.js/pull/14791) [BUGFIX] exempt routes that share a controller from duplicate assertion
|
|
@@ -1370,7 +1374,7 @@ Fixes a few issues:
|
|
|
1370
1374
|
- [e94799c](https://github.com/emberjs/ember.js/commit/e94799c54cd464f5ba3642dec83f0000a52eb3b6) [BUGFIX] Update to `route-recognizer@0.2.9` to prevent errors for duplicate route name definitions in `Router.map`.
|
|
1371
1375
|
|
|
1372
1376
|
|
|
1373
|
-
|
|
1377
|
+
## 2.11.0 (January 23, 2017)
|
|
1374
1378
|
|
|
1375
1379
|
- [#14762](https://github.com/emberjs/ember.js/pull/14762) [BUGFIX] Ensure subexpressions can be used for `{{input}}`'s `type`.
|
|
1376
1380
|
- [#14723](https://github.com/emberjs/ember.js/pull/14723) [BUGFIX] Improved backtracking re-render assertion message.
|
|
@@ -1386,18 +1390,18 @@ Fixes a few issues:
|
|
|
1386
1390
|
- [#14441](https://github.com/emberjs/ember.js/pull/14441) [DEPRECATION] Deprecate remaining usage of the `{{render}}` helper.
|
|
1387
1391
|
- [#14482](https://github.com/emberjs/ember.js/pull/14482) [DEPRECATION] Deprecate `Component#renderToElement`.
|
|
1388
1392
|
|
|
1389
|
-
|
|
1393
|
+
## 2.10.2 (December 19, 2016)
|
|
1390
1394
|
|
|
1391
1395
|
- [#14685](https://github.com/emberjs/ember.js/pull/14685) [BUGFIX] Fix `this.$()` returning `undefined` in `willDestroyElement`.
|
|
1392
1396
|
- [#14717](https://github.com/emberjs/ember.js/pull/14717) [BUGFIX] Fix an issue with block params named `attrs`.
|
|
1393
1397
|
|
|
1394
|
-
|
|
1398
|
+
## 2.10.1 (December 13, 2016)
|
|
1395
1399
|
|
|
1396
1400
|
- [#14671](https://github.com/emberjs/ember.js/pull/14671) [BUGFIX] Fix an issue with the list attribute in <input> elements.
|
|
1397
1401
|
- [#14681](https://github.com/emberjs/ember.js/pull/14681) [BUGFIX] Fix an issue with computed properties when using aliases as dependent keys.
|
|
1398
1402
|
- [#14682](https://github.com/emberjs/ember.js/pull/14682) [BUGFIX] Ensure closure actions do not trigger unnecessary re-renders.
|
|
1399
1403
|
|
|
1400
|
-
|
|
1404
|
+
## 2.10.0 (November 28, 2016)
|
|
1401
1405
|
|
|
1402
1406
|
- [#14293](https://github.com/emberjs/ember.js/pull/14293) [BUGFIX] Remove style warning when the binding is quoted.
|
|
1403
1407
|
- [#12708](https://github.com/emberjs/ember.js/pull/12708) [BUGFIX] Improve compatibility between `Ember.isArray` and the native `Array.isArray` for `FileList`.
|
|
@@ -1411,29 +1415,29 @@ Fixes a few issues:
|
|
|
1411
1415
|
- [#14520](https://github.com/emberjs/ember.js/pull/14520) [BUGFIX] Ensure local variables (block params) have higher precedence over helpers.
|
|
1412
1416
|
- [#14156](https://github.com/emberjs/ember.js/pull/14156) [FEATURE ember-glimmer] Enable by default.
|
|
1413
1417
|
|
|
1414
|
-
|
|
1418
|
+
## 2.9.1 (November 1, 2016)
|
|
1415
1419
|
|
|
1416
1420
|
- [#14528](https://github.com/emberjs/ember.js/pull/14528) [BUGFIX] Fix memory leak (leaking component instances in the component registry).
|
|
1417
1421
|
- [#14509](https://github.com/emberjs/ember.js/pull/14509) [BUGFIX] Fix overwriting rest positional parameters when passed as named parameters. Allows `link-to` to be used as a contextual component.
|
|
1418
1422
|
- [#14550](https://github.com/emberjs/ember.js/pull/14550) [BUGFIX] Allow canceling items queued by `run.schedule`.
|
|
1419
1423
|
|
|
1420
|
-
|
|
1424
|
+
## 2.9.0 (October 17, 2016)
|
|
1421
1425
|
|
|
1422
1426
|
- No changes from 2.8.2.
|
|
1423
1427
|
|
|
1424
|
-
|
|
1428
|
+
## 2.8.3 (November 1, 2016)
|
|
1425
1429
|
|
|
1426
1430
|
- [#14528](https://github.com/emberjs/ember.js/pull/14528) [BUGFIX] Fix memory leak (leaking component instances in the component registry).
|
|
1427
1431
|
- [#14509](https://github.com/emberjs/ember.js/pull/14509) [BUGFIX] Fix overwriting rest positional parameters when passed as named parameters. Allows `link-to` to be used as a contextual component.
|
|
1428
1432
|
- [#14550](https://github.com/emberjs/ember.js/pull/14550) [BUGFIX] Allow canceling items queued by `run.schedule`.
|
|
1429
1433
|
|
|
1430
|
-
|
|
1434
|
+
## 2.8.2 (October 6, 2016)
|
|
1431
1435
|
|
|
1432
1436
|
- [#14365](https://github.com/emberjs/ember.js/pull/14365) [BUGFIX] Fix an issue with URLs with encoded characters and a trailing slash.
|
|
1433
1437
|
- [#14382](https://github.com/emberjs/ember.js/pull/14382) [BUGFIX] Allow bound `id` on tagless components.
|
|
1434
1438
|
- [#14421](https://github.com/emberjs/ember.js/pull/14421) [BUGFIX] Fix an issue with local components lookup.
|
|
1435
1439
|
|
|
1436
|
-
|
|
1440
|
+
## 2.8.1 (September 14, 2016)
|
|
1437
1441
|
|
|
1438
1442
|
- [#14184](https://github.com/emberjs/ember.js/pull/14184) [BUGFIX] Ensure that promises that reject with non Errors (i.e. something without a `.stack`) do not trigger an error during Ember's internal error processing.
|
|
1439
1443
|
- [#14237](https://github.com/emberjs/ember.js/pull/14237) [BUGFIX] Ensure Engine Routes are deactivated before destruction.
|
|
@@ -1443,7 +1447,7 @@ Fixes a few issues:
|
|
|
1443
1447
|
- [#14281](https://github.com/emberjs/ember.js/pull/14281) [BUGFIX] Prevent errors from scheduling a rerender (by setting a property in `willDestroyElement`) after a component is destroyed.
|
|
1444
1448
|
- [#14291](https://github.com/emberjs/ember.js/pull/14291) [BUGFIX] Fix component action bubbling semantics. Actions should not bubble out of a component when returning `true`.
|
|
1445
1449
|
|
|
1446
|
-
|
|
1450
|
+
## 2.8.0 (September 8, 2016)
|
|
1447
1451
|
|
|
1448
1452
|
- [#14229](https://github.com/emberjs/ember.js/pull/14229) [BUGFIX] Fix boot errors with `location: 'auto'` when using IE9.
|
|
1449
1453
|
- [#14219](https://github.com/emberjs/ember.js/pull/14219) [BUGFIX] Fix issue with template meta (i.e. compiled template `moduleName`) was being mutated during the rendering process.
|
|
@@ -1475,22 +1479,22 @@ Fixes a few issues:
|
|
|
1475
1479
|
- [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-runtime-enumerable-includes] Enable by default.
|
|
1476
1480
|
- [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-testing-check-waiters] Enable by default.
|
|
1477
1481
|
|
|
1478
|
-
|
|
1482
|
+
## 2.7.3 (September 6, 2016)
|
|
1479
1483
|
|
|
1480
1484
|
- [#14219](https://github.com/emberjs/ember.js/pull/14219) [BUGFIX] Fix issue with mutating template's metadata.
|
|
1481
1485
|
|
|
1482
|
-
|
|
1486
|
+
## 2.7.2 (August 30, 2016)
|
|
1483
1487
|
|
|
1484
1488
|
- [#13895](https://github.com/emberjs/ember.js/pull/13895) [BUGFIX] Fix template meta lookup with tagless and blockless components.
|
|
1485
1489
|
- [#14075](https://github.com/emberjs/ember.js/pull/14075) [BUGFIX] In which we revert route-recognizer to the version used in Ember 2.6. 😢
|
|
1486
1490
|
|
|
1487
|
-
|
|
1491
|
+
## 2.7.1 (August 15, 2016)
|
|
1488
1492
|
|
|
1489
1493
|
- [#13920](https://github.com/emberjs/ember.js/pull/13920) [BUGFIX] Add more info to the `Ember.Binding` deprecation.
|
|
1490
1494
|
- [#14058](https://github.com/emberjs/ember.js/pull/14058) [BUGFIX] Fix issues related to `Ember.Router.map` changes in 2.7.0.
|
|
1491
1495
|
- [#14068](https://github.com/emberjs/ember.js/pull/14068) [BUGFIX] Prevent errors when clicking a `{{link-to}}` during an existing transition.
|
|
1492
1496
|
|
|
1493
|
-
|
|
1497
|
+
## 2.7.0 (July 25, 2016)
|
|
1494
1498
|
|
|
1495
1499
|
- [#13764](https://github.com/emberjs/ember.js/pull/13764) [BUGFIX] Keep rest positional parameters when nesting contextual components if needed.
|
|
1496
1500
|
- [#13781](https://github.com/emberjs/ember.js/pull/13781) [BUGFIX] Fix NoneLocation#getURL
|
|
@@ -1505,18 +1509,18 @@ Fixes a few issues:
|
|
|
1505
1509
|
- [#13424](https://github.com/emberjs/ember.js/pull/13424) [DEPRECATE] Deprecate Ember.Binding. See [the deprecation guide](https://emberjs.com/deprecations/v2.x/#toc_ember-binding) for more details.
|
|
1506
1510
|
- [#13599](https://github.com/emberjs/ember.js/pull/13599) [FEATURE] Enable `ember-runtime-computed-uniq-by` feature.
|
|
1507
1511
|
|
|
1508
|
-
|
|
1512
|
+
## 2.6.2 (July 11, 2016)
|
|
1509
1513
|
|
|
1510
1514
|
- [#13781](https://github.com/emberjs/ember.js/pull/13781) [BUGFIX] Fix NoneLocation#getURL
|
|
1511
1515
|
- [#13797](https://github.com/emberjs/ember.js/pull/13797) [BUGFIX] Ensure didInitAttrs deprecation is stripped in prod.
|
|
1512
1516
|
|
|
1513
|
-
|
|
1517
|
+
## 2.6.1 (June 27, 2016)
|
|
1514
1518
|
|
|
1515
1519
|
- [#13634](https://github.com/emberjs/ember.js/pull/13634) [BUGFIX] Fix issues with rerendering blockless and tagless components.
|
|
1516
1520
|
- [#13655](https://github.com/emberjs/ember.js/pull/13655) [BUGFIX] Make debugging `this._super` much easier (remove manual `.call` / `.apply` optimizations).
|
|
1517
1521
|
- [#13672](https://github.com/emberjs/ember.js/pull/13672) [BUGFIX] Fix issue with `this.render` and `this.disconnectOutlet` in routes.
|
|
1518
1522
|
|
|
1519
|
-
|
|
1523
|
+
## 2.6.0 (June 8, 2016)
|
|
1520
1524
|
|
|
1521
1525
|
- [#13520](https://github.com/emberjs/ember.js/pull/13520) [BUGFIX] Fixes issues with `baseURL` and `rootURL` in `Ember.HistoryLocation` and ensures that `Ember.NoneLocation` properly handles `rootURL`.
|
|
1522
1526
|
- [#13590](https://github.com/emberjs/ember.js/pull/13590) [BUGFIX] Avoid `_lazyInjections` in production builds.
|
|
@@ -1550,7 +1554,7 @@ Fixes a few issues:
|
|
|
1550
1554
|
- [#13285](https://github.com/emberjs/ember.js/pull/13285) [BUGFIX] Make `Enumerable#firstObject` read only.
|
|
1551
1555
|
- [#13289](https://github.com/emberjs/ember.js/pull/13289) [BUGFIX] Make `Enumerable#lastObject` read only.
|
|
1552
1556
|
|
|
1553
|
-
|
|
1557
|
+
## 2.5.1 (April 21, 2016)
|
|
1554
1558
|
|
|
1555
1559
|
- [#13310](https://github.com/emberjs/ember.js/pull/13310) [BUGFIX] Fix `mouseenter` typo in ember-testing helpers.
|
|
1556
1560
|
- [#13333](https://github.com/emberjs/ember.js/pull/13333) [BUGFIX] Prevent the `toString` property from being added to the objects own
|
|
@@ -1559,7 +1563,7 @@ Fixes a few issues:
|
|
|
1559
1563
|
with usage of objects created by older addons that are attempting to use `Ember.inject.service()`.
|
|
1560
1564
|
- [#13344](https://github.com/emberjs/ember.js/pull/13344) [BUGFIX] Revert `Ember.merge` deprecation.
|
|
1561
1565
|
|
|
1562
|
-
|
|
1566
|
+
## 2.5.0 (April 11, 2016)
|
|
1563
1567
|
|
|
1564
1568
|
- [#13239](https://github.com/emberjs/ember.js/pull/13239) [BUGFIX] Prevent warnings for unknown feature flags
|
|
1565
1569
|
- [#13287](https://github.com/emberjs/ember.js/pull/13287) [BUGFIX] Fix a recent regression with `Ember.A(null)`
|
|
@@ -1574,12 +1578,12 @@ Fixes a few issues:
|
|
|
1574
1578
|
- [#13024](https://github.com/emberjs/ember.js/pull/13024) [BUGFIX] Change internal async acceptance test helpers to be somewhat more efficient in determining router transition status.
|
|
1575
1579
|
- [FEATURE] Add helper method named `Ember.assign` to roughly emulate `Object.assign`.
|
|
1576
1580
|
|
|
1577
|
-
|
|
1581
|
+
## 2.4.5 (April 11, 2016)
|
|
1578
1582
|
|
|
1579
1583
|
- [#13239](https://github.com/emberjs/ember.js/pull/13239) [BUGFIX] Prevent warnings for unknown feature flags.
|
|
1580
1584
|
- [#13294](https://github.com/emberjs/ember.js/pull/13294) [DEPRECATE] Deprecate usage of `{{render}}` with a block.
|
|
1581
1585
|
|
|
1582
|
-
|
|
1586
|
+
## 2.4.4 (April 3, 2016)
|
|
1583
1587
|
|
|
1584
1588
|
- [#13177](https://github.com/emberjs/ember.js/pull/13177) [BUGFIX] Allow contextual component attributes are mutable (allowing for two way binding).
|
|
1585
1589
|
- [#13185](https://github.com/emberjs/ember.js/pull/13185) [BUGFIX] Ensure `{{render}}` sets up target properly (fixes issues with `{{render}}`'ed templates using actions).
|
|
@@ -1587,20 +1591,20 @@ Fixes a few issues:
|
|
|
1587
1591
|
- [#13218](https://github.com/emberjs/ember.js/pull/13218) [BUGFIX] Do not refresh routes on initial transition.
|
|
1588
1592
|
- [#13228](https://github.com/emberjs/ember.js/pull/13228) [BUGFIX] re-enable link-to when disabledWhen changes values.
|
|
1589
1593
|
|
|
1590
|
-
|
|
1594
|
+
## 2.4.3 (March 17, 2016)
|
|
1591
1595
|
|
|
1592
1596
|
- [#13118](https://github.com/emberjs/ember.js/pull/13118) [BUGFIX] Work around Chrome 49/50 optimization bug affecting helper usage.
|
|
1593
1597
|
|
|
1594
|
-
|
|
1598
|
+
## 2.4.2 (March 8, 2016)
|
|
1595
1599
|
|
|
1596
1600
|
- [#13031](https://github.com/emberjs/ember.js/pull/13031) [BUGFIX] Fix mergedProperties at create time modifying proto
|
|
1597
1601
|
- [#13049](https://github.com/emberjs/ember.js/pull/13049) [BUGFIX] Fixes `{{#with proxy as |foo|}}`
|
|
1598
1602
|
|
|
1599
|
-
|
|
1603
|
+
## 2.4.1 (February 29, 2016)
|
|
1600
1604
|
|
|
1601
1605
|
- [#13030](https://github.com/emberjs/ember.js/pull/13030) [BUGFIX] Fix legacy addon deprecations
|
|
1602
1606
|
|
|
1603
|
-
|
|
1607
|
+
## 2.4.0 (February 29, 2016)
|
|
1604
1608
|
|
|
1605
1609
|
- [#12996](https://github.com/emberjs/ember.js/pull/12996) [BUGFIX] Fixes 12995 #with array yields true
|
|
1606
1610
|
- [#13013](https://github.com/emberjs/ember.js/pull/13013) [BUGFIX] Do not set model on `{{render}}` rerender when only a single argument was provided.
|
|
@@ -1628,11 +1632,11 @@ Fixes a few issues:
|
|
|
1628
1632
|
- [#12664](https://github.com/emberjs/ember.js/pull/12664) Include NaN as a falsey value in the `with` helper's docstring
|
|
1629
1633
|
- [#12698](https://github.com/emberjs/ember.js/pull/12698) convert all this._super.apply(this, arguments) to this._super(...arguments)
|
|
1630
1634
|
|
|
1631
|
-
|
|
1635
|
+
## v2.3.2 (March 17, 2016)
|
|
1632
1636
|
|
|
1633
1637
|
- [#13118](https://github.com/emberjs/ember.js/pull/13118) [BUGFIX] Work around Chrome 49/50 optimization bug affecting helper usage.
|
|
1634
1638
|
|
|
1635
|
-
|
|
1639
|
+
## v2.3.1 (February 4, 2016)
|
|
1636
1640
|
|
|
1637
1641
|
- [#12829](https://github.com/emberjs/ember.js/pull/12829) [BUGFIX] Support tagless components in fastboot.
|
|
1638
1642
|
- [#12848](https://github.com/emberjs/ember.js/pull/12848) Make dependencies that end in `@each` expand to `[]`.
|
|
@@ -1640,7 +1644,7 @@ Fixes a few issues:
|
|
|
1640
1644
|
- [#12908](https://github.com/emberjs/ember.js/pull/12908) [BUGFIX] Fix issue that prevented recomputation of `ArrayProxy` values under certain circumstances.
|
|
1641
1645
|
|
|
1642
1646
|
|
|
1643
|
-
|
|
1647
|
+
## 2.3.0 (January 17, 2016)
|
|
1644
1648
|
|
|
1645
1649
|
- [#12712](https://github.com/emberjs/ember.js/pull/12712) [BUGFIX] Create a new hash parameter when creating a component cell
|
|
1646
1650
|
- [#12746](https://github.com/emberjs/ember.js/pull/12746) [BUGFIX] Update htmlbars to 0.14.11 to fix [CVE-2015-7565](https://emberjs.com/blog/2016/01/14/security-releases-ember-1-11-4-1-12-2-1-13-12-2-0-3-2-1-2-2-2-1.html).
|
|
@@ -1672,7 +1676,7 @@ Fixes a few issues:
|
|
|
1672
1676
|
- [#12485](https://github.com/emberjs/ember.js/pull/12485) [BUGFIX] Access property only once during `Ember.get`.
|
|
1673
1677
|
- [#12503](https://github.com/emberjs/ember.js/pull/12503) Add helpful assertion when a tagless component includes event handler methods.
|
|
1674
1678
|
|
|
1675
|
-
|
|
1679
|
+
## v2.2.0 (November 16, 2015)
|
|
1676
1680
|
|
|
1677
1681
|
- [#12600](https://github.com/emberjs/ember.js/pull/12600) [BUGFIX beta] Guard against `null` `attrs` in `getRoot` hook.
|
|
1678
1682
|
- [#12445](https://github.com/emberjs/ember.js/pull/12445) [BUGFIX] Ensure rest arg positionalParams can be supplied as hash arguments.
|
|
@@ -1691,14 +1695,14 @@ Fixes a few issues:
|
|
|
1691
1695
|
- [#12370](https://github.com/emberjs/ember.js/pull/12370) [DEPRECATION] Deprecate passing function as test argument to `Ember.deprecate` / `Ember.warn` / `Ember.assert`.
|
|
1692
1696
|
- [#12416](https://github.com/emberjs/ember.js/pull/12416) [BUGFIX] Ensure components actions function without controller addon.
|
|
1693
1697
|
|
|
1694
|
-
|
|
1698
|
+
## v2.1.1 (November 16, 2015)
|
|
1695
1699
|
|
|
1696
1700
|
- [#12445](https://github.com/emberjs/ember.js/pull/12445) [BUGFIX] Ensure rest arg style positionalParams can be omitted.
|
|
1697
1701
|
- [#12456](https://github.com/emberjs/ember.js/pull/12456) [BUGFIX]Allow usage of bound properties in `{{link-to}}` for `bubbles`, `preventDefault`, `target`, `replace`, and `disabledWhen`.
|
|
1698
1702
|
- [#12463](https://github.com/emberjs/ember.js/pull/12463) [BUGFIX] Fix uglification introduced bug with super wrapping.
|
|
1699
1703
|
- [#12464](https://github.com/emberjs/ember.js/pull/12464) [BUGFIX] `Ember.String.htmlSafe()` should return a instance of SafeString for `null` / `undefined`.
|
|
1700
1704
|
|
|
1701
|
-
|
|
1705
|
+
## v2.1.0 (October 5, 2015)
|
|
1702
1706
|
|
|
1703
1707
|
- [#12396](https://github.com/emberjs/ember.js/pull/12396) [BUGFIX] Ensure that `this._super` is called when extending from `Ember.Component`.
|
|
1704
1708
|
- [#12383](https://github.com/emberjs/ember.js/pull/12383) [BUGFIX] Fix `Ember.String.classify` to underscore items with a leading dash/underscore.
|
|
@@ -1738,7 +1742,7 @@ Fixes a few issues:
|
|
|
1738
1742
|
- [#11440](https://github.com/emberjs/ember.js/pull/11440) [DEPRECATION] Deprecate using `instance.container.lookup` on first argument to `instanceInitializers`. Use `instance.lookup` instead.
|
|
1739
1743
|
- [#11440](https://github.com/emberjs/ember.js/pull/11440) [DEPRECATION] Deprecate passing two arguments to an initializers `initialize` function.
|
|
1740
1744
|
|
|
1741
|
-
|
|
1745
|
+
## 2.0.0 (August 13, 2015)
|
|
1742
1746
|
|
|
1743
1747
|
- [#11213](https://github.com/emberjs/ember.js/pull/11213) [BREAKING] Remove chaining in Observable.set
|
|
1744
1748
|
- [#12036](https://github.com/emberjs/ember.js/pull/12036) Cleanup CP Set and Volatile
|
|
@@ -1866,17 +1870,17 @@ Fixes a few issues:
|
|
|
1866
1870
|
- [#11383](https://github.com/emberjs/ember.js/pull/11383) Update {{each-in}} to use ember-metal/should-display.
|
|
1867
1871
|
- [#11396](https://github.com/emberjs/ember.js/pull/11396) Make Ember.Checkbox extend from Ember.Component.
|
|
1868
1872
|
|
|
1869
|
-
|
|
1873
|
+
## 1.13.13 (January 17, 2016)
|
|
1870
1874
|
|
|
1871
1875
|
- [12793](https://github.com/emberjs/ember.js/pull/12793) [BUGFIX] Remove jQuery version assertion/error.
|
|
1872
1876
|
- [#12414](https://github.com/emberjs/ember.js/pull/12414) [BUGFIX] Fix multiplicative observation of controllers in views
|
|
1873
1877
|
- [#12784](https://github.com/emberjs/ember.js/pull/12784) [BUGFIX] Prevent `classNames` from being duplicated.
|
|
1874
1878
|
|
|
1875
|
-
|
|
1879
|
+
## 1.13.12 (January 14, 2016)
|
|
1876
1880
|
|
|
1877
1881
|
- [CVE-2015-7565](https://emberjs.com/blog/2016/01/14/security-releases-ember-1-11-4-1-12-2-1-13-12-2-0-3-2-1-2-2-2-1.html)
|
|
1878
1882
|
|
|
1879
|
-
|
|
1883
|
+
## 1.13.11 (November 16, 2015)
|
|
1880
1884
|
|
|
1881
1885
|
- [#12334](https://github.com/emberjs/ember.js/pull/12334) [BUGFIX] Fix for Array.prototype.filter polyfill on IE8.
|
|
1882
1886
|
- [#12344](https://github.com/emberjs/ember.js/pull/12344) [BUGFIX] Allow `{{link-to}}`'s `current-when` param be specified as a bound value.
|
|
@@ -1885,18 +1889,18 @@ Fixes a few issues:
|
|
|
1885
1889
|
- [#12481](https://github.com/emberjs/ember.js/pull/12481) [BUGFIX] Add deprecation options to some 1.13 deprecations (to make handling with ember-cli-deprecation-workflow easier).
|
|
1886
1890
|
- [#12596](https://github.com/emberjs/ember.js/pull/12596) [BUGFIX] Fix `{{input}}` helper on IE8.
|
|
1887
1891
|
|
|
1888
|
-
|
|
1892
|
+
## 1.13.10 (September 6, 2015)
|
|
1889
1893
|
|
|
1890
1894
|
- [#12104](https://github.com/emberjs/ember.js/pull/12104) [BUGFIX] Ensure `concatenatedProperties` are not stomped.
|
|
1891
1895
|
- [#12256](https://github.com/emberjs/ember.js/pull/12256) [BUGFIX] Ensure concat streams unsubscribe properly. Fixes memory leak with attributes specified within quotes in the template (i.e. `<div data-foo="{{something}}"></div>`).
|
|
1892
1896
|
- [#12272](https://github.com/emberjs/ember.js/pull/12272) [BUGFIX] Update HTMLBars to fix memory leak when an `{{each}}` is inside an `{{if}}`.
|
|
1893
1897
|
|
|
1894
|
-
|
|
1898
|
+
## 1.13.9 (August 22, 2015)
|
|
1895
1899
|
|
|
1896
1900
|
- [#12138](https://github.com/emberjs/ember.js/pull/12138) [BUGFIX] Do not require calling `this._super(...arguments)` in views/components when implementing `didReceiveAttrs`.
|
|
1897
1901
|
- [#12164](https://github.com/emberjs/ember.js/pull/12164) [BUGFIX] Properly handle block-less usage of a component without a template or layout specified in the component definition.
|
|
1898
1902
|
|
|
1899
|
-
|
|
1903
|
+
## 1.13.8 (August 13, 2015)
|
|
1900
1904
|
|
|
1901
1905
|
- [#12056](https://github.com/emberjs/ember.js/pull/12056) [BUGFIX] Ensure initializers can augment `customEvents`.
|
|
1902
1906
|
- [#12037](https://github.com/emberjs/ember.js/pull/12037) [BUGFIX] Fix error in some query params scenarios.
|
|
@@ -1906,7 +1910,7 @@ Fixes a few issues:
|
|
|
1906
1910
|
- [#12071](https://github.com/emberjs/ember.js/pull/12071) [BUGFIX] Fix issue with accessing component attributes before initial render.
|
|
1907
1911
|
- [#12073](https://github.com/emberjs/ember.js/pull/12073) [BUGFIX] Fix issue with events when invoking a component and specifying `classNames=`.
|
|
1908
1912
|
|
|
1909
|
-
|
|
1913
|
+
## 1.13.7 (August 9, 2015)
|
|
1910
1914
|
|
|
1911
1915
|
- [#12000](https://github.com/emberjs/ember.js/pull/12000) [DEPRECATION] Deprecate using `controller` for {{with}}
|
|
1912
1916
|
- [#11946](https://github.com/emberjs/ember.js/pull/11946) [PERF] Speed up `AttrProxy` implementation.
|
|
@@ -1920,7 +1924,7 @@ Fixes a few issues:
|
|
|
1920
1924
|
- [#11994](https://github.com/emberjs/ember.js/pull/11994) [DEPRECATION] Deprecate using `@each` as a leaf node in a dependent key. Refactor from `Ember.computed('foo.@each', function() {});` to `Ember.computed('foo.[]', function() { });`.
|
|
1921
1925
|
- [#12026](https://github.com/emberjs/ember.js/pull/12026) [BUGFIX] Remove wasted dependent keys for `template` and `layout` properties of `Ember.View`/`Ember.Component`.
|
|
1922
1926
|
|
|
1923
|
-
|
|
1927
|
+
## 1.13.6 (July 31, 2015)
|
|
1924
1928
|
|
|
1925
1929
|
- [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.makeViewHelper`.
|
|
1926
1930
|
- [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.HTMLBars.makeViewHelper`.
|
|
@@ -1942,7 +1946,7 @@ Fixes a few issues:
|
|
|
1942
1946
|
- [#11934](https://github.com/emberjs/ember.js/pull/11934) [DEPRECATION] Deprecate specifying `positionalParams` at extend time in favor of using static factory properties.
|
|
1943
1947
|
- [#11935](https://github.com/emberjs/ember.js/pull/11935) [BUGFIX] Avoid unnecessary change events during initial render.
|
|
1944
1948
|
|
|
1945
|
-
|
|
1949
|
+
## 1.13.5 (July 19, 2015)
|
|
1946
1950
|
|
|
1947
1951
|
- [#11767](https://github.com/emberjs/ember.js/pull/11767) [DEPRECATION] Deprecate Controller#needs
|
|
1948
1952
|
- [#11468](https://github.com/emberjs/ember.js/pull/11468) [DEPRECATION] Deprecate `Ember.Freezable` and `frozenCopy`.
|
|
@@ -1954,7 +1958,7 @@ Fixes a few issues:
|
|
|
1954
1958
|
- [#11798](https://github.com/emberjs/ember.js/pull/11798) [DEPRECATION] Deprecate `Function#observesBefore`.
|
|
1955
1959
|
- [#11812](https://github.com/emberjs/ember.js/pull/11812) [DEPRECATION] Add deprecation messages when using `Ember.get` / `Ember.set` in a certain ways.
|
|
1956
1960
|
|
|
1957
|
-
|
|
1961
|
+
## 1.13.4 (July 13, 2015)
|
|
1958
1962
|
|
|
1959
1963
|
- [#11651](https://github.com/emberjs/ember.js/pull/11651) [BUGFIX] Ensure child views of non-dirty components get the correct parentView when rerendered.
|
|
1960
1964
|
- [#11662](https://github.com/emberjs/ember.js/pull/11662) [BUGFIX] Prevent ArrayController deprecation on generated controllers.
|
|
@@ -1962,7 +1966,7 @@ Fixes a few issues:
|
|
|
1962
1966
|
- [#11664](https://github.com/emberjs/ember.js/pull/11664) [BUGFIX] Ensure Route actions can be unit tested.
|
|
1963
1967
|
- [#11667](https://github.com/emberjs/ember.js/pull/11667) [BUGFIX] Fix memory leak in rendering engine.
|
|
1964
1968
|
|
|
1965
|
-
|
|
1969
|
+
## 1.13.3 (July 5, 2015)
|
|
1966
1970
|
|
|
1967
1971
|
- [#11510](https://github.com/emberjs/ember.js/pull/11510) [DEPRECATION] Deprecate `Ember.Object.createWithMixins`.
|
|
1968
1972
|
- [#11512](https://github.com/emberjs/ember.js/pull/11512) [DEPRECATION] Deprecate `Ember.oneWay` in favor of `Ember.computed.oneWay`.
|
|
@@ -1981,12 +1985,12 @@ Fixes a few issues:
|
|
|
1981
1985
|
* for `form.action` always escape
|
|
1982
1986
|
* always assign handlers to props, even if the case appears strange
|
|
1983
1987
|
|
|
1984
|
-
|
|
1988
|
+
## 1.13.2 (June 17, 2015)
|
|
1985
1989
|
|
|
1986
1990
|
- [#11461](https://github.com/emberjs/ember.js/pull/11461) Remove `{{each}}` without `key=` warning. Deprecates `@guid` and `@item` in favor of the new default `@identity`.
|
|
1987
1991
|
- [#11495](https://github.com/emberjs/ember.js/pull/11495) [PERFORMANCE] Remove debug statements from production builds.
|
|
1988
1992
|
|
|
1989
|
-
|
|
1993
|
+
## 1.13.1 (June 16, 2015)
|
|
1990
1994
|
|
|
1991
1995
|
- [#11445](https://github.com/emberjs/ember.js/pull/11445) [BUGFIX] Allow recomputation for `Ember.Helper` with arguments.
|
|
1992
1996
|
- [#11317](https://github.com/emberjs/ember.js/pull/11317) [BUGFIX] Ensure handleURL called after setURL in visit helper.
|
|
@@ -1994,7 +1998,7 @@ Fixes a few issues:
|
|
|
1994
1998
|
- [#11476](https://github.com/emberjs/ember.js/pull/11476) [DEPRECATION] Deprecate `Ember.ArrayController`.
|
|
1995
1999
|
- [#11478](https://github.com/emberjs/ember.js/pull/11478) [DEPRECATION] Deprecate `Ember.RenderBuffer`.
|
|
1996
2000
|
|
|
1997
|
-
|
|
2001
|
+
## 1.13.0 (June 12, 2015)
|
|
1998
2002
|
|
|
1999
2003
|
- [#11270](https://github.com/emberjs/ember.js/pull/11270) [BUGFIX] Ensure view registry is propagated to components.
|
|
2000
2004
|
- [#11273](https://github.com/emberjs/ember.js/pull/11273) [BUGFIX] Downgrade Ember.Service without proper inheritance to a deprecation (instead of an assertion).
|
|
@@ -2054,7 +2058,7 @@ Fixes a few issues:
|
|
|
2054
2058
|
- [#11084](https://github.com/emberjs/ember.js/pull/11084) Enable {{yield to="inverse"}} in components.
|
|
2055
2059
|
- [#11141](https://github.com/emberjs/ember.js/pull/11141) Implement angle-bracket components.
|
|
2056
2060
|
|
|
2057
|
-
|
|
2061
|
+
## 1.12.0 (May 13, 2015)
|
|
2058
2062
|
|
|
2059
2063
|
- [#10874](https://github.com/emberjs/ember.js/pull/10874) Include all files in jspm package.
|
|
2060
2064
|
- [#10876](https://github.com/emberjs/ember.js/pull/10876) [BUGFIX] Make the `{{component}}` helper deal with dynamically set falsey values.
|
|
@@ -2082,7 +2086,7 @@ Fixes a few issues:
|
|
|
2082
2086
|
- [#10731](https://github.com/emberjs/ember.js/pull/10731) [FEATURE] Enable `ember-application-instance-initializers` feature.
|
|
2083
2087
|
- [#10731](https://github.com/emberjs/ember.js/pull/10731) [FEATURE] Enable `ember-application-initializer-context` feature.
|
|
2084
2088
|
|
|
2085
|
-
|
|
2089
|
+
## 1.11.0 (March 28, 2015)
|
|
2086
2090
|
|
|
2087
2091
|
- [#10736](https://github.com/emberjs/ember.js/pull/10736) [BUGFIX] Fix issue with Query Params when using `Ember.ObjectController` (regression from `ObjectController` deprecation).
|
|
2088
2092
|
- [#10726](https://github.com/emberjs/ember.js/pull/10726) / [router.js#ed45bc](https://github.com/tildeio/router.js/commit/ed45bc5c5e055af0ab875ef2c52feda792ee23e4) [BUGFIX] Fix issue with nested `{{link-to}}` active and transition classes getting out of sync.
|
|
@@ -2142,7 +2146,7 @@ Fixes a few issues:
|
|
|
2142
2146
|
- [#10353](https://github.com/emberjs/ember.js/pull/10353) Avoid creating context bindings for collection views [@mmun](https://github.com/mmun)
|
|
2143
2147
|
- [#10093](https://github.com/emberjs/ember.js/pull/10093) [FEATURE] Implement {{component}} helper [@lukemelia](https://github.com/lukemelia)
|
|
2144
2148
|
|
|
2145
|
-
|
|
2149
|
+
## 1.10.0 (February 7, 2015)
|
|
2146
2150
|
|
|
2147
2151
|
* [BUGFIX] Ensure that property case is normalized.
|
|
2148
2152
|
* [BUGFIX] Prevent an error from being thrown if the errorThrown property is a string when catching unhandled promise rejections.
|
|
@@ -2214,12 +2218,12 @@ Fixes a few issues:
|
|
|
2214
2218
|
* [FEATURE] ember-htmlbars - Enable the HTMLBars rendering engine.
|
|
2215
2219
|
* [FEATURE] ember-htmlbars-block-params - Enable block params feature for HTMLBars.
|
|
2216
2220
|
|
|
2217
|
-
|
|
2221
|
+
## 1.9.1 (December 23, 2014)
|
|
2218
2222
|
|
|
2219
2223
|
* Allow `{{view}}` helper to properly handle view instances.
|
|
2220
2224
|
* Escape `href`, `src`, and `background` attributes for `a`, `link`, `img`, and `iframe` elements.
|
|
2221
2225
|
|
|
2222
|
-
|
|
2226
|
+
## 1.9.0 (December 8, 2014)
|
|
2223
2227
|
|
|
2224
2228
|
* Add deprecation for quoteless outlet names (`{{outlet main}}` should be `{{outlet 'main'}}`).
|
|
2225
2229
|
* [BUGFIX] Update the `Ember.Map#forEach` callback to include the map being iterated over.
|
|
@@ -2262,7 +2266,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2262
2266
|
* [FEATURE] ember-testing-pause-test.
|
|
2263
2267
|
|
|
2264
2268
|
|
|
2265
|
-
|
|
2269
|
+
## Ember 1.8.1 (November, 4, 2014)
|
|
2266
2270
|
|
|
2267
2271
|
* [BUGFIX] Make sure that `{{view}}` can accept a Ember.View instance.
|
|
2268
2272
|
* [BUGFIX] Throw an assertion if `classNameBindings` are specified on a tag-less view.
|
|
@@ -2271,7 +2275,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2271
2275
|
* [BUGFIX] Add support for null prototype object to mandatory setter code. Prevents errors when operating on Ember Data `meta` objects.
|
|
2272
2276
|
* [BUGFIX] Fix an issue with select/each that causes the last item rendered to be selected.
|
|
2273
2277
|
|
|
2274
|
-
|
|
2278
|
+
## Ember 1.8.0 (October, 28, 2014)
|
|
2275
2279
|
|
|
2276
2280
|
* [BUGFIX] Ensure published builds do not use `define` or `require` internally.
|
|
2277
2281
|
* [BUGFIX] Remove strict mode for Object.create usage to work around an [iOS bug](https://bugs.webkit.org/show_bug.cgi?id=138038).
|
|
@@ -2342,7 +2346,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2342
2346
|
* [BREAKING] Ember.View didInsertElement is now called on child views before their parents. Before
|
|
2343
2347
|
1.8.0-beta.1 it would be called top-down.
|
|
2344
2348
|
|
|
2345
|
-
|
|
2349
|
+
## Ember 1.7.0 (August 19, 2014)
|
|
2346
2350
|
|
|
2347
2351
|
* Update `Ember.computed.notEmpty` to properly respect arrays.
|
|
2348
2352
|
* Bind `tabindex` property on LinkView.
|
|
@@ -2392,12 +2396,12 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2392
2396
|
caveats with model/content, and also sets a simple ground rule: Never set a controllers content,
|
|
2393
2397
|
rather always set it's model and ember will do the right thing.
|
|
2394
2398
|
|
|
2395
|
-
|
|
2399
|
+
## Ember 1.6.1 (July, 15, 2014)
|
|
2396
2400
|
|
|
2397
2401
|
* Fix error routes/templates. Changes in router promise logging caused errors to be
|
|
2398
2402
|
thrown mid-transition into the `error` route. See [#5166](https://github.com/emberjs/ember.js/pull/5166) for further details.
|
|
2399
2403
|
|
|
2400
|
-
|
|
2404
|
+
## Ember 1.6.0 (July, 7, 2014)
|
|
2401
2405
|
|
|
2402
2406
|
* [BREAKING BUGFIX] An empty array is treated as falsy value in `bind-attr` to be in consistent
|
|
2403
2407
|
with `if` helper. Breaking for apps that relies on the previous behavior which treats an empty
|
|
@@ -2444,7 +2448,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2444
2448
|
* [FEATURE ember-runtime-test-friendly-promises]
|
|
2445
2449
|
* [FEATURE ember-metal-computed-empty-array]
|
|
2446
2450
|
|
|
2447
|
-
|
|
2451
|
+
## Ember 1.5.0 (March 29, 2014)
|
|
2448
2452
|
|
|
2449
2453
|
* [BUGFIX beta] Move reduceComputed instanceMetas into object's meta.
|
|
2450
2454
|
* [BUGFIX beta] Total invalidation of arrayComputed by non-array dependencies should be synchronous.
|
|
@@ -2476,7 +2480,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2476
2480
|
* [BREAKING CHANGE] `Ember.run.throttle` now supports leading edge execution. To follow industry standard leading edge is the default.
|
|
2477
2481
|
* [BUGFIX] Fixed how parentController property of an itemController when nested. Breaking for apps that rely on previous broken behavior of an itemController's `parentController` property skipping its ArrayController when nested.
|
|
2478
2482
|
|
|
2479
|
-
|
|
2483
|
+
## Ember 1.4.0 (February 13, 2014)
|
|
2480
2484
|
|
|
2481
2485
|
* [SECURITY] Ensure link-to non-block escapes title.
|
|
2482
2486
|
* Deprecate quoteless action names.
|
|
@@ -2506,12 +2510,12 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2506
2510
|
* [FEATURE propertyBraceExpansion] Add support for brace-expansion in dependent keys, observer and watch properties.
|
|
2507
2511
|
* [FEATURE ember-metal-run-bind] Enables `Ember.run.bind` which is ember run-loop aware variation of jQuery.proxy.
|
|
2508
2512
|
|
|
2509
|
-
|
|
2513
|
+
## Ember 1.3.1 (January 14, 2014)
|
|
2510
2514
|
|
|
2511
2515
|
* [SECURITY] Ensure primitive value contexts are escaped.
|
|
2512
2516
|
* [SECURITY] Ensure {{group}} helper escapes properly.
|
|
2513
2517
|
|
|
2514
|
-
|
|
2518
|
+
## Ember 1.3.0 (January 6, 2014)
|
|
2515
2519
|
|
|
2516
2520
|
* Many documentation updates.
|
|
2517
2521
|
* Update to RSVP 3.0.3.
|
|
@@ -2560,12 +2564,12 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2560
2564
|
* Components are lazily looked up.
|
|
2561
2565
|
* Renaming everyBy and anyBy to isEvery and isAny.
|
|
2562
2566
|
|
|
2563
|
-
|
|
2567
|
+
## Ember 1.2.1 _(January 14, 2014)_
|
|
2564
2568
|
|
|
2565
2569
|
* [SECURITY] Ensure primitive value contexts are escaped.
|
|
2566
2570
|
* [SECURITY] Ensure {{group}} helper escapes properly.
|
|
2567
2571
|
|
|
2568
|
-
|
|
2572
|
+
## Ember 1.2.0 _(November 22, 2013)_
|
|
2569
2573
|
|
|
2570
2574
|
* [BUGFIX] Publish ember-handlebars-compiler along with builds.
|
|
2571
2575
|
* [BUGFIX] Use RegExp.test() for Ember.computed.match.
|
|
@@ -2620,20 +2624,20 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2620
2624
|
* Allow apps with custom jquery builds to exclude the event-alias module
|
|
2621
2625
|
* Removes long-deprecated getPath/setPath
|
|
2622
2626
|
|
|
2623
|
-
|
|
2627
|
+
## Ember 1.1.3 _(January 13, 2014)_
|
|
2624
2628
|
|
|
2625
2629
|
* [SECURITY] Ensure primitive value contexts are escaped.
|
|
2626
2630
|
* [SECURITY] Ensure {{group}} helper escapes properly.
|
|
2627
2631
|
|
|
2628
|
-
|
|
2632
|
+
## Ember 1.1.2 _(October 25, 2013)_
|
|
2629
2633
|
|
|
2630
2634
|
* [BUGFIX] Fix failures in component rendering. - Fixes #3637
|
|
2631
2635
|
|
|
2632
|
-
|
|
2636
|
+
## Ember 1.1.1 _(October 23, 2013)_
|
|
2633
2637
|
|
|
2634
2638
|
* [BUGFIX] Allow Ember.Object.create to accept an Ember.Object.
|
|
2635
2639
|
|
|
2636
|
-
|
|
2640
|
+
## Ember 1.1.0 _(October 21, 2013)_
|
|
2637
2641
|
|
|
2638
2642
|
* Make Ember.run.later more flexible with arguments - Fixes #3072
|
|
2639
2643
|
* Add assertion upon too many ajaxStop's.
|
|
@@ -2677,7 +2681,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2677
2681
|
* Incorrect error message in router.js
|
|
2678
2682
|
* Install default error handler on ApplicationRoute#actions, not #events
|
|
2679
2683
|
|
|
2680
|
-
|
|
2684
|
+
## Ember 1.0.0 _(August 31, 2013)_
|
|
2681
2685
|
|
|
2682
2686
|
* Fix nested `{{yield}}`
|
|
2683
2687
|
* `ReduceComputed` groups changed properties.
|
|
@@ -2704,7 +2708,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2704
2708
|
* Allow a template explicitly set on a view to be used when rendering a route.
|
|
2705
2709
|
|
|
2706
2710
|
|
|
2707
|
-
|
|
2711
|
+
## Ember 1.0.0-rc.8 _(August 28, 2013)_
|
|
2708
2712
|
|
|
2709
2713
|
* View, controller & route action handlers are now expected to be defined on an `actions` object.
|
|
2710
2714
|
* registerBoundHelper won't treat quoted strings / numbers as paths
|
|
@@ -2733,7 +2737,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2733
2737
|
* Improved `Route#controllerFor` to support `controllerName` and non-route lookups
|
|
2734
2738
|
|
|
2735
2739
|
|
|
2736
|
-
|
|
2740
|
+
## Ember 1.0.0-rc.7 _(August 14, 2013)_
|
|
2737
2741
|
|
|
2738
2742
|
* correctly preserve a views container
|
|
2739
2743
|
* Reference to RSVP repo for documentation
|
|
@@ -2876,7 +2880,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2876
2880
|
* document ember-testing helpers
|
|
2877
2881
|
|
|
2878
2882
|
|
|
2879
|
-
|
|
2883
|
+
## Ember 1.0.0-rc.6 _(June 23, 2013)_
|
|
2880
2884
|
|
|
2881
2885
|
* Refactored `Ember.Route`s teardown mechanism for rendered views. This fixes #2857, previously multiple outlets were not tore down.
|
|
2882
2886
|
* Rename Control to Component. This avoids conflicts with the existing (behind-a-flag) control and is clearer about intent.
|
|
@@ -2935,7 +2939,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2935
2939
|
* Adds assertion for misnamed controller name provided to render helper. [Fixes #2385]
|
|
2936
2940
|
|
|
2937
2941
|
|
|
2938
|
-
|
|
2942
|
+
## Ember 1.0.0-rc.5 _(June 01, 2013)_
|
|
2939
2943
|
|
|
2940
2944
|
* Added assertion for incorrect container lookup names
|
|
2941
2945
|
* adding docs for Ember.beforeObserver
|
|
@@ -2950,7 +2954,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
2950
2954
|
* remove starter_kit upload task (we just use the github tarballs)
|
|
2951
2955
|
|
|
2952
2956
|
|
|
2953
|
-
|
|
2957
|
+
## Ember 1.0.0-rc.4 _(May 27, 2013)_
|
|
2954
2958
|
|
|
2955
2959
|
* Loader: improve missing module error message
|
|
2956
2960
|
* Fix click test helper selector context
|
|
@@ -3077,7 +3081,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3077
3081
|
* Added length property to Ember.Map
|
|
3078
3082
|
|
|
3079
3083
|
|
|
3080
|
-
|
|
3084
|
+
## Ember 1.0.0-rc.3 _(April 19, 2013)_
|
|
3081
3085
|
|
|
3082
3086
|
* fn.call is wasteful when the thisArg is not needed.
|
|
3083
3087
|
* don't needlessly close-over and rebuild insertViewCollection
|
|
@@ -3173,7 +3177,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3173
3177
|
* Insert adjacent child views in batches rather than individually.
|
|
3174
3178
|
|
|
3175
3179
|
|
|
3176
|
-
|
|
3180
|
+
## Ember 1.0.0-rc.2 _(March 29, 2013)_
|
|
3177
3181
|
|
|
3178
3182
|
* Improved the App initialization process and deprecated Ember.Application#initialize. If you were using this, use deferReadiness and advanceReadiness instead.
|
|
3179
3183
|
* Added support for Ember.Application#then which fires similarly to the isReady hook
|
|
@@ -3212,7 +3216,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3212
3216
|
* Other miscellaneous bug fixes and documentation improvements
|
|
3213
3217
|
|
|
3214
3218
|
|
|
3215
|
-
|
|
3219
|
+
## Ember 1.0.0-rc.1 _(February 15, 2013)_
|
|
3216
3220
|
|
|
3217
3221
|
* Upgrade to Handlebars 1.0.0-rc.3
|
|
3218
3222
|
* Update RSVP.js
|
|
@@ -3250,7 +3254,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3250
3254
|
* Empty object proxies are no longer truthy in {{#if}}
|
|
3251
3255
|
|
|
3252
3256
|
|
|
3253
|
-
|
|
3257
|
+
## Ember 1.0.0-pre.4 _(January 17, 2013)_
|
|
3254
3258
|
|
|
3255
3259
|
* Add {{partial}}
|
|
3256
3260
|
* Fix regressions in router.js
|
|
@@ -3258,7 +3262,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3258
3262
|
* Use the controller with the same name as the template passed to render, if it exists
|
|
3259
3263
|
|
|
3260
3264
|
|
|
3261
|
-
|
|
3265
|
+
## Ember 1.0.0-pre.3 _(January 17, 2013)_
|
|
3262
3266
|
|
|
3263
3267
|
* BREAKING CHANGE: New Router API
|
|
3264
3268
|
* BREAKING CHANGE: `Ember.Object.create` behaves like `setProperties`. Use `createWithMixins` for the old behavior.
|
|
@@ -3294,7 +3298,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3294
3298
|
* General cleanup
|
|
3295
3299
|
|
|
3296
3300
|
|
|
3297
|
-
|
|
3301
|
+
## Ember 1.0.0-pre.2 _(October 25, 2012)_
|
|
3298
3302
|
|
|
3299
3303
|
* Ember.SortableMixin: don't remove and reinsert items when their sort order doesn't change. Fixes #1486.
|
|
3300
3304
|
* Fix edge cases with adding/removing observers
|
|
@@ -3378,7 +3382,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3378
3382
|
* Performance improvements
|
|
3379
3383
|
|
|
3380
3384
|
|
|
3381
|
-
|
|
3385
|
+
## Ember 1.0.pre _(August 03, 2012)_
|
|
3382
3386
|
|
|
3383
3387
|
* Return undefined instead of empty jQuery object for Ember.View#$ when not in DOM
|
|
3384
3388
|
* Adds didDefineProperty hook
|
|
@@ -3547,7 +3551,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3547
3551
|
* Add support for modelType in the router
|
|
3548
3552
|
|
|
3549
3553
|
|
|
3550
|
-
|
|
3554
|
+
## Ember 0.9.8.1 _(May 22, 2012)_
|
|
3551
3555
|
|
|
3552
3556
|
* Fix bindAttr with global paths
|
|
3553
3557
|
* Fix initialization with non routable stateManager
|
|
@@ -3555,7 +3559,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3555
3559
|
* Documentation fixes
|
|
3556
3560
|
|
|
3557
3561
|
|
|
3558
|
-
|
|
3562
|
+
## Ember 0.9.8 _(May 21, 2012)_
|
|
3559
3563
|
|
|
3560
3564
|
* Better docs
|
|
3561
3565
|
* Preliminary routing support
|
|
@@ -3603,13 +3607,13 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3603
3607
|
* Support making Computed Properties cacheable by default
|
|
3604
3608
|
|
|
3605
3609
|
|
|
3606
|
-
|
|
3610
|
+
## Ember 0.9.7.1 _(April 19, 2012)_
|
|
3607
3611
|
|
|
3608
3612
|
* Better escaping method for RenderBuffer
|
|
3609
3613
|
* More rigorous XSS escaping from bindAttr
|
|
3610
3614
|
|
|
3611
3615
|
|
|
3612
|
-
|
|
3616
|
+
## Ember 0.9.7 _(April 18, 2012)_
|
|
3613
3617
|
|
|
3614
3618
|
* RenderBuffer now properly escapes attribute values. Fixes XSS vulnerability documented in #699.
|
|
3615
3619
|
* Make options an optional argument to Ember.Handlebars.getPath
|
|
@@ -3629,7 +3633,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3629
3633
|
* Ember.ArrayUtils.objectsAt returns correct objects.
|
|
3630
3634
|
|
|
3631
3635
|
|
|
3632
|
-
|
|
3636
|
+
## Ember 0.9.6 _(March 30, 2012)_
|
|
3633
3637
|
|
|
3634
3638
|
* Significant internal performance improvements
|
|
3635
3639
|
* Improved performance of RenderBuffer
|
|
@@ -3678,7 +3682,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3678
3682
|
* Added benchmarking harness for internals
|
|
3679
3683
|
|
|
3680
3684
|
|
|
3681
|
-
|
|
3685
|
+
## Ember 0.9.5 _(February 17, 2012)_
|
|
3682
3686
|
|
|
3683
3687
|
* Add Handlebars helper for {{yield}}
|
|
3684
3688
|
* Add a .jshintrc
|
|
@@ -3710,7 +3714,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3710
3714
|
* Better framework warnings and deprecations
|
|
3711
3715
|
|
|
3712
3716
|
|
|
3713
|
-
|
|
3717
|
+
## Ember 0.9.4 _(January 23, 2012)_
|
|
3714
3718
|
|
|
3715
3719
|
* Add Ember.Select control
|
|
3716
3720
|
* Added Ember.Handlebars action helper to easily add event handling to DOM elements without requiring a new view
|
|
@@ -3744,7 +3748,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3744
3748
|
* Inline documentation improvements
|
|
3745
3749
|
|
|
3746
3750
|
|
|
3747
|
-
|
|
3751
|
+
## Ember 0.9.3 _(December 19, 2011)_
|
|
3748
3752
|
|
|
3749
3753
|
* Make sure willInsertElement actually gets called on all child views. Element is still not guaranteed to work.
|
|
3750
3754
|
* Implement tab views and controller
|
|
@@ -3752,7 +3756,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3752
3756
|
* allow use of multiple {{bindAttr}}s per element
|
|
3753
3757
|
|
|
3754
3758
|
|
|
3755
|
-
|
|
3759
|
+
## Ember 0.9.2 _(December 16, 2011)_
|
|
3756
3760
|
|
|
3757
3761
|
* add replaceIn to replace an entire node's content with something new
|
|
3758
3762
|
* Use prepend() and after() methods of Metamorph
|
|
@@ -3763,7 +3767,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3763
3767
|
* Remove parentView deprecation warning
|
|
3764
3768
|
|
|
3765
3769
|
|
|
3766
|
-
|
|
3770
|
+
## Ember 0.9.1 _(December 14, 2011)_
|
|
3767
3771
|
|
|
3768
3772
|
* Fix jslint warnings related to missing semicolons and variables defined twice
|
|
3769
3773
|
* Alias amber_assert to sc_assert for backwards compat
|