ember-source 5.0.0-beta.1 → 5.0.0-beta.3

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.
Files changed (53) hide show
  1. package/build-metadata.json +3 -3
  2. package/dist/dependencies/@glimmer/destroyable.js +2 -2
  3. package/dist/dependencies/@glimmer/env.js +1 -1
  4. package/dist/dependencies/@glimmer/global-context.js +1 -1
  5. package/dist/dependencies/@glimmer/low-level.js +1 -1
  6. package/dist/dependencies/@glimmer/manager.js +5 -13
  7. package/dist/dependencies/@glimmer/node.js +1 -1
  8. package/dist/dependencies/@glimmer/opcode-compiler.js +38 -38
  9. package/dist/dependencies/@glimmer/program.js +9 -9
  10. package/dist/dependencies/@glimmer/reference.js +4 -4
  11. package/dist/dependencies/@glimmer/runtime.js +41 -41
  12. package/dist/dependencies/@glimmer/util.js +3 -3
  13. package/dist/dependencies/@glimmer/validator.js +1 -1
  14. package/dist/dependencies/@glimmer/vm.js +1 -1
  15. package/dist/dependencies/@glimmer/wire-format.js +1 -1
  16. package/dist/dependencies/router_js.js +3 -4
  17. package/dist/dependencies/rsvp.js +23 -25
  18. package/dist/ember-template-compiler.js +343 -398
  19. package/dist/ember-template-compiler.map +1 -1
  20. package/dist/ember-testing.js +4 -4
  21. package/dist/ember-testing.map +1 -1
  22. package/dist/ember.debug.js +423 -649
  23. package/dist/ember.debug.map +1 -1
  24. package/dist/header/license.js +1 -1
  25. package/dist/packages/@ember/-internals/browser-environment/index.js +1 -1
  26. package/dist/packages/@ember/-internals/container/index.js +6 -12
  27. package/dist/packages/@ember/-internals/environment/index.js +1 -1
  28. package/dist/packages/@ember/-internals/glimmer/index.js +115 -208
  29. package/dist/packages/@ember/-internals/metal/index.js +106 -226
  30. package/dist/packages/@ember/-internals/utils/index.js +1 -12
  31. package/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js +10 -9
  32. package/dist/packages/@ember/-internals/views/lib/views/core_view.js +1 -2
  33. package/dist/packages/@ember/-internals/views/lib/views/states.js +12 -7
  34. package/dist/packages/@ember/application/index.js +11 -11
  35. package/dist/packages/@ember/application/instance.js +3 -2
  36. package/dist/packages/@ember/application/lib/lazy_load.js +2 -4
  37. package/dist/packages/@ember/array/index.js +3 -6
  38. package/dist/packages/@ember/debug/lib/deprecate.js +3 -3
  39. package/dist/packages/@ember/engine/index.js +3 -2
  40. package/dist/packages/@ember/engine/instance.js +1 -2
  41. package/dist/packages/@ember/object/index.js +1 -1
  42. package/dist/packages/@ember/routing/hash-location.js +1 -2
  43. package/dist/packages/@ember/routing/history-location.js +3 -5
  44. package/dist/packages/@ember/routing/lib/utils.js +4 -1
  45. package/dist/packages/@ember/routing/route.js +20 -6
  46. package/dist/packages/ember/index.js +4 -3
  47. package/dist/packages/ember/version.js +1 -1
  48. package/docs/data.json +4 -4
  49. package/lib/browsers.js +49 -24
  50. package/package.json +6 -8
  51. package/types/preview/@ember/routing/history-location.d.ts +2 -2
  52. package/CHANGELOG.md +0 -3843
  53. package/dist/packages/@ember/-internals/runtime/.gitignore +0 -1
package/CHANGELOG.md DELETED
@@ -1,3843 +0,0 @@
1
- # Ember Changelog
2
-
3
- ## v5.0.0-beta.1 (April 6, 2023)
4
-
5
- - [#20429](https://github.com/emberjs/ember.js/pull/20429) [BUGFIX] TS lint-level error in `mixins/-proxy.ts`
6
- - [#20410](https://github.com/emberjs/ember.js/pull/20410) [BUGFIX] Add missing type declarations in the preview types for @ember/template-compilation
7
- - [#20379](https://github.com/emberjs/ember.js/pull/20379) [CLEANUP] Remove deprecated `@ember/error` package
8
- - [#20380](https://github.com/emberjs/ember.js/pull/20380) [CLEANUP] Remove deprecated `assign` polyfill
9
- - [#20381](https://github.com/emberjs/ember.js/pull/20381) [CLEANUP] Remove deprecated `@ember/string` package
10
- - [#20382](https://github.com/emberjs/ember.js/pull/20382) [CLEANUP] Remove deprecated injection
11
- - [#20402](https://github.com/emberjs/ember.js/pull/20402) [CLEANUP] Drop support for `ember-cli-mocha` and `ember-mocha` when generating test blueprints
12
- - [#20406](https://github.com/emberjs/ember.js/pull/20406) [CLEANUP] Remove deprecated auto-location
13
- - [#20413](https://github.com/emberjs/ember.js/pull/20413) [CLEANUP] Remove deprecated routing.transition-methods
14
- - [#20414](https://github.com/emberjs/ember.js/pull/20414) [CLEANUP] Add @ember/string to smoke-tests app
15
- - [#20415](https://github.com/emberjs/ember.js/pull/20415) [CLEANUP] Remove unused imports
16
- - [#20416](https://github.com/emberjs/ember.js/pull/20416) [CLEANUP] Finish cleaning up `Location` interface
17
-
18
- ## v4.12.0 (April 3, 2023)
19
-
20
- - [#20352](https://github.com/emberjs/ember.js/pull/20352) [FEATURE] Enable generating Typescript blueprints when `isTypeScriptProject` is true without additional environment variables per [RFC #800](https://rfcs.emberjs.com/id/0800-ts-adoption-plan).
21
- - [#20355](https://github.com/emberjs/ember.js/pull/20355) [FEATURE] Enhance the Typescript blueprint for generated services per [RFC #800](https://rfcs.emberjs.com/id/0800-ts-adoption-plan).
22
- - [#20356](https://github.com/emberjs/ember.js/pull/20356) [FEATURE] Generate signature in Typescript component blueprints per [RFC #800](https://rfcs.emberjs.com/id/0800-ts-adoption-plan).
23
- - [#20388](https://github.com/emberjs/ember.js/pull/20388) [BUGFIX] Don't run getters while applying mixins
24
- - [#20398](https://github.com/emberjs/ember.js/pull/20398) [BUGFIX] Fix runloop types on TS 5.0+
25
- - [#20385](https://github.com/emberjs/ember.js/pull/20385) [BUGFIX] Improve error for owner methods called after destroy
26
-
27
- ## v4.11.0 (February 20, 2023)
28
-
29
- - [#20288](https://github.com/emberjs/ember.js/pull/20288) [FEATURE] Stable types for `@ember/owner`
30
- - [#20323](https://github.com/emberjs/ember.js/pull/20323) [FEATURE] Introduce stable types for `@ember/error`
31
- - [#20361](https://github.com/emberjs/ember.js/pull/20361) [BUGFIX] Support a `router.ts` file when generating routes
32
- - [#20373](https://github.com/emberjs/ember.js/pull/20373) / [#20374](https://github.com/emberjs/ember.js/pull/20374) [BUGFIX] Make the type for `SafeString` public
33
- - [#20345](https://github.com/emberjs/ember.js/pull/20345) [CLEANUP] Remove flags for released features
34
- - [#20285](https://github.com/emberjs/ember.js/pull/20285) Update to TS v4.9
35
-
36
- ## v4.10.0 (January 11, 2023)
37
-
38
- - [#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).
39
- - [#20341](https://github.com/emberjs/ember.js/pull/20341) [DEPRECATION] Deprecations for importing `htmlSafe` and `isHTMLSafe` from `@ember/string`. They have moved to `@ember/template`. From [RFC #236](https://rfcs.emberjs.com/id/0236-deprecation-ember-string).
40
- - [#20344](https://github.com/emberjs/ember.js/pull/20344) [DEPRECATION] Deprecate @ember/string when used from ember-source; point users to add the `@ember/string` addon per [RFC #236](https://rfcs.emberjs.com/id/0236-deprecation-ember-string).
41
- - [#20342](https://github.com/emberjs/ember.js/pull/20342) [DEPRECATION] Deprecate @ember/error per [RFC #889](https://rfcs.emberjs.com/id/0889-deprecate-ember-error).
42
- - [#20327](https://github.com/emberjs/ember.js/pull/20327) [BUGFIX] Fix the types for the mutation-methods of `NativeArray`
43
- - [#20283](https://github.com/emberjs/ember.js/pull/20283) [BUGFIX] revert TS `compilerOptions.target` to ES2017
44
- - [#20253](https://github.com/emberjs/ember.js/pull/20253) Types: Add the `Resolver` type to preview types
45
- - [#20319](https://github.com/emberjs/ember.js/pull/20319) Types: resolve services with `Owner.lookup`
46
-
47
- ## v4.9.3 (December 13, 2022)
48
-
49
- - [#20321](https://github.com/emberjs/ember.js/pull/20321) [BUGFIX] ContainerDebugAdapter extends EmberObject
50
-
51
- ## v4.8.4 (December 13, 2022)
52
-
53
- - [#20321](https://github.com/emberjs/ember.js/pull/20321) [BUGFIX] ContainerDebugAdapter extends EmberObject
54
-
55
- ## v4.9.2 (December 12, 2022)
56
-
57
- - [#20296](https://github.com/emberjs/ember.js/pull/20296) Controller `queryParams` should support `readonly` arrays
58
- - [#20318](https://github.com/emberjs/ember.js/pull/20318) Backport `Resolver` to preview types
59
-
60
- ## v4.8.3 (December 12, 2022)
61
-
62
- - [#20296](https://github.com/emberjs/ember.js/pull/20296) Controller `queryParams` should support `readonly` arrays
63
- - [#20318](https://github.com/emberjs/ember.js/pull/20318) Backport `Resolver` to preview types
64
-
65
- ## v4.9.1 (November 30, 2022)
66
-
67
- - [#20284](https://github.com/emberjs/ember.js/pull/20284) [BUGFIX] remove incorrect types for deprecation functions
68
-
69
- ## v3.28.11 (November 30, 2022)
70
-
71
- - [#20286](https://github.com/emberjs/ember.js/pull/20286) [BUGFIX] Allow class-based helpers in strict-mode
72
-
73
- ## v4.9.0 (November 28, 2022)
74
-
75
- - [#20274](https://github.com/emberjs/ember.js/pull/20274) [BUGFIX] Add some missing types to preview types
76
- - [#20256](https://github.com/emberjs/ember.js/pull/20256) [BUGFIX] Correct types for Ember Arrays
77
- - [#20257](https://github.com/emberjs/ember.js/pull/20257) [BUGFIX] Fix types for `getOwner` and GlimmerComponent
78
- - [#20233](https://github.com/emberjs/ember.js/pull/20233) [BUGFIX] Include package name in deprecation error message
79
- - [#20235](https://github.com/emberjs/ember.js/pull/20235) [BUGFIX] Update `@types/node` for TS 4.9 issue
80
- - [#20238](https://github.com/emberjs/ember.js/pull/20238) [BUGFIX] Update Node.js versions to match support policy
81
- - [#20227](https://github.com/emberjs/ember.js/pull/20227) [BUGFIX] Fix unsafe internal cast for NativeArray
82
- - [#20228](https://github.com/emberjs/ember.js/pull/20228) [BUGFIX] Remove type export for ControllerMixin
83
- - [#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
84
-
85
- ## v4.8.2 (November 3, 2022)
86
-
87
- - [#20244](https://github.com/emberjs/ember.js/pull/20244) Add missing type for `getComponentTemplate` to preview types
88
-
89
- ## v4.8.1 (November 2, 2022)
90
-
91
- - [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
92
-
93
- ## v4.4.4 (November 2, 2022)
94
-
95
- - [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties
96
-
97
- ## v3.28.10 (November 2, 2022)
98
-
99
- - [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
100
-
101
- ## v3.24.7 (November 2, 2022)
102
-
103
- - [CVE pending](https://emberjs.com/blog/ember-4-8-1-released) Fix a prototype pollution vulnerability in `set` and `setProperties`
104
-
105
- ## v4.8.0 (October 17, 2022)
106
-
107
- - [#20180](https://github.com/emberjs/ember.js/pull/20180) [FEATURE] Publish an opt-in preview of public types for Ember
108
- - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Upgrade router_js to fix Linked list of RouteInfos contains undefined object
109
-
110
- ## v4.4.3 (October 12, 2022)
111
-
112
- - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
113
-
114
- ## v4.7.1 (October 12, 2022)
115
-
116
- - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
117
-
118
- ## v4.7.0 (September 6, 2022)
119
-
120
- - [#20126](https://github.com/emberjs/ember.js/pull/20126) [BUGFIX] Replace Firefox detection that used a deprecated browser API
121
-
122
- ## v4.6.0 (July 25, 2022)
123
-
124
- - [#20125](https://github.com/emberjs/ember.js/pull/20125) [BUGFIX] Replace deprecated substr() method with substring() method.
125
-
126
- ## v4.5.1 (July 25, 2022)
127
-
128
- - [#20120](https://github.com/emberjs/ember.js/pull/20120) [BUGFIX] Adjust uniqueId() implementation to only generate valid selectors.
129
-
130
- ## v4.5.0 (June 13, 2022)
131
-
132
- - [#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).
133
- - [#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).
134
-
135
- ## v4.4.2 (June 13, 2022)
136
-
137
- - [#20114](https://github.com/emberjs/ember.js/pull/20114) [BUGFIX] Fix generated import paths for test setup functions in addons
138
-
139
- ## v4.4.1 (May 31, 2022)
140
-
141
- - [#20082](https://github.com/emberjs/ember.js/pull/20082) [BUGFIX] Fix blueprints publication
142
-
143
- ## v4.4.0 (May 2, 2022)
144
-
145
- - [#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).
146
- - [#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).
147
- - [#16879](https://github.com/emberjs/ember.js/pull/16879) [BUGFIX] isEmpty on nested objects
148
- - [#17978](https://github.com/emberjs/ember.js/pull/17978) Make hasListeners public
149
- - [#20014](https://github.com/emberjs/ember.js/pull/20014) Log `until` for deprecations
150
-
151
- ## v3.28.9 (April 19, 2022)
152
-
153
- - [#20028](https://github.com/emberjs/ember.js/pull/20028) Fix a memory leak in the Router Service class
154
-
155
- ## v4.3.0 (March 21, 2022)
156
-
157
- - [#20025](https://github.com/emberjs/ember.js/pull/20025) [BUGFIX] Fix a memory leak in the Router Service class
158
- - [#19971](https://github.com/emberjs/ember.js/pull/19971) [BUGFIX] Don't serialize default Query Params on RouterService
159
- - [#20024](https://github.com/emberjs/ember.js/pull/20024) [BUGFIX] Correctly associate props with factory and owner in FactoryManager
160
-
161
- ## v4.2.0 (February 7, 2022)
162
-
163
- - [#19878](https://github.com/emberjs/ember.js/pull/19878) [BUGFIX] Allow class-based helpers to work in strict-mode.
164
-
165
- ## v4.1.0 (December 28, 2021)
166
-
167
- - [#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).
168
- - [#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).
169
- - [#19776](https://github.com/emberjs/ember.js/pull/19776) [FEATURE] Provide `service` export from `@ember/service` in favour of `inject` implementing [RFC #0752](https://github.com/emberjs/rfcs/blob/master/text/0752-inject-service.md).
170
- - [#19510](https://github.com/emberjs/ember.js/pull/19510) [DEPRECATION] Deprecate auto location per [RFC #0711](https://github.com/emberjs/rfcs/blob/master/text/0711-deprecate-auto-location.md).
171
- - [#17570](https://github.com/emberjs/ember.js/pull/17570) [BUGFIX] Passing ObjectProxy with a property size to `isEmpty` would throw assertion
172
- - [#18269](https://github.com/emberjs/ember.js/pull/18269) [BUGFIX] Fix for when query params are using a nested value
173
-
174
- ## v4.0.1 (December 1, 2021)
175
-
176
- - [#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
177
- - [#19860](https://github.com/emberjs/ember.js/pull/19860) [BUGFIX] Add model hook in route blueprint for routes with dynamic segments
178
-
179
- ## v4.0.0 (November 15, 2021)
180
-
181
- - [#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
182
- - [#19706](https://github.com/emberjs/ember.js/pull/19706) [BREAKING] Explicitly drop Node 10 support to match support policy.
183
- - [BREAKING] Remove deprecated features
184
- - [#19838](https://github.com/emberjs/ember.js/pull/19838) [CLEANUP] Remove check to see if `ember` is defined as a Bower dependency
185
- - [#19846](https://github.com/emberjs/ember.js/pull/19846) [CLEANUP] Make using the "classic" edition of Ember throw
186
- - [#19833](https://github.com/emberjs/ember.js/pull/19833) [CLEANUP] Remove deprecated array observers
187
- - [#19836](https://github.com/emberjs/ember.js/pull/19836) [CLEANUP] Turn `template-only-glimmer-components` deprecation into an error
188
- - [#19843](https://github.com/emberjs/ember.js/pull/19843) [CLEANUP] Turn `argument-less-helper-paren-less-invocation` deprecation into an error
189
- - [#19749](https://github.com/emberjs/ember.js/pull/19749) [CLEANUP] Remove `deprecate-router-events` support code
190
- - [#19762](https://github.com/emberjs/ember.js/pull/19762) [CLEANUP] Update GlimmerVM to 0.81
191
- - removes deprecation of mutations during helper compute
192
- - removes deprecation of mutations during unknownProperty
193
- - `@glimmer/integration-tests`, `@glimmer/manager`, `@glimmer/validator`
194
- * [#1330](https://github.com/glimmerjs/glimmer-vm/pull/1330) Remove deprecated support for mutation after consumption during certain manager hooks ([@snewcomer](https://github.com/snewcomer))
195
- - `@glimmer/manager`
196
- * [#1328](https://github.com/glimmerjs/glimmer-vm/pull/1328) Remove deprecated Component Manager version 3.4 ([@nlfurniss](https://github.com/nlfurniss))
197
- - `@glimmer/integration-tests`, `@glimmer/manager`
198
- * [#1329](https://github.com/glimmerjs/glimmer-vm/pull/1329) Remove deprecated Modifier Manager version 3.13 ([@nlfurniss](https://github.com/nlfurniss))
199
- - [#19806](https://github.com/emberjs/ember.js/pull/19806) [CLEANUP] Drop export of built-ins, remove legacy components
200
- - [#19808](https://github.com/emberjs/ember.js/pull/19808) [CLEANUP] Remove the `--test-type` option from the helper blueprint
201
- - [#19677](https://github.com/emberjs/ember.js/pull/19677) [CLEANUP] Remove jQuery from build
202
- - [#19708](https://github.com/emberjs/ember.js/pull/19708) [CLEANUP] Remove class-binding-and-class-name-bindings-in-templates
203
- - [#19650](https://github.com/emberjs/ember.js/pull/19650) [CLEANUP] Remove deprecated mouse events
204
- - [#19675](https://github.com/emberjs/ember.js/pull/19675) [CLEANUP] Remove jQuery usage from ember-testing
205
- - [#19704](https://github.com/emberjs/ember.js/pull/19704) [CLEANUP] Remove template-compiler.registerPlugin
206
- - [#19707](https://github.com/emberjs/ember.js/pull/19707) [CLEANUP] Remove Application Controller Router Properties
207
- - [#19528](https://github.com/emberjs/ember.js/pull/19528) [CLEANUP] Remove Logger
208
- - [#19558](https://github.com/emberjs/ember.js/pull/19558) [CLEANUP] Remove IE11 support
209
- - [#19563](https://github.com/emberjs/ember.js/pull/19563) [CLEANUP] Remove internal Ember.assign usage
210
- - [#19636](https://github.com/emberjs/ember.js/pull/19636) [CLEANUP] Remove copy & Copyable
211
- - [#19638](https://github.com/emberjs/ember.js/pull/19638) [CLEANUP] Remove deprecated with
212
- - [#19639](https://github.com/emberjs/ember.js/pull/19639) [CLEANUP] Removes deprecated Private INVOKE API
213
- - [#19640](https://github.com/emberjs/ember.js/pull/19640) [CLEANUP] Remove old deprecations import path
214
- - [#19641](https://github.com/emberjs/ember.js/pull/19641) [CLEANUP] Remove isVisible
215
- - [#19642](https://github.com/emberjs/ember.js/pull/19642) [CLEANUP] Remove aliasMethod
216
- - [#19643](https://github.com/emberjs/ember.js/pull/19643) [CLEANUP] Remove deprecate without for and since
217
- - [#19644](https://github.com/emberjs/ember.js/pull/19644) [CLEANUP] Remove -in-element
218
- - [#19645](https://github.com/emberjs/ember.js/pull/19645) [CLEANUP] Remove tryInvoke
219
- - [#19646](https://github.com/emberjs/ember.js/pull/19646) [CLEANUP] Remove loc
220
- - [#19647](https://github.com/emberjs/ember.js/pull/19647) [CLEANUP] Remove Ember.merge
221
- - [#19648](https://github.com/emberjs/ember.js/pull/19648) [CLEANUP] Remove getWithDefault
222
- - [#19651](https://github.com/emberjs/ember.js/pull/19651) [CLEANUP] Remove LEGACY_OWNER
223
- - [#19652](https://github.com/emberjs/ember.js/pull/19652) [CLEANUP] Remove Globals Resolver
224
- - [#19653](https://github.com/emberjs/ember.js/pull/19653) [CLEANUP] Remove run and computed dot access
225
- - [#19654](https://github.com/emberjs/ember.js/pull/19654) [CLEANUP] Remove @ember/string methods from native prototype
226
- - [#19655](https://github.com/emberjs/ember.js/pull/19655) [CLEANUP] Remove meta-destruction-apis
227
- - [#19656](https://github.com/emberjs/ember.js/pull/19656) [CLEANUP] Remove string-based setComponentManager
228
- - [#19657](https://github.com/emberjs/ember.js/pull/19657) [CLEANUP] Remove hasBlock and hasBlockParams
229
- - [#19658](https://github.com/emberjs/ember.js/pull/19658) [CLEANUP] Remove sendAction and string action passing
230
- - [#19659](https://github.com/emberjs/ember.js/pull/19659) [CLEANUP] Remove renderTemplate, disconnectOutlet, render
231
- - [#19660](https://github.com/emberjs/ember.js/pull/19660) [CLEANUP] Remove attrs/attrs-arg-access
232
- - [#19661](https://github.com/emberjs/ember.js/pull/19661) [CLEANUP] Remove EMBER_EXTEND_PROTOTYPES
233
- - [#19663](https://github.com/emberjs/ember.js/pull/19663) [CLEANUP] Remove function prototype extensions
234
- - [#19665](https://github.com/emberjs/ember.js/pull/19665) [CLEANUP] Remove deprecated jQuery integration
235
- - [#19666](https://github.com/emberjs/ember.js/pull/19666) [CLEANUP] Remove jQuery integration in EventDispatcher
236
- - [#19667](https://github.com/emberjs/ember.js/pull/19667) [CLEANUP] Cleanup IE11 leftovers
237
- - [#19670](https://github.com/emberjs/ember.js/pull/19670) [CLEANUP] Remove .volatile()
238
- - [#19671](https://github.com/emberjs/ember.js/pull/19671) [CLEANUP] Remove .property()
239
- - [#19673](https://github.com/emberjs/ember.js/pull/19673) [CLEANUP] Remove computed deep each
240
- - [#19674](https://github.com/emberjs/ember.js/pull/19674) [CLEANUP] Remove ability to override computed property
241
- - [#19678](https://github.com/emberjs/ember.js/pull/19678) [CLEANUP] Remove window.Ember global
242
- - [#19695](https://github.com/emberjs/ember.js/pull/19695) [CLEANUP] Remove {{partial}}
243
- - [#19691](https://github.com/emberjs/ember.js/pull/19691) Add build assertion against `{{outlet named}}`
244
- - [#19680](https://github.com/emberjs/ember.js/pull/19680) [DEPRECATION] Deprecate owner.inject per [RFC #680](https://github.com/emberjs/rfcs/blob/sn/owner-inject-deprecation/text/0680-implicit-injection-deprecation.md#1-deprecate-implicit-injection-on-target-object) and cleanup related deprecations that are `until: 4.0.0`.
245
- - [#19649](https://github.com/emberjs/ember.js/pull/19649) / [#19692](https://github.com/emberjs/ember.js/pull/19692) [DEPRECATION] Add deprecation warning to Ember.assign implementing [RFC #750](https://github.com/emberjs/rfcs/blob/master/text/0750-deprecate-ember-assign.md).
246
- - [#19825](https://github.com/emberjs/ember.js/pull/19825) [BUGFIX] Replace `assert.equal` in blueprints with `assert.strictEqual` to pass eslint-plugin-qunit v7 on generation
247
- - [#19227](https://github.com/emberjs/ember.js/pull/19227) [BUGFIX] Enable global event dispatcher listeners to be lazily created fixing Passive Listener Violation in Chrome
248
- - [#19542](https://github.com/emberjs/ember.js/pull/19542) [BUGFIX] Fix initializer test blueprints
249
- - [#19589](https://github.com/emberjs/ember.js/pull/19589) [BUGFIX] Don’t include type-tests in build output
250
-
251
- ## v3.28.8 (December 2, 2021)
252
-
253
- - [#19868](https://github.com/emberjs/ember.js/pull/19868) [BUGFIX] Fix a bug with the implicit injections deprecation that meant injecting a store to avoid the deprecation did not work.
254
-
255
- ## v3.28.7 (December 1, 2021)
256
-
257
- - [#19854](https://github.com/emberjs/ember.js/pull/19854) [BUGFIX] Fix implicit injections deprecation for routes to cover previously missed cases
258
- - [#19857](https://github.com/emberjs/ember.js/pull/19857) [BUGFIX] Improve assert message in default store for when routes have dynamic segments but no model hook
259
-
260
- ## v3.28.6 (November 4, 2021)
261
-
262
- - [#19683](https://github.com/emberjs/ember.js/pull/19683) Ensure super.willDestroy is called correctly in Router's willDestroy
263
-
264
- ## v3.28.5 (November 3, 2021)
265
-
266
- - [#19820](https://github.com/emberjs/ember.js/pull/19820) Fix memory leak when looking up non-instantiable objects from the owner
267
-
268
- ## v3.28.4 (October 22, 2021)
269
-
270
- - [#19798](https://github.com/emberjs/ember.js/pull/19798) More fixes for errors while precompiling inline templates (introduced in 3.28.2)
271
- - [glimmerjs/glimmer-vm@0.80.3](https://github.com/glimmerjs/glimmer-vm/releases/tag/v0.80.3) Improve template compilation speed regression
272
-
273
- ## v3.28.3 (October 22, 2021)
274
-
275
- - [#19799](https://github.com/emberjs/ember.js/pull/19799) / [glimmerjs/glimmer-vm#1354](https://github.com/glimmerjs/glimmer-vm/pull/1354) Fixes for errors while precompiling inline templates (introduced in 3.28.2)
276
-
277
- ## v3.28.2 (October 21, 2021)
278
-
279
- - [glimmerjs/glimmer-vm#1351](https://github.com/glimmerjs/glimmer-vm/pull/1351) Support lexical scope in loose mode
280
-
281
- ## v3.24.6 (October 18, 2021)
282
-
283
- - [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)
284
-
285
- ## v3.28.1 (August 30, 2021)
286
-
287
- - [#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
288
-
289
- ## v3.28.0 (August 9, 2021)
290
-
291
- - [#19697](https://github.com/emberjs/ember.js/pull/19697) [BUGFIX] Ensure `deserializeQueryParam` is called for lazy routes
292
- - [#19681](https://github.com/emberjs/ember.js/pull/19681) [BUGFIX] Restore previous hash behavior
293
- - [#19685](https://github.com/emberjs/ember.js/pull/19685) [BUGFIX] Fix memory leak in RouterService
294
- - [#19690](https://github.com/emberjs/ember.js/pull/19690) [BUGFIX] Deprecates String.prototype.htmlSafe targeting Ember 4.0, as intended by the original deprecation.
295
- - [#19584](https://github.com/emberjs/ember.js/pull/19584) [BUGFIX] Ensure hash objects correctly entangle as dependencies
296
- - [#19491](https://github.com/emberjs/ember.js/pull/19491) [BUGFIX] Fix `owner.lookup` `owner.register` behavior with `singleton: true` option
297
- - [#19472](https://github.com/emberjs/ember.js/pull/19472) [BUGFIX] Prevent transformation of block params called `attrs`
298
-
299
- ## v3.24.5 (August 9, 2021)
300
-
301
- - [#19685](https://github.com/emberjs/ember.js/pull/19685) Fix memory leak with `RouterService` under Chrome
302
- - [#19683](https://github.com/emberjs/ember.js/pull/19683) Ensure `super.willDestroy` is called correctly in `Router`'s `willDestroy`
303
-
304
- ## v3.27.5 (June 10, 2021)
305
-
306
- - [#19597](https://github.com/emberjs/ember.js/pull/19597) [BIGFIX] Fix `<LinkTo>` with nested children
307
-
308
- ## v3.27.4 (June 9, 2021)
309
-
310
- - [#19594](https://github.com/emberjs/ember.js/pull/19594) [BUGFIX] Revert lazy hash changes
311
- - [#19596](https://github.com/emberjs/ember.js/pull/19596) [DOC] Fix "Dormant" addon warning typo
312
-
313
- ## v3.27.3 (June 3, 2021)
314
-
315
- - [#19565](https://github.com/emberjs/ember.js/pull/19565) [BUGFIX] Ensures that `computed` can depend on dynamic `(hash` keys
316
- - [#19571](https://github.com/emberjs/ember.js/pull/19571) [BUGFIX] Extend `Route.prototype.transitionTo` deprecation until 5.0.0
317
- - [#19586](https://github.com/emberjs/ember.js/pull/19586) [BUGFIX] Fix Embroider compatibility
318
-
319
- ## v3.27.2 (May 27, 2021)
320
-
321
- - [#19511](https://github.com/emberjs/ember.js/pull/19511) / [#19548](https://github.com/emberjs/ember.js/pull/19548) [BUGFIX] Makes the (hash) helper lazy
322
- - [#19530](https://github.com/emberjs/ember.js/pull/19530) [DOC] fix passing params to named blocks examples
323
- - [#19536](https://github.com/emberjs/ember.js/pull/19536) [BUGFIX] Fix `computed.*` deprecation message to include the correct import path
324
- - [#19544](https://github.com/emberjs/ember.js/pull/19544) [BUGFIX] Use explicit this in helper test blueprints
325
- - [#19555](https://github.com/emberjs/ember.js/pull/19555) [BUGFIX] Improve class based tranform deprecation message
326
- - [#19557](https://github.com/emberjs/ember.js/pull/19557) [BUGFIX] Refine Ember Global deprecation message
327
- - [#19564](https://github.com/emberjs/ember.js/pull/19564) [BUGFIX] Improve computed.* and run.* deprecation message (IE11)
328
-
329
- ## v3.27.1 (May 13, 2021)
330
-
331
- - [#19540](https://github.com/emberjs/ember.js/pull/19540) [BUGFIX] Ensure ember-testing is loaded lazily
332
- - [#19541](https://github.com/emberjs/ember.js/pull/19541) [BUGFIX] Add missing metadata for some deprecations enabled in 3.27.0
333
- - [#19541](https://github.com/emberjs/ember.js/pull/19541) [BUGFIX] Ensure passing `@href` to `<LinkTo>` throws an error
334
- - [#19541](https://github.com/emberjs/ember.js/pull/19541) [CLEANUP] Consistently use https://deprecations.emberjs.com/ in deprecation URLs
335
-
336
- ## v3.27.0 (May 3, 2021)
337
-
338
- - [#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).
339
- - [#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).
340
- - [#19457](https://github.com/emberjs/ember.js/pull/19457) / [#19463](https://github.com/emberjs/ember.js/pull/19463) / [#19464](https://github.com/emberjs/ember.js/pull/19464) / [#19467](https://github.com/emberjs/ember.js/pull/19467) [DEPRECATION] Add deprecation for the Ember Global per [RFC #706](https://github.com/emberjs/rfcs/blob/master/text/0706-deprecate-ember-global.md).
341
- - [#19407](https://github.com/emberjs/ember.js/pull/19407) [DEPRECATION] Add deprecation for `Route#disconnectOutlet` per [RFC #491](https://github.com/emberjs/rfcs/blob/master/text/0491-deprecate-disconnect-outlet.md).
342
- - [#19433](https://github.com/emberjs/ember.js/pull/19433) [DEPRECATION] Add deprecation for `Route#renderTemplate` per [RFC #418](https://github.com/emberjs/rfcs/blob/master/text/0418-deprecate-route-render-methods.md).
343
- - [#19442](https://github.com/emberjs/ember.js/pull/19442) [DEPRECATION] Add deprecation for `Route#render` method per [RFC #418](https://github.com/emberjs/rfcs/blob/master/text/0418-deprecate-route-render-methods.md).
344
- - [#19429](https://github.com/emberjs/ember.js/pull/19429) [DEPRECATION] `registerPlugin` / `unregisterPlugin` and legacy class based AST plugins (private APIs)
345
- - [#19499](https://github.com/emberjs/ember.js/pull/19499) [DEPRECATION] Deprecate `@foo={{helper}}` per [RFC #496](https://github.com/emberjs/rfcs/blob/master/text/0496-handlebars-strict-mode.md#3-no-implicit-invocation-of-argument-less-helpers).
346
- - [#19499](https://github.com/emberjs/ember.js/pull/19499) [BUGFIX] Update rendering engine to `@glimmer/*` 0.78.2 for fixes including:
347
- - `<:else>` and `<:inverse>` should be aliases (see https://github.com/glimmerjs/glimmer-vm/pull/1296)
348
- - Fix nested calls to helpers in dynamic helpers (see https://github.com/glimmerjs/glimmer-vm/pull/1293)
349
- - [#19477](https://github.com/emberjs/ember.js/pull/19477) [BUGFIX] Allow `<LinkToExternal />` to override internal assertion
350
- - [#19481](https://github.com/emberjs/ember.js/pull/19481) [BUGFIX] Export `on` from correct path
351
- - [#19466](https://github.com/emberjs/ember.js/pull/19466) [BUGFIX] Rename private runloop functions
352
- - [#19384](https://github.com/emberjs/ember.js/pull/19384) Use qunit-dom in helper and component test blueprints
353
- - [#19390](https://github.com/emberjs/ember.js/pull/19390) Refactor the internal Ember loader to use the standard Ember CLI loader
354
- - [#19441](https://github.com/emberjs/ember.js/pull/19441) Add automated publishing of weekly alpha releases to NPM
355
- - [#19462](https://github.com/emberjs/ember.js/pull/19462) Use `positional` and `named` as the argument names in `ember g helper` blueprint
356
-
357
- ## v3.24.4 (May 3, 2021)
358
-
359
- - [#19477](https://github.com/emberjs/ember.js/pull/19477) Allow `<LinkToExternal />` to override internal assertion
360
-
361
- ## v3.26.2 (October 4, 2021)
362
-
363
- - [#19683](https://github.com/emberjs/ember.js/pull/19683) [BUGFIX] Use `super.willDestroy` in native classes (instead of `this._super`)
364
-
365
- ## v3.26.1 (March 24, 2021)
366
-
367
- - [#19473](https://github.com/emberjs/ember.js/pull/19473) Update Glimmer VM to latest.
368
-
369
- ## v3.26.0 (March 22, 2021)
370
-
371
- - [#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).
372
- - [#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).
373
- - [#19346](https://github.com/emberjs/ember.js/pull/19346) [DEPRECATION] Deprecate `{{#with}}` per [RFC #445](https://github.com/emberjs/rfcs/blob/master/text/0445-deprecate-with.md)
374
- - [#19358](https://github.com/emberjs/ember.js/pull/19358) [DEPRECATION] Deprecate implicit injections per [RFC #680](https://github.com/emberjs/rfcs/blob/master/text/0680-implicit-injection-deprecation.md)
375
- - [#19359](https://github.com/emberjs/ember.js/pull/19359) [DEPRECATION] Deprecates old browser support policy per [RFC #685 New Browser Support Policy](https://github.com/emberjs/rfcs/blob/master/text/0685-new-browser-support-policy.md).
376
- - [#19371](https://github.com/emberjs/ember.js/pull/19371) [DEPRECATION] Deprecate implicit `this` property lookup fallback per [RFC #308]https://github.com/emberjs/rfcs/blob/master/text/0308-deprecate-property-lookup-fallback.md
377
- - [#19372](https://github.com/emberjs/ember.js/pull/19372) [DEPRECATION] Adds deprecations for Classic edition and optional features per [RFC #704](https://github.com/emberjs/rfcs/blob/master/text/0704-deprecate-octane-optional-features.md) and [RFC #705](https://github.com/emberjs/rfcs/blob/master/text/0705-deprecate-jquery-optional-feature.md).
378
- - [#19373](https://github.com/emberjs/ember.js/pull/19373) [DEPRECATION] Deprecate old manager capabilities per [RFC #686](https://github.com/emberjs/rfcs/blob/master/text/0686-deprecate-old-manager-capabilities-versions.md)
379
- - [#19374](https://github.com/emberjs/ember.js/pull/19374) [DEPRECATION] Deprecate `hasBlock` and `hasBlockParams` per [RFC #689](https://github.com/emberjs/rfcs/blob/master/text/0689-deprecate-has-block.md).
380
- - [#19375](https://github.com/emberjs/ember.js/pull/19375) [DEPRECATION] Deprecate old class binding syntax and {{attrs}} per [RFC #691](https://github.com/emberjs/rfcs/blob/master/text/0691-deprecate-class-binding-and-class-name-bindings.md) and [RFC #690](https://github.com/emberjs/rfcs/blob/master/text/0690-deprecate-attrs-in-templates.md).
381
- - [#19381](https://github.com/emberjs/ember.js/pull/19381) [DEPRECATION] Deprecate Array Observers per [RFC #692](https://github.com/emberjs/rfcs/blob/master/text/0692-deprecate-array-observers.md).
382
- - [#19379](https://github.com/emberjs/ember.js/pull/19379) [CLEANUP] Refactor DataAdapter to not use observers or array observers
383
- - [#19378](https://github.com/emberjs/ember.js/pull/19378) [BUGFIX] Fix typo in template-only-glimmer-components feature detection
384
- - [#19298](https://github.com/emberjs/ember.js/pull/19298) [BUGFIX] Route serialize did not extract param off proxy
385
- - [#19469](https://github.com/emberjs/ember.js/pull/19469) [BUGFIX] Prevent eager argument consumption on modifier destruction
386
- - [#19405](https://github.com/emberjs/ember.js/pull/19405) [BUGFIX] Avoid instantiation errors when `app/router.js` injects the router service.
387
- - [#19436](https://github.com/emberjs/ember.js/pull/19436) [BUGFIX] Support observer keys with colons
388
-
389
- ## v3.25.4 (March 24, 2021)
390
-
391
- - [#19473](https://github.com/emberjs/ember.js/pull/19473) Update Glimmer VM to latest.
392
-
393
- ## v3.25.3 (March 7, 2021)
394
-
395
- - [#19448](https://github.com/emberjs/ember.js/pull/19448) Ensure query params are preserved through an intermediate loading state transition
396
- - [#19450](https://github.com/emberjs/ember.js/pull/19450) Ensure `routerService.currentRoute.name` and `routerService.currentRouteName` match during loading states
397
-
398
-
399
- ## v3.25.2 (March 7, 2021)
400
-
401
- - [#19389](https://github.com/emberjs/ember.js/pull/19389) Removes template ids
402
- - [#19395](https://github.com/emberjs/ember.js/pull/19395) [BUGFIX] Ensure `<LinkTo>` can return a valid `href` most of the time
403
- - [#19396](https://github.com/emberjs/ember.js/pull/19396) [BUGFIX] Revert deprecation of htmlSafe and isHTMLSafe
404
- - [#19397](https://github.com/emberjs/ember.js/pull/19397) [BUGFIX] Force building Ember bundles when `targets.node` is defined
405
- - [#19399](https://github.com/emberjs/ember.js/pull/19399) [DOC] Update ArrayProxy Documentation
406
- - [#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)
407
-
408
-
409
- ## v3.25.1 (February 10, 2021)
410
-
411
- - [#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)
412
-
413
- ## v3.25.0 (February 08, 2021)
414
-
415
- - [#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).
416
- - [#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).
417
- - [#19339](https://github.com/emberjs/ember.js/pull/19339) [DEPRECATION] Deprecate importing `htmlSafe` and `isHTMLSafe` from `@ember/string` per the [Deprecate Ember String RFC](https://github.com/emberjs/rfcs/blob/master/text/0236-deprecation-ember-string.md).
418
- - [#19320](https://github.com/emberjs/ember.js/pull/19320) / [#19317](https://github.com/emberjs/ember.js/pull/19317) / [#19297](https://github.com/emberjs/ember.js/pull/19297) / [#19293](https://github.com/emberjs/ember.js/pull/19293) / [#19278](https://github.com/emberjs/ember.js/pull/19278) / [#19275](https://github.com/emberjs/ember.js/pull/19275) / [#19363](https://github.com/emberjs/ember.js/pull/19363) Update rendering engine to `@glimmer/*` 0.74.2 for various features and bugfixes including ensuring `{{component.name}}` works with implicit this fallback
419
- - [#18148](https://github.com/emberjs/ember.js/pull/18148) [BUGFIX] Fix empty `htmlSafe` string to be treated as falsy
420
- - [#19365](https://github.com/emberjs/ember.js/pull/19365) [BUGFIX] Remove non-existing re-export from helper-addon blueprint
421
- - [#19370](https://github.com/emberjs/ember.js/pull/19370) [BUGFIX] Update glimmer-vm to prevent errors for older inline precompilation
422
- - [#19351](https://github.com/emberjs/ember.js/pull/19351) [BUGFIX] Ensure locals do not clobber components of the same name
423
- - [#19336](https://github.com/emberjs/ember.js/pull/19336) [BUGFIX] Ensure Component Lookup Is Well Formed
424
- - [#19338](https://github.com/emberjs/ember.js/pull/19338) [BUGFIX] Add missing `deprecate` options (`for` + `since`)
425
- - [#19342](https://github.com/emberjs/ember.js/pull/19342) [BUGFIX] Fix misleading LinkTo error message
426
-
427
- ## v3.24.3 (March 7, 2021)
428
-
429
- - [#19448](https://github.com/emberjs/ember.js/pull/19448) Ensure query params are preserved through an intermediate loading state transition
430
- - [#19450](https://github.com/emberjs/ember.js/pull/19450) Ensure `routerService.currentRoute.name` and `routerService.currentRouteName` match during loading states
431
- - [#19395](https://github.com/emberjs/ember.js/pull/19395) [BUGFIX] Ensure `<LinkTo>` can return a valid `href` most of the time
432
- - [#19397](https://github.com/emberjs/ember.js/pull/19397) [BUGFIX] Force building Ember bundles when `targets.node` is defined
433
-
434
-
435
- ## v3.24.2 (February 10, 2021)
436
-
437
- - [#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)
438
-
439
- ## v3.24.1 (January 14, 2021)
440
-
441
- - [#19337](https://github.com/emberjs/ember.js/pull/19337) [BUGFIX] Ensure query param only `<LinkTo />` are properly scoped in engines
442
-
443
- ## v3.24.0 (December 28, 2020)
444
-
445
- - [#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).
446
- - [#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).
447
- - [#19211](https://github.com/emberjs/ember.js/pull/19211) [DEPRECATION] Deprecate `Ember.String.loc` and `{{loc}}` per the [Deprecate Ember String RFC](https://github.com/emberjs/rfcs/blob/master/text/0236-deprecation-ember-string.md).
448
- - [#19234](https://github.com/emberjs/ember.js/pull/19234) [DEPRECATION] Deprecate String Prototype extensions per the [Deprecate Ember String RFC](https://github.com/emberjs/rfcs/blob/master/text/0236-deprecation-ember-string.md).
449
- - [#19254](https://github.com/emberjs/ember.js/pull/19254) [DEPRECATION] Deprecate tryInvoke to implement the [Deprecate `tryInvoke` RFC](https://github.com/emberjs/rfcs/blob/master/text/0673-deprecate-tryinvoke.md).
450
- - [#19080](https://github.com/emberjs/ember.js/pull/19080) [BUGFIX] Lazily setup the router in non-application tests
451
- - [#19253](https://github.com/emberjs/ember.js/pull/19253) [BUGFIX] Correct return of getComponentTemplate from null to undefined to align with original RFC (#481)
452
- - [#19223](https://github.com/emberjs/ember.js/pull/19223) [BUGFIX] `<LinkTo>` should link within the engine when used inside one
453
- - [#19280](https://github.com/emberjs/ember.js/pull/19280) [BUGFIX] Ensure aliases cause recompute of a computed property when used with `@each` in the dependent keys of that property
454
- - [#19196](https://github.com/emberjs/ember.js/pull/19196) [CLEANUP] Remove EMBER_GLIMMER_IN_ELEMENT feature flag
455
- - [#19204](https://github.com/emberjs/ember.js/pull/19204) [CLEANUP] Remove EMBER_CACHE_API feature flag
456
- - [#19206](https://github.com/emberjs/ember.js/pull/19206) [CLEANUP] Remove EMBER_ROUTING_MODEL_ARG feature flag
457
- - [#19229](https://github.com/emberjs/ember.js/pull/19229) [CLEANUP] Remove the EMBER_GLIMMER_SET_COMPONENT_TEMPLATE feature flag
458
- - [#19238](https://github.com/emberjs/ember.js/pull/19238) [CLEANUP] Removes the `expandLocalLookup` API
459
- - [#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
460
-
461
- ## v3.23.1 (November 23, 2020)
462
-
463
- - [#19282](https://github.com/emberjs/ember.js/pull/19282) [BUGFIX] Issue deprecations (instead of assertions) for tracked mutation in constructor during rendering
464
-
465
- ## v3.23.0 (November 16, 2020)
466
-
467
- - [#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).
468
- - [#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).
469
- - [#19148](https://github.com/emberjs/ember.js/pull/19148) / [#19119](https://github.com/emberjs/ember.js/pull/19119) Update rendering engine to `@glimmer/*` 0.62.1
470
- - [#19122](https://github.com/emberjs/ember.js/pull/19122) [BUGFIX] Prevents dynamic invocations of string values when referenced directly in angle brackets
471
- - [#19136](https://github.com/emberjs/ember.js/pull/19136) [BUGFIX] Update router microlib to improve Transition related debugging
472
- - [#19173](https://github.com/emberjs/ember.js/pull/19173) [BUGFIX] Enforce usage of `capabilities` generation.
473
- - [#19236](https://github.com/emberjs/ember.js/pull/19236) [BUGFIX] Only serialize query params once on activeTransition
474
- - [#19250](https://github.com/emberjs/ember.js/pull/19250) [BUGFIX] Prevents infinite rerenders when errors occur during render
475
- - [#19249](https://github.com/emberjs/ember.js/pull/19249) [BUGFIX] Fix bugs in query params with intermediate transitions
476
- - [#19142](https://github.com/emberjs/ember.js/pull/19142) [BUGFIX] Fix App booting before DOM ready without jQuery
477
- - [#19198](https://github.com/emberjs/ember.js/pull/19198) / [#19232](https://github.com/emberjs/ember.js/pull/19232) [BUGFIX] Restores the shadowed property set behavior
478
- - [#19221](https://github.com/emberjs/ember.js/pull/19221) [BUGFIX] Ensure fn and (mut) work with falsy values
479
- - [#19213](https://github.com/emberjs/ember.js/pull/19213) [BUGFIX] Update rendering engine to improve error ergonomics.
480
-
481
- ## v3.22.2 (November 25, 2020)
482
-
483
- - [#19282](https://github.com/emberjs/ember.js/pull/19282) [BUGFIX] Issue deprecations (instead of assertions) for tracked mutation in constructor during rendering
484
- - [#19263](https://github.com/emberjs/ember.js/pull/19263) [BUGFIX] Remove `@dependentKeyCompat` assertion
485
-
486
- ## v3.22.1 (November 10, 2020)
487
-
488
- - [#19193](https://github.com/emberjs/ember.js/pull/19193) [BUGFIX] Ensure `@ember/component` user lifecycle hooks are untracked
489
- - [#19197](https://github.com/emberjs/ember.js/pull/19197) [BUGFIX] Restore the shadowed property set behavior
490
- - [#19199](https://github.com/emberjs/ember.js/pull/19199) [BUGFIX] Cleans up the DebugRenderTree more thoroughly on errors
491
- - [#19249](https://github.com/emberjs/ember.js/pull/19249) [BUGFIX] Fix issues with query params during intermediate transitions
492
-
493
- ## v3.22.0 (October 5, 2020)
494
-
495
- - [#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).
496
- - [#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)
497
- - [#19086](https://github.com/emberjs/ember.js/pull/19086) [FEATURE] Pass transition object to activate/deactivate hooks and events
498
- - [#19094](https://github.com/emberjs/ember.js/pull/19094) [BUGFIX] Fix RouterService#isActive() to work with tracking
499
- - [#19163](https://github.com/emberjs/ember.js/pull/19163) [BUGFIX] Use args proxy for modifier managers.
500
- - [#19170](https://github.com/emberjs/ember.js/pull/19170) [BUGFIX] Make modifier manager 3.22 accept the resolved value directly.
501
- - [#19124](https://github.com/emberjs/ember.js/pull/19124) [BUGFIX] Fix rendering engine usage within a `fastboot` sandbox
502
-
503
- ## v3.21.3 (September 30, 2020)
504
-
505
- - [#19172](https://github.com/emberjs/ember.js/pull/19172) [BUGFIX] Ensures that tracked properties initialize property
506
-
507
- ## v3.21.2 (September 30, 2020)
508
-
509
- - [#19138](https://github.com/emberjs/ember.js/pull/19138) [BUGFIX] Fix tag cycles in query parameters
510
- - [#19164](https://github.com/emberjs/ember.js/pull/19164) [BUGFIX] Entangles custom EmberArray implementations when accessed with `Ember.get`
511
-
512
- ## v3.21.1 (August 28, 2020)
513
-
514
- - [#19106](https://github.com/emberjs/ember.js/pull/19106) [BUGFIX] Ensure `destroy` methods on `CoreObject` are invoked.
515
- - [#19111](https://github.com/emberjs/ember.js/pull/19111) [BUGFIX] Fixes `ArrayProxy` length reactivity.
516
-
517
- ## v3.21.0 (August 24, 2020)
518
-
519
- - [#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).
520
- - [#19087](https://github.com/emberjs/ember.js/pull/19087) [BUGFIX] Generated initializer tests no longer causes a deprecation warning
521
- - [#17571](https://github.com/emberjs/ember.js/pull/17571) [BUGFIX] Avoid tampering `queryParam` argument in RouterService#isActive
522
-
523
- ## v3.20.6 (November 11, 2020)
524
-
525
- - [#19138](https://github.com/emberjs/ember.js/pull/19138) [BUGFIX] Fix tag cycles in query parameters
526
- - [#19158](https://github.com/emberjs/ember.js/pull/19158) [BUGFIX] `RouterService#isActive()` now consumes `currentURL` to 3.20
527
- - [#19164](https://github.com/emberjs/ember.js/pull/19164) [BUGFIX] Entangles custom EmberArray implementations when accessed
528
- - [#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
529
- - [#19178](https://github.com/emberjs/ember.js/pull/19178) [BUGFIX] Allow computeds to have cycles in their deps
530
-
531
- ## v3.20.5 (August 28, 2020)
532
-
533
- - [#19106](https://github.com/emberjs/ember.js/pull/19106) [BUGFIX] Ensure `destroy` methods on `CoreObject` are invoked.
534
- - [#19111](https://github.com/emberjs/ember.js/pull/19111) [BUGFIX] Fixes `ArrayProxy` length reactivity.
535
-
536
- ## v3.20.4 (August 11, 2020)
537
-
538
- - [#19047](https://github.com/emberjs/ember.js/pull/19047) Ensure `inject-babel-helpers` plugin can be parallelized
539
- - [#19089](https://github.com/emberjs/ember.js/pull/19089) Update rendering engine to improve immediate encoding performance
540
- - [#19082](https://github.com/emberjs/ember.js/pull/19082) Simplify mixin application
541
- - [#19088](https://github.com/emberjs/ember.js/pull/19088) Simplify factory instantiation from the container
542
- - [#19028](https://github.com/emberjs/ember.js/pull/19028) Ensure setter CP's with dependent keys on curly components can be two way bound
543
- - [#19077](https://github.com/emberjs/ember.js/pull/19077) Simplify `get` and improve `computed` caching scheme.
544
- - [#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.
545
- - [#19081](https://github.com/emberjs/ember.js/pull/19081) Reduces template compilation size in production builds.
546
-
547
- ## v3.20.3 (July 30, 2020)
548
-
549
- - [#19048](https://github.com/emberjs/ember.js/pull/19048) [BUGFIX] Update `router.js` to ensure `transition.abort` works for query param only transitions
550
- - [#19059](https://github.com/emberjs/ember.js/pull/19059) [BUGFIX] Prevent `<base target="_parent">` from erroring in `HistoryLocation`
551
- - [#19060](https://github.com/emberjs/ember.js/pull/19060) [BUGFIX] Update rendering engine to `@glimmer/*` 0.55.1
552
- - [#19063](https://github.com/emberjs/ember.js/pull/19063) [DOC] Fix missing docs for `{{#in-element}}`
553
-
554
- ## v3.20.2 (July 26, 2020)
555
-
556
- - [#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.
557
-
558
- ## v3.20.1 (July 13, 2020)
559
-
560
- - [#19040](https://github.com/emberjs/ember.js/pull/19040) [BUGFIX] Fix a memory leak that occurred when changing the array passed to `{{each}}`
561
-
562
- ## v3.20.0 (July 13, 2020)
563
-
564
- - [#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.
565
- - [#19025](https://github.com/emberjs/ember.js/pull/19025) [BUGFIX] Updates Glimmer VM to 0.54.0
566
- - [#19021](https://github.com/emberjs/ember.js/pull/19021) [BUGFIX] Disallow null/undefined targets in `in-element`.
567
- - [#19023](https://github.com/emberjs/ember.js/pull/19023) [BUGFIX] Don't access properties during init unless required to prevent unnecessary rendering invalidations.
568
- - [#18997](https://github.com/emberjs/ember.js/pull/18997) [BUGFIX] Fix components `<Input>` and `<Textarea>` to work with native class actions correctly.
569
- - [#18859](https://github.com/emberjs/ember.js/pull/18859) [BUGFIX] Fix transitionTo with scoped aliased queryParam.
570
- - [#18961](https://github.com/emberjs/ember.js/pull/18961) [BUGFIX] Remove assertions for updating auto-tracked state without Ember.set / this.set
571
-
572
- ## v3.19.0 (May 26, 2020)
573
-
574
- - [#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.
575
- - Add a compile time error when passing arguments to regular HTML elements (e.g. `<a @foo=`)
576
- - Fix: Rerender an `{{#each`s block only when the specific item has changed
577
- - [#18958](https://github.com/emberjs/ember.js/pull/18958) [BUGFIX] Ensure AST transforms using `in-element` work properly.
578
- - [#18960](https://github.com/emberjs/ember.js/pull/18960) [BUGFIX] More assertions for Application lifecycle methods
579
- - [#18919](https://github.com/emberjs/ember.js/pull/18919) [BUGFIX] Add error for modifier manager without capabilities.
580
- - [#18828](https://github.com/emberjs/ember.js/pull/18828) [BUGFIX] Prepend 'TODO: ' to 'Replace this with your real tests' comments in generated tests
581
- - [#18353](https://github.com/emberjs/ember.js/pull/18353) [BUGFIX] Improve `fn` & `on` undefined callback message
582
- - [#18824](https://github.com/emberjs/ember.js/pull/18824) [CLEANUP] Remove deprecated private `window.ENV`
583
- - [#18826](https://github.com/emberjs/ember.js/pull/18826) [CLEANUP] Remove deprecated private `_setComputedDecorator`
584
- - [#18832](https://github.com/emberjs/ember.js/pull/18832) [CLEANUP] Remove deprecated private`implicit-modifier-manager-capabilities`
585
- - [#18839](https://github.com/emberjs/ember.js/pull/18839) [CLEANUP] Updates the VM and autotracking APIs
586
-
587
- ## v3.18.1 (May 4, 2020)
588
-
589
- - [#18941](https://github.com/emberjs/ember.js/pull/18941) [BUGFIX] Update rendering engine to latest version.
590
- - Reduce template size growth to near 3.16 levels (still ~ 3% higher than 3.16)
591
- - Ensures destroyable items added to an `{{#each` after initial render are invoked properly
592
- - Fixes an issue with key collisions in `{{#each`
593
-
594
- ## v3.18.0 (April 14, 2020)
595
-
596
- - [#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.
597
- - [#18807](https://github.com/emberjs/ember.js/pull/18807) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
598
- - [#18774](https://github.com/emberjs/ember.js/pull/18774) [BUGFIX] Suspend observer deactivation during property changes
599
- - [#18785](https://github.com/emberjs/ember.js/pull/18785) Drop Node 8 support.
600
-
601
- ## v3.17.3 (April 2, 2020)
602
-
603
- - [#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
604
-
605
- ## v3.17.2 (March 26, 2020)
606
-
607
- - [#18837](https://github.com/emberjs/ember.js/pull/18837) [BUGFIX] Fix `willDestroy` on class based helpers.
608
- - [#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.
609
-
610
- ## v3.17.1 (March 22, 2020)
611
-
612
- - [#18809](https://github.com/emberjs/ember.js/pull/18809) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
613
- - [#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+.
614
-
615
- ## v3.17.0 (March 4, 2020)
616
-
617
- - [#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
618
- - [#18741](https://github.com/emberjs/ember.js/pull/18741) [BUGFIX] Don't setup mandatory setters on array indexes
619
- - [#18767](https://github.com/emberjs/ember.js/pull/18767) [BUGFIX] Fix observer leaks
620
- - [#18770](https://github.com/emberjs/ember.js/pull/18770) [BUGFIX] Make ArrayProxy Lazy
621
- - [#18780](https://github.com/emberjs/ember.js/pull/18780) [BUGFIX] Fix ownerInjection when used to create services directly
622
- - [#18742](https://github.com/emberjs/ember.js/pull/18742) [BUGFIX] Fix setDiff computed macro used within glimmer component
623
- - [#18727](https://github.com/emberjs/ember.js/pull/18727) [BUGFIX] Avoid breaking {{-in-element}} usage
624
- - [#18728](https://github.com/emberjs/ember.js/pull/18728) [BUGFIX] Fix `{{#-in-element}}` double-clearing issue
625
- - [#18703](https://github.com/emberjs/ember.js/pull/18703) [BUGFIX] Correctly links ArrayProxy tags to `arrangedContent`
626
- - [#18707](https://github.com/emberjs/ember.js/pull/18707) [BUGFIX] Fixes tag chaining on Proxy mixins
627
- - [#18708](https://github.com/emberjs/ember.js/pull/18708) [BUGFIX] Ensures the arg proxy works with `get`
628
- - [#18694](https://github.com/emberjs/ember.js/pull/18694) [BUGFIX] Ensure tag updates are buffered, remove error message
629
- - [#18709](https://github.com/emberjs/ember.js/pull/18709) [BUGFIX] Fix `this` in `@tracked` initializer
630
-
631
- ## v3.16.10 (August 5, 2020)
632
-
633
- - [#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
634
-
635
- ## v3.16.9 (July 29, 2020)
636
-
637
- - [#19001](https://github.com/emberjs/ember.js/pull/19001) [BUGFIX] Invoke methods correctly in `TextSupport` `sendAction`
638
- - [#19023](https://github.com/emberjs/ember.js/pull/19023) [BUGFIX] Avoid over eager property access during `init`
639
- - [#19048](https://github.com/emberjs/ember.js/pull/19048) [BUGFIX] Update `router.js` to ensure `transition.abort` works for query param only transitions
640
- - [#19057](https://github.com/emberjs/ember.js/pull/19057) [BUGFIX] Parallelize `inject-babel-helpers` plugin
641
- - [#19059](https://github.com/emberjs/ember.js/pull/19059) [BUGFIX] Prevent `<base target="_parent">` from erroring in HistoryLocation
642
-
643
- ## v3.16.8 (April 24, 2020)
644
-
645
- - [#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`).
646
-
647
- ## v3.16.7 (April 13, 2020)
648
-
649
- - [#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
650
-
651
- ## v3.16.6 (March 24, 2020)
652
-
653
- - [#18835](https://github.com/emberjs/ember.js/pull/18835) [BUGFIX] Make `ArrayProxy` Lazy.
654
-
655
- ## v3.16.5 (March 23, 2020)
656
-
657
- - [#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+.
658
-
659
- ## v3.16.4 (March 22, 2020)
660
-
661
- - [#18741](https://github.com/emberjs/ember.js/pull/18741) [BUGFIX] Don't setup mandatory setters on array indexes
662
- - [#18742](https://github.com/emberjs/ember.js/pull/18742) [BUGFIX] Fix `setDiff` computed macro used within glimmer component
663
- - [#18767](https://github.com/emberjs/ember.js/pull/18767) [BUGFIX] Fix `observer` leaks.
664
- - [#18780](https://github.com/emberjs/ember.js/pull/18780) [BUGFIX] Fix `owner.ownerInjection()` when used to create services directly
665
- - [#18810](https://github.com/emberjs/ember.js/pull/18810) [BUGFIX] Do not error (RE: elementId changing) if elementId is not changed
666
-
667
- ## v3.16.3 (February 18, 2020)
668
-
669
- - [#18730](https://github.com/emberjs/ember.js/pull/18730) Workaround for the Glimmer VM bug which encodes/decodes integer literals correctly.
670
-
671
- ## v3.16.2 (February 10, 2020)
672
-
673
- - [#18721](https://github.com/emberjs/ember.js/pull/18721) [BUGFIX] Backport autotracking bugfixes
674
- - [#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)).
675
-
676
- ## v3.16.1 (January 31, 2020)
677
-
678
- - [#18691](https://github.com/emberjs/ember.js/pull/18691) [BUGFIX] Updated `component` and `helper` blueprints to use `import { hbs } from 'ember-cli-htmlbars'`.
679
- - [#18698](https://github.com/emberjs/ember.js/pull/18698) [BUGFIX] Ensure tag updates are buffered
680
- - [#18713](https://github.com/emberjs/ember.js/pull/18713) [BUGFIX] Update `@glimmer/syntax` to ensure that using `<Title />`, `<Script />`, and `<Style />` does not error.
681
- - [#18717](https://github.com/emberjs/ember.js/pull/18717) [BUGFIX] Ensure instantiation cannot happen after destruction.
682
- - [#18720](https://github.com/emberjs/ember.js/pull/18720) [BUGFIX] Ensure correct `@ember/edition-utils` is used (1.2.0).
683
-
684
- ## v3.16.0 (January 20, 2020)
685
-
686
- - [#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).
687
- - [#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
688
- - [#18651](https://github.com/emberjs/ember.js/pull/18651) [BUGFIX] Async functions were incorrectly treated as falsey in template conditionals
689
-
690
- ## v3.15.0 (December 9, 2019)
691
-
692
- - [#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).
693
- - [#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).
694
- - [#18441](https://github.com/emberjs/ember.js/pull/18441) [DEPRECATION] Deprecate use of window.ENV to configure boot options
695
- - [#18554](https://github.com/emberjs/ember.js/pull/18554) [BREAKING BUGFIX] Adds autotracking transaction
696
- - [#17834](https://github.com/emberjs/ember.js/pull/17834) [BUGFIX] Prevents autotracking ArrayProxy creation
697
-
698
- ## v3.14.3 (December 3, 2019)
699
-
700
- - [#18582](https://github.com/emberjs/ember.js/pull/18582) [BUGFIX] Ensure `loader.js` is transpiled to the applications specified targets (from `config/targets.js`).
701
-
702
- ## v3.14.2 (November 20, 2019)
703
-
704
- - [#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`.
705
- - [#18549](https://github.com/emberjs/ember.js/pull/18549) [BUGFIX] Add component reference to the mouse event handler deprecation warnings.
706
-
707
- ## v3.14.1 (October 30, 2019)
708
-
709
- - [#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.
710
-
711
- ## v3.14.0 (October 29, 2019)
712
-
713
- - [#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.
714
- - [#18458](https://github.com/emberjs/ember.js/pull/18458) [BUGFIX] Using query params helper outside of link-to
715
- - [#18429](https://github.com/emberjs/ember.js/pull/18429) [BUGFIX] Fix incorrect error message for octane features.
716
- - [#18415](https://github.com/emberjs/ember.js/pull/18415) [BUGFIX] Fix hbs import path in test blueprint.
717
- - [#18387](https://github.com/emberjs/ember.js/pull/18387) [BUGFIX] Ensure `updateComponent` is fired consistently
718
- - [#18381](https://github.com/emberjs/ember.js/pull/18381) Drop Node 6 and 11 support.
719
- - [#18410](https://github.com/emberjs/ember.js/pull/18410) Use ember-cli-htmlbars for inline precompilation if possible.
720
-
721
- ## v3.13.4 (October 29,2019)
722
-
723
- - [#18476](https://github.com/emberjs/ember.js/pull/18476) [BUGFIX] Ensure model can be observed by sync observers.
724
- - [#18477](https://github.com/emberjs/ember.js/pull/18477) [BUGFIX] Allows @each to work with arrays that contain falsy values.
725
- - [#18500](https://github.com/emberjs/ember.js/pull/18500) [BUGFIX] Remove requirement for disabling jquery-integration in Octane.
726
-
727
- ## v3.13.3 (October 8, 2019)
728
-
729
- - [#18462](https://github.com/emberjs/ember.js/pull/18462) [BUGFIX] Prevents observer re-entry.
730
-
731
- ## v3.13.2 (September 25, 2019)
732
-
733
- - [#18429](https://github.com/emberjs/ember.js/pull/18429) [BUGFIX] Fix incorrect error message when opting into using Octane, and missing optional features.
734
-
735
- ## v3.13.1 (September 23, 2019)
736
-
737
- - [#18273](https://github.com/emberjs/ember.js/pull/18273) [BUGFIX] Fix issues with SSR rehydration of <title>.
738
- - [#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.
739
-
740
- ## v3.13.0 (September 19, 2019)
741
-
742
- - [#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.
743
- - [#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.
744
- - [#18241](https://github.com/emberjs/ember.js/pull/18241) / [#18383](https://github.com/emberjs/ember.js/pull/18383) [FEATURE] Add `updateHook` component-manager capability
745
- - [#18396](https://github.com/emberjs/ember.js/pull/18396) [FEATURE] Implement component-class generator
746
- - [#18389](https://github.com/emberjs/ember.js/pull/18389) [FEATURE] Use @ember/edition-utils to detect the edition that is in use
747
- - [#18214](https://github.com/emberjs/ember.js/pull/18214) [DEPRECATION] Implement the [Deprecate support for mouseEnter/Leave/Move Ember events RFC](https://github.com/emberjs/rfcs/blob/master/text/0486-deprecate-mouseenter.md).
748
- - [#18395](https://github.com/emberjs/ember.js/pull/18395) [BUGFIX] Use `<Nested::Invocation>` in component tests blueprint
749
- - [#18406](https://github.com/emberjs/ember.js/pull/18406) [BUGFIX] Prevent infinite cycles from lazy computed computation
750
- - [#18314](https://github.com/emberjs/ember.js/pull/18314) [BUGFIX] Use class inheritance for getters and setters
751
- - [#18329](https://github.com/emberjs/ember.js/pull/18329) [BUGFIX] Eagerly consume aliases
752
- - [#18278](https://github.com/emberjs/ember.js/pull/18278) [BUGFIX] Bump ember-router-generator from v1.2.3 to v2.0.0 to support parsing `app/router.js` with native class.
753
- - [#18291](https://github.com/emberjs/ember.js/pull/18291) [BUGFIX] Adds the babel-helpers injection plugin back and include `ember-template-compiler` in the vendor folder for Ember.
754
- - [#18296](https://github.com/emberjs/ember.js/pull/18296) [BUGFIX] Ensure {{each-in}} can iterate over keys with periods
755
- - [#18304](https://github.com/emberjs/ember.js/pull/18304) [BUGFIX] Correctly determine the environment by checking the EMBER_ENV environment variable only after it is set
756
- - [#18208](https://github.com/emberjs/ember.js/pull/18208) [BUGFIX] Compile Ember dynamically in consuming applications
757
- - [#18267](https://github.com/emberjs/ember.js/pull/18267) [BUGFIX] Router#url should not error when `location` is a string
758
- - [#18270](https://github.com/emberjs/ember.js/pull/18270) [BUGFIX] Prevent cycle dependency with owner association.
759
- - [#18274](https://github.com/emberjs/ember.js/pull/18274) [BUGFIX] Allow CPs to depend on nested args
760
- - [#18276](https://github.com/emberjs/ember.js/pull/18276) [BUGFIX] Change the assertion for @each dependencies into a deprecation
761
- - [#18281](https://github.com/emberjs/ember.js/pull/18281) [BUGFIX] Check length of targets
762
- - [#18248](https://github.com/emberjs/ember.js/pull/18248) [BUGFIX] Ensures that observers are flushed after CPs are updated
763
- - [#18217](https://github.com/emberjs/ember.js/pull/18217) [BUGFIX] Adds ability for computed props to depend on args
764
- - [#18222](https://github.com/emberjs/ember.js/pull/18222) [BUGFIX] Matches assertion behavior for CPs computing after destroy
765
-
766
- ## v3.12.4 (May 21, 2020)
767
-
768
- - [#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`).
769
- - [#18273](https://github.com/emberjs/ember.js/pull/18273) [BUGFIX] Fix issues with SSR rehydration of <title>.
770
-
771
- ## v3.12.3 (March 12, 2020)
772
-
773
- - [#18809](https://github.com/emberjs/ember.js/pull/18809) [BUGFIX] Do not error (RE: `elementId` changing) if `elementId` is not changed
774
-
775
- ## v3.12.2 (December 4, 2019)
776
-
777
- - [#18576](https://github.com/emberjs/ember.js/pull/18576) [BUGFIX] Fix leftover `const` expressions in legacy builds
778
-
779
- ## v3.12.1 (November 20, 2019)
780
-
781
- - [#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.
782
- - [#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.
783
-
784
- ## v3.12.0 (August 5, 2019)
785
-
786
- - [#18159](https://github.com/emberjs/ember.js/pull/18159) [BUGFIX] Update router.js to ensure buildRouteInfoMetadata does not eagerly cache routes in lazy Engines
787
- - [#18226](https://github.com/emberjs/ember.js/pull/18226) [BUGFIX] Fix routing path with double slash (#18226)
788
- - [#17406](https://github.com/emberjs/ember.js/pull/17406) [BUGFIX] Properties observed through `Ember.Observer` can be set to `undefined`
789
- - [#18150](https://github.com/emberjs/ember.js/pull/18150) [BUGFIX] Fix a memory retention issue with string-based event listeners
790
- - [#18124](https://github.com/emberjs/ember.js/pull/18124) [CLEANUP] Remove deprecated `NAME_KEY`
791
-
792
- ## v3.11.1 (June 27, 2019)
793
-
794
- - [#18159](https://github.com/emberjs/ember.js/pull/18159) Ensure `RouteInfo` object's do not eagerly cache routes in lazy Engines
795
- - [#18150](https://github.com/emberjs/ember.js/pull/18150) Ensure string based event listeners that are removed are not retained
796
-
797
- ## v3.11.0 (June 24, 2019)
798
-
799
- - [#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).
800
- - [#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).
801
- - [#17960](https://github.com/emberjs/ember.js/pull/17960) / [#18026](https://github.com/emberjs/ember.js/pull/18026) [FEATURE] Implement the [{{on}} modifier RFC](https://github.com/emberjs/rfcs/blob/master/text/0471-on-modifier.md)
802
- - [#17858](https://github.com/emberjs/ember.js/pull/17858) / [#18026](https://github.com/emberjs/ember.js/pull/18026) [FEATURE] Implement the [Inject Parameter Normalization RFC](https://github.com/emberjs/rfcs/blob/master/text/0451-injection-parameter-normalization.md).
803
- - [#17910](https://github.com/emberjs/ember.js/pull/17910) [DEPRECATION] Add deprecation for Function.prototype extensions.
804
- - [#17845](https://github.com/emberjs/ember.js/pull/17845) [CLEANUP] Removes various deprecated APIs
805
- - [#17843](https://github.com/emberjs/ember.js/pull/17843) [CLEANUP] Remove deprecated intimate apis in the router
806
- - [#17940](https://github.com/emberjs/ember.js/pull/17940) [CLEANUP] Remove `sync` queue from @ember/runloop.
807
- - [#18110](https://github.com/emberjs/ember.js/pull/18110) [BUGFIX] Ensure calling `recompute` on a class-based helper causes it to recompute
808
-
809
- ## v3.10.2 (June 18, 2019)
810
-
811
- - [#17971](https://github.com/emberjs/ember.js/pull/17971) [BUGFIX] Ensure query param only link-to's work in error states.
812
- - [#18080](https://github.com/emberjs/ember.js/pull/18080) [BUGFIX] Ensure that `ember-template-compiler` can be used during FastBoot runtime.
813
-
814
- ## v3.10.1 (June 4, 2019)
815
-
816
- - [#18071](https://github.com/emberjs/ember.js/pull/18071) [BUGFIX] Ensure modifiers do not run in FastBoot modes. (#18071)
817
- - [#18064](https://github.com/emberjs/ember.js/pull/18064) [BUGFIX] Fix 'hasAttribute is not a function' when jQuery is disabled (#18064)
818
-
819
- ## v3.10.0 (May 13, 2019)
820
-
821
- - [#17836](https://github.com/emberjs/ember.js/pull/17836) [BREAKING] Explicitly drop support for Node 6
822
- - [#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)).
823
- - [#17735](https://github.com/emberjs/ember.js/pull/17735) / [#17772](https://github.com/emberjs/ember.js/pull/17772) / [#17811](https://github.com/emberjs/ember.js/pull/17811) / [#17814](https://github.com/emberjs/ember.js/pull/17814) [FEATURE] Implement the Angle Bracket Invocations For Built-in Components RFC (see [emberjs/rfcs#0459](https://github.com/emberjs/rfcs/blob/master/text/0459-angle-bracket-built-in-components.md)).
824
- - [#17548](https://github.com/emberjs/ember.js/pull/17548) / [#17604](https://github.com/emberjs/ember.js/pull/17604) / [#17690](https://github.com/emberjs/ember.js/pull/17690) / [#17827](https://github.com/emberjs/ember.js/pull/17827) / [#17828](https://github.com/emberjs/ember.js/pull/17828) [FEATURE] Implement the Decorators RFC (see [emberjs/rfcs#0408](https://github.com/emberjs/rfcs/blob/master/text/0408-decorators.md)).
825
- - [#17256](https://github.com/emberjs/ember.js/pull/17256) / [#17664](https://github.com/emberjs/ember.js/pull/17664) [FEATURE] Implement RouteInfo Metadata RFC (see [emberjs/rfcs#0398](https://github.com/emberjs/rfcs/blob/master/text/0398-RouteInfo-Metadata.md)).
826
- - [#17938](https://github.com/emberjs/ember.js/pull/17938) [BUGFIX] Expose mechanism to detect if a property is a computed
827
- - [#17974](https://github.com/emberjs/ember.js/pull/17974) [BUGFIX] Ensure inheritable observers on object proxies are string based
828
- - [#17930](https://github.com/emberjs/ember.js/pull/17930) [BUGFIX] Update assertion for events in tagless component to include method names
829
- - [#17859](https://github.com/emberjs/ember.js/pull/17859) [BUGFIX] Fixes a regression in the legacy build
830
- - [#17891](https://github.com/emberjs/ember.js/pull/17891) [BUGFIX] Loosen "engines" restriction for Node versions
831
- - [#17900](https://github.com/emberjs/ember.js/pull/17900) [BUGFIX] Fix version for APP_CTRL_ROUTER_PROPS deprecation flag
832
- - [#17846](https://github.com/emberjs/ember.js/pull/17846) [BUGFIX] Fix issues with template-only components causing errors in subsequent updates.
833
- - [#17872](https://github.com/emberjs/ember.js/pull/17872) [BUGFIX] Fix issue where `{{link-to}}` is causing unexpected local variable shadowing assertions.
834
- - [#17841](https://github.com/emberjs/ember.js/pull/17841) [BUGFIX] Ensure `@sort` works on non-`Ember.Object`s.
835
- - [#17855](https://github.com/emberjs/ember.js/pull/17855) [BUGFIX] Expose (private) computed `_getter` functions.
836
- - [#17860](https://github.com/emberjs/ember.js/pull/17860) [BUGFIX] Add assertions for required parameters in computed macros, when used as a decorator.
837
- - [#17868](https://github.com/emberjs/ember.js/pull/17868) [BUGFIX] Fix controller injection via decorators.
838
- - [#17747](https://github.com/emberjs/ember.js/pull/17747) [BUGFIX] Correct component-test blueprint for ember-cli-mocha
839
- - [#17788](https://github.com/emberjs/ember.js/pull/17788) [BUGFIX] Fix native DOM events in Glimmer Angle Brackets
840
- - [#17833](https://github.com/emberjs/ember.js/pull/17833) [BUGFIX] Reverts the naming of setClassicDecorator externally
841
- - [#17818](https://github.com/emberjs/ember.js/pull/17818) [BUGFIX] Fix event dispatcher to not rely on `elementId`.
842
- - [#17740](https://github.com/emberjs/ember.js/pull/17740) [BUGFIX] Fix octane component blueprint and octane blueprint tests
843
- - [#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
844
- - [#17702](https://github.com/emberjs/ember.js/pull/17702) Extend from glimmer component for octane blueprint
845
-
846
- ## v3.9.1 (April 09, 2019)
847
-
848
- - [#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.
849
- - [#17874](https://github.com/emberjs/ember.js/pull/17874) [BUGFIX] Fix issue with `event.stopPropagation()` in component event handlers when jQuery is disabled.
850
- - [#17876](https://github.com/emberjs/ember.js/pull/17876) [BUGFIX] Fix issue with multiple `{{action}}` modifiers on the same element when jQuery is disabled.
851
-
852
- ## v3.8.3 (June 28, 2019)
853
-
854
- - [#18159](https://github.com/emberjs/ember.js/pull/18159) [BUGFIX] Ensure `RouteInfo` object's do not eagerly cache routes in lazy Engines
855
- - [#18150](https://github.com/emberjs/ember.js/pull/18150) [BUGFIX] Ensure string based event listeners that are removed are not retained
856
- - [#18080](https://github.com/emberjs/ember.js/pull/18080) [BUGFIX] Fix `ember-template-compiler` compatibility with Fastboot.
857
-
858
- ## v3.8.2 (June, 4, 2019)
859
-
860
- - [#18071](https://github.com/emberjs/ember.js/pull/18071) [BUGFIX] Ensure modifiers do not run in FastBoot modes. (#18071)
861
- - [#18064](https://github.com/emberjs/ember.js/pull/18064) [BUGFIX] Fix 'hasAttribute is not a function' when jQuery is disabled (#18064)
862
- - [#17974](https://github.com/emberjs/ember.js/pull/17974) [BUGFIX] Ensure inheritable observers on object proxies are string based
863
- - [#17859](https://github.com/emberjs/ember.js/pull/17859) [BUGFIX] Fixes a regression in the legacy build
864
-
865
- ## v3.8.1 (April 02, 2019)
866
-
867
- - [#17684](https://github.com/emberjs/ember.js/pull/17684) [BUGFIX] Enable maximum rerendering limit to be customized.
868
- - [#17823](https://github.com/emberjs/ember.js/pull/17823) Update router_js to 6.2.4
869
-
870
- ## v3.9.0 (April 01, 2019)
871
-
872
- - [#17470](https://github.com/emberjs/ember.js/pull/17470) [DEPRECATION] Implements the Computed Property Modifier deprecation RFCs
873
- * Deprecates `.property()` (see [emberjs/rfcs#0375](https://github.com/emberjs/rfcs/blob/master/text/0375-deprecate-computed-property-modifier.md)
874
- * Deprecates `.volatile()` (see [emberjs/rfcs#0370](https://github.com/emberjs/rfcs/blob/master/text/0370-deprecate-computed-volatile.md)
875
- * Deprecates computed overridability (see [emberjs/rfcs#0369](https://github.com/emberjs/rfcs/blob/master/text/0369-deprecate-computed-clobberability.md)
876
- - [#17488](https://github.com/emberjs/ember.js/pull/17488) [DEPRECATION] Deprecate this.$() in curly components (see [emberjs/rfcs#0386](https://github.com/emberjs/rfcs/blob/master/text/0386-remove-jquery.md))
877
- - [#17489](https://github.com/emberjs/ember.js/pull/17489) [DEPRECATION] Deprecate Ember.$() (see [emberjs/rfcs#0386](https://github.com/emberjs/rfcs/blob/master/text/0386-remove-jquery.md))
878
- - [#17540](https://github.com/emberjs/ember.js/pull/17540) [DEPRECATION] Deprecate aliasMethod
879
- - [#17823](https://github.com/emberjs/ember.js/pull/17823) Update router_js to 6.2.4
880
- - [#17733](https://github.com/emberjs/ember.js/pull/17733) [BUGFIX] Assert on use of reserved component names (`input` and `textarea`)
881
- - [#17710](https://github.com/emberjs/ember.js/pull/17710) [BUGFIX] Allow accessors in mixins
882
- - [#17684](https://github.com/emberjs/ember.js/pull/17684) [BUGFIX] Enable maximum rerendering limit to be customized.
883
- - [#17691](https://github.com/emberjs/ember.js/pull/17691) [BUGFIX] Ensure tagForProperty works on class constructors
884
- - [#17618](https://github.com/emberjs/ember.js/pull/17618) [BUGFIX] Migrate autorun microtask queue to Promise.then
885
- - [#17649](https://github.com/emberjs/ember.js/pull/17649) [BUGFIX] Revert decorator refactors
886
- - [#17487](https://github.com/emberjs/ember.js/pull/17487) [BUGFIX] Fix scenario where aliased properties did not update in production mode
887
-
888
- ## v3.8.0 (February 18, 2019)
889
-
890
- - [#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)).
891
- - [#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))
892
- - [#16735](https://github.com/emberjs/ember.js/pull/16735) [BUGFIX] Observed properties not being marked as enum
893
- - [#17498](https://github.com/emberjs/ember.js/pull/17498) [BUGFIX] Don't remove dep keys in `didUnwatch`
894
- - [#17467](https://github.com/emberjs/ember.js/pull/17467) [BUGFIX] Fix substate interactions with aborts
895
- - [#17413](https://github.com/emberjs/ember.js/pull/17413) [BUGFIX] Fix missing import in instance-initializer blueprint for ember-mocha
896
- - [#17319](https://github.com/emberjs/ember.js/pull/17319) [CLEANUP] Remove deprecated 'POSITIONAL_PARAM_CONFLICT'
897
- - [#17394](https://github.com/emberjs/ember.js/pull/17394) [CLEANUP] Remove deprecated code in mixins/array
898
- - [#17244](https://github.com/emberjs/ember.js/pull/17244) / [#17499](https://github.com/emberjs/ember.js/pull/17499) Upgrade to Glimmer VM 0.37.1
899
- Fixes a few issues:
900
- * Usage of positional arguments with custom components.
901
- * Forwarding attributes via `...attributes` to a dynamic component.
902
- * Prevent errors when rendering many template blocks (`Error: Operand over 16-bits. Got 65536`).
903
- - [#17166](https://github.com/emberjs/ember.js/pull/17166) Improve performance of get() / set()
904
- - [#16710](https://github.com/emberjs/ember.js/pull/16710) Deprecation of private `NAME_KEY`
905
- - [#17216](https://github.com/emberjs/ember.js/pull/17216) Use native Error instead of custom Error subclass.
906
- - [#17340](https://github.com/emberjs/ember.js/pull/17340) Remove unused `hooks` variable from qunit-rfc-232 util-test blueprint
907
- - [#17357](https://github.com/emberjs/ember.js/pull/17357) Allow notifyPropertyChange to be imported from @ember/object
908
-
909
- ## v3.7.3 (February 6, 2019)
910
-
911
- - [#17563](https://github.com/emberjs/ember.js/pull/17563) [BUGFIX] Transition.send/trigger call signature
912
- - [#17552](https://github.com/emberjs/ember.js/pull/17552) [BUGFIX] Support numbers in component names for Angle Brackets
913
-
914
- ## v3.7.2 (January 22, 2019)
915
-
916
- * Upgrade @glimmer/* packages to 0.36.6. Fixes a few issues:
917
- * Usage of positional arguments with custom components.
918
- * Forwarding attributes via `...attributes` to a dynamic component.
919
- * Prevent errors when rendering many template blocks (`Error: Operand over 16-bits. Got 65536`).
920
-
921
- ## v3.7.1 (January 21, 2019)
922
-
923
- - [#17461](https://github.com/emberjs/ember.js/pull/17461) [BUGFIX] Fix substate interactions with aborts
924
-
925
- ## v3.7.0 (January 7, 2019)
926
-
927
- - [#17254](https://github.com/emberjs/ember.js/pull/17254) [BREAKING] Explicitly drop support for Node 4
928
- - [#17426](https://github.com/emberjs/ember.js/pull/17426) [BUGFIX] Fix 'strict mode does not allow function declarations'
929
- - [#17431](https://github.com/emberjs/ember.js/pull/17431) [BUGFIX] Fix ability to override a computed.volatile
930
- - [#17398](https://github.com/emberjs/ember.js/pull/17398) [BUGFIX] Avoid console.trace for every Ember.warn
931
- - [#17399](https://github.com/emberjs/ember.js/pull/17399) [BUGFIX] Local variable shadowing assert
932
- - [#17403](https://github.com/emberjs/ember.js/pull/17403) [BUGFIX] Ensure legacy build of template compiler can be loaded.
933
- - [#17328](https://github.com/emberjs/ember.js/pull/17328) [BUGFIX] Ensure that delayed transition retrys work
934
- - [#17374](https://github.com/emberjs/ember.js/pull/17374) [BUGFIX] Fix cyclic references on Array.prototype
935
- - [#17134](https://github.com/emberjs/ember.js/pull/17134) [CLEANUP] Remove deprecated '_router'
936
- - [#17133](https://github.com/emberjs/ember.js/pull/17133) [CLEANUP] Remove deprecated 'property{Did,Will}Change'
937
- - [#16898](https://github.com/emberjs/ember.js/pull/16898) Add RFC 232 style util test blueprint for Mocha
938
-
939
- ## v3.6.1 (December 18, 2018)
940
-
941
- - [#17328](https://github.com/emberjs/ember.js/pull/17328) [BUGFIX] Ensure that delayed transition retrys work
942
- - [#17374](https://github.com/emberjs/ember.js/pull/17374) [BUGFIX] Fix cyclic references on Array.prototype
943
-
944
- ## v3.6.0 (December 6, 2018)
945
-
946
- - [#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)
947
- - [#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)
948
- - [#17188](https://github.com/emberjs/ember.js/pull/17188) / [#17246](https://github.com/emberjs/ember.js/pull/17246) [BUGFIX] Adds a second dist build which targets IE and early Android versions. Enables avoiding errors when using native classes without transpilation.
949
- - [#17238](https://github.com/emberjs/ember.js/pull/17238) [DEPRECATION] Deprecate calling `A` as a constructor
950
- - [#16956](https://github.com/emberjs/ember.js/pull/16956) [DEPRECATION] Deprecate Ember.merge
951
- - [#17220](https://github.com/emberjs/ember.js/pull/17220) [BUGFIX] Fix cycle detection in Ember.copy
952
- - [#17227](https://github.com/emberjs/ember.js/pull/17227) [BUGFIX] Fix mouseEnter/Leave event delegation w/o jQuery for SVG & IE11
953
- - [#17233](https://github.com/emberjs/ember.js/pull/17233) [BUGFIX] Reverts EmberError to be a standard function
954
- - [#17251](https://github.com/emberjs/ember.js/pull/17251) [BUGFIX] Prevent errors with debug compiled templates in prod.
955
- - [#17241](https://github.com/emberjs/ember.js/pull/17241) [BUGFIX] Fix line endings of component blueprint on Windows
956
- - [#17271](https://github.com/emberjs/ember.js/pull/17271) [BUGFIX] Update backburner.js to 2.4.2.
957
- - [#17184](https://github.com/emberjs/ember.js/pull/17184) [BUGFIX] Ensures removeAllListeners does not break subsequent adds
958
- - [#17169](https://github.com/emberjs/ember.js/pull/17169) [BUGFIX] Add default implementations of Component lifecycle hooks
959
- - [#17137](https://github.com/emberjs/ember.js/pull/17137) [BUGFIX] Assert when local variables shadow modifier invocations
960
- - [#17132](https://github.com/emberjs/ember.js/pull/17132) [BUGFIX] Assert when local variables shadow helper invocations
961
- - [#17135](https://github.com/emberjs/ember.js/pull/17135) [BUGFIX] Ensure local variables win over helper invocations
962
- - [#16923](https://github.com/emberjs/ember.js/pull/16923) [BUGFIX] ES6 classes on/removeListener and observes/removeObserver interop
963
- - [#17153](https://github.com/emberjs/ember.js/pull/17153) [BUGFIX] Blueprints can generate components with a single word name
964
- - [#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
965
- - [#17051](https://github.com/emberjs/ember.js/pull/17051) Update glimmer-vm packages to 0.36.4
966
-
967
- ## v3.5.1 (October 29, 2018)
968
-
969
- - [#17028](https://github.com/emberjs/ember.js/pull/17028) Mark `defineProperty` as public (yet low level) API.
970
- - [#17115](https://github.com/emberjs/ember.js/pull/17115) [BUGFIX] Pass the event parameter to sendAction
971
- - [#17128](https://github.com/emberjs/ember.js/pull/17128) [BUGFIX] Fix sourcemaping issues due to multiple sourcemap directives.
972
- - [#17130](https://github.com/emberjs/ember.js/pull/17130) [BUGFIX] Ensure that timers scheduled after a system sleep are fired properly.
973
-
974
- ## v3.5.0 (October 8, 2018)
975
-
976
- - [#16978](https://github.com/emberjs/ember.js/pull/16978) [BUGFIX] Properly teardown alias
977
- - [#16877](https://github.com/emberjs/ember.js/pull/16877) [CLEANUP] Allow routes to be named "array" and "object"
978
-
979
- ## v3.4.8 (January 22, 2019)
980
-
981
- * Upgrade @glimmer/* packages to 0.35.10. Fixes a few issues:
982
- * Usage of positional arguments with custom components.
983
- * Forwarding attributes via `...attributes` to a dynamic component.
984
- * Prevent errors when rendering many template blocks (`Error: Operand over 16-bits. Got 65536`).
985
-
986
- ## v3.4.7 (December 7, 2018)
987
-
988
- - [#17271](https://github.com/emberjs/ember.js/pull/17271) [BUGFIX] Update `backburner.js` to 2.4.2.
989
-
990
- ## v3.4.6 (October 29, 2018)
991
-
992
- - [#17115](https://github.com/emberjs/ember.js/pull/17115) [BUGFIX] Ensure `{{input` continues to pass the event to the actions that it fires.
993
- - [#17128](https://github.com/emberjs/ember.js/pull/17128) [BUGFIX] Fix invalid sourcemap declarations.
994
- - [#17130](https://github.com/emberjs/ember.js/pull/17130) [BUGFIX] Ensure that timers scheduled after a system sleep are fired properly.
995
-
996
- ## v3.4.5 (October 4, 2018)
997
-
998
- - [#17029](https://github.com/emberjs/ember.js/pull/17029) [BUGFIX] Update backburner.js to 2.4.0.
999
-
1000
- ## v3.4.4 (September 27, 2018)
1001
-
1002
- - [#17013](https://github.com/emberjs/ember.js/pull/17013) [BUGFIX] Fix rendering of empty content with `{{{...}}}` or `{{...}}` with `htmlSafe('')` in IE11
1003
-
1004
- ## v3.4.3 (September 25, 2018)
1005
-
1006
- - [#17003](https://github.com/emberjs/ember.js/pull/17003) [BUGFIX] Fix rendering of empty content with `{{{...}}}` or `{{...}}` with `htmlSafe('')`
1007
-
1008
- ## v3.4.2 (September 24, 2018)
1009
-
1010
- - [#16860](https://github.com/emberjs/ember.js/pull/16860) [BUGFIX] Clear chains in ProxyMixin when destroyed
1011
- - [#16999](https://github.com/emberjs/ember.js/pull/16999) [BUGFIX] Fix mouseEnter/Leave event delegation without jQuery
1012
-
1013
- ## v3.4.1 (September 10, 2018)
1014
-
1015
- - [#16933](https://github.com/emberjs/ember.js/pull/16933) [BUGFIX] Update glimmer-vm packages to 0.35.8
1016
-
1017
- ## v3.4.0 (August 27, 2018)
1018
-
1019
- - [#16603](https://github.com/emberjs/ember.js/pull/16603) [BUGFIX] Support mouseEnter/Leave events w/o jQuery
1020
- - [#16857](https://github.com/emberjs/ember.js/pull/16857) [BUGFIX] Prevents the recursive redefinition of root chains
1021
- - [#16854](https://github.com/emberjs/ember.js/pull/16854) [BUGFIX] Don't thread FactoryManager through createComponent
1022
- - [#16773](https://github.com/emberjs/ember.js/pull/16773) [FEATURE] Custom component manager (see [emberjs/rfcs#213](https://github.com/emberjs/rfcs/blob/master/text/0213-custom-components.md) for more details)
1023
- - [#16708](https://github.com/emberjs/ember.js/pull/16708) [FEATURE] Angle bracket component invocation (see [emberjs/rfcs#311](https://github.com/emberjs/rfcs/blob/master/text/0311-angle-bracket-invocation.md) for more details)
1024
- - [#16744](https://github.com/emberjs/ember.js/pull/16744) [DEPRECATION] Deprecate `component#sendAction` (see [emberjs/rfcs#335](https://github.com/emberjs/rfcs/blob/master/text/0335-deprecate-send-action.md) for more details)
1025
- - [#16720](https://github.com/emberjs/ember.js/pull/16720) Upgrade `backburner.js` to 2.3.0
1026
- - [#16783](https://github.com/emberjs/ember.js/pull/16783) [BUGFIX] Allow setting length on ArrayProxy.
1027
- - [#16785](https://github.com/emberjs/ember.js/pull/16785) [BUGFIX] Ensure `ArrayMixin#invoke` returns an Ember.A.
1028
- - [#16784](https://github.com/emberjs/ember.js/pull/16784) [BUGFIX] Setting ArrayProxy#content in willDestroy resets length.
1029
- - [#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))
1030
- - [#16797](https://github.com/emberjs/ember.js/pull/16797) [BUGFIX] Drop autorun assertion
1031
-
1032
- ## v3.3.2 (August 20, 2018)
1033
-
1034
- - [#16853](https://github.com/emberjs/ember.js/pull/16853) [BUGFIX] Allow ArrayProxy#pushObjects to accept ArrayProxy again
1035
- - [#16870](https://github.com/emberjs/ember.js/pull/16870) [BUGFIX] Enable @ember/object#get to be called with an empty string
1036
-
1037
- ## v3.3.1 (July 23, 2018)
1038
-
1039
- - [#16836](https://github.com/emberjs/ember.js/pull/16836/commits) [DOC] Fix Broken 3.3 API Documentation
1040
-
1041
- ## v3.3.0 (July 16, 2018)
1042
-
1043
- - [#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).
1044
- - [#16690](https://github.com/emberjs/ember.js/pull/16690) [DEPRECATION] [emberjs/rfcs#294](emberjs/rfcs#294) Deprecate accessing `jQuery.Event#originalEvent`.
1045
- - [#16691](https://github.com/emberjs/ember.js/pull/16691) [DEPRECATION] [emberjs/rfcs#237](https://github.com/emberjs/rfcs/pull/237) Implement `Ember.Map`, `Ember.MapWithDefault`, and `Ember.OrderedSet` deprecation.
1046
- - [#16692](https://github.com/emberjs/ember.js/pull/16692) [DEPRECATION] [emberjs/rfcs#322](https://github.com/emberjs/rfcs/pull/322) Implement `Ember.copy`/`Ember.Copyable` deprecation.
1047
- - [#16709](https://github.com/emberjs/ember.js/pull/16709) [BUGFIX] Avoid ordered set deprecation in @ember/ordered-set addon.
1048
- - [#16729](https://github.com/emberjs/ember.js/pull/16729) [BUGFIX] Throw error if run.bind receives no method.
1049
- - [#16731](https://github.com/emberjs/ember.js/pull/16731) [BUGFIX] Better error when a route name is not valid.
1050
- - [#16743](https://github.com/emberjs/ember.js/pull/16743) [BUGFIX] Update glimmer-vm to 0.35.4.
1051
- - [#16767](https://github.com/emberjs/ember.js/pull/16767) [BUGFIX] Ensure meta._parent is initialized.
1052
- - [#16781](https://github.com/emberjs/ember.js/pull/16781) [BUGFIX] Ensure tests from @ember/* are excluded from debug/prod builds.
1053
- - [#16619](https://github.com/emberjs/ember.js/pull/16619) [BUGFIX] Update router_js to ensure `(hash` works in query params.
1054
- - [#16632](https://github.com/emberjs/ember.js/pull/16632) [BUGFIX] computed.sort array should update if sort properties array is empty/
1055
-
1056
- ## v3.2.2 (June 21, 2018)
1057
-
1058
- - [#16754](https://github.com/emberjs/ember.js/pull/16754) [BUGFIX] Fix container destroy timing
1059
-
1060
- ## v3.2.1 (June 19, 2018)
1061
-
1062
- - [#16750](https://github.com/emberjs/ember.js/pull/16750) [BUGFIX] Bring back isObject guard for ember-utils/is_proxy
1063
-
1064
- ## v3.2.0 (May 31, 2018)
1065
-
1066
- - [#16613](https://github.com/emberjs/ember.js/pull/16613) [BUGFIX] Prevent errors in ember-engines + 3.1 + proxies.
1067
- - [#16597](https://github.com/emberjs/ember.js/pull/16597) [BUGFIX] Ensure `Ember.run.cancelTimers` is present.
1068
- - [#16605](https://github.com/emberjs/ember.js/pull/16605) [BUGFIX] Use resetCache on container destroy.
1069
- - [#16615](https://github.com/emberjs/ember.js/pull/16615) [BUGFIX] Fix NAMESPACES_BY_ID leaks.
1070
- - [#16539](https://github.com/emberjs/ember.js/pull/16539) [BUGFIX] Ember is already registered by the libraries registry already.
1071
- - [#16559](https://github.com/emberjs/ember.js/pull/16559) [BUGFIX] Fix property normalization, Update glimmer-vm to 0.34.0.
1072
- - [#16563](https://github.com/emberjs/ember.js/pull/16563) [BUGFIX] Ensure `ariaRole` can be initially false.
1073
- - [#16550](https://github.com/emberjs/ember.js/pull/16550) [BUGFIX] Decrement counter of pending requests in the next tick.
1074
- - [#16551](https://github.com/emberjs/ember.js/pull/16551) [BUGFIX] Fix `proto` return value for native classes.
1075
- - [#16558](https://github.com/emberjs/ember.js/pull/16558) [BUGFIX] Ensure ComponentDefinitions do not leak heap space.
1076
- - [#16560](https://github.com/emberjs/ember.js/pull/16560) [BUGFIX] avoid strict assertion when object proxy calls thru for function.
1077
- - [#16564](https://github.com/emberjs/ember.js/pull/16564) [BUGFIX] Ensure Ember.isArray does not trigger proxy assertion.
1078
- - [#16572](https://github.com/emberjs/ember.js/pull/16572) [BUGFIX] Fix curly component class reference setup.
1079
- - [#16493](https://github.com/emberjs/ember.js/pull/16493) [BUGFIX] Ensure proxies have access to `getOwner(this)`.
1080
- - [#16494](https://github.com/emberjs/ember.js/pull/16494) [BUGFIX] Adjust assertion to allow for either undefined or null.
1081
- - [#16499](https://github.com/emberjs/ember.js/pull/16499) [BUGFIX] Object to string serialization.
1082
- - [#16514](https://github.com/emberjs/ember.js/pull/16514) [BUGFIX] Bring back (with deprecation) Ember.EXTEND_PROTOTYPES.
1083
- - [#16520](https://github.com/emberjs/ember.js/pull/16520) [BUGFIX] Adds options checking ability to debug/deprecation test helpers.
1084
- - [#16526](https://github.com/emberjs/ember.js/pull/16526) [BUGFIX] Ensure setting a `NAME_KEY` does not error.
1085
- - [#16527](https://github.com/emberjs/ember.js/pull/16527) [BUGFIX] Update glimmer-vm to 0.33.5.
1086
- - [#16250](https://github.com/emberjs/ember.js/pull/16250) [DEPRECATION] Deprecation of `Ember.Logger`.
1087
- - [#16436](https://github.com/emberjs/ember.js/pull/16436) [BUGFIX] Refactor `CoreObject` to leverage native JS semantics.
1088
- - [#16382](https://github.com/emberjs/ember.js/pull/16382) Upgrade `backburner.js` to 2.2.2.
1089
- - [#16387](https://github.com/emberjs/ember.js/pull/16387) [BUGFIX] Add an assertion that actions cannot be sent from a destroyed/destroying object.
1090
- - [#16386](https://github.com/emberjs/ember.js/pull/16386) [BUGFIX] Add an assertion if you attempt a `transitionTo` when the app is destroyed.
1091
- - [#16399](https://github.com/emberjs/ember.js/pull/16399) [BUGFIX] `{{#each}}` and `{{#each-in}}` now support objects implementing the native iteration protocol, including `Map` and `Set`.
1092
- - [#16399](https://github.com/emberjs/ember.js/pull/16399) [BUGFIX] `{{#each-in}}` now correctly handles `key="@index"` (using the index/position). The new `key="@key"` option uses the item's key.
1093
- - [#16433](https://github.com/emberjs/ember.js/pull/16433) [CLEANUP] Remove `content` alias.
1094
- - [#16462](https://github.com/emberjs/ember.js/pull/16462) [CLEANUP] Remove deprecated `MODEL_FACTORY_INJECTIONS`.
1095
- - [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.
1096
-
1097
- ## v3.1.4 (August 07, 2018)
1098
-
1099
- - [#16565](https://github.com/emberjs/ember.js/pull/16565) Fix template / component caching during rendering.
1100
- - [#16853](https://github.com/emberjs/ember.js/pull/16853) [BUGFIX] Allow ArrayProxy#pushObjects to accept ArrayProxy again
1101
-
1102
- ## v3.1.3 (June 21, 2018)
1103
- - [#16754](https://github.com/emberjs/ember.js/pull/16754) [BUGFIX] Fix container destroy timing
1104
-
1105
- ## v3.1.2 (May 7, 2018)
1106
- - [#16600](https://github.com/emberjs/ember.js/pull/16600) [BUGFIX] Fix SimpleHelper memory leak
1107
- - [#16605](https://github.com/emberjs/ember.js/pull/16605) [BUGFIX] Use resetCache on container destroy.
1108
- - [182fc3](https://github.com/emberjs/ember.js/commit/182fc315664e8b4847f03133cc01e38767cad41e) [BUGFIX] Update glimmer-vm to ensure arguments are properly garbage collected.
1109
- - [#16281](https://github.com/emberjs/ember.js/pull/16281) [BUGFIX] Ensure warning from `{{#link-to` RE: loading state does not throw an assertion.
1110
-
1111
- ## v3.1.1 (April 23, 2018)
1112
- - [#16559](https://github.com/emberjs/ember.js/pull/16559) [BUGFIX] Fix property normalization, Update glimmer-vm to 0.34.0
1113
- - [#16493](https://github.com/emberjs/ember.js/pull/16493) [BUGFIX] Ensure proxies have access to `getOwner(this)`.
1114
- - [#16496](https://github.com/emberjs/ember.js/pull/16496) [BUGFIX] Add exception for `didRemoveListener` so evented proxy objects can function
1115
- - [#16494](https://github.com/emberjs/ember.js/pull/16494) [BUGFIX] Adjust assertion to allow for either undefined or null
1116
- - [#16558](https://github.com/emberjs/ember.js/pull/16558) [BUGFIX] Ensure ComponentDefinitions do not leak heap space.
1117
- - [#16560](https://github.com/emberjs/ember.js/pull/16560) [BUGFIX] Avoid strict assertion when object proxy calls thru for function
1118
- - [#16563](https://github.com/emberjs/ember.js/pull/16563) [BUGFIX] Ensure `ariaRole` can be initially false.
1119
- - [#16564](https://github.com/emberjs/ember.js/pull/16564) [BUGFIX] Ensure Ember.isArray does not trigger proxy assertion.
1120
- - [#16572](https://github.com/emberjs/ember.js/pull/16572) [BUGFIX] Fix curly component class reference setup
1121
-
1122
- ## v3.1.0 (April 10, 2018)
1123
- - [#16293](https://github.com/emberjs/ember.js/pull/16293) [BUGFIX] Ignore --pod for -addon blueprints: helper, initializer, and instance-initializer
1124
- - [#16312](https://github.com/emberjs/ember.js/pull/16312) [DEPRECATION] Deprecate `Route.prototype.router` in favor of `Route.prototype._router`
1125
- - [#16326](https://github.com/emberjs/ember.js/pull/16326) [BUGFIX] Expanded syntax error for if handlebars helper to include source of error
1126
- - [#16350](https://github.com/emberjs/ember.js/pull/16350) [BUGFIX] Fix initializers tests blueprints
1127
- - [#16294](https://github.com/emberjs/ember.js/pull/16294) [BUGFIX] Fix input macro params handling
1128
- - [#16307](https://github.com/emberjs/ember.js/pull/16307) [BUGFIX] Ensure proper .toString() of default components.
1129
- - [#16287](https://github.com/emberjs/ember.js/pull/16287) [BUGFIX] Update to router_js@2.0.0-beta.2.
1130
- - [#16245](https://github.com/emberjs/ember.js/pull/16245) [BUGFIX] Ensure errors in deferred component hooks can be recovered.
1131
- - [#16246](https://github.com/emberjs/ember.js/pull/16246) [BUGFIX] computed.sort should not sort if sortProperties is empty
1132
- - [emberjs/rfcs#276](https://github.com/emberjs/rfcs/blob/master/text/0276-named-args.md) [FEATURE named-args] enabled by default.
1133
- - [emberjs/rfcs#278](https://github.com/emberjs/rfcs/blob/master/text/0278-template-only-components.md) [FEATURE template-only-glimmer-components] Enable-able via `@ember/optional-features` addon.
1134
- - [emberjs/rfcs#280](https://github.com/emberjs/rfcs/blob/master/text/0280-remove-application-wrapper.md) [FEATURE application-template-wrapper] Enable-able via `@ember/optional-features` addon.
1135
- - [emberjs/rfcs#281](https://github.com/emberjs/rfcs/blob/master/text/0281-es5-getters.md) [FEATURE native-es5-getters] Enabled by default.
1136
- - [#15828](https://github.com/emberjs/ember.js/pull/15828) Upgrade glimmer-vm to latest version.
1137
-
1138
- ## v3.0.0 (February 13, 2018)
1139
-
1140
- - [#16218](https://github.com/emberjs/ember.js/pull/16218) [BUGFIX beta] Prevent errors when using const `(get arr 1)`.
1141
- - [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX lts] Avoid excessively calling Glimmer AST transforms.
1142
- - [#16199](https://github.com/emberjs/ember.js/pull/16199) [BUGFIX] Mention "computed properties" in the assertion message
1143
- - [#16200](https://github.com/emberjs/ember.js/pull/16200) [BUGFIX] Prevent test error by converting illegal characters
1144
- - [#16179](https://github.com/emberjs/ember.js/pull/16179) [BUGFIX] Fix a few bugs in the caching ArrayProxy implementation
1145
- - [#16160](https://github.com/emberjs/ember.js/pull/16160) [BUGFIX] Remove humanize() call from generated test descriptions
1146
- - [#16101](https://github.com/emberjs/ember.js/pull/16101) [CLEANUP] Remove legacy ArrayProxy features
1147
- - [#16116](https://github.com/emberjs/ember.js/pull/16116) [CLEANUP] Remove private enumerable observers
1148
- - [#16117](https://github.com/emberjs/ember.js/pull/16117) [BUGFIX] link-to active class applied when params change
1149
- - [#16132](https://github.com/emberjs/ember.js/pull/16132) [BUGFIX] Bring back `sync` queue with deprecation (until: 3.5.0).
1150
- - [#16156](https://github.com/emberjs/ember.js/pull/16156) [BUGFIX] Update to backburner.js@2.1.0.
1151
- - [#16157](https://github.com/emberjs/ember.js/pull/16157) [BUGFIX] Mutating an arranged ArrayProxy is not allowed
1152
- - [#16162](https://github.com/emberjs/ember.js/pull/16162) [CLEANUP] Remove unused private listener methods
1153
- - [#16163](https://github.com/emberjs/ember.js/pull/16163) [CLEANUP] Remove unused path caches
1154
- - [#16169](https://github.com/emberjs/ember.js/pull/16169) [BUGFIX] Fix various issues with descriptor trap.
1155
- - [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
1156
- - [#16095](https://github.com/emberjs/ember.js/pull/16095) [CLEANUP] Fix ember-2-legacy support for Ember.Binding.
1157
- - [#16097](https://github.com/emberjs/ember.js/pull/16097) / [#16110](https://github.com/emberjs/ember.js/pull/16110) [CLEANUP] Remove `sync` runloop queue.
1158
- - [#16099](https://github.com/emberjs/ember.js/pull/16099) [CLEANUP] Remove custom eventManager support.
1159
- - [#16067](https://github.com/emberjs/ember.js/pull/16067) [BUGFIX] Fix issues with `run.debounce` with only method and wait.
1160
- - [#16045](https://github.com/emberjs/ember.js/pull/16045) [BUGFIX] Fix double debug output
1161
- - [#16050](https://github.com/emberjs/ember.js/pull/16050) [BUGFIX] Add inspect and constructor to list of descriptor exceptions
1162
- - [#16080](https://github.com/emberjs/ember.js/pull/16080) [BUGFIX] Add missing modules docs for tryInvoke, compare, isEqual #16079
1163
- - [#16084](https://github.com/emberjs/ember.js/pull/16084) [BUGFIX] Update `computed.sort` docs to avoid state leakage
1164
- - [#16087](https://github.com/emberjs/ember.js/pull/16087) [BUGFIX] Ensure `App.visit` resolves when rendering completed.
1165
- - [#16090](https://github.com/emberjs/ember.js/pull/16090) [CLEANUP] Remove Ember.Binding support
1166
- - [#15901](https://github.com/emberjs/ember.js/pull/15901) [CLEANUP] Remove Ember.Handlebars.SafeString
1167
- - [#15894](https://github.com/emberjs/ember.js/pull/15894) [CLEANUP] removed `immediateObserver`
1168
- - [#15897](https://github.com/emberjs/ember.js/pull/15897) [CLEANUP] Remove controller wrapped param deprecation
1169
- - [#15883](https://github.com/emberjs/ember.js/pull/15883) [CLEANUP] Remove this.resource from RouterDSL
1170
- - [#15882](https://github.com/emberjs/ember.js/pull/15882) [CLEANUP] Remove Ember.String.fmt
1171
- - [#15892](https://github.com/emberjs/ember.js/pull/15892) [CLEANUP] removed `Ember.required`
1172
- - [#15223](https://github.com/emberjs/ember.js/pull/15223) Preserve current history state on app boot
1173
- - [#15886](https://github.com/emberjs/ember.js/pull/15886) [CLEANUP] Remove arity check from initializer
1174
- - [#15893](https://github.com/emberjs/ember.js/pull/15893) [CLEANUP] removed `providing reversed arguments to observer`
1175
- - [#15881](https://github.com/emberjs/ember.js/pull/15881) [CLEANUP] Removed console polyfills/shims
1176
- - [#15999](https://github.com/emberjs/ember.js/pull/15999) Update acceptance test blueprint to conform to emberjs/rfcs#268
1177
- - [#15927](https://github.com/emberjs/ember.js/pull/15927) [BUGFIX] Extend test framework detection to `ember-qunit` and `ember-mocha`
1178
- - [#15912](https://github.com/emberjs/ember.js/pull/15912) [CLEANUP] Remove deprecated `{Application,Engine,ApplicationInstance}.registry`
1179
- - [#15910](https://github.com/emberjs/ember.js/pull/15910) [CLEANUP] removed `transform-input-on-to-onEvent`
1180
- - [#15922](https://github.com/emberjs/ember.js/pull/15922) [CLEANUP] Remove legacy controller proxy behavior
1181
- - [#15914](https://github.com/emberjs/ember.js/pull/15914) [CLEANUP] Remove ability to specify `_actions` in `Ember.Route`, `Ember.Controller`, and `Ember.Component`
1182
- - [#15923](https://github.com/emberjs/ember.js/pull/15923) [CLEANUP] Remove didInitAttrs lifecycle method
1183
- - [#15915](https://github.com/emberjs/ember.js/pull/15915) [CLEANUP] Remove {{render}}
1184
- - [#15950](https://github.com/emberjs/ember.js/pull/15950) blueprints/mixin-test: Added RFC-232 variant
1185
- - [#15951](https://github.com/emberjs/ember.js/pull/15951) blueprints/service-test: Added RFC-232 variant
1186
- - [#15949](https://github.com/emberjs/ember.js/pull/15949) [CLEANUP canary] use `Set` for uniqBy and uniq
1187
- - [#15947](https://github.com/emberjs/ember.js/pull/15947) blueprints/util-test: Add RFC232 variants
1188
- - [#15943](https://github.com/emberjs/ember.js/pull/15943) blueprints/controller-test: Add RFC232 variants
1189
- - [#15948](https://github.com/emberjs/ember.js/pull/15948) [CLEANUP] remove ArrayMixin#contains
1190
- - [#15946](https://github.com/emberjs/ember.js/pull/15946) blueprints/initializer-test: Add RFC232 variants
1191
- - [#15945](https://github.com/emberjs/ember.js/pull/15945) blueprints/instance-initializers-test: Add RFC232 variants
1192
- - [#15957](https://github.com/emberjs/ember.js/pull/15957) RFC 232 route-test blueprints
1193
- - [#15934](https://github.com/emberjs/ember.js/pull/15934) blueprints/component-test: Add RFC232 variants
1194
- - [#16010](https://github.com/emberjs/ember.js/pull/16010) Cleanup ember-template-compiler's tests
1195
- - [#16015](https://github.com/emberjs/ember.js/pull/16015) [CLEANUP] Convert ember-router tests to new style
1196
- - [#16036](https://github.com/emberjs/ember.js/pull/16036) [CLEANUP] Convert ember-metal accessors tests to new style
1197
- - [#16023](https://github.com/emberjs/ember.js/pull/16023) Make event dispatcher work without jQuery
1198
-
1199
- ## 2.18.2 (February 14, 2018)
1200
-
1201
- - [#16245](https://github.com/emberjs/ember.js/pull/16245) [BUGFIX] Ensure errors in deferred component hooks can be recovered.
1202
-
1203
- ## 2.18.1 (February 13, 2018)
1204
-
1205
- - [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
1206
- - [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
1207
-
1208
- ## 2.18.0 (January 1, 2018)
1209
-
1210
- - [95b449](https://github.com/emberjs/ember.js/commit/95b4499b3667712a202bef834268e23867fc8842) [BUGFIX] Ensure `Ember.run.cancel` while the run loop is flushing works properly.
1211
- - [#15952](https://github.com/emberjs/ember.js/pull/15952) [BUGFIX] fix regression of clicking link-to with disabled=true
1212
- - [#15982](https://github.com/emberjs/ember.js/pull/15982) [BUGFIX] Fix issue with unchaining ChainNodes (again)
1213
- - [#15924](https://github.com/emberjs/ember.js/pull/15924) / [#15940](https://github.com/emberjs/ember.js/pull/15940) [BUGFIX] Assert that `classNameBinding` items are non-empty strings
1214
- - [#15927](https://github.com/emberjs/ember.js/pull/15927) [BUGFIX] Extend test framework detection to `ember-qunit` and `ember-mocha`
1215
- - [#15935](https://github.com/emberjs/ember.js/pull/15935) [BUGFIX] Fix framework detection in blueprints to work with prerelease versions of ember-cli-mocha
1216
- - [#15902](https://github.com/emberjs/ember.js/pull/15902) [BUGFIX] Fix link-to throwing in integration tests
1217
- - [#15905](https://github.com/emberjs/ember.js/pull/15905) [BUGFIX] Improve error message when calling `inject()`.
1218
- - [#15919](https://github.com/emberjs/ember.js/pull/15919) [BUGFIX] Upgrade Backburner.js to v1.3.3, fixing an issue canceling tasks scheduled by scheduleOnce.
1219
- - [#14590](https://github.com/emberjs/ember.js/pull/14590) [DEPRECATION] Deprecate using `targetObject`.
1220
- - [#15754](https://github.com/emberjs/ember.js/pull/15754) [CLEANUP] Remove `router.router` deprecation.
1221
-
1222
- ## 2.17.1 (February 13, 2018)
1223
-
1224
- - [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
1225
- - [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
1226
-
1227
- ## 2.17.0 (November 29, 2017)
1228
-
1229
- - [#15855](https://github.com/emberjs/ember.js/pull/15855) [BUGFIX] fix regression with computed `filter/map/sort`
1230
- - [#15871](https://github.com/emberjs/ember.js/pull/15871) [BUGFIX lts] Refactor / fix error handling scenarios.
1231
- * Revert changes made in 2.11.3 which made all errors thrown within a run loop unable to be caught with normal `try` / `catch`.
1232
- * Prevent unhandled rejections from being thrown twice (once by the `RSVP` unhandled rejection system, and again by `Ember.onerror` if present).
1233
- - [#15873](https://github.com/emberjs/ember.js/pull/15873) [BUGFIX] Update to `backburner.js@1.2.3` to prevent issues with swallowing errors thrown within `run.join` callbacks when `Ember.onerror` is present.
1234
- - [#15848](https://github.com/emberjs/ember.js/pull/15848) [BUGFIX] Ensure helpers have a consistent API.
1235
- - [#15849](https://github.com/emberjs/ember.js/pull/15849) [BUGFIX] Fix issue when observing a computed property that is clobbered during creation.
1236
- - [#15797](https://github.com/emberjs/ember.js/pull/15797) [BUGFIX] Fix issues with using partials nested within other partials.
1237
- - [#15808](https://github.com/emberjs/ember.js/pull/15808) [BUGFIX] Fix a memory leak in certain testing scenarios.
1238
- - [#15746](https://github.com/emberjs/ember.js/pull/15746) [BUGFIX] Fix computed sort regression when array property is initially `null`.
1239
- - [#15777](https://github.com/emberjs/ember.js/pull/15777) [BUGFIX] Fix various issues around accessing dynamic data within a partial.
1240
- - [#15606](https://github.com/emberjs/ember.js/pull/15606) [BUGFIX] Add fs-extra to deps
1241
- - [#15697](https://github.com/emberjs/ember.js/pull/15697) [BUGFIX] Move accessing meta out of the loop
1242
- - [#15710](https://github.com/emberjs/ember.js/pull/15710) [BUGFIX] Correctly reset container cache
1243
- - [#15613](https://github.com/emberjs/ember.js/pull/15613) [BUGFIX] Don't throw an error, when not all query params are passed to routerService.transitionTo
1244
- - [#15707](https://github.com/emberjs/ember.js/pull/15707) [BUGFIX] Fix `canInvoke` for edge cases
1245
- - [#15722](https://github.com/emberjs/ember.js/pull/15722) [BUGFIX] empty path in `get` helper should not throw assertion
1246
- - [#15733](https://github.com/emberjs/ember.js/pull/15733) [BUGFIX] Fix computed sort regression when array prop initially null
1247
- - [#15265](https://github.com/emberjs/ember.js/pull/15265) [BUGFIX] fixed issue when passing `false` to `activeClass` for `{{link-to}}`
1248
- - [#15672](https://github.com/emberjs/ember.js/pull/15672) Update router_js to 2.0.0.
1249
-
1250
- ## 2.16.3 (February 13, 2018)
1251
-
1252
- - [#15927](https://github.com/emberjs/ember.js/pull/15927) blueprints: Extend test framework detection to `ember-qunit` and `ember-mocha`
1253
- - [#15935](https://github.com/emberjs/ember.js/pull/15935) [BUGFIX] blueprints: fix framework detection to work with prerelease versions of ember-cli-mocha
1254
- - [#16174](https://github.com/emberjs/ember.js/pull/16174) [BUGFIX] Enable _some_ recovery of errors thrown during render.
1255
- - [#16241](https://github.com/emberjs/ember.js/pull/16241) [BUGFIX] Avoid excessively calling Glimmer AST transforms.
1256
-
1257
- ## 2.16.2 (November 1, 2017)
1258
-
1259
- - [#15797](https://github.com/emberjs/ember.js/pull/15797) [BUGFIX] Fix issues with using partials nested within other partials.
1260
-
1261
- ## 2.16.1 (October 29, 2017)
1262
-
1263
- - [#15722](https://github.com/emberjs/ember.js/pull/15722) [BUGFIX] Avoid assertion when using `(get` helper with empty paths.
1264
- - [#15746](https://github.com/emberjs/ember.js/pull/15746) [BUGFIX] Fix computed sort regression when array property is initially `null`.
1265
- - [#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.
1266
- - [#15777](https://github.com/emberjs/ember.js/pull/15777) [BUGFIX] Fix various issues around accessing dynamic data within a partial.
1267
-
1268
- ## 2.16.0 (October 9, 2017)
1269
-
1270
- - [#15604](https://github.com/emberjs/ember.js/pull/15604) Data Adapter: Only trigger model type update if the record live array count actually changed
1271
- - [#15610](https://github.com/emberjs/ember.js/pull/15610) [BUGFIX] add inflection to dependencies
1272
- - [#15695](https://github.com/emberjs/ember.js/pull/15695) [BUGFIX] Avoid creating event dispatcher in FastBoot with Engines
1273
- - [#15702](https://github.com/emberjs/ember.js/pull/15702) [BUGFIX] Correctly escape values in `Ember.CoreObject` assertions
1274
- - [#15718](https://github.com/emberjs/ember.js/pull/15718) [BUGFIX] bump backburner (fixes clock + autorun interop)
1275
- - [#15577](https://github.com/emberjs/ember.js/pull/15577) [BUGFIX] Include missing sourcemaps in vendorTree.
1276
- - [#15552](https://github.com/emberjs/ember.js/pull/15552) [FEATURE] Update blueprints and tests to RFC #176.
1277
- - [#15600](https://github.com/emberjs/ember.js/pull/15600) [BUGFIX] ensure “pause on exception” pauses in the right place.
1278
- - [#15616](https://github.com/emberjs/ember.js/pull/15616) [DOC release] Improve documentation for RouterService and mount helper.
1279
- - [#15600](https://github.com/emberjs/ember.js/pull/15600) [BUGFIX] ensure “pause on exception” pauses in the right place.
1280
- - [#15667](https://github.com/emberjs/ember.js/pull/15667) [BUGFIX] Allow `0` to work with `get` helper.
1281
- - [#15676](https://github.com/emberjs/ember.js/pull/15676) [BUGFIX] Fix `<input type="range">` so that it can properly bind `min`, `max`, and `value`.
1282
- - [#15689](https://github.com/emberjs/ember.js/pull/15689) [BUGFIX] Mark error as handled before transition for error routes and substates.
1283
- - [#14764](https://github.com/emberjs/ember.js/pull/14764) Fixed string capitalize for accented characters.
1284
- - [#15528](https://github.com/emberjs/ember.js/pull/15528) [DEPRECATION] Deprecate `Controller#content` alias.
1285
- - [#15552](https://github.com/emberjs/ember.js/pull/15552) [FEATURE] Update blueprints and tests to RFC #176.
1286
-
1287
- ## 2.15.3 (October 9, 2017)
1288
-
1289
- - [#15718](https://github.com/emberjs/ember.js/pull/15718) [BUGFIX] bump backburner (fixes clock + autorun interop)
1290
-
1291
- ## 2.15.2 (October 4, 2017)
1292
-
1293
- - [#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.
1294
- - [#15695](https://github.com/emberjs/ember.js/pull/15695) [BUGFIX] Avoid creating event dispatcher in FastBoot with Engines.
1295
-
1296
- ## 2.15.1 (October 2, 2017)
1297
-
1298
- - [#15600](https://github.com/emberjs/ember.js/pull/15600) [BUGFIX] ensure “pause on exception” pauses in the right place.
1299
- - [#15689](https://github.com/emberjs/ember.js/pull/15689) [BUGFIX] Mark error as handled before transition for error routes and substates.
1300
-
1301
- ## 2.15.0 (August 31, 2017)
1302
-
1303
- - [#15577](https://github.com/emberjs/ember.js/pull/15577) [BUGFIX] Include missing sourcemaps in vendorTree.
1304
- - [#14848](https://github.com/emberjs/ember.js/pull/14848) [BUGFIX] Allow boolean values for current-when
1305
- - [#15572](https://github.com/emberjs/ember.js/pull/15572) [BUGFIX] Fix issue with using negative numbers as an argument passed in from the template.
1306
- - [#15535](https://github.com/emberjs/ember.js/pull/15535) [BUGFIX] Ensure that properties of functions are able to be rendered.
1307
- - [#14753](https://github.com/emberjs/ember.js/pull/14753) [BUGFIX] Fix `<input type=XXX>` feature detect issue affecting Safari.
1308
- - [#15176](https://github.com/emberjs/ember.js/pull/15176) [BUGFIX] Ensure `Controller.prototype.replaceRoute` considers engine's mount point.
1309
- - [#15513](https://github.com/emberjs/ember.js/pull/15513) [BUGFIX] Release root components after they are destroyed.
1310
- - [#15511](https://github.com/emberjs/ember.js/pull/15511) [BUGFIX] Fixes `onFulfillment` being `undefined` when stepping through RSVP code.
1311
- - [#15510](https://github.com/emberjs/ember.js/pull/15510) [BUGFIX] Make sure notification changes are properly triggered for firstObject/lastObject.
1312
- - [#15502](https://github.com/emberjs/ember.js/pull/15502) [BUGFIX] Work around a browser bug that causes `getOwner` to sometimes return `undefined`.
1313
- - [#14338](https://github.com/emberjs/ember.js/pull/14338) [FEATURE] Remove explicit names from initializers.
1314
- - [#15325](https://github.com/emberjs/ember.js/pull/15325) / [#15326](https://github.com/emberjs/ember.js/pull/15326) [FEATURE ember-engines-mount-params] Allow `{{mount` to accept a `model` named parameter.
1315
- - [#15347](https://github.com/emberjs/ember.js/pull/15347) [BUGFIX] Make better errors for meta updates after object destruction.
1316
- - [#15411](https://github.com/emberjs/ember.js/pull/15411) [CLEANUP] Remove deprecated `Ember.Backburner`.
1317
- - [#15366](https://github.com/emberjs/ember.js/pull/15366) [BUGFIX] Allow numeric keys for the `get` helper.
1318
- - [#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.
1319
- - [#15193](https://github.com/emberjs/ember.js/pull/15193) [CLEANUP] Remove `owner._lookupFactory` support.
1320
-
1321
- ## 2.14.0 (July 5, 2017)
1322
-
1323
- - [#15312](https://github.com/emberjs/ember.js/pull/15312) [BUGFIX] Avoid re-freezing already frozen objects.
1324
- - [#15315](https://github.com/emberjs/ember.js/pull/15315) [FEATURE] Add minlength to TextSupport
1325
- - [#15321](https://github.com/emberjs/ember.js/pull/15321) [BUGFIX] Improve fastboot debugger/repl experience
1326
- - [#15366](https://github.com/emberjs/ember.js/pull/15366) [BUGFIX] Allow numeric keys for the `get` helper.
1327
- - [#15242](https://github.com/emberjs/ember.js/pull/15242) [BUGFIX] Fix EmberError import in system/router
1328
- - [#15204](https://github.com/emberjs/ember.js/pull/15204) [DEPRECATION] `Ember.MODEL_FACTORY_INJECTIONS` is now always false, and issues a deprecation if set.
1329
- - [#15239](https://github.com/emberjs/ember.js/pull/15239) [BUGFIX] Ensure `Ember.deprecate` is exported properly.
1330
- - [glimmerjs/glimmer-vm#529](https://github.com/glimmerjs/glimmer-vm/pull/529) [BUGFIX] Fix issues identified with custom element support.
1331
- - [#15277](https://github.com/emberjs/ember.js/pull/15277) [BUGFIX] Fix issues with retrying an initial transition.
1332
- - [#15138](https://github.com/emberjs/ember.js/pull/15138) [BUGFIX] Fix mocha blueprint service test filename
1333
- - [#15193](https://github.com/emberjs/ember.js/pull/15193) [BUGFIX] Ensure `factoryFor` does validation.
1334
- - [#15207](https://github.com/emberjs/ember.js/pull/15207) [BUGFIX] Ensure that an engines container is only destroyed once.
1335
- - [#15218](https://github.com/emberjs/ember.js/pull/15218) [BUGFIX] Update route-recognizer to v0.3.3.
1336
- - [#15015](https://github.com/emberjs/ember.js/pull/15015) Allow mounting routeless engines with a bound engine name
1337
- - [#15078](https://github.com/emberjs/ember.js/pull/15078) [DEPRECATION] Deprecate `EventManager#canDispatchToEventManager`.
1338
- - [#15085](https://github.com/emberjs/ember.js/pull/15085) Add missing instrumentation for compilation/lookup phase
1339
- - [#15150](https://github.com/emberjs/ember.js/pull/15150) [PERF] Cleanup Proxy invalidation tracking.
1340
- - [#15168](https://github.com/emberjs/ember.js/pull/15168) [BUGFIX] Ensure that retrying a transition created with `replaceWith` causes a history replacement.
1341
- - [#15148](https://github.com/emberjs/ember.js/pull/15148) [BUGFIX] Ensure that using `replace` with `refreshModel` works properly.
1342
- - [#15178](https://github.com/emberjs/ember.js/pull/15178) Refactor route to lookup controller for QPs.
1343
- - [#15129](https://github.com/emberjs/ember.js/pull/15129) Fix access to service:-document in ember-engines
1344
-
1345
- ## 2.13.4 (July 5, 2017)
1346
-
1347
- - [#15321](https://github.com/emberjs/ember.js/pull/15321) [BUGFIX] Improve fastboot debugger/repl experience.
1348
-
1349
- ## 2.13.3 (May 31, 2017)
1350
-
1351
- - [#15284](https://github.com/emberjs/ember.js/pull/15284) [BUGFIX] remove nested transaction assertion from glimmer.
1352
- - [glimmerjs/glimmer-vm#529](https://github.com/glimmerjs/glimmer-vm/pull/529) [BUGFIX] Fix issues identified with custom element support.
1353
-
1354
- ## 2.13.2 (May 18, 2017)
1355
-
1356
- - Revert over eager dependency upgrades in 2.13.1.
1357
-
1358
- ## 2.13.1 (May 17, 2017)
1359
-
1360
- - [#15129](https://github.com/emberjs/ember.js/pull/15129) Fix access to document service in `ember-engines`.
1361
- - [#15138](https://github.com/emberjs/ember.js/pull/15138) [BUGFIX] Fix mocha blueprint service test filename
1362
- - [#15204](https://github.com/emberjs/ember.js/pull/15204) [DEPRECATION] `Ember.MODEL_FACTORY_INJECTIONS` is now always false, deprecate setting it.
1363
- - [#15207](https://github.com/emberjs/ember.js/pull/15207) [BUGFIX] Ensure child engines do not have their container destroyed twice.
1364
- - [#15242](https://github.com/emberjs/ember.js/pull/15242) [BUGFIX] Fix `EmberError` import in system/router.
1365
- - [#15247](https://github.com/emberjs/ember.js/pull/15247) [BUGFIX] Ensure nested custom elements render properly.
1366
-
1367
- ## 2.13.0 (April 27, 2017)
1368
-
1369
- - [#15111](https://github.com/emberjs/ember.js/pull/15111) / [#15029](https://github.com/emberjs/ember.js/pull/15029) [PERF] `factoryFor` should cache when possible.
1370
- - [#14961](https://github.com/emberjs/ember.js/pull/14961) [BUGIX] [Fixes #14925] remove duplicate `/` in pathname
1371
- - [#15065](https://github.com/emberjs/ember.js/pull/15065) [BUGFIX] Guard jQuery access in `setupForTesting`.
1372
- - [#15103](https://github.com/emberjs/ember.js/pull/15103) [BUGFIX] Allow calling `Ember.warn` without test.
1373
- - [#15106](https://github.com/emberjs/ember.js/pull/15106) [DOC] Introduce a more debugging data to warnings about CP dependencies.
1374
- - [#15107](https://github.com/emberjs/ember.js/pull/15107) [PERF] avoid toBoolean conversion when possible (chains).
1375
- - [#14011](https://github.com/emberjs/ember.js/pull/14011) [FEATURE ember-unique-location-history-state] Implements [RFC #186](https://github.com/emberjs/rfcs/pull/186).
1376
- - [#13231](https://github.com/emberjs/ember.js/pull/13231) [BUGFIX] Fix a bug when using commas in computer property dependent keys.
1377
- - [#14890](https://github.com/emberjs/ember.js/pull/14890) [BUGFIX] Fix a race condition where actions are invoked on destroyed DOM nodes.
1378
- - [#14894](https://github.com/emberjs/ember.js/pull/14894) [FEATURE ember-no-double-extend] Enable by default.
1379
- - [#14781](https://github.com/emberjs/ember.js/pull/14781) / [#14954](https://github.com/emberjs/ember.js/pull/14954) Upgrade to Glimmer VM v0.22
1380
- - [#14919](https://github.com/emberjs/ember.js/pull/14919) [DEPRECATION] Deprecate the private `Ember.Router.router` property in favor of `Ember.Router._routerMicrolib`.
1381
- - [#14970](https://github.com/emberjs/ember.js/pull/14970) [BUGFIX] Generate integration tests for template helpers by default.
1382
- - [#14976](https://github.com/emberjs/ember.js/pull/14976) [BUGFIX] Remove "no use strict" workaround for old versions of iOS 8.
1383
-
1384
- ## 2.12.2 (April 27, 2017)
1385
-
1386
- - [#15160](https://github.com/emberjs/ember.js/pull/15160) [BUGFIX] Ensure `Ember.Test` global is setup when including `ember-testing.js`.
1387
- - [#15142](https://github.com/emberjs/ember.js/pull/15142) / [#15163](https://github.com/emberjs/ember.js/pull/15163) [BUGFIX] Don’t leak deprecated `container`.
1388
- - [#15161](https://github.com/emberjs/ember.js/pull/15161) [BUGFIX] Prevent errors from being triggered during error processing on non ES6 platforms.
1389
- - [#15180](https://github.com/emberjs/ember.js/pull/15180) [BUGFIX] Correct `until` values for `this.container` deprecations.
1390
-
1391
-
1392
- ## 2.12.1 (April 7, 2017)
1393
-
1394
- - [#14961](https://github.com/emberjs/ember.js/pull/14961) [BUGIX] Remove duplicate trailing `/` in pathname.
1395
- - [#15029](https://github.com/emberjs/ember.js/pull/15029) [PERF] [BUGFIX] cache `factoryFor` injections when possible
1396
- - [#15089](https://github.com/emberjs/ember.js/pull/15089) [BUGFIX] Fixing IE and Edge issue causing action handlers to be fired twice.
1397
-
1398
- ## 2.12.0 (March 14, 2017)
1399
-
1400
- - [#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.
1401
- - [#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.
1402
- - [#14360](https://github.com/emberjs/ember.js/pull/14360) [FEATURE factory-for] Implement `factoryFor`.
1403
- - [#14751](https://github.com/emberjs/ember.js/pull/14751) [DEPRECATION] Deprecate `Ember.K`.
1404
- - [#14756](https://github.com/emberjs/ember.js/pull/14756) [PERF] Disable costly `eventManager` support when unused.
1405
- - [#14794](https://github.com/emberjs/ember.js/pull/14794) [BUGFIX] Fix query param stickiness between models in ember-engines.
1406
- - [#14851](https://github.com/emberjs/ember.js/pull/14851) [PERF] only `LOG_VIEW_LOOKUPS` in debug
1407
- - [#14829](https://github.com/emberjs/ember.js/pull/14829) [PERF] only `logLibraryVersions` in debug mode
1408
- - [#14852](https://github.com/emberjs/ember.js/pull/14852) [PERF] only `LOG_TRANSITIONS` and `LOG_TRANSITIONS_INTERNAL` in debug
1409
- - [#14854](https://github.com/emberjs/ember.js/pull/14854) [PERF] only `LOG_ACTIVE_GENERATION` and `LOG_RESOLVER` in debug
1410
-
1411
- ## 2.11.3 (March 8, 2017)
1412
-
1413
- - [#14987](https://github.com/emberjs/ember.js/pull/14987) [BUGFIX] Fix a memory leak when components are destroyed.
1414
- - [#14986](https://github.com/emberjs/ember.js/pull/14986) [BUGFIX] Fix a memory leak in RSVP.js.
1415
- - [#14985](https://github.com/emberjs/ember.js/pull/14985) [BUGFIX] Fix a bug that added babel helpers to the global scope.
1416
- - [#14898](https://github.com/emberjs/ember.js/pull/14898) [BUGFIX] Fix an issue where errors in tests sometimes do not cause a failure.
1417
- - [#14707](https://github.com/emberjs/ember.js/pull/14707) [BUGFIX] Improve deprecation message for unsafe `style` attribute bindings.
1418
-
1419
- ## 2.11.2 (February 19, 2017)
1420
-
1421
- - [#14937](https://github.com/emberjs/ember.js/pull/14937) [BUGFIX] Fix issue preventing `ember generate *` from creating test files as appropriate.
1422
-
1423
- ## 2.11.1 (February 16, 2017)
1424
-
1425
- - [#14762](https://github.com/emberjs/ember.js/pull/14762) [BUGFIX] Make ember-template-compiler handle {{input}} helpers with sub-expression "type"
1426
- - [#14791](https://github.com/emberjs/ember.js/pull/14791) [BUGFIX] exempt routes that share a controller from duplicate assertion
1427
- - [#14860](https://github.com/emberjs/ember.js/pull/14860) [BUGFIX] Add back `mainContext` to loader #14859 (fixes issue with non ember-cli template compilation).
1428
- - [#14878](https://github.com/emberjs/ember.js/pull/14878) [DOC] Fix yuidoc package paths to ensure RSVP is properly included in API documentation.
1429
- - [#14910](https://github.com/emberjs/ember.js/pull/14910) [BUGFIX] Include blueprints in NPM release, to ensure `ember-source` blueprints are used over `ember-cli-legacy-blueprints`.
1430
- - [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`.
1431
-
1432
-
1433
- ## 2.11.0 (January 23, 2017)
1434
-
1435
- - [#14762](https://github.com/emberjs/ember.js/pull/14762) [BUGFIX] Ensure subexpressions can be used for `{{input}}`'s `type`.
1436
- - [#14723](https://github.com/emberjs/ember.js/pull/14723) [BUGFIX] Improved backtracking re-render assertion message.
1437
- - [#14750](https://github.com/emberjs/ember.js/pull/14750) [BUGFIX] Add assertion when a component's `tagName` is a computed property.
1438
- - [#14685](https://github.com/emberjs/ember.js/pull/14685) [BUGFIX] Fix `this.$()` returning `undefined` in `willDestroyElement`.
1439
- - [#14717](https://github.com/emberjs/ember.js/pull/14717) [BUGFIX] Fix an issue with block params named `attrs`.
1440
- - [#14671](https://github.com/emberjs/ember.js/pull/14671) [BUGFIX] Fix an issue with the `list` attribute in `<input>` elements.
1441
- - [#14681](https://github.com/emberjs/ember.js/pull/14681) [BUGFIX] Fix an issue with computed properties when using aliases as dependent keys.
1442
- - [#14682](https://github.com/emberjs/ember.js/pull/14682) [BUGFIX] Ensure closure actions do not trigger unnecessary re-renders.
1443
- - [#14658](https://github.com/emberjs/ember.js/pull/14658) [BUGFIX] Make the ember-source build work.
1444
- - [#14389](https://github.com/emberjs/ember.js/pull/14389) [BUGFIX] Move `classNames` and `classNameBindings` properties into the component's prototype.
1445
- - [#14389](https://github.com/emberjs/ember.js/pull/14389) [BUGFIX] Disallow mutation of shared concatenatedProperties, such as `classNames` and `classNameBindings`.
1446
- - [#14441](https://github.com/emberjs/ember.js/pull/14441) [DEPRECATION] Deprecate remaining usage of the `{{render}}` helper.
1447
- - [#14482](https://github.com/emberjs/ember.js/pull/14482) [DEPRECATION] Deprecate `Component#renderToElement`.
1448
-
1449
- ## 2.10.2 (December 19, 2016)
1450
-
1451
- - [#14685](https://github.com/emberjs/ember.js/pull/14685) [BUGFIX] Fix `this.$()` returning `undefined` in `willDestroyElement`.
1452
- - [#14717](https://github.com/emberjs/ember.js/pull/14717) [BUGFIX] Fix an issue with block params named `attrs`.
1453
-
1454
- ## 2.10.1 (December 13, 2016)
1455
-
1456
- - [#14671](https://github.com/emberjs/ember.js/pull/14671) [BUGFIX] Fix an issue with the list attribute in <input> elements.
1457
- - [#14681](https://github.com/emberjs/ember.js/pull/14681) [BUGFIX] Fix an issue with computed properties when using aliases as dependent keys.
1458
- - [#14682](https://github.com/emberjs/ember.js/pull/14682) [BUGFIX] Ensure closure actions do not trigger unnecessary re-renders.
1459
-
1460
- ## 2.10.0 (November 28, 2016)
1461
-
1462
- - [#14293](https://github.com/emberjs/ember.js/pull/14293) [BUGFIX] Remove style warning when the binding is quoted.
1463
- - [#12708](https://github.com/emberjs/ember.js/pull/12708) [BUGFIX] Improve compatibility between `Ember.isArray` and the native `Array.isArray` for `FileList`.
1464
- - [#14546](https://github.com/emberjs/ember.js/pull/14546) [BUGFIX] Update route-recognizer to v0.2.8.
1465
- - [#14575](https://github.com/emberjs/ember.js/pull/14575) [BUGFIX] Disallow calling `Ember.get` with empty paths.
1466
- - [#14591](https://github.com/emberjs/ember.js/pull/14591) [BUGFIX] Avoid run.next in `app.visit` resolve handler.
1467
- - [#14537](https://github.com/emberjs/ember.js/pull/14537) [BUGFIX] Improve behavior for query params with undefined values.
1468
- - [#14545](https://github.com/emberjs/ember.js/pull/14545) [BUGFIX] Fixes a number of issues with loading/error substates in ember-engines.
1469
- - [#14571](https://github.com/emberjs/ember.js/pull/14571) [BUGFIX] Prevent errors in watching infrastructure for non-object paths.
1470
- - [tildeio/router.js#197](https://github.com/tildeio/router.js/pull/197) [BUGFIX] Fix redirects performed during the routers validation stages. Properly handles `replaceWith` / `transitionTo` for initial and subsequent transitions.
1471
- - [#14520](https://github.com/emberjs/ember.js/pull/14520) [BUGFIX] Ensure local variables (block params) have higher precedence over helpers.
1472
- - [#14156](https://github.com/emberjs/ember.js/pull/14156) [FEATURE ember-glimmer] Enable by default.
1473
-
1474
- ## 2.9.1 (November 1, 2016)
1475
-
1476
- - [#14528](https://github.com/emberjs/ember.js/pull/14528) [BUGFIX] Fix memory leak (leaking component instances in the component registry).
1477
- - [#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.
1478
- - [#14550](https://github.com/emberjs/ember.js/pull/14550) [BUGFIX] Allow canceling items queued by `run.schedule`.
1479
-
1480
- ## 2.9.0 (October 17, 2016)
1481
-
1482
- - No changes from 2.8.2.
1483
-
1484
- ## 2.8.3 (November 1, 2016)
1485
-
1486
- - [#14528](https://github.com/emberjs/ember.js/pull/14528) [BUGFIX] Fix memory leak (leaking component instances in the component registry).
1487
- - [#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.
1488
- - [#14550](https://github.com/emberjs/ember.js/pull/14550) [BUGFIX] Allow canceling items queued by `run.schedule`.
1489
-
1490
- ## 2.8.2 (October 6, 2016)
1491
-
1492
- - [#14365](https://github.com/emberjs/ember.js/pull/14365) [BUGFIX] Fix an issue with URLs with encoded characters and a trailing slash.
1493
- - [#14382](https://github.com/emberjs/ember.js/pull/14382) [BUGFIX] Allow bound `id` on tagless components.
1494
- - [#14421](https://github.com/emberjs/ember.js/pull/14421) [BUGFIX] Fix an issue with local components lookup.
1495
-
1496
- ## 2.8.1 (September 14, 2016)
1497
-
1498
- - [#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.
1499
- - [#14237](https://github.com/emberjs/ember.js/pull/14237) [BUGFIX] Ensure Engine Routes are deactivated before destruction.
1500
- - [#14262](https://github.com/emberjs/ember.js/pull/14262) [BUGFIX] Ensure Controller#transitionToRoute and Route#intermediateTransitionTo work in Engines.
1501
- - [#14272](https://github.com/emberjs/ember.js/pull/14272) [BUGFIX] Bump router.js to v1.2.1.
1502
- - [#14281](https://github.com/emberjs/ember.js/pull/14281) [BUGFIX] Ensure referencing `parentView` in a computed property / observer dependent key (or in the template) does not cause an error during teardown.
1503
- - [#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.
1504
- - [#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`.
1505
-
1506
- ## 2.8.0 (September 8, 2016)
1507
-
1508
- - [#14229](https://github.com/emberjs/ember.js/pull/14229) [BUGFIX] Fix boot errors with `location: 'auto'` when using IE9.
1509
- - [#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.
1510
- - [#14159](https://github.com/emberjs/ember.js/pull/14159) [BUGFIX] Fix rendering system cleanup.
1511
- - [#14123](https://github.com/emberjs/ember.js/pull/14123) [BUGFIX] Avoid rerendering outlet state during router destruction.
1512
- - [#14077](https://github.com/emberjs/ember.js/pull/14077) [BUGFIX] Update route-recognizer.
1513
- - [#14087](https://github.com/emberjs/ember.js/pull/14087) [BUGFIX] Check that route handler exists before triggering actions.
1514
- - [#14106](https://github.com/emberjs/ember.js/pull/14106) [BUGFIX] Avoid assertion when `id=` is provided to tagless components.
1515
- - [#14110](https://github.com/emberjs/ember.js/pull/14110) [BUGFIX] Fix issues with revalidation during teardown.
1516
- - [#14117](https://github.com/emberjs/ember.js/pull/14117) [BUGFIX] Call ArrayProxy's content change hooks
1517
- - [#14135](https://github.com/emberjs/ember.js/pull/14135) [BUGFIX] Fix issues around Engine setup and teardown.
1518
- - [#14140](https://github.com/emberjs/ember.js/pull/14140) [BUGFIX] Ensure component injections happen in engine instances.
1519
- - [#14009](https://github.com/emberjs/ember.js/pull/14009) [BUGFIX] Fix usage of `role` when used in `attributeBindings`.
1520
- - [#14044](https://github.com/emberjs/ember.js/pull/14044) / [#14062](https://github.com/emberjs/ember.js/pull/14062) / [#14066](https://github.com/emberjs/ember.js/pull/14066) [BUGFIX] Update `router.js` so that `getHandlers` is invoked lazily.
1521
- - [#14054](https://github.com/emberjs/ember.js/pull/14054) [BUGFIX] Ensure substates properly work with `resetNamespace`.
1522
- - [#14033](https://github.com/emberjs/ember.js/pull/14033) [BUGFIX] Ensure `fillIn` acceptance test helper only sets value to first matched element.
1523
- - [#14058](https://github.com/emberjs/ember.js/pull/14058) [BUGFIX] Fix issues related to `Ember.Router.map` changes in 2.7.0.
1524
- - [#14068](https://github.com/emberjs/ember.js/pull/14068) [BUGFIX] Prevent errors when clicking a `{{link-to}}` during an existing transition.
1525
- - [#13887](https://github.com/emberjs/ember.js/pull/13887) [BUGFIX] Add assertions for illegal component invocations.
1526
- - [#13892](https://github.com/emberjs/ember.js/pull/13892) [CLEANUP] Remove `View#createElement` / `View#destroyElement`.
1527
- - [#13895](https://github.com/emberjs/ember.js/pull/13895) [BUGFIX] Fix template meta lookup for nested tagless and blockless components.
1528
- - [#13911](https://github.com/emberjs/ember.js/pull/13911) [BUGFIX] Avoid using clobbering `.env` property on components.
1529
- - [#13913](https://github.com/emberjs/ember.js/pull/13913) [BUGFIX] Disallow paths beginning with @ in templates.
1530
- - [#13920](https://github.com/emberjs/ember.js/pull/13920) [BUGFIX] Add more info to the `Ember.Binding` deprecation.
1531
- - [#13757](https://github.com/emberjs/ember.js/pull/13757) / [#13773](https://github.com/emberjs/ember.js/pull/13773) [CLEANUP] Remove legacy view layer features.
1532
- - [#13819](https://github.com/emberjs/ember.js/pull/13819) [DOC] Add documentation for container (getOwner, etc.)
1533
- - [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-string-ishtmlsafe] Enable by default.
1534
- - [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-application-engines] Enable by default.
1535
- - [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-runtime-enumerable-includes] Enable by default.
1536
- - [#13855](https://github.com/emberjs/ember.js/pull/13855) [FEATURE ember-testing-check-waiters] Enable by default.
1537
-
1538
- ## 2.7.3 (September 6, 2016)
1539
-
1540
- - [#14219](https://github.com/emberjs/ember.js/pull/14219) [BUGFIX] Fix issue with mutating template's metadata.
1541
-
1542
- ## 2.7.2 (August 30, 2016)
1543
-
1544
- - [#13895](https://github.com/emberjs/ember.js/pull/13895) [BUGFIX] Fix template meta lookup with tagless and blockless components.
1545
- - [#14075](https://github.com/emberjs/ember.js/pull/14075) [BUGFIX] In which we revert route-recognizer to the version used in Ember 2.6. 😢
1546
-
1547
- ## 2.7.1 (August 15, 2016)
1548
-
1549
- - [#13920](https://github.com/emberjs/ember.js/pull/13920) [BUGFIX] Add more info to the `Ember.Binding` deprecation.
1550
- - [#14058](https://github.com/emberjs/ember.js/pull/14058) [BUGFIX] Fix issues related to `Ember.Router.map` changes in 2.7.0.
1551
- - [#14068](https://github.com/emberjs/ember.js/pull/14068) [BUGFIX] Prevent errors when clicking a `{{link-to}}` during an existing transition.
1552
-
1553
- ## 2.7.0 (July 25, 2016)
1554
-
1555
- - [#13764](https://github.com/emberjs/ember.js/pull/13764) [BUGFIX] Keep rest positional parameters when nesting contextual components if needed.
1556
- - [#13781](https://github.com/emberjs/ember.js/pull/13781) [BUGFIX] Fix NoneLocation#getURL
1557
- - [#13797](https://github.com/emberjs/ember.js/pull/13797) [BUGFIX] Ensure didInitAttrs deprecation is stripped in prod.
1558
- - [#13768](https://github.com/emberjs/ember.js/pull/13768) [BUGFIX] Update route-recognizer to v0.2.0. This addresses a large number of per-existing bugs related to URL encoding. However, in doing so, it might inevitably break existing workarounds in this area. Please refer to the linked pull request for more details.
1559
- - [#13634](https://github.com/emberjs/ember.js/pull/13634) [BUGFIX] Fix issues with rerendering blockless and tagless components.
1560
- - [#13605](https://github.com/emberjs/ember.js/pull/13605) [BUGFIX] Ensure `pauseTest` runs after other async helpers.
1561
- - [#13655](https://github.com/emberjs/ember.js/pull/13655) [BUGFIX] Make debugging `this._super` much easier (remove manual `.call` / `.apply` optimizations).
1562
- - [#13672](https://github.com/emberjs/ember.js/pull/13672) [BUGFIX] Fix issue with `this.render` and `this.disconnectOutlet` in routes.
1563
- - [#13716](https://github.com/emberjs/ember.js/pull/13716) [BUGFIX] Ensure that `Ember.Test.waiters` allows access to configured test waiters.
1564
- - [#13273](https://github.com/emberjs/ember.js/pull/13273) [BUGFIX] Fix a number of query param related issues reported.
1565
- - [#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.
1566
- - [#13599](https://github.com/emberjs/ember.js/pull/13599) [FEATURE] Enable `ember-runtime-computed-uniq-by` feature.
1567
-
1568
- ## 2.6.2 (July 11, 2016)
1569
-
1570
- - [#13781](https://github.com/emberjs/ember.js/pull/13781) [BUGFIX] Fix NoneLocation#getURL
1571
- - [#13797](https://github.com/emberjs/ember.js/pull/13797) [BUGFIX] Ensure didInitAttrs deprecation is stripped in prod.
1572
-
1573
- ## 2.6.1 (June 27, 2016)
1574
-
1575
- - [#13634](https://github.com/emberjs/ember.js/pull/13634) [BUGFIX] Fix issues with rerendering blockless and tagless components.
1576
- - [#13655](https://github.com/emberjs/ember.js/pull/13655) [BUGFIX] Make debugging `this._super` much easier (remove manual `.call` / `.apply` optimizations).
1577
- - [#13672](https://github.com/emberjs/ember.js/pull/13672) [BUGFIX] Fix issue with `this.render` and `this.disconnectOutlet` in routes.
1578
-
1579
- ## 2.6.0 (June 8, 2016)
1580
-
1581
- - [#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`.
1582
- - [#13590](https://github.com/emberjs/ember.js/pull/13590) [BUGFIX] Avoid `_lazyInjections` in production builds.
1583
- - [#13442](https://github.com/emberjs/ember.js/pull/13442) [BUGFIX] Revert `Ember.Handlebars.SafeString` deprecation.
1584
- - [#13449](https://github.com/emberjs/ember.js/pull/13449) [BUGFIX] Ensure that `Ember.get(null, 'foo')` returns `undefined`.
1585
- - [#13465](https://github.com/emberjs/ember.js/pull/13465) [BUGFIX] Propagate loc information for inline link-to transform.
1586
- - [#13461](https://github.com/emberjs/ember.js/pull/13461) [BUGFIX] Prevent `Ember.get` from attempting to retrieve properties on primitive objects.
1587
- - [#13418](https://github.com/emberjs/ember.js/pull/13418) [BUGFIX] Ensure that passing `run.later` a timeout value of `NaN` does not break all future
1588
- timers.
1589
- - [#13435](https://github.com/emberjs/ember.js/pull/13435) [BUGFIX] Fix positional parameters when used with component helper.
1590
- - [#13438](https://github.com/emberjs/ember.js/pull/13438) [BUGFIX] Ensure custom components extending from `Ember.LinkComponent` can operate
1591
- in both block and inline form.
1592
- - [#13356](https://github.com/emberjs/ember.js/pull/13356) [BUGFIX] Update `Registry#has` to always return true/false.
1593
- - [#13359](https://github.com/emberjs/ember.js/pull/13359) [BUGFIX] Fix `{{if}}` and `{{unless}}` subexpression sometimes not updating.
1594
- - [#13344](https://github.com/emberjs/ember.js/pull/13344) [BUGFIX] Revert `Ember.merge` deprecation.
1595
- - [#13335](https://github.com/emberjs/ember.js/pull/13335) [BUGFIX] Ensure injected property assertion checks `container`. Fixes issues
1596
- with usage of objects created by older addons that are attempting to use `Ember.inject.service()`.
1597
- - [#13333](https://github.com/emberjs/ember.js/pull/13333) [BUGFIX] Prevent the `toString` property from being added to the objects own
1598
- properties. Fixes scenarios where the list of own properties changed in debug builds.
1599
- - [#13327](https://github.com/emberjs/ember.js/pull/13327) [CLEANUP] Remove deprecate-test-as-function deprecation.
1600
- - [#13326](https://github.com/emberjs/ember.js/pull/13326) [CLEANUP] Remove `View.prototype.currentState` deprecation.
1601
- - [#13315](https://github.com/emberjs/ember.js/pull/13315) [CLEANUP] Remove legacy view related exports.
1602
- - [#13310](https://github.com/emberjs/ember.js/pull/13310) [BUGFIX] Fix `mouseenter` typo in ember-testing helpers.
1603
- - [#13314](https://github.com/emberjs/ember.js/pull/13314) [CLEANUP] Remove Metamorph view and mixin.
1604
- - [#13144](https://github.com/emberjs/ember.js/pull/13144) / [#13195](https://github.com/emberjs/ember.js/pull/13195) / [#13193](https://github.com/emberjs/ember.js/pull/13193) [CLEANUP] Remove support for `ember-legacy-views` addon.
1605
- - [#13192](https://github.com/emberjs/ember.js/pull/13192) [CLEANUP] Remove support for `ember-legacy-controllers` addon.
1606
- - [#13295](https://github.com/emberjs/ember.js/pull/13295) [CLEANUP] Disable `render` helper in block form.
1607
- - [#13204](https://github.com/emberjs/ember.js/pull/13204) [DEPRECATE] Deprecate Ember.Handlebars.SafeString in favor of Ember.String.htmlSafe
1608
- - [#13207](https://github.com/emberjs/ember.js/pull/13207) [DEPRECATE] Depreacte `didInitAttrs` in components
1609
- - [#13268](https://github.com/emberjs/ember.js/pull/13268) [DEPRECATE] Deprecate usage of `{{render}}` helper with a model param
1610
- - [#13285](https://github.com/emberjs/ember.js/pull/13285) [BUGFIX] Make `Enumerable#firstObject` read only.
1611
- - [#13289](https://github.com/emberjs/ember.js/pull/13289) [BUGFIX] Make `Enumerable#lastObject` read only.
1612
-
1613
- ## 2.5.1 (April 21, 2016)
1614
-
1615
- - [#13310](https://github.com/emberjs/ember.js/pull/13310) [BUGFIX] Fix `mouseenter` typo in ember-testing helpers.
1616
- - [#13333](https://github.com/emberjs/ember.js/pull/13333) [BUGFIX] Prevent the `toString` property from being added to the objects own
1617
- properties. Fixes scenarios where the list of own properties changed in debug builds.
1618
- - [#13335](https://github.com/emberjs/ember.js/pull/13335) [BUGFIX] Ensure injected property assertion checks `container`. Fixes issues
1619
- with usage of objects created by older addons that are attempting to use `Ember.inject.service()`.
1620
- - [#13344](https://github.com/emberjs/ember.js/pull/13344) [BUGFIX] Revert `Ember.merge` deprecation.
1621
-
1622
- ## 2.5.0 (April 11, 2016)
1623
-
1624
- - [#13239](https://github.com/emberjs/ember.js/pull/13239) [BUGFIX] Prevent warnings for unknown feature flags
1625
- - [#13287](https://github.com/emberjs/ember.js/pull/13287) [BUGFIX] Fix a recent regression with `Ember.A(null)`
1626
- - [#13290](https://github.com/emberjs/ember.js/pull/13290) [BUGFIX] `isStream` is no longer a reserved property name in Components
1627
- - [#13294](https://github.com/emberjs/ember.js/pull/13294) [DEPRECATE] Deprecate usage of `{{render}}` with a block
1628
- - [#13031](https://github.com/emberjs/ember.js/pull/13031) [BUGFIX] Fix mergedProperties at create time modifying proto
1629
- - [#13049](https://github.com/emberjs/ember.js/pull/13049) [BUGFIX] Fixes `{{#with proxy as |foo|}}`
1630
- - [#12829](https://github.com/emberjs/ember.js/pull/12829) [BUGFIX] Support tagless components in fastboot
1631
- - [#12575](https://github.com/emberjs/ember.js/pull/12575) [FEATURE] Make acceptance helpers fire native events instead of jQuery ones.
1632
- - [#12929](https://github.com/emberjs/ember.js/pull/12929) [BUGFIX] Fix bug causing an initial capital to be interpreted as a global.
1633
- - [#12928](https://github.com/emberjs/ember.js/pull/12928) [FEATURE ember-htmlbars-component-generation] Remove feature.
1634
- - [#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.
1635
- - [FEATURE] Add helper method named `Ember.assign` to roughly emulate `Object.assign`.
1636
-
1637
- ## 2.4.5 (April 11, 2016)
1638
-
1639
- - [#13239](https://github.com/emberjs/ember.js/pull/13239) [BUGFIX] Prevent warnings for unknown feature flags.
1640
- - [#13294](https://github.com/emberjs/ember.js/pull/13294) [DEPRECATE] Deprecate usage of `{{render}}` with a block.
1641
-
1642
- ## 2.4.4 (April 3, 2016)
1643
-
1644
- - [#13177](https://github.com/emberjs/ember.js/pull/13177) [BUGFIX] Allow contextual component attributes are mutable (allowing for two way binding).
1645
- - [#13185](https://github.com/emberjs/ember.js/pull/13185) [BUGFIX] Ensure `{{render}}` sets up target properly (fixes issues with `{{render}}`'ed templates using actions).
1646
- - [#13202](https://github.com/emberjs/ember.js/pull/13202) [BUGFIX] Merge in active transition QPs when doing a transition.
1647
- - [#13218](https://github.com/emberjs/ember.js/pull/13218) [BUGFIX] Do not refresh routes on initial transition.
1648
- - [#13228](https://github.com/emberjs/ember.js/pull/13228) [BUGFIX] re-enable link-to when disabledWhen changes values.
1649
-
1650
- ## 2.4.3 (March 17, 2016)
1651
-
1652
- - [#13118](https://github.com/emberjs/ember.js/pull/13118) [BUGFIX] Work around Chrome 49/50 optimization bug affecting helper usage.
1653
-
1654
- ## 2.4.2 (March 8, 2016)
1655
-
1656
- - [#13031](https://github.com/emberjs/ember.js/pull/13031) [BUGFIX] Fix mergedProperties at create time modifying proto
1657
- - [#13049](https://github.com/emberjs/ember.js/pull/13049) [BUGFIX] Fixes `{{#with proxy as |foo|}}`
1658
-
1659
- ## 2.4.1 (February 29, 2016)
1660
-
1661
- - [#13030](https://github.com/emberjs/ember.js/pull/13030) [BUGFIX] Fix legacy addon deprecations
1662
-
1663
- ## 2.4.0 (February 29, 2016)
1664
-
1665
- - [#12996](https://github.com/emberjs/ember.js/pull/12996) [BUGFIX] Fixes 12995 #with array yields true
1666
- - [#13013](https://github.com/emberjs/ember.js/pull/13013) [BUGFIX] Do not set model on `{{render}}` rerender when only a single argument was provided.
1667
- - [#13015](https://github.com/emberjs/ember.js/pull/13015) Add deprecation when legacy addon flag is enabled.
1668
- - [#12922](https://github.com/emberjs/ember.js/pull/12922) [BUGFIX] Special case `{{#with}}` for `isTruthy`
1669
- - [#12934](https://github.com/emberjs/ember.js/pull/12934) [BUGFIX] Ensure `Route#transitionTo` returns a `Transition` object.
1670
- - [#12941](https://github.com/emberjs/ember.js/pull/12941) [BUGFIX] Update Backburner to latest ([compare view](https://github.com/ebryn/backburner.js/compare/22a4df33f23c40257bc49972e5833038452ded2e...325a969dbc7eae42dc1edfbf0ae9fb83923df5a6)).
1671
- - [#12939](https://github.com/emberjs/ember.js/pull/12939) [BUGFIX] Avoid allocating a binding map in meta when possible.
1672
- - [#12947](https://github.com/emberjs/ember.js/pull/12947) [BUGFIX] Avoid using prototype extensions if possible ({add,remove}ArrayObserver).
1673
- - [#12942](https://github.com/emberjs/ember.js/pull/12942) [BUGFIX] Do not rely prototype extensions (objectAt).
1674
- - [#12991](https://github.com/emberjs/ember.js/pull/12991) [BUGFIX] Fix a regression in `Ember.computed.sort`.
1675
- - [#12491](https://github.com/emberjs/ember.js/pull/12491) [BUGFIX] allow watching of ES5+ Getter
1676
- - [#12829](https://github.com/emberjs/ember.js/pull/12829) [BUGFIX] Support tagless components in fastboot
1677
- - [#12847](https://github.com/emberjs/ember.js/pull/12847) [BUGFIX] Add warning for “deep @each” usage in dependent keys.
1678
- - [#12848](https://github.com/emberjs/ember.js/pull/12848) Make dependencies that end in `@each` expand to `[]`.
1679
- - [#12877](https://github.com/emberjs/ember.js/pull/12877) [BUGFIX] Upgrade htmlbars to 0.14.14. Fixes bug with lost cursor position with `<input oninput={{action 'foo'}}>`.
1680
- - [#12908](https://github.com/emberjs/ember.js/pull/12908) [BUGFIX] Fix issue that prevented recomputation of `ArrayProxy` values under certain circumstances.
1681
- - [#12348](https://github.com/emberjs/ember.js/pull/12348) Route#disconnectOutlet should not be private
1682
- - [#12648](https://github.com/emberjs/ember.js/pull/12648) Move `packages/**/lib/main.js` to `packages/**/lib/index.js`.
1683
- - [#12647](https://github.com/emberjs/ember.js/pull/12647) update cli
1684
- - [#12638](https://github.com/emberjs/ember.js/pull/12638) Update references to find methods
1685
- - [#12757](https://github.com/emberjs/ember.js/pull/12757) Update build related deps.
1686
- - [#12662](https://github.com/emberjs/ember.js/pull/12662) correction for Ember.String.capitalize docs
1687
- - [#12674](https://github.com/emberjs/ember.js/pull/12674) removed unused `name` prop
1688
- - [#12664](https://github.com/emberjs/ember.js/pull/12664) Include NaN as a falsey value in the `with` helper's docstring
1689
- - [#12698](https://github.com/emberjs/ember.js/pull/12698) convert all this._super.apply(this, arguments) to this._super(...arguments)
1690
-
1691
- ## v2.3.2 (March 17, 2016)
1692
-
1693
- - [#13118](https://github.com/emberjs/ember.js/pull/13118) [BUGFIX] Work around Chrome 49/50 optimization bug affecting helper usage.
1694
-
1695
- ## v2.3.1 (February 4, 2016)
1696
-
1697
- - [#12829](https://github.com/emberjs/ember.js/pull/12829) [BUGFIX] Support tagless components in fastboot.
1698
- - [#12848](https://github.com/emberjs/ember.js/pull/12848) Make dependencies that end in `@each` expand to `[]`.
1699
- - [#12877](https://github.com/emberjs/ember.js/pull/12877) [BUGFIX] Upgrade htmlbars to 0.14.14. Fixes bug with lost cursor position with `<input oninput={{action 'foo'}}>`.
1700
- - [#12908](https://github.com/emberjs/ember.js/pull/12908) [BUGFIX] Fix issue that prevented recomputation of `ArrayProxy` values under certain circumstances.
1701
-
1702
-
1703
- ## 2.3.0 (January 17, 2016)
1704
-
1705
- - [#12712](https://github.com/emberjs/ember.js/pull/12712) [BUGFIX] Create a new hash parameter when creating a component cell
1706
- - [#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).
1707
- - [#12752](https://github.com/emberjs/ember.js/pull/12752) [BUGFIX] Do not re-raise on errors handled in route error action.
1708
- - [#12764](https://github.com/emberjs/ember.js/pull/12764) [BUGFIX] Read values of `action` helper parameters
1709
- - [#12793](https://github.com/emberjs/ember.js/pull/12793) [BUGFIX] Remove jQuery version assertion.
1710
- - [#12659](https://github.com/emberjs/ember.js/pull/12659) [BUGFIX] Update HTMLBars to 0.14.7.
1711
- - [#12666](https://github.com/emberjs/ember.js/pull/12666) [BUGFIX] Prevent triggering V8 memory leak bug through registry / resolver access.
1712
- - [#12677](https://github.com/emberjs/ember.js/pull/12677) [BUGFIX] Remove FastBoot monkeypatches.
1713
- - [#12680](https://github.com/emberjs/ember.js/pull/12680) [BUGFIX] Clear cached instances when factories are unregistered.
1714
- - [#12682](https://github.com/emberjs/ember.js/pull/12682) [BUGFIX] Fix rerendering contextual components when invoked with dot syntax and block form.
1715
- - [#12686](https://github.com/emberjs/ember.js/pull/12686) [BUGFIX] Ensure HTML safe warning is not thrown for `null` and `undefined` values.
1716
- - [#12699](https://github.com/emberjs/ember.js/pull/12699) [BUGFIX] Only add deprecated container after create when present (prevents errors when non-extendable factory is frozen after creation).
1717
- - [#12705](https://github.com/emberjs/ember.js/pull/12705) [BUGFIX] Fix FastBoot URL parsing crash.
1718
- - [#12728](https://github.com/emberjs/ember.js/pull/12728) [BUGFIX] Fix incorrect export for `Ember.computed.collect`.
1719
- - [#12731](https://github.com/emberjs/ember.js/pull/12731) [BUGFIX] Ensure `container` can still be provided to `.create` (prevents an error and provides a helpful deprecation).
1720
- - [#12626](https://github.com/emberjs/ember.js/pull/12626) [BUGFIX] Fix "rest" style positional params in contextual components when using dot syntax.
1721
- - [#12627](https://github.com/emberjs/ember.js/pull/12627) [CLEANUP] Remove unused `ENV` flags.
1722
- * `Ember.ENV.ENABLE_ALL_FEATURES` is removed (wasn't functionally different than `Ember.ENV.ENABLE_OPTIONAL_FEATURES`).
1723
- * `Ember.SHIM_ES5` is removed (Ember 2.x only supports ES5 compliant browsers so this flag was unused).
1724
- * `Ember.ENV.DISABLE_RANGE_API` is removed (unused since HTMLBars landed in 1.10).
1725
- - [#12628](https://github.com/emberjs/ember.js/pull/12628) [BUGFIX] Fix processing arguments in rerender for contextual components.
1726
- - [#12629](https://github.com/emberjs/ember.js/pull/12629) [BUGFIX] Expose `ownerInjection` method on `ContainerProxy`.
1727
- - [#12636](https://github.com/emberjs/ember.js/pull/12636) [BUGFIX] Ensure `Ember.Mixin.prototype.toString` is defined (prevents issues with `Object.seal(Ember.Mixin.prototype)` in debug builds.
1728
- - [#12532](https://github.com/emberjs/ember.js/pull/12532) Bump RSVP dependency from 3.0.6 to 3.1.0.
1729
- - [#12422](https://github.com/emberjs/ember.js/pull/12422) / [#12495](https://github.com/emberjs/ember.js/pull/12495) / [#12517](https://github.com/emberjs/ember.js/pull/12517) / [#12561](https://github.com/emberjs/ember.js/pull/12561) / [#12542](https://github.com/emberjs/ember.js/pull/12542) / [#12570](https://github.com/emberjs/ember.js/pull/12570) [FEATURE ember-contextual-components]
1730
- - [#11874](https://github.com/emberjs/ember.js/pull/11874) / [#12562](https://github.com/emberjs/ember.js/pull/12562) / [#12557](https://github.com/emberjs/ember.js/pull/12557) / [#12578](https://github.com/emberjs/ember.js/pull/12578) / [#12599](https://github.com/emberjs/ember.js/pull/12599) / [#12570](https://github.com/emberjs/ember.js/pull/12570) / [#12604](https://github.com/emberjs/ember.js/pull/12604) / [#12609](https://github.com/emberjs/ember.js/pull/12609) [FEATURE ember-container-inject-owner]
1731
- - [#12314](https://github.com/emberjs/ember.js/pull/12314) [BUGFIX] Mandatory setter should check prototype descriptors.
1732
- - [#12485](https://github.com/emberjs/ember.js/pull/12485) [BUGFIX] Access property only once during `Ember.get`.
1733
- - [#12503](https://github.com/emberjs/ember.js/pull/12503) Add helpful assertion when a tagless component includes event handler methods.
1734
-
1735
- ## v2.2.0 (November 16, 2015)
1736
-
1737
- - [#12600](https://github.com/emberjs/ember.js/pull/12600) [BUGFIX beta] Guard against `null` `attrs` in `getRoot` hook.
1738
- - [#12445](https://github.com/emberjs/ember.js/pull/12445) [BUGFIX] Ensure rest arg positionalParams can be supplied as hash arguments.
1739
- - [#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`.
1740
- - [#12503](https://github.com/emberjs/ember.js/pull/12503) [BUGFIX] Add assertions for tagless components that include event handler functions (i.e. `click`).
1741
- - [#12464](https://github.com/emberjs/ember.js/pull/12464) [BUGFIX] `Ember.String.htmlSafe()` should return a instance of SafeString for `null` / `undefined`.
1742
- - [#12463](https://github.com/emberjs/ember.js/pull/12463) [BUGFIX] Fix uglification introduced bug with super wrapping.
1743
- - [#12519](https://github.com/emberjs/ember.js/pull/12519) [BUGFIX] Ensure closure actions are wrapped in a run loop.
1744
- - [#12214](https://github.com/emberjs/ember.js/pull/12214) Remove most of defeaturEify in favor of babel-plugin-filter-imports.
1745
- - [#12253](https://github.com/emberjs/ember.js/pull/12253) [BUGFIX] Remove superfluous `routing-service` initializer.
1746
- - [#12247](https://github.com/emberjs/ember.js/pull/12247) [BUGFIX] Avoid dirtying based on `Ember.Object`'s when `Ember.set` is not used.
1747
- - [#12262](https://github.com/emberjs/ember.js/pull/12262) [BUGFIX] Break circular references in rejected jqXhr promises.
1748
- - [#12289](https://github.com/emberjs/ember.js/pull/12289) [BUGFIX] Prevent creating `view` and `controller` template locals when their respective legacy addon's are not loaded.
1749
- - [#12309](https://github.com/emberjs/ember.js/pull/12309) [BUGFIX] Use `Cache` for tagname operations.
1750
- - [#12318](https://github.com/emberjs/ember.js/pull/12318) [BUGFIX] Ensure attributeBindings work when legacy view addon is not present.
1751
- - [#12370](https://github.com/emberjs/ember.js/pull/12370) [DEPRECATION] Deprecate passing function as test argument to `Ember.deprecate` / `Ember.warn` / `Ember.assert`.
1752
- - [#12416](https://github.com/emberjs/ember.js/pull/12416) [BUGFIX] Ensure components actions function without controller addon.
1753
-
1754
- ## v2.1.1 (November 16, 2015)
1755
-
1756
- - [#12445](https://github.com/emberjs/ember.js/pull/12445) [BUGFIX] Ensure rest arg style positionalParams can be omitted.
1757
- - [#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`.
1758
- - [#12463](https://github.com/emberjs/ember.js/pull/12463) [BUGFIX] Fix uglification introduced bug with super wrapping.
1759
- - [#12464](https://github.com/emberjs/ember.js/pull/12464) [BUGFIX] `Ember.String.htmlSafe()` should return a instance of SafeString for `null` / `undefined`.
1760
-
1761
- ## v2.1.0 (October 5, 2015)
1762
-
1763
- - [#12396](https://github.com/emberjs/ember.js/pull/12396) [BUGFIX] Ensure that `this._super` is called when extending from `Ember.Component`.
1764
- - [#12383](https://github.com/emberjs/ember.js/pull/12383) [BUGFIX] Fix `Ember.String.classify` to underscore items with a leading dash/underscore.
1765
- - [#12350](https://github.com/emberjs/ember.js/pull/12350) [BUGFIX] Provide a helpful assertion when using positional parameters with a param of the same name.
1766
- - [#12345](https://github.com/emberjs/ember.js/pull/12345) [BUGFIX] Ensure `{{link-to}}` properly handles bound values for `activeClass`, `disabledClass`, and `loadingClass`.
1767
- - [#12359](https://github.com/emberjs/ember.js/pull/12359) [BUGFIX] Ensure that functions are properly super wrapped if they include `.call` or `.apply` (this is in addition to `._super`).
1768
- - [#12075](https://github.com/emberjs/ember.js/pull/12075) [PERF] Avoid creating a run-loop for events that are unhandled.
1769
- - [#12260](https://github.com/emberjs/ember.js/pull/12260) [BUGFIX] Ensure `init` is completed before `didReceiveAttrs` is fired.
1770
- - [#12323](https://github.com/emberjs/ember.js/pull/12323) [BUGFIX beta] Make `{{get something 'path.goes.here'}}` work.
1771
- - [#12331](https://github.com/emberjs/ember.js/pull/12331) [BUGFIX beta] Update backburner.js to prevent issues when interleaving `run.later` and `run.next`.
1772
- - [#12157](https://github.com/emberjs/ember.js/pull/12157) [DEPRECATION] Allow deprecated access to registry from `Application` (argument to initializers) and `ApplicationInstance` (argument to instance initializers) instances.
1773
- - [#12156](https://github.com/emberjs/ember.js/pull/12156) [BUGFIX] Add helpful error message when providing incorrect arguments to `Ember.computed`.
1774
- - [#12253](https://github.com/emberjs/ember.js/pull/12253) [BUGFIX] Remove initializer causing errors during `App.reset`.
1775
- - [#12272](https://github.com/emberjs/ember.js/pull/12272) [BUGFIX] Update HTMLBars to fix memory leak when an `{{each}}` is inside an `{{if}}`.
1776
- - [#12184](https://github.com/emberjs/ember.js/pull/12184) [BUGFIX] Prevent `classNames` from being duplicated.
1777
- - [#12198](https://github.com/emberjs/ember.js/pull/12198) [BUGFIX] Further cleanup of the `link-to` component, allow for extending `{{link-to}}` via `Ember.LinkComponent.extend`.
1778
- - [#12208](https://github.com/emberjs/ember.js/pull/12208) [BUGFIX] Ember.computed.sort was crashing when it hit a null value. Fixes #12207.
1779
- - [#12188](https://github.com/emberjs/ember.js/pull/12188) [BUGFIX] Ensure `_actions` specified to extend works.
1780
- - [#12241](https://github.com/emberjs/ember.js/pull/12241) [BUGFIX] Provide a helpful error for undefined closure actions.
1781
- - [#12256](https://github.com/emberjs/ember.js/pull/12256) [BUGFIX] Ensure concat streams unsubscribe properly.
1782
- - [#12262](https://github.com/emberjs/ember.js/pull/12262) [BUGFIX] Breaks circular references in rejected jqXhr promises
1783
- - [#12297](https://github.com/emberjs/ember.js/pull/12297) / [#12299](https://github.com/emberjs/ember.js/pull/12299) [BUGFIX] Remove extra work per component on initial render.
1784
- - [#12163](https://github.com/emberjs/ember.js/pull/12163) [BUGFIX] Move `View#currentState` to `View#_currentState`.
1785
- - [#12163](https://github.com/emberjs/ember.js/pull/12163) [DEPRECATION] Deprecate using the private `currentState` property on views/components.
1786
- - [#12132](https://github.com/emberjs/ember.js/pull/12132) [BUGFIX] Fix stack overflow issue in `_super` wrapper updates.
1787
- - [#12138](https://github.com/emberjs/ember.js/pull/12138) [BUGFIX] Do not require `this._super(...arguments)` when components implement `didReceiveAttrs`.
1788
- - [#12170](https://github.com/emberjs/ember.js/pull/12170) [BUGFIX release] Ensure `Ember.computed.sum` returns `0` if the array to be operated on is `null` or `undefined`.
1789
- - [#12176](https://github.com/emberjs/ember.js/pull/12176) [BUGFIX] Enable extending `Ember.LinkComponent` for customizations.
1790
- - [#10173](https://github.com/emberjs/ember.js/pull/10173) [BUGFIX] Ensure non-singleton injections are not cached incorrectly.
1791
- - [#11966](https://github.com/emberjs/ember.js/pull/11966) [PERF] Refactor Meta.
1792
- - [#12057](https://github.com/emberjs/ember.js/pull/12057) Allow `instanceInitializers` to set `customEvents`.
1793
- - [#12059](https://github.com/emberjs/ember.js/pull/12059) [BUGFIX] Allow setting an entry in `Application#customEvents` to `null` to opt out of event listeners.
1794
- - [#12034](https://github.com/emberjs/ember.js/pull/12034) [BUGFIX] Ensure `currentRouteName` and `currentPath` are set properly for loading and error routes.
1795
- - [#12062](https://github.com/emberjs/ember.js/pull/12062) Remove the need for `this.__nextSuper`, and make debugging methods with `this._super` calls much easier.
1796
- - [#12116](https://github.com/emberjs/ember.js/pull/12116) [FEATURE ember-debug-handlers] Enable by default.
1797
- - [#12117](https://github.com/emberjs/ember.js/pull/12117) [FEATURE ember-registry-container-reform] Enable by default.
1798
- - [#11440](https://github.com/emberjs/ember.js/pull/11440) [DEPRECATION] Deprecate using `instance.container.lookup` on first argument to `instanceInitializers`. Use `instance.lookup` instead.
1799
- - [#11440](https://github.com/emberjs/ember.js/pull/11440) [DEPRECATION] Deprecate passing two arguments to an initializers `initialize` function.
1800
-
1801
- ## 2.0.0 (August 13, 2015)
1802
-
1803
- - [#11213](https://github.com/emberjs/ember.js/pull/11213) [BREAKING] Remove chaining in Observable.set
1804
- - [#12036](https://github.com/emberjs/ember.js/pull/12036) Cleanup CP Set and Volatile
1805
- - [#11993](https://github.com/emberjs/ember.js/pull/11993) [CLEANUP] Remove `Ember.TrackedArray` and `Ember.SubArray`.
1806
- - [#11550](https://github.com/emberjs/ember.js/pull/11550) [BUGFIX] Ensure that specifying an observer in a child class only observes changes to the childs dependent keys.
1807
- - [#10259](https://github.com/emberjs/ember.js/pull/10259) [BUGFIX] Make `Ember.computed.or` return the last falsey value (similar to `||`).
1808
- - [#11957](https://github.com/emberjs/ember.js/pull/11957) [BUGFIX] Enable `Ember.DefaultResolver` to properly normalize hyphens (`-`).
1809
- - [#11969](https://github.com/emberjs/ember.js/pull/11969) / [#11959](https://github.com/emberjs/ember.js/pull/11959) [DEPRECATE] Deprecate usage of `Ember.String.fmt`.
1810
- - [#11990](https://github.com/emberjs/ember.js/pull/11990) [PERF] `@each` should remain a stable node for chains.
1811
- - [#11964](https://github.com/emberjs/ember.js/pull/11964) [BUGFIX] Update htmlbars to v0.14.2.
1812
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.HTMLBars.makeViewHelper`.
1813
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.HTMLBars._registerHelper`.
1814
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.Handlebars.registerHelper`.
1815
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.Handlebars.makeBoundHelper`.
1816
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.Handlebars.makeViewHelper`.
1817
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.Handlebars.helper`.
1818
- - [#11965](https://github.com/emberjs/ember.js/pull/11965) [CLEANUP] Remove `Ember.Handlebars.registerBoundHelper`.
1819
- - [#12024](https://github.com/emberjs/ember.js/pull/12024) [CLEANUP] Remove `ComponentTemplateDeprecation` mixin.
1820
- - [#12001](https://github.com/emberjs/ember.js/pull/12001) [CLEANUP] Remove {{with}} keyword's controller option.
1821
- - [#12027](https://github.com/emberjs/ember.js/pull/12027) [CLEANUP] Remove deprecated `template` access in Ember.Component.
1822
- - [#12019](https://github.com/emberjs/ember.js/pull/12019) [DOC] Add helpful assertion when using @each as a leaf in DK.
1823
- - [#12020](https://github.com/emberjs/ember.js/pull/12020) [CLEANUP] Remove specifying `.render` method to views and components.
1824
- - [#12027](https://github.com/emberjs/ember.js/pull/12027) [CLEANUP] Remove `positionalParams` specified to `Ember.Component` at extend time.
1825
- - [#12027](https://github.com/emberjs/ember.js/pull/12027) [CLEANUP] Remove support for specifying `template` in a component.
1826
- - [#12027](https://github.com/emberjs/ember.js/pull/12027) [CLEANUP] Remove deprecated `template` access in Ember.Component.
1827
- - [#12028](https://github.com/emberjs/ember.js/pull/12028) [CLEANUP] Store actions in `actions` not `_actions`.
1828
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove `length` from `OrderedSet` and `Map`.
1829
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove `OrderedSet.prototype.length`.
1830
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove `Ember.libraries.each`.
1831
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove deprecated special `{{each}}` keys.
1832
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove Ember.Location.registerImplementation.
1833
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove `{{template}}` support.
1834
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove Ember.Route#setupControllers deprecation.
1835
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Remove Ember.Route#renderTemplates deprecation.
1836
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove Ember.Application#initialize.
1837
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove support for `Ember.Application.resolver`.
1838
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove support for resolver without `normalize`.
1839
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove IE6 & IE7 deprecation.
1840
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove returning string of attrs from helper support.
1841
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove support for returning string of attrs from helper.
1842
- - [#11845](https://github.com/emberjs/ember.js/pull/11845) [CLEANUP] Remove support for `view` and `viewClass` with `{{outlet}}`.
1843
- - [#11771](https://github.com/emberjs/ember.js/pull/11771) [CLEANUP] Remove deprecated `Controller#controllerFor`.
1844
- - [#11750](https://github.com/emberjs/ember.js/pull/11750) [CLEANUP] Remove `metaPath`, `getMeta` and `setMeta`.
1845
- - [#11854](https://github.com/emberjs/ember.js/pull/11854) [CLEANUP] Lots of deprecation removals.
1846
- - [#11820](https://github.com/emberjs/ember.js/pull/11820) [CLEANUP] Remove sendEvent hook.
1847
- - [#11815](https://github.com/emberjs/ember.js/pull/11815) [CLEANUP] Remove `{chainWatchers: null}` from `Meta.prototype`.
1848
- - [#11819](https://github.com/emberjs/ember.js/pull/11819) [CLEANUP] Abstract chainWatchers into an object.
1849
- - [#11824](https://github.com/emberjs/ember.js/pull/11824) Revert "[CLEANUP] Remove support for reversed args in `Ember.observer`.
1850
- - [#11822](https://github.com/emberjs/ember.js/pull/11822) [BUGFIX] Deprecate `currentWhen` with `{{link-to}}`.
1851
- - [#11838](https://github.com/emberjs/ember.js/pull/11838) [CLEANUP] Only register `Ember.ContainerView` when legacy view support enabled.
1852
- - [#11852](https://github.com/emberjs/ember.js/pull/11852) [CLEANUP] Remove `Ember.RenderBuffer`.
1853
- - [#11853](https://github.com/emberjs/ember.js/pull/11853) [CLEANUP] Remove deprecated `Registry` and `Container` behavior.
1854
- - [#11850](https://github.com/emberjs/ember.js/pull/11850) [CLEANUP] Remove context switching `{{each}}` helper variant.
1855
- - [#11878](https://github.com/emberjs/ember.js/pull/11878) [BUGFIX] Fix issue with QP routes named after `Object.prototype` properties.
1856
- - [#11903](https://github.com/emberjs/ember.js/pull/11903) [BUGFIX] Upgrade RSVP + Backburner. Fixes a number of scenarios around testing rejected promise scenarios.
1857
- - [#11914](https://github.com/emberjs/ember.js/pull/11914) [CLEANUP] Remove `Ember.oneWay`.
1858
- - [#11895](https://github.com/emberjs/ember.js/pull/11895) [BUGFIX] Properly detect if the environment is Node.
1859
- - [#11897](https://github.com/emberjs/ember.js/pull/11897) [CLEANUP] Remove globals lookup from templates.
1860
- - [#11777](https://github.com/emberjs/ember.js/pull/11777) [CLEANUP] Remove context switching form of `{{#each model}}{{/each}}`, use `{{#each model as |item|}}{{/each}}` instead.
1861
- - [#11484](https://github.com/emberjs/ember.js/pull/11484) [CLEANUP] Remove `Ember.ArrayController` support, use `ember-legacy-controllers` addon for support until 2.4.
1862
- - [#11782](https://github.com/emberjs/ember.js/pull/11782) [CLEANUP] Remove support for reversed args in `Ember.observer`.
1863
- - [#11722](https://github.com/emberjs/ember.js/pull/11722) [BUGFIX] Provide a better error when `InjectedProperty` is misused.
1864
- - [#11691](https://github.com/emberjs/ember.js/pull/11691) [BUGFIX] `{{get}}` helper subscribes to values and can be updated.
1865
- - [#11792](https://github.com/emberjs/ember.js/pull/11792) [CLEANUP] Remove `Application#then` support.
1866
- - [#11737](https://github.com/emberjs/ember.js/pull/11737) [BUGFIX] Ensure `this` context inside former reduced computed macros is correct.
1867
- - [#11790](https://github.com/emberjs/ember.js/pull/11790) [CLEANUP] Remove context switching `{{with foo}}` support.
1868
- - [#11754](https://github.com/emberjs/ember.js/pull/11754) [CLEANUP] Remove `emptyView="Global.foo"` for Ember.View instances.
1869
- - [#11746](https://github.com/emberjs/ember.js/pull/11746) [CLEANUP] Cleanup `Ember.get`:
1870
- - Remove support for globals: `Ember.get('App.foo')` and `Ember.get(null, 'App.foo')`.
1871
- - Remove support for `this`: `Ember.get(object, 'this.foo')`.
1872
- - Enforce strict usage with two arguments: `Ember.get(object, path)`.
1873
- - Assert object is a non-null object & path is a string.
1874
- - [#11761](https://github.com/emberjs/ember.js/pull/11761) [CLEANUP] Cleanup `Ember.set`:
1875
- - Removes support for set with global paths.
1876
- - Removes support for set with 'this' paths.
1877
- - Removes support for set with null as first parameter.
1878
- - Path must be a string.
1879
- - Requires set to be passed in three or four arguments.
1880
- - [#11797](https://github.com/emberjs/ember.js/pull/11797) [CLEANUP] Move support of `itemController`, `itemViewClass`, `itemView`, etc into `ember-legacy-views` addon.
1881
- - [#11776](https://github.com/emberjs/ember.js/pull/11776) [CLEANUP] Remove deprecated support for `{{each foo as bar}}`.
1882
- - [#11770](https://github.com/emberjs/ember.js/pull/11770) [CLEANUP] Remove deprecated `Controller#needs`, use `Ember.inject.controller()` instead.
1883
- - [#11800](https://github.com/emberjs/ember.js/pull/11800) [CLEANUP] Move support of `{{view}}` helper into `ember-legacy-views` addon.
1884
- - [#11804](https://github.com/emberjs/ember.js/pull/11804) [CLEANUP] Remove `EmberObject.createWithMixins`.
1885
- - [#11786](https://github.com/emberjs/ember.js/pull/11786) [CLEANUP] Remove `{{with foo as bar}}` support.
1886
- - [#11805](https://github.com/emberjs/ember.js/pull/11805) [CLEANUP] Remove deprecated `anyBy`, `everyProperty`, and `some`.
1887
- - [#11788](https://github.com/emberjs/ember.js/pull/11788) [CLEANUP] Remove slash for a namespace in the `{{render}}` helper
1888
- - [#11791](https://github.com/emberjs/ember.js/pull/11791) [CLEANUP] Remove support for actions in `events` key.
1889
- - [#11794](https://github.com/emberjs/ember.js/pull/11794) [CLEANUP] Move `Ember.View` and `Ember.CoreView` into `ember-legacy-views` addon.
1890
- - [#11796](https://github.com/emberjs/ember.js/pull/11796) [CLEANUP] Remove `Ember.beforeObserver`, `Ember.addBeforeObserver`, `Ember.removeBeforeObserver`, `Ember.beforeObserversFor`, `Ember._suspendBeforeObserver`, `Ember._suspendBeforeObservers`, and `Function.prototype.observesBefore`.
1891
- - [#11806](https://github.com/emberjs/ember.js/pull/11806) [CLEANUP] Remove deprecated `Controller#transitionTo` and `Controller#replaceWith`.
1892
- - [#11807](https://github.com/emberjs/ember.js/pull/11807) [CLEANUP] Remove deprecated `Ember.Handlebars.get`.
1893
- - [#11808](https://github.com/emberjs/ember.js/pull/11808) [CLEANUP] Remove deprecated `Binding#oneWay`.
1894
- - [#11809](https://github.com/emberjs/ember.js/pull/11809) [CLEANUP] Remove deprecated `Map#remove`.
1895
- - [#11438](https://github.com/emberjs/ember.js/pull/11438) [CLEANUP] Remove CP semantics
1896
- - [#11447](https://github.com/emberjs/ember.js/pull/11447) [CLEANUP] Remove `Ember.Set` (**not** `Ember.set`).
1897
- - [#11443](https://github.com/emberjs/ember.js/pull/11443) [CLEANUP] Remove `Ember.LinkView`.
1898
- - [#11439](https://github.com/emberjs/ember.js/pull/11439) [CLEANUP] Remove computed macros.
1899
- - [#11648](https://github.com/emberjs/ember.js/pull/11648) [CLEANUP] Remove `Ember.computed.mapProperty`.
1900
- - [#11460](https://github.com/emberjs/ember.js/pull/11460) [CLEANUP] Remove `Object.create` polyfill.
1901
- - [#11448](https://github.com/emberjs/ember.js/pull/11448) [CLEANUP] Remove `Ember.DeferredMixin`.
1902
- - [#11458](https://github.com/emberjs/ember.js/pull/11458) [CLEANUP] Remove `Ember.ArrayPolyfils`.
1903
- - [#11449](https://github.com/emberjs/ember.js/pull/11449) [CLEANUP] Remove `Ember.RSVP.prototype.fail`.
1904
- - [#11459](https://github.com/emberjs/ember.js/pull/11459) [CLEANUP] Remove `Ember.keys`.
1905
- - [#11456](https://github.com/emberjs/ember.js/pull/11456) [CLEANUP] Remove `Ember.View.prototype.state & `Ember.View.prototype._states`.
1906
- - [#11455](https://github.com/emberjs/ember.js/pull/11455) [CLEANUP] Remove `Ember.EnumerableUtils`.
1907
- - [#11462](https://github.com/emberjs/ember.js/pull/11462) [CLEANUP] Remove `Object.defineProperty` polyfill.
1908
- - [#11517](https://github.com/emberjs/ember.js/pull/11517) [DEPRECATION] Deprecate `this.resource` in `Router.map`.
1909
- - [#11479](https://github.com/emberjs/ember.js/pull/11479) [CLEANUP] Remove `Ember.ObjectController`.
1910
- - [#11513](https://github.com/emberjs/ember.js/pull/11513) [BUGFIX] Replace array computed macros with plain array versions.
1911
- - [#11513](https://github.com/emberjs/ember.js/pull/11513) [CLEANUP] Remove `Ember.arrayComputed`, `Ember.reduceComputed`, `Ember.ArrayComputed`, and `Ember.ReduceComputed`.
1912
- - [#11547](https://github.com/emberjs/ember.js/pull/11547) [CLEANUP] Remove work around for Safari's double finally on error bug.
1913
- - [#11528](https://github.com/emberjs/ember.js/pull/11528) [BUGFIX] Add helpful assertion when using `Ember.computed.map` without a function callback.
1914
- - [#11528](https://github.com/emberjs/ember.js/pull/11528) [BUGFIX] Add helpful assertion when using `Ember.computed.mapBy` without a string property name.
1915
- - [#11587](https://github.com/emberjs/ember.js/pull/11587) [CLEANUP] Remove `{{bind-attr}}`.
1916
- - [#11611](https://github.com/emberjs/ember.js/pull/11611) [CLEANUP] Remove `Ember.computed.filterProperty`.
1917
- - [#11608](https://github.com/emberjs/ember.js/pull/11608) [CLEANUP] Remove `{{linkTo}}` helper (**not** `{{link-to}}`).
1918
- - [#11706](https://github.com/emberjs/ember.js/pull/11706) [CLEANUP] Remove `Enumerable.rejectProperty`.
1919
- - [#11708](https://github.com/emberjs/ember.js/pull/11708) [BUGFIX] Update `fillIn` test helper to trigger the `input` event.
1920
- - [#11710](https://github.com/emberjs/ember.js/pull/11710) Add repository field to package.json
1921
- - [#11700](https://github.com/emberjs/ember.js/pull/11700) [CLEANUP] Removes `Enumerable.findProperty`.
1922
- - [#11707](https://github.com/emberjs/ember.js/pull/11707) [CLEANUP] Remove `Enumerable.everyBy`.
1923
- - [#10701](https://github.com/emberjs/ember.js/pull/10701) Refactor `lazyGet`.
1924
- - [#11262](https://github.com/emberjs/ember.js/pull/11262) Fix basic Fastboot usage.
1925
- - [#11375](https://github.com/emberjs/ember.js/pull/11375) Transition feature flag infrastructure to modules.
1926
- - [#11383](https://github.com/emberjs/ember.js/pull/11383) Update {{each-in}} to use ember-metal/should-display.
1927
- - [#11396](https://github.com/emberjs/ember.js/pull/11396) Make Ember.Checkbox extend from Ember.Component.
1928
-
1929
- ## 1.13.13 (January 17, 2016)
1930
-
1931
- - [12793](https://github.com/emberjs/ember.js/pull/12793) [BUGFIX] Remove jQuery version assertion/error.
1932
- - [#12414](https://github.com/emberjs/ember.js/pull/12414) [BUGFIX] Fix multiplicative observation of controllers in views
1933
- - [#12784](https://github.com/emberjs/ember.js/pull/12784) [BUGFIX] Prevent `classNames` from being duplicated.
1934
-
1935
- ## 1.13.12 (January 14, 2016)
1936
-
1937
- - [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)
1938
-
1939
- ## 1.13.11 (November 16, 2015)
1940
-
1941
- - [#12334](https://github.com/emberjs/ember.js/pull/12334) [BUGFIX] Fix for Array.prototype.filter polyfill on IE8.
1942
- - [#12344](https://github.com/emberjs/ember.js/pull/12344) [BUGFIX] Allow `{{link-to}}`'s `current-when` param be specified as a bound value.
1943
- - [#12449](https://github.com/emberjs/ember.js/pull/12449) [BUGFIX] Updated backburner.js. Backported from master.
1944
- - [#12471](https://github.com/emberjs/ember.js/pull/12471) [BUGFIX] Added deprecation for `Ember.SortableMixin`.
1945
- - [#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).
1946
- - [#12596](https://github.com/emberjs/ember.js/pull/12596) [BUGFIX] Fix `{{input}}` helper on IE8.
1947
-
1948
- ## 1.13.10 (September 6, 2015)
1949
-
1950
- - [#12104](https://github.com/emberjs/ember.js/pull/12104) [BUGFIX] Ensure `concatenatedProperties` are not stomped.
1951
- - [#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>`).
1952
- - [#12272](https://github.com/emberjs/ember.js/pull/12272) [BUGFIX] Update HTMLBars to fix memory leak when an `{{each}}` is inside an `{{if}}`.
1953
-
1954
- ## 1.13.9 (August 22, 2015)
1955
-
1956
- - [#12138](https://github.com/emberjs/ember.js/pull/12138) [BUGFIX] Do not require calling `this._super(...arguments)` in views/components when implementing `didReceiveAttrs`.
1957
- - [#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.
1958
-
1959
- ## 1.13.8 (August 13, 2015)
1960
-
1961
- - [#12056](https://github.com/emberjs/ember.js/pull/12056) [BUGFIX] Ensure initializers can augment `customEvents`.
1962
- - [#12037](https://github.com/emberjs/ember.js/pull/12037) [BUGFIX] Fix error in some query params scenarios.
1963
- - [#12058](https://github.com/emberjs/ember.js/pull/12058) [BUGFIX] Fix link-to with only qps linking to outdated route.
1964
- - [#12061](https://github.com/emberjs/ember.js/pull/12061) [PERF] Improve performance of guidFor when reading an existing Ember.Object.
1965
- - [#12067](https://github.com/emberjs/ember.js/pull/12067) [BUGFIX] Prevent `helper:@content-helper` lookup errors when using a paramless helper.
1966
- - [#12071](https://github.com/emberjs/ember.js/pull/12071) [BUGFIX] Fix issue with accessing component attributes before initial render.
1967
- - [#12073](https://github.com/emberjs/ember.js/pull/12073) [BUGFIX] Fix issue with events when invoking a component and specifying `classNames=`.
1968
-
1969
- ## 1.13.7 (August 9, 2015)
1970
-
1971
- - [#12000](https://github.com/emberjs/ember.js/pull/12000) [DEPRECATION] Deprecate using `controller` for {{with}}
1972
- - [#11946](https://github.com/emberjs/ember.js/pull/11946) [PERF] Speed up `AttrProxy` implementation.
1973
- - [#11956](https://github.com/emberjs/ember.js/pull/11956) [BUGFIX] Ensure that `Ember.View.views` is present on deprecated `Ember.View`.
1974
- - [#11960](https://github.com/emberjs/ember.js/pull/11960) [BUGFIX] Fix issue preventing proper rerendering when specifying bound properties to `{{link-to}}`.
1975
- - [#12018](https://github.com/emberjs/ember.js/pull/12018) [DEPRECATION] Deprecate `{{#unbound}}{{/unbound}}`.
1976
- - [#12018](https://github.com/emberjs/ember.js/pull/12018) [DEPRECATION] Deprecate `{{unbound}}` with multiple params.
1977
- - [#11964](https://github.com/emberjs/ember.js/pull/11964) [BUGFIX] Update htmlbars to v0.13.35.
1978
- - [#12017](https://github.com/emberjs/ember.js/pull/12017) [DEPRECATION] Deprecate specifying `render` function to `Ember.View` or `Ember.Component` at extend time.
1979
- - [#11993](https://github.com/emberjs/ember.js/pull/11993) [DEPRECATION] Deprecate `Ember.TrackedArray` and `Ember.SubArray`.
1980
- - [#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() { });`.
1981
- - [#12026](https://github.com/emberjs/ember.js/pull/12026) [BUGFIX] Remove wasted dependent keys for `template` and `layout` properties of `Ember.View`/`Ember.Component`.
1982
-
1983
- ## 1.13.6 (July 31, 2015)
1984
-
1985
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.makeViewHelper`.
1986
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.HTMLBars.makeViewHelper`.
1987
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.HTMLBars._registerHelper` (manual registration is no longer needed).
1988
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.HTMLBars.makeBoundHelper` in favor of `Ember.Helper.helper`.
1989
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.makeBoundHelper` in favor of `Ember.Helper.helper`.
1990
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.registerBoundHelper` in favor of `Ember.Helper.helper`.
1991
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.helper` in favor of `Ember.Helper.helper` and automatic helper resolution.
1992
- - [#11900](https://github.com/emberjs/ember.js/pull/11900) [DEPRECATION] Deprecate `Ember.Handlebars.registerHelper` in favor of `Ember.Helper.helper` and automatic helper resolution.
1993
- - [#11832](https://github.com/emberjs/ember.js/pull/11832) [BUGFIX] Fix memory leaks with application creation and acceptance test helpers.
1994
- - [#11826](https://github.com/emberjs/ember.js/pull/11826) [DEPRECATION] Deprecate Ember.ContainerView
1995
- - [#11864](https://github.com/emberjs/ember.js/pull/11864) [BUGFIX] Ensure acceptance test helpers are removed during teardown.
1996
- - [#11861](https://github.com/emberjs/ember.js/pull/11861) [BUGFIX] Update HTMLBars to allow duplicate {{each}} keys.
1997
- - [#11889](https://github.com/emberjs/ember.js/pull/11889) [BUGFIX] Fix `attributeBindings` for `id` attribute.
1998
- - [#11866](https://github.com/emberjs/ember.js/pull/11866) [BUGFIX] Fix DeprecatedView (and friends) reopen function to delegate to original.
1999
- - [#11891](https://github.com/emberjs/ember.js/pull/11891) [DEPRECATION] Deprecate Ember.CollectionView
2000
- - [#11910](https://github.com/emberjs/ember.js/pull/11910) [BUGFIX] Ensure `Ember.CollectionView.CONTAINER_MAP` is present on deprecated `CollectionView`.
2001
- - [#11917](https://github.com/emberjs/ember.js/pull/11917) [BUGFIX] Ensure `"use strict";` is properly added for modules.
2002
- - [#11934](https://github.com/emberjs/ember.js/pull/11934) [DEPRECATION] Deprecate specifying `positionalParams` at extend time in favor of using static factory properties.
2003
- - [#11935](https://github.com/emberjs/ember.js/pull/11935) [BUGFIX] Avoid unnecessary change events during initial render.
2004
-
2005
- ## 1.13.5 (July 19, 2015)
2006
-
2007
- - [#11767](https://github.com/emberjs/ember.js/pull/11767) [DEPRECATION] Deprecate Controller#needs
2008
- - [#11468](https://github.com/emberjs/ember.js/pull/11468) [DEPRECATION] Deprecate `Ember.Freezable` and `frozenCopy`.
2009
- - [#11762](https://github.com/emberjs/ember.js/pull/11762) / [#11744](https://github.com/emberjs/ember.js/pull/11744) [BUGFIX] Ensure deprecated `Ember.beforeObserver` is available in production.
2010
- - [#11765](https://github.com/emberjs/ember.js/pull/11765) [DEPRECATION] Mark `Ember.oneWay` as deprecated
2011
- - [#11774](https://github.com/emberjs/ember.js/pull/11774) [BUGFIX] Add deprecation warnings to deprecated Enumerable methods.
2012
- - [#11778](https://github.com/emberjs/ember.js/pull/11778) [DEPRECATION] Deprecate reverse argument ordering in `Ember.observer`.
2013
- - [#11787](https://github.com/emberjs/ember.js/pull/11787) [DEPRECATION] Deprecate slash for a namespace in the `{{render}}` helper.
2014
- - [#11798](https://github.com/emberjs/ember.js/pull/11798) [DEPRECATION] Deprecate `Function#observesBefore`.
2015
- - [#11812](https://github.com/emberjs/ember.js/pull/11812) [DEPRECATION] Add deprecation messages when using `Ember.get` / `Ember.set` in a certain ways.
2016
-
2017
- ## 1.13.4 (July 13, 2015)
2018
-
2019
- - [#11651](https://github.com/emberjs/ember.js/pull/11651) [BUGFIX] Ensure child views of non-dirty components get the correct parentView when rerendered.
2020
- - [#11662](https://github.com/emberjs/ember.js/pull/11662) [BUGFIX] Prevent ArrayController deprecation on generated controllers.
2021
- - [#11655](https://github.com/emberjs/ember.js/pull/11655) [BUGFIX] Fix issue with blockless link-to with only query params.
2022
- - [#11664](https://github.com/emberjs/ember.js/pull/11664) [BUGFIX] Ensure Route actions can be unit tested.
2023
- - [#11667](https://github.com/emberjs/ember.js/pull/11667) [BUGFIX] Fix memory leak in rendering engine.
2024
-
2025
- ## 1.13.3 (July 5, 2015)
2026
-
2027
- - [#11510](https://github.com/emberjs/ember.js/pull/11510) [DEPRECATION] Deprecate `Ember.Object.createWithMixins`.
2028
- - [#11512](https://github.com/emberjs/ember.js/pull/11512) [DEPRECATION] Deprecate `Ember.oneWay` in favor of `Ember.computed.oneWay`.
2029
- - [#11525](https://github.com/emberjs/ember.js/pull/11525) [BUGFIX] Add helpful error when using `{{each}}` with duplicate keys. This replaces a difficult to understand error deep in the HTMLBars internals, with an error that explains the duplicate key issue a bit better.
2030
- - [#11511](https://github.com/emberjs/ember.js/pull/11511) [DEPRECATION] Deprecate `Ember.keys` in favor of `Object.keys`.
2031
- - [#11511](https://github.com/emberjs/ember.js/pull/11511) [DEPRECATION] Deprecate `Ember.create` in favor of `Object.create`.
2032
- - [#11543](https://github.com/emberjs/ember.js/pull/11543) / [#11594](https://github.com/emberjs/ember.js/pull/11594) / [#11603](https://github.com/emberjs/ember.js/pull/11603) - [BUGFIX] Fix extending or reopening `Ember.LinkView`.
2033
- - [#11561](https://github.com/emberjs/ember.js/pull/11561) [BUGFIX] Fix issue with `{{link-to}}` not properly updating the link for certain routing state changes.
2034
- - [#11572](https://github.com/emberjs/ember.js/pull/11572) [BUGFIX] Ensure local component state can shadow attributes provided during invocation.
2035
- - [#11570](https://github.com/emberjs/ember.js/pull/11570) [BUGFIX] Prevent infinite loop when a yielded block param is changed.
2036
- - [#11577](https://github.com/emberjs/ember.js/pull/11577) [BUGFIX] Ensure route backed views are properly destroyed.
2037
- - [#11636](https://github.com/emberjs/ember.js/pull/11636) [BUGFIX] Fix sticky query params for nested and for dynamic routes.
2038
- - [#11639](https://github.com/emberjs/ember.js/pull/11639) [BUGFIX] Fix testing of components containing `{{link-to}}`'s.
2039
- - [#11650](https://github.com/emberjs/ember.js/pull/11650) [BUGFIX] Update HTMLBars to 0.13.32. Fixes a number of issues with the property first strategy used:
2040
- * for exceptions `input.form`, `input.list`, `button.type` always use `elem.setAttribute`
2041
- * for `form.action` always escape
2042
- * always assign handlers to props, even if the case appears strange
2043
-
2044
- ## 1.13.2 (June 17, 2015)
2045
-
2046
- - [#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`.
2047
- - [#11495](https://github.com/emberjs/ember.js/pull/11495) [PERFORMANCE] Remove debug statements from production builds.
2048
-
2049
- ## 1.13.1 (June 16, 2015)
2050
-
2051
- - [#11445](https://github.com/emberjs/ember.js/pull/11445) [BUGFIX] Allow recomputation for `Ember.Helper` with arguments.
2052
- - [#11317](https://github.com/emberjs/ember.js/pull/11317) [BUGFIX] Ensure handleURL called after setURL in visit helper.
2053
- - [#11464](https://github.com/emberjs/ember.js/pull/11464) [DEPRECATION] Deprecate `Ember.immediateObserver`.
2054
- - [#11476](https://github.com/emberjs/ember.js/pull/11476) [DEPRECATION] Deprecate `Ember.ArrayController`.
2055
- - [#11478](https://github.com/emberjs/ember.js/pull/11478) [DEPRECATION] Deprecate `Ember.RenderBuffer`.
2056
-
2057
- ## 1.13.0 (June 12, 2015)
2058
-
2059
- - [#11270](https://github.com/emberjs/ember.js/pull/11270) [BUGFIX] Ensure view registry is propagated to components.
2060
- - [#11273](https://github.com/emberjs/ember.js/pull/11273) [BUGFIX] Downgrade Ember.Service without proper inheritance to a deprecation (instead of an assertion).
2061
- - [#11274](https://github.com/emberjs/ember.js/pull/11274) [BUGFIX] Unify template compiler deprecations so that they can report the proper location of the deprecation.
2062
- - [#11279](https://github.com/emberjs/ember.js/pull/11279) [DEPRECATION] Deprecate `{{#each foo in bar}}{{/each}}`.
2063
- - [#11229](https://github.com/emberjs/ember.js/pull/11229) [BUGFIX] Prevent views from having access to component lifecycle hooks.
2064
- - [#11286](https://github.com/emberjs/ember.js/pull/11286) [DEPRECATION] Deprecate `Ember.EnumerableUtils`.
2065
- - [#11338](https://github.com/emberjs/ember.js/pull/11338) [BUGFIX] Ensure `parentView` is available properly.
2066
- - [#11313](https://github.com/emberjs/ember.js/pull/11313) [DEPRECATION] Allow deprecated access to `template` in component to determine if a block was provided.
2067
- - [#11339](https://github.com/emberjs/ember.js/pull/11339) Add special values (`@index` or `@guid`) to `{{each}}`'s keyPath.
2068
- - [#11360](https://github.com/emberjs/ember.js/pull/11360) Add warning message when using `{{each}}` without specifying `key`.
2069
- - [#11348](https://github.com/emberjs/ember.js/pull/11348) [BUGFIX] Provide useful errors when a closure action is not found.
2070
- - [#11264](https://github.com/emberjs/ember.js/pull/11264) Add `{{concat}}` helper.
2071
- - [#11362](https://github.com/emberjs/ember.js/pull/11362) / [#11365](https://github.com/emberjs/ember.js/pull/11365) [DOC] Ensure all documentation comments include `@public` or `@private`.
2072
- - [#11278](https://github.com/emberjs/ember.js/pull/11278) Implement Ember.Helper. Read [emberjs/rfcs#53](https://github.com/emberjs/rfcs/pull/53) for more details.
2073
- - [#11373](https://github.com/emberjs/ember.js/pull/11373) [BUGFIX] Fix issue with multiple actions in a single element.
2074
- - [#11387](https://github.com/emberjs/ember.js/pull/11387) [DEPRECATION] Deprecate `Ember.View`.
2075
- - [#11389](https://github.com/emberjs/ember.js/pull/11389) [DEPRECATION] Deprecate `{{view}}` helper.
2076
- - [#11394](https://github.com/emberjs/ember.js/pull/11394) [DEPRECATION] Add `Ember.LinkComponent` and deprecate `Ember.LinkView`.
2077
- - [#11400](https://github.com/emberjs/ember.js/pull/11400) [DEPRECATION] Deprecate `Ember.computed.any`.
2078
- - [#11330](https://github.com/emberjs/ember.js/pull/11330) [BUGFIX] Ensure that `{{each}}` can properly transition into and out of its inverse state.
2079
- - [#11416](https://github.com/emberjs/ember.js/pull/11416) [DEPRECATION] Deprecate `Ember.Select`.
2080
- - [#11403](https://github.com/emberjs/ember.js/pull/11403) [DEPRECATION] Deprecate `Ember.arrayComputed`, `Ember.ReduceComputedProperty`, `Ember.ArrayComputedProperty`, and `Ember.reduceComputed`.
2081
- - [#11401](https://github.com/emberjs/ember.js/pull/11401) [DEPRECATION] Deprecate `{{view` and `{{controller` template local keywords.
2082
- - [#11329](https://github.com/emberjs/ember.js/pull/11329) [BUGFIX] Fix issue with `{{component}}` helper not properly cleaning up components after they have been replaced.
2083
- - [#11393](https://github.com/emberjs/ember.js/pull/11393) Implement support for automatic registration of all helpers (with or without a dash). Requires ember-resolver@0.1.17 or higher if using ember-cli. Read [emberjs/rfcs#58](https://github.com/emberjs/rfcs/pull/58) for more details.
2084
- - [#11425](https://github.com/emberjs/ember.js/pull/11425) [BUGFIX] Prevent `willDestroyElement` from being called multiple times on the same component.
2085
- - [#11138](https://github.com/emberjs/ember.js/pull/11138) Add a better deprecation for `{{bind-attr}}`.
2086
- - [#11201](https://github.com/emberjs/ember.js/pull/11201) [BUGFIX] Fix `currentURL` test helper.
2087
- - [#11161](https://github.com/emberjs/ember.js/pull/11161) [BUGFIX] Fix initial selection for select with optgroup.
2088
- - [#10980](https://github.com/emberjs/ember.js/pull/10980) [BUGFIX] Fix `Ember.String.dasherize`, `Ember.String.underscore`, `Ember.String.capitalize`, `Ember.String.classify` for multi-word input values.
2089
- - [#11187](https://github.com/emberjs/ember.js/pull/11187) [BUGFIX] Handle mut cell action names.
2090
- - [#11194](https://github.com/emberjs/ember.js/pull/11194) [BUGFIX] Ensure `classNameBindings` properly handles multiple entries.
2091
- - [#11203](https://github.com/emberjs/ember.js/pull/11203) [BUGFIX] Ensure components for void tagNames do not have childNodes.
2092
- - [#11205](https://github.com/emberjs/ember.js/pull/11205) [BUGFIX] Ensure `Ember.get` works on empty string paths.
2093
- - [#11220](https://github.com/emberjs/ember.js/pull/11220) [BUGFIX] Fix issue with `Ember.computed.sort` where array observers were not properly detached.
2094
- - [#11222](https://github.com/emberjs/ember.js/pull/11222) [BUGFIX] Only attempt to lookup components with a dash.
2095
- - [#11227](https://github.com/emberjs/ember.js/pull/11227) [BUGFIX] Ensure `role` is properly applied to views if `ariaRole` attribute is present.
2096
- - [#11228](https://github.com/emberjs/ember.js/pull/11228) [BUGFIX] Fix `{{each}}` with `itemViewClass` specified `tagName`.
2097
- - [#11231](https://github.com/emberjs/ember.js/pull/11231) [BUGFIX] Fix `{{each}}` with `itemViewClass` and `{{else}}`.
2098
- - [#11234](https://github.com/emberjs/ember.js/pull/11234) [BUGFIX] Fix `{{each item in model itemViewClass="..."}}`.
2099
- - [#11235](https://github.com/emberjs/ember.js/pull/11235) [BUGFIX] Properly handle `isVisible` as a computed property.
2100
- - [#11242](https://github.com/emberjs/ember.js/pull/11242) [BUGFIX] Use the proper value for `options.data.view` with Handlebars compat helpers.
2101
- - [#11252](https://github.com/emberjs/ember.js/pull/11253) [BUGFIX] Ensure `instanceInitializers` are called with the proper arguments when calling `App.reset`.
2102
- - [#11257](https://github.com/emberjs/ember.js/pull/11257) [BUGFIX] Fix (and deprecate) `{{input on="..." action="..."}}`.
2103
- - [#11260](https://github.com/emberjs/ember.js/pull/11260) [BUGFIX] Ensure that passing an array argument to `(action` helper is handled properly.
2104
- - [#11261](https://github.com/emberjs/ember.js/pull/11261) Add helpful assertion when exporting the wrong type of factory (for Routes, Components, Services, and Views).
2105
- - [#11266](https://github.com/emberjs/ember.js/pull/11266) [BUGFIX] Ensure `parentView` includes yielding component.
2106
- - [#11267](https://github.com/emberjs/ember.js/pull/11267) Disable angle bracket components. See [#11267](https://github.com/emberjs/ember.js/pull/11267) and [emberjs/rfcs#60](https://github.com/emberjs/rfcs/pull/60) for more details.
2107
- - [#3852](https://github.com/emberjs/ember.js/pull/3852) [BREAKING BUGFIX] Do not assume null Ember.get targets always refer to a global
2108
- - [#10501](https://github.com/emberjs/ember.js/pull/10501) Implement Glimmer Engine.
2109
- - [#11029](https://github.com/emberjs/ember.js/pull/11029) Allow bound outlet names.
2110
- - [#11035](https://github.com/emberjs/ember.js/pull/11035) {{#with}} helper should not render if passed variable is falsey.
2111
- - [#11104](https://github.com/emberjs/ember.js/pull/11104) / [#10501](https://github.com/emberjs/ember.js/pull/10501) Remove support for non-HTMLBars templates.
2112
- - [#11116](https://github.com/emberjs/ember.js/pull/11116) / [emberjs/rfcs#50](https://github.com/emberjs/rfcs/pull/50) [FEATURE ember-routing-htmlbars-improved-actions].
2113
- - [#11028](https://github.com/emberjs/ember.js/pull/11028) Add positional parameter support to components.
2114
- - [#11084](https://github.com/emberjs/ember.js/pull/11084) Enable {{yield to="inverse"}} in components.
2115
- - [#11141](https://github.com/emberjs/ember.js/pull/11141) Implement angle-bracket components.
2116
-
2117
- ## 1.12.0 (May 13, 2015)
2118
-
2119
- - [#10874](https://github.com/emberjs/ember.js/pull/10874) Include all files in jspm package.
2120
- - [#10876](https://github.com/emberjs/ember.js/pull/10876) [BUGFIX] Make the `{{component}}` helper deal with dynamically set falsey values.
2121
- - [#10883](https://github.com/emberjs/ember.js/pull/10883) [BUGFIX] Fix `View.prototype.replaceIn` functionality.
2122
- - [#10920](https://github.com/emberjs/ember.js/pull/10920) [BUGFIX] Fix `Component.prototype.layout` so that it can now be set and recompute properly.
2123
- - [#10968](https://github.com/emberjs/ember.js/pull/10968) [BUGFIX] Fix assertion that incorrectly fired on legacy settable computed properties.
2124
- - [CVE-2015-1866] Ember.js XSS Vulnerability With {{view "select"}} Options
2125
- - [#3852](https://github.com/emberjs/ember.js/pull/3852) [BREAKING BUGFIX] Do not assume null Ember.get targets always refer to a global
2126
- - [#10200](https://github.com/emberjs/ember.js/pull/10200) Add 'autocomplete' to Ember.Select view
2127
- - [#10464](https://github.com/emberjs/ember.js/pull/10464) Ensure templates were compiled with the current compiler version.
2128
- - [#10494](https://github.com/emberjs/ember.js/pull/10494) Make it easier to write lazy streams.
2129
- - [#10483](https://github.com/emberjs/ember.js/pull/10483) [REFACTOR] Lazily reify router’s location.
2130
- - [#10673](https://github.com/emberjs/ember.js/pull/10673) Remove EachProxy and EachArray from exports.
2131
- - [#10572](https://github.com/emberjs/ember.js/pull/10572) Fix UnrecognizedURLError not being an Error.
2132
- - [#10585](https://github.com/emberjs/ember.js/pull/10585) Deprecate direct use of `Ember.CoreView`.
2133
- - [#10599](https://github.com/emberjs/ember.js/pull/10599) Don’t share view registry across containers.
2134
- - [#10667](https://github.com/emberjs/ember.js/pull/10667) Deprecate `Ember.tryFinally` and `Ember.tryCatchFinally`.
2135
- - [#10668](https://github.com/emberjs/ember.js/pull/10668) Deprecate `Ember.required`.
2136
- - [#10678](https://github.com/emberjs/ember.js/pull/10678) Fix typos in deprecations of unescaped style attribute
2137
- - [#10679](https://github.com/emberjs/ember.js/pull/10679) Ensure docs are not detected for deprecation mixins.
2138
- - [#10672](https://github.com/emberjs/ember.js/pull/10672) Do not export `Ember.Descriptor`.
2139
- - [#10695](https://github.com/emberjs/ember.js/pull/10695) Require that `base` `href` and `embed` `src` are escaped.
2140
- - [#10690](https://github.com/emberjs/ember.js/pull/10690) [BUGFIX canary] Prevent unknown input types from erroring.
2141
- - [#10731](https://github.com/emberjs/ember.js/pull/10731) [FEATURE] Enable `new-computed-syntax` feature. See [emberjs/rfcs#11](https://github.com/emberjs/rfcs/pull/11) for more details.
2142
- - [#10731](https://github.com/emberjs/ember.js/pull/10731) [FEATURE] Enable `ember-application-instance-initializers` feature.
2143
- - [#10731](https://github.com/emberjs/ember.js/pull/10731) [FEATURE] Enable `ember-application-initializer-context` feature.
2144
-
2145
- ## 1.11.0 (March 28, 2015)
2146
-
2147
- - [#10736](https://github.com/emberjs/ember.js/pull/10736) [BUGFIX] Fix issue with Query Params when using `Ember.ObjectController` (regression from `ObjectController` deprecation).
2148
- - [#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.
2149
- - [#10709](https://github.com/emberjs/ember.js/pull/10709) [BUGFIX] Clear `src` attributes that are set to `null` or `undefined`.
2150
- - [#10695](https://github.com/emberjs/ember.js/pull/10695) [SECURITY] Add `<base>` and `<embed>` to list of tags where `src` and `href` are sanitized.
2151
- - [#10683](https://github.com/emberjs/ember.js/pull/10683) / [#10703](https://github.com/emberjs/ember.js/pull/10703) / [#10712](https://github.com/emberjs/ember.js/pull/10712) [BUGFIX] Fix regressions added during the `{{outlet}}` refactor.
2152
- - [#10663](https://github.com/emberjs/ember.js/pull/10663) / [#10711](https://github.com/emberjs/ember.js/pull/10711) [SECURITY] Warn when using dynamic style attributes without a `SafeString` value. [See here](https://emberjs.com/deprecations/v1.x/#toc_warning-when-binding-style-attributes) for more details.
2153
- - [#10463](https://github.com/emberjs/ember.js/pull/10463) [BUGFIX] Make async test helpers more robust. Fixes hanging test when elements are not found.
2154
- - [#10631](https://github.com/emberjs/ember.js/pull/10631) Deprecate using `fooBinding` syntax (`{{some-thing nameBinding="model.name"}}`) in templates.
2155
- - [#10627](https://github.com/emberjs/ember.js/pull/10627) [BUGFIX] Ensure specifying `class` as a sub-expression (`{{input value=foo class=(some-sub-expr)}}`) works properly.
2156
- - [#10613](https://github.com/emberjs/ember.js/pull/10613) [BUGFIX] Ensure `{{view id=bar}}` sets `id` on the view.
2157
- - [#10612](https://github.com/emberjs/ember.js/pull/10612) [BUGFIX] Ensure `Ember.inject.controller()` works for all Controller types.
2158
- - [#10604](https://github.com/emberjs/ember.js/pull/10604) [BUGFIX] Fix regression on iOS 8 crashing on certain platforms.
2159
- - [#10556](https://github.com/emberjs/ember.js/pull/10556) [BUGFIX] Deprecate `{{link-to}}` unwrapping a controllers model.
2160
- - [#10528](https://github.com/emberjs/ember.js/pull/10528) [BUGFIX] Ensure custom Router can be passed to Ember.Application.
2161
- - [#10530](https://github.com/emberjs/ember.js/pull/10530) [BUGFIX] Add assertion when calling `this.$()` in a tagless view/component.
2162
- - [#10533](https://github.com/emberjs/ember.js/pull/10533) [BUGFIX] Do not allow manually specifying `application` resource in the `Router.map`.
2163
- - [#10544](https://github.com/emberjs/ember.js/pull/10544) / [#10550](https://github.com/emberjs/ember.js/pull/10550) [BUGFIX] Ensure that `{{input}}` can be updated multiple times, and does not loose cursor position.
2164
- - [#10553](https://github.com/emberjs/ember.js/pull/10553) [BUGFIX] Fix major regression in the non-block form of `{{link-to}}` that caused an application crash after a period of time.
2165
- - [#10554](https://github.com/emberjs/ember.js/pull/10554) [BUGFIX] Remove access to `this` in HTMLBars helpers. To fix any usages of `this` in a helper, you can access the view from `env.data.view` instead.
2166
- - [#10475](https://github.com/emberjs/ember.js/pull/10475) [BUGFIX] Ensure wrapped errors are logged properly.
2167
- - [#10489](https://github.com/emberjs/ember.js/pull/10489) [BUGFIX] Fix an issue with bindings inside of a yielded template when the yield helper is nested inside of another view
2168
- - [#10493](https://github.com/emberjs/ember.js/pull/10493) [BUGFIX] Fix nested simple bindings inside of nested yields within views.
2169
- - [#10527](https://github.com/emberjs/ember.js/pull/10527) [BUGFIX] Ensure that Component context is not forced to parent context.
2170
- - [#10525](https://github.com/emberjs/ember.js/pull/10525) [BUGFIX] Fix issue causing cursor position to be lost while entering into an `{{input}}` / `Ember.TextField`.
2171
- - [#10372](https://github.com/emberjs/ember.js/pull/10372) / [#10431](https://github.com/emberjs/ember.js/pull/10431) / [#10439](https://github.com/emberjs/ember.js/pull/10439) / [#10442](https://github.com/emberjs/ember.js/pull/10442) Decouple route transition from view creation.
2172
- - [#10436](https://github.com/emberjs/ember.js/pull/10436) [BUGFIX] Ensure `instrument.{subscribe,unsubscribe,reset}` aren’t accidentally clobbered.
2173
- - [#10462](https://github.com/emberjs/ember.js/pull/10462) [BUGFIX] Fix incorrect export of `Ember.OutletView`.
2174
- - [#10398](https://github.com/emberjs/ember.js/pull/10398) [BUGFIX] `undefined` and `null` values in bind-attr should remove attributes.
2175
- - [#10413](https://github.com/emberjs/ember.js/pull/10413) Update to use inclusive `morph-range` (via HTMLBars v0.11.1).
2176
- - [#10464](https://github.com/emberjs/ember.js/pull/10464) Add helpful assertion if templates are compiled with a different template compiler revision.
2177
- - [#10160](https://github.com/emberjs/ember.js/pull/10160) [FEATURE] Add index as an optional parameter to #each blocks [@tim-evans](https://github.com/tim-evans)
2178
- - [#10186](https://github.com/emberjs/ember.js/pull/10186) Port attributeBindings to AttrNode views [@mixonic](https://github.com/mixonic)
2179
- - [#10184](https://github.com/emberjs/ember.js/pull/10184) Initial support basic Node.js rendering.
2180
- - [#10179](https://github.com/emberjs/ember.js/pull/10179) [FEATURE] Execute initializers in their respective context [@gf3](https://github.com/gf3)
2181
- - [#10213](https://github.com/emberjs/ember.js/pull/10213) Ensure overriding attribute bindings is possible [@miguelcobain](https://github.com/miguelcobain)
2182
- - [#10320](https://github.com/emberjs/ember.js/pull/10320) Start breaking up Ember.View code into mixins based on purpose [@ebryn](https://github.com/ebryn)
2183
- - [#10221](https://github.com/emberjs/ember.js/pull/10221) Embed enabled features in debug builds. [@rwjblue](https://github.com/rwjblue)
2184
- - [#10215](https://github.com/emberjs/ember.js/pull/10215) [Bugfix beta] Prevent Ember from erroring when the errorThrown property is `undefined` [@bmac](https://github.com/bmac)
2185
- - [#10326](https://github.com/emberjs/ember.js/pull/10326) Let `View#appendChild` instantiate `SimpleBoundView`s rather than doing it manually ourselves [@ebryn](https://github.com/ebryn)
2186
- - [#10280](https://github.com/emberjs/ember.js/pull/10280) Moves route-recognizer to a NPM dep, bumps emberjs-build [@danmcclain](https://github.com/danmcclain)
2187
- - [#10256](https://github.com/emberjs/ember.js/pull/10256) Simplify and modularize app/router initialization [@emberjs](https://github.com/emberjs)
2188
- - [#10254](https://github.com/emberjs/ember.js/pull/10254) Make computed.or and computed.and return truthy values [@soulcutter](https://github.com/soulcutter)
2189
- - [#10271](https://github.com/emberjs/ember.js/pull/10271) Clean up boot process [@emberjs](https://github.com/emberjs)
2190
- - [#10268](https://github.com/emberjs/ember.js/pull/10268) Bumped sha to get tildeio/route-recognizer#40, which fixes #10190 [@jayphelps](https://github.com/jayphelps)
2191
- - [#10316](https://github.com/emberjs/ember.js/pull/10316) Make LinkView FastBoot™-compatible [@emberjs](https://github.com/emberjs)
2192
- - [#10321](https://github.com/emberjs/ember.js/pull/10321) `View#element` isn’t observable, we don’t need to use `set` [@ebryn](https://github.com/ebryn)
2193
- - [#10323](https://github.com/emberjs/ember.js/pull/10323) Remove `meta.descs` [@ebryn](https://github.com/ebryn)
2194
- - [#10324](https://github.com/emberjs/ember.js/pull/10324) Don’t run this mandatory setter test in prod [@ebryn](https://github.com/ebryn)
2195
- - [#10329](https://github.com/emberjs/ember.js/pull/10329) Update transpiler to Esperanto. [@rwjblue](https://github.com/rwjblue)
2196
- - [#10352](https://github.com/emberjs/ember.js/pull/10352) Add internal `_willDestroyElement` hook to prevent using instance-based events [@ebryn](https://github.com/ebryn)
2197
- - [#10336](https://github.com/emberjs/ember.js/pull/10336) Remove unnecessary check for `NativeArray` [@tricknotes](https://github.com/tricknotes)
2198
- - [#10334](https://github.com/emberjs/ember.js/pull/10334) Update to HTMLBars v0.10.0. [@rwjblue](https://github.com/rwjblue)
2199
- - [#10338](https://github.com/emberjs/ember.js/pull/10338) Ensure computed.oneWay is exported properly. [@linstula](https://github.com/linstula)
2200
- - [#10345](https://github.com/emberjs/ember.js/pull/10345) Update to QUnit 1.17.1. [@rwjblue](https://github.com/rwjblue)
2201
- - [#10350](https://github.com/emberjs/ember.js/pull/10350) Make meta.cache & meta.cacheMeta lazy [@ebryn](https://github.com/ebryn)
2202
- - [#10353](https://github.com/emberjs/ember.js/pull/10353) Avoid creating context bindings for collection views [@mmun](https://github.com/mmun)
2203
- - [#10093](https://github.com/emberjs/ember.js/pull/10093) [FEATURE] Implement {{component}} helper [@lukemelia](https://github.com/lukemelia)
2204
-
2205
- ## 1.10.0 (February 7, 2015)
2206
-
2207
- * [BUGFIX] Ensure that property case is normalized.
2208
- * [BUGFIX] Prevent an error from being thrown if the errorThrown property is a string when catching unhandled promise rejections.
2209
- * [BUGFIX] `contenteditable` elements should fire focus events in `ember-testing` click helper.
2210
- * [BUGFIX] Remove HTMLBars from builds `ember.debug.js` and `ember.prod.js` builds. Please see https://emberjs.com/blog/2015/02/05/compiling-templates-in-1-10-0.html for more details.
2211
- * [BUGFIX] Ensure that calling the `wait` testing helper without routing works properly.
2212
- * [BUGFIX] Ensure that a plus sign in query params are treated as spaces.
2213
- * [BUGFIX] Fix broken `Ember.Test.unregisterWaiter` semantics.
2214
- * [BUGFIX] Allow unbound helpers to add attributes.
2215
- * [BUGFIX] Ensure compat helpers calling `options.fn` work.
2216
- * [BUGFIX] Fix memory leak in view streams.
2217
- * [BUGFIX] Don't render default layout for `Ember.TextField`.
2218
- * Update HTMLBars version to v0.8.5:
2219
- * Allow numbers to be parsed as HTML in IE.
2220
- * Add namespace detection.
2221
- * Include line number in error thrown for unclosed HTML element.
2222
- * `removeAttribute` fix for IE <11 and SVG.
2223
- * Disable `cloneNodes` in IE8.
2224
- * Improve HTML validation and error messages thrown.
2225
- * Fix a number of template compilation issues in IE8.
2226
- * Use the correct namespace in `parseHTML` (fixes various issues that occur
2227
- when changing to and from alternate namespaces).
2228
- * Ensure values are converted to `String`'s when setting attributes (fixes issues in IE10 & IE11).
2229
- * Change `setProperty` and `morph` to remove an `undefined` attr value.
2230
- * Remove dots from default resolver descriptions.
2231
- * Add helpful assertion if a block helper is not found.
2232
- * Make Ember.HTMLBars version of registerHelper private.
2233
- * [BUGFIX] Add `options.types` and `options.hashTypes` for Handlebars compatible helpers.
2234
- * [BUGFIX] Fix usage of `emptyView` with `{{#each}}` helper.
2235
- * Assert if an attribute set statically and via bind-attr. For example:
2236
- `<div class="foo" {{bind-attr class="bar"}}></div>` will now trigger an assertion (instead of
2237
- silently failing).
2238
- * [BUGFIX] Fix deprecated bindAttr helper.
2239
- * [BUGFIX] Do not allow both keyword and block params.
2240
- * Cleanup HTMLBars public API
2241
- * Remove `Ember.HTMLBars.helper`.
2242
- * Remove internal `registerBoundHelper` function (use
2243
- `registerHelper('blah', makeViewHelper(SomeView))` or `registerHelper('blah', makeBoundHelper(func))`).
2244
- * [BUGFIX] Fix Handlebars compat mode `registerHelper` interop with `makeViewHelper`.
2245
- * [BUGFIX] Ensure that `mergedProperties` are properly merged when all properties are not present.
2246
- * Add options argument to pass url to `Ember.deprecate`.
2247
- * Deprecate `{{bind}}` helper.
2248
- * Pass array to `Ember.computed.filter` callback
2249
- * [BUGFIX] Prevent mandatory-setter when setter is already present.
2250
- * Remove Handlebars from dependencies.
2251
- * Fix error when parsing templates with invalid end tags.
2252
- * [BUGFIX] Allow makeBoundHelper to be a sub-expression.
2253
- * [BUGFIX] Allow compat makeBoundHelpers to be sub-expressions.
2254
- * [BUGFIX] Export Ember.Handlebars compat shim for `Ember.Handlebars.SafeString` and `Ember.Handlebars.Utils.escapeExpression`.
2255
- * [BUGFIX] Allow `Ember.inject` injected properties to be overridden (makes testing significantly easier).
2256
- * [BUGFIX] Don’t assert uncaught RSVP rejections. We are already logging the error, but asserting breaks everything else on the run loop queue.
2257
- * [BUGFIX] Allow tagName to be a CP (with deprecation).
2258
- * [BUGFIX] Allow view instances in {{view}}.
2259
- * [BUGFIX] Ensure bound attrs flush immediately.
2260
- * [PERFORMANCE] Initialize views in preRender state.
2261
- * [PERFORMANCE] `View#element` should not be observable.
2262
- * Add ember-template-compiler package.
2263
- * Rename `Ember.HTMLBars.registerASTPlugin` to `Ember.HTMLBars.registerPlugin`.
2264
- * Export `ember-template-compiler.js`.
2265
- * Escape `href`, `src`, and `background` attributes for `a`, `link`, `img`, and `iframe` elements.
2266
- * Move debugging file output from `ember.js` to `ember.debug.js`.
2267
- * Remove `templateData` property from views.
2268
- * Restructure `Ember.libraries` to be more idiomatic.
2269
- * Prevent creating an extra view for each select option.
2270
- * Deprecate the block form of the bind helper.
2271
- * Cleanup `Ember.CoreObject` init argument passing.
2272
- * Allow all rejection types to be handled by default RSVP error handler.
2273
- * Deprecate setting ContainerView#childViews.
2274
- * [FEATURE] ember-htmlbars - Enable the HTMLBars rendering engine.
2275
- * [FEATURE] ember-htmlbars-block-params - Enable block params feature for HTMLBars.
2276
-
2277
- ## 1.9.1 (December 23, 2014)
2278
-
2279
- * Allow `{{view}}` helper to properly handle view instances.
2280
- * Escape `href`, `src`, and `background` attributes for `a`, `link`, `img`, and `iframe` elements.
2281
-
2282
- ## 1.9.0 (December 8, 2014)
2283
-
2284
- * Add deprecation for quoteless outlet names (`{{outlet main}}` should be `{{outlet 'main'}}`).
2285
- * [BUGFIX] Update the `Ember.Map#forEach` callback to include the map being iterated over.
2286
- * [BUGFIX] Ensure that tagless container views are rendered properly.
2287
- * [PERF] `Ember.View#_outlets` is no longer observable.
2288
- * [PERF] Avoid extending a view for every `{{each}}`.
2289
- * Ensure initializers have a `name` property (provides a helpful assertion if missing).
2290
- * [BUILD TOOLING] Enable easier cross-browser testing by publishing builds and tests to S3.
2291
- * Enable `Ember.run.join` to return a value even if within an existing run loop.
2292
- * Update `Ember.EventDispatcher` to use `Ember.run.join`. This is required so that synchronous
2293
- events (like focus) do not spawn a nested run loop.
2294
- * Deprecate context switching form of {{each}}.
2295
- * Deprecate context switching form of {{with}}.
2296
- * Add improved error message when a component lookup fails.
2297
- * Ensure that component actions that are subscribed to, trigger an assertion when unhandled. Consider the following example:
2298
-
2299
- ```handlebars
2300
- {{!component-a.hbs}}
2301
-
2302
- {{some-other-component action="saveMe"}}
2303
- ```
2304
-
2305
- Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Previously, if `component-a` did not handle the action, it would silently continue. Now, an assertion would be triggered.
2306
-
2307
- * [PERF] Speedup Mixin creation.
2308
- * [BREAKING] Require Handlebars 2.0. See [blog post](https://emberjs.com/blog/2014/10/16/handlebars-update.html) for details.
2309
- * Allow all rejection types in promises to be handled.
2310
- * Mandatory setter checks for configurable, and does not clobber non-configurable properties.
2311
- * Remove long deprecated `Ember.empty` and `Ember.none`.
2312
- * Refactor `Ember.platform`.
2313
- * `Ember.HashLocation` no longer assumes any hash is a route, uses forward slash prefix convention `#/foo`.
2314
- * Log unhandled promise rejections in testing.
2315
- * Deprecate `Ember.Handlebars.get`.
2316
- * Warn if FEATURES flagging is used in non-canary, debug builds.
2317
- * Streamify template bindings.
2318
- * Make Ember.Namespace#toString ember-cli aware.
2319
- * Prevent extra `method.toString` checks when setting `_super`.
2320
- * [PERF] Speedup watchKey by preventing for in related deopt.
2321
- * [FEATURE] ember-routing-fire-activate-deactivate-events.
2322
- * [FEATURE] ember-testing-pause-test.
2323
-
2324
-
2325
- ## Ember 1.8.1 (November, 4, 2014)
2326
-
2327
- * [BUGFIX] Make sure that `{{view}}` can accept a Ember.View instance.
2328
- * [BUGFIX] Throw an assertion if `classNameBindings` are specified on a tag-less view.
2329
- * [BUGFIX] Setting an `attributeBinding` for `class` attribute triggers assertion.
2330
- * [BUGFIX] Fix `htmlSafe` to allow non-strings in unescaped code.
2331
- * [BUGFIX] Add support for null prototype object to mandatory setter code. Prevents errors when operating on Ember Data `meta` objects.
2332
- * [BUGFIX] Fix an issue with select/each that causes the last item rendered to be selected.
2333
-
2334
- ## Ember 1.8.0 (October, 28, 2014)
2335
-
2336
- * [BUGFIX] Ensure published builds do not use `define` or `require` internally.
2337
- * [BUGFIX] Remove strict mode for Object.create usage to work around an [iOS bug](https://bugs.webkit.org/show_bug.cgi?id=138038).
2338
- * Enable testing of production builds by publishing `ember-testing.js` along with the standard builds.
2339
- * [DOC] Make mandatory setter assertions more helpful.
2340
- * Deprecate location: 'hash' paths that don't have a forward slash. e.g. #foo vs. #/foo.
2341
- * [BUGFIX] Ensure `Ember.setProperties` can handle non-object properties.
2342
- * [BUGFIX] Refactor buffer to be simpler, single parsing code-path.
2343
- * [BUGFIX] Add assertion when morph is not found in RenderBuffer.
2344
- * [BUGFIX] Make computed.sort generate an answer immediately.
2345
- * [BUGFIX] Fix broken `Ember.computed.sort` semantics.
2346
- * [BUGFIX] Ensure ember-testing is not included in production build output.
2347
- * Deprecate usage of quoted paths in `{{view}}` helper.
2348
- * [BUGFIX] Ensure `{{view}}` lookup works properly when name is a keyword.
2349
- * [BUGFIX] Ensure `Ember.Map` works properly with falsey values.
2350
- * [BUGFIX] Make Ember.Namespace#toString ember-cli aware.
2351
- * [PERF] Avoid using `for x in y` in `Ember.RenderBuffer.prototype.add`.
2352
- * [BUGFIX] Enable setProperties to work on Object.create(null) objects.
2353
- * [PERF] Update RSVP to 3.0.14 (faster instrumentation).
2354
- * [BUGFIX] Add SVG support for metal-views.
2355
- * [BUGFIX] Allow camelCase attributes in DOM elements.
2356
- * [BUGFIX] Update backburner to latest.
2357
- * [BUGFIX] Use contextualElements to properly handle omitted optional start tags.
2358
- * [BUGFIX] Ensure that `Route.prototype.activate` is not retriggered when the model for the current route changes.
2359
- * [PERF] Fix optimization bailouts for `{{view}}` helper.
2360
- * [BUGFIX] Add `attributeBindings` for `lang` and `dir` (for bidirectional language support) in `Ember.TextField` and `Ember.TextAra`.
2361
- * [BUGFIX] Fix finishChains for all chains that reference an obj not just the ones rooted at that object.
2362
- * [BUGFIX] Refactor ES3 `Ember.keys` implementation.
2363
- * Rewrite Ember.Map to be faster and closer to ES6 implementation:
2364
- * [PERF + ES6] No longer clone array before enumeration (dramatically reduce allocations)
2365
- * [PERF] Don’t Rebind the callback of forEach if not needed
2366
- * [PERF + ES6] No longer allow Map#length to be bindable
2367
- * [PERF] Don’t double guid keys, as they are passed from map to ordered set (add/remove)
2368
- * [ES6] Deprecate Map#remove in-favor of the es6 Map#delete
2369
- * [ES6] Error if callback is not a function
2370
- * [ES6] Map#set should return the map. This enables chaining map.`map.set(‘foo’,1).set(‘bar’,3);` etc.
2371
- * [ES6] Remove length in-favor of size.
2372
- * [ES6] Throw if constructor is invoked without new
2373
- * [ES6] Make inheritance work correctly
2374
- * [BUGFIX] Allow for bound property {{input}} type.
2375
- * [BUGFIX] Ensure pushUnique targetQueue is cleared by flush.
2376
- * [BUGFIX] instrument should still call block even without subscribers.
2377
- * [BUGFIX] Remove unneeded normalization in query param controller lookup.
2378
- * [BUGFIX] Do not use defineProperty on each View instance.
2379
- * [PERF] Speedup `watchKey` by preventing for in related deopt.
2380
- * [PERF] Change `ENV.MANDATORY_SETTER` to FEATURES so it can be compiled out of production builds.
2381
- * [PERF] Object.create(null) in Ember.inspect.
2382
- * [PERF] Extracts computed property set into a separate function.
2383
- * [BUGFIX] Make `GUID_KEY = intern(GUID_KEY)` actually work on ES3.
2384
- * [BUGFIX] Ensure nested routes can inherit model from parent.
2385
- * Remove `metamorph` in favor of `morph` package (removes the need for `<script>` tags in the DOM).
2386
- * [FEATURE] ember-routing-linkto-target-attribute
2387
- * [FEATURE] ember-routing-multi-current-when
2388
- * [FEATURE] ember-routing-auto-location-uses-replace-state-for-history
2389
- * [FEATURE] ember-metal-is-present
2390
- * [FEATURE] property-brace-expansion-improvement
2391
- * Deprecate usage of Internet Explorer 6 & 7.
2392
- * Deprecate global access to view classes from template (see the [deprecation guide](https://emberjs.com/guides/deprecations/)).
2393
- * Deprecate `Ember.Set` (note: this is NOT the `Ember.set`).
2394
- * Deprecate `Ember.computed.defaultTo`.
2395
- * Remove long deprecated `Ember.StateManager` warnings.
2396
- * Use intelligent caching for `Ember.String` (`camelize`, `dasherize`, etc.).
2397
- * Use intelligent caching for container normalization.
2398
- * Polyfill `Object.create` (use for new caching techniques).
2399
- * Refactor internals to make debugging easier (use a single assignment per `var` statement).
2400
- * [BREAKING] Remove deprecated controller action lookup. Support for pre-1.0.0 applications with actions in the root
2401
- of the controller (instead of inside the `actions` hash) has been removed.
2402
- * [BREAKING] Ember.View didInsertElement is now called on child views before their parents. Before
2403
- 1.8.0-beta.1 it would be called top-down.
2404
-
2405
- ## Ember 1.7.0 (August 19, 2014)
2406
-
2407
- * Update `Ember.computed.notEmpty` to properly respect arrays.
2408
- * Bind `tabindex` property on LinkView.
2409
- * Update to RSVP 3.0.13 (fixes an error with `RSVP.hash` in IE8 amongst other changes).
2410
- * Fix incorrect quoteless action deprecation warnings.
2411
- * Prevent duplicate message getting printed by errors in Route hooks.
2412
- * Deprecate observing container views like arrays.
2413
- * Add `catch` and `finally` to Transition.
2414
- * [BUGFIX] paramsFor: don’t clobber falsy params.
2415
- * [BUGFIX] Controllers with query params are unit testable.
2416
- * [BUGFIX] Controllers have new QP values before setupController.
2417
- * [BUGFIX] Fix initial render of {{input type=bound}} for checkboxes.
2418
- * [BUGFIX] makeBoundHelper supports unquoted bound property options.
2419
- * [BUGFIX] link-to helper can be inserted in DOM when the router is not present.
2420
- * [PERFORMANCE] Do not pass `arguments` around in a hot-path.
2421
- * Remove Container.defaultContainer.
2422
- * Polyfill contains for older browsers.
2423
- * [BUGFIX] Ensure that `triggerEvent` handles all argument signatures properly.
2424
- * [BUGFIX] Stub meta on AliasedProperty (fixes regression from beta.2 with Ember Data).
2425
- * [DOC] Fixed issue with docs showing 'Ember.run' as 'run.run'.
2426
- * [BUGFIX] SimpleHandlebarsView should not re-render if normalized value is unchanged.
2427
- * Allow Router DSL to nest routes via `this.route`.
2428
- * [BUGFIX] Don't pass function UNDEFINED as oldValue to computed properties.
2429
- * [BUGFIX] dramatically improve performance of eachComputedProperty.
2430
- * [BUGFIX] Prevent strict mode errors from superWrapper.
2431
- * Deprecate Ember.DeferredMixin and Ember.Deferred.
2432
- * Deprecate `.then` on Ember.Application.
2433
- * Revert ember-routing-consistent-resources.
2434
- * [BUGFIX] Wrap es3 keywords in quotes.
2435
- * [BUGFIX] Use injected integration test helpers instead of local functions.
2436
- * [BUGFIX] Add alias descriptor, and replace `Ember.computed.alias` with new descriptor.
2437
- * [BUGFIX] Fix `{{#with view.foo as bar}}`.
2438
- * [BUGFIX] Force remove `required` attribute for IE8.
2439
- * [BUGFIX] Controller precedence for `Ember.Route.prototype.render` updated.
2440
- * [BUGFIX] fixes variable argument passing to triggerEvent helper.
2441
- * [BUGFIX] Use view:toplevel for {{view}} instead of view:default.
2442
- * [BUGFIX] Do not throw uncaught errors mid-transition.
2443
- * [BUGFIX] Don't assume that the router has a container.
2444
- * Fix components inside group helper.
2445
- * [BUGFIX] Fix wrong view keyword in a component block.
2446
- * Update to RSVP 3.0.7.
2447
- * [FEATURE query-params-new]
2448
- * [FEATURE ember-routing-consistent-resources]
2449
- * `uuid` is now consistently used across the project.
2450
- * `Ember.uuid` is now an internal function instead of a property on `Ember` itself.
2451
- * [BREAKING BUGFIX] On Controllers, the content property is now derived from model. This reduces many
2452
- caveats with model/content, and also sets a simple ground rule: Never set a controllers content,
2453
- rather always set it's model and ember will do the right thing.
2454
-
2455
- ## Ember 1.6.1 (July, 15, 2014)
2456
-
2457
- * Fix error routes/templates. Changes in router promise logging caused errors to be
2458
- thrown mid-transition into the `error` route. See [#5166](https://github.com/emberjs/ember.js/pull/5166) for further details.
2459
-
2460
- ## Ember 1.6.0 (July, 7, 2014)
2461
-
2462
- * [BREAKING BUGFIX] An empty array is treated as falsy value in `bind-attr` to be in consistent
2463
- with `if` helper. Breaking for apps that relies on the previous behavior which treats an empty
2464
- array as truthy value in `bind-attr`.
2465
- * [BUGFIX] Ensure itemController's do not leak by tying them to the parent controller lifecycle.
2466
- * [BUGFIX] Spaces in brace expansion throws an error.
2467
- * [BUGFIX] Fix `MutableEnumerable.removeObjects`.
2468
- * [BUGFIX] Allow controller specified to `{{with}}` to be the target of an action.
2469
- * [BUGFIX] Ensure that using keywords syntax (`{{with foo as bar}}`) works when specifying a controller.
2470
- * [BUGFIX] Ensure that controllers instantiated by `{{with}}` are properly destroyed.
2471
- * [BUGFIX] Wrap the keyword specified in `{{with foo as bar}}` with the controller (if specified).
2472
- * [BUGFIX] Fix `Ember.isArray` on IE8.
2473
- * [BUGFIX] Update backburner.js to fix issue with IE8.
2474
- * [BUGFIX] `Ember.computed.alias` returns value of aliased property upon set.
2475
- * Provide better debugging information for view rendering.
2476
- * [BUGFIX] Don't fire redirect on parent routes during transitions from one child route to another.
2477
- * [BUGFIX] Make errors thrown by Ember use `Ember.Error` consistently.
2478
- * [BUGFIX] Ensure controllers instantiated by the `{{render}}` helper are properly torn down.
2479
- * [BUGFIX] sync back burner: workaround IE's issue with try/finally without Catch. Also no longer force deoptimization of the run loop queue flush.
2480
- * [BUGFIX] Ember.onerror now uses Backburner's error handler.
2481
- * [BUGFIX] Do not rely on Array.prototype.map for logging version.
2482
- * [BUGFIX] RSVP errors go to Ember.onerror if present.
2483
- * [BUGFIX] Ensure context is unchanged when using keywords with itemController.
2484
- * [BUGFIX] Does not disregard currentWhen when given explicitly.
2485
- * [DOC] Remove private wording from makeBoundHelper.
2486
- * [BUGFIX] Invalidate previous sorting if sortProperties changes.
2487
- * [BUGFIX] Properly resolve helpers from {{unbound}}.
2488
- * [BUGFIX] reduceComputed detect retain:n better. Fixes issue with `Ember.computed.filterBy` erroring when items removed from dependent array.
2489
- * [BUGFIX] Namespaces are now required to start with uppercase A-Z.
2490
- * [BUGFIX] pass context to sortFunction to avoid calling `__nextSuper` on `undefined`.
2491
- * [BUGFIX] Allow setting of `undefined` value to a `content` property.
2492
- * [BUGFIX] Resolve bound actionName in Handlebars context instead of direct lookup on target.
2493
- * [BUGFIX] isEqual now supports dates.
2494
- * [BUGFIX] Add better debugging for DefaultResolver.
2495
- * [BUGFIX] {{yield}} works inside a Metamorph'ed component.
2496
- * [BUGFIX] Add `title` attribute binding to Ember.TextSupport.
2497
- * [BUGFIX] Ember.View's concreteView now asks its parentView's concreteView.
2498
- * [BUGFIX] Drop dead code for * in paths.
2499
- * [BUGFIX] Route#render name vs viewName precedence fix.
2500
- * [BUGFIX] Use parseFloat before incrementing via incrementProperty.
2501
- * [BUGFIX] Add `which` attribute to event triggered by keyEvent test helper.
2502
- * [Performance] Improve cache lookup throughput.
2503
- * [FEATURE ember-routing-add-model-option]
2504
- * [FEATURE ember-runtime-test-friendly-promises]
2505
- * [FEATURE ember-metal-computed-empty-array]
2506
-
2507
- ## Ember 1.5.0 (March 29, 2014)
2508
-
2509
- * [BUGFIX beta] Move reduceComputed instanceMetas into object's meta.
2510
- * [BUGFIX beta] Total invalidation of arrayComputed by non-array dependencies should be synchronous.
2511
- * [BUGFIX] run.bind keeps the arguments from the callback.
2512
- * [BUGFIX] Do not attach new listeners on each setupForTesting call.
2513
- * [BUGFIX] Ember.copy now supports Date.
2514
- * [BUGFIX] Add `which` attribute to event triggered by test helper.
2515
- * [BUGFIX beta] The `each` helper checks that the metamorph tags have the same parent.
2516
- * Allow Ember Inspector to access models with custom resolver.
2517
- * [BUGFIX] Allow components with layoutName specified by parent class to specify templateName.
2518
- * [BUGFIX] Don't raise error when a destroyed array is assigned to ArrayProxy.
2519
- * [BUGFIX] Use better ajax events for ember-testing counters.
2520
- * [BUGFIX] Move AJAX listeners into Ember.setupForTesting.
2521
- * [BUGFIX] PromiseProxyMixin reset isFulfilled and isRejected.
2522
- * Use documentElement instead of body for ember-extension detection.
2523
- * Many documentation updates.
2524
- * [SECURITY] Ensure that `ember-routing-auto-location` cannot be forced to redirect to another domain.
2525
- * [BUGFIX beta] Handle ES6 transpiler errors.
2526
- * [BUGFIX beta] Ensure namespaces are cleaned up.
2527
- * [FEATURE ember-handlebars-log-primitives]
2528
- * [FEATURE ember-testing-routing-helpers]
2529
- * [FEATURE ember-testing-triggerEvent-helper]
2530
- * [FEATURE computed-read-only]
2531
- * [FEATURE ember-metal-is-blank]
2532
- * [FEATURE ember-eager-url-update]
2533
- * [FEATURE ember-routing-auto-location]
2534
- * [FEATURE ember-routing-bound-action-name]
2535
- * [FEATURE ember-routing-inherits-parent-model]
2536
- * [BREAKING CHANGE] `Ember.run.throttle` now supports leading edge execution. To follow industry standard leading edge is the default.
2537
- * [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.
2538
-
2539
- ## Ember 1.4.0 (February 13, 2014)
2540
-
2541
- * [SECURITY] Ensure link-to non-block escapes title.
2542
- * Deprecate quoteless action names.
2543
- * [BUGFIX] Make Ember.RenderBuffer#addClass work as expected.
2544
- * [DOC] Display Ember Inspector hint in Firefox.
2545
- * [BUGFIX] App.destroy resets routes before destroying the container.
2546
- * [BUGFIX] reduceComputed fires observers when invalidating with undefined.
2547
- * [BUGFIX] Provide helpful error even if Model isn't found.
2548
- * [BUGFIX] Do not deprecate the block form of {{render}}.
2549
- * [BUGFIX] allow enumerable/any to match undefined as value
2550
- * [BUGFIX] Allow canceling of Timers in IE8.
2551
- * [BUGFIX] Calling toString at extend time causes Ember.View to memoize and return the same value for different instances.
2552
- * [BUGFIX] Fix ember-testing-lazy-routing.
2553
- * [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.
2554
- * Document the send method on Ember.ActionHandler.
2555
- * Document Ember.Route #controllerName and #viewName properties.
2556
- * Allow jQuery version 1.11 and 2.1.
2557
- * [BUGFIX] Fix stripping trailing slashes for * routes.
2558
- * [SECURITY] Ensure primitive value contexts are escaped.
2559
- * [SECURITY] Ensure {{group}} helper escapes properly.
2560
- * Performance improvements.
2561
- * [BUGFIX] Template-less components properties should not collide with internal properties.
2562
- * Unbound helper supports bound helper static strings.
2563
- * Preserve `<base>` URL when using history location for routing.
2564
- * Begin adding names for anonymous functions to aid in debugging.
2565
- * [FEATURE with-controller] {{#with}} can take a controller= option for wrapping the context. Must be an `Ember.ObjectController`
2566
- * [FEATURE propertyBraceExpansion] Add support for brace-expansion in dependent keys, observer and watch properties.
2567
- * [FEATURE ember-metal-run-bind] Enables `Ember.run.bind` which is ember run-loop aware variation of jQuery.proxy.
2568
-
2569
- ## Ember 1.3.1 (January 14, 2014)
2570
-
2571
- * [SECURITY] Ensure primitive value contexts are escaped.
2572
- * [SECURITY] Ensure {{group}} helper escapes properly.
2573
-
2574
- ## Ember 1.3.0 (January 6, 2014)
2575
-
2576
- * Many documentation updates.
2577
- * Update to RSVP 3.0.3.
2578
- * Use defeatureify to strip debug statements allowing multi-line assert statements.
2579
- * Added fail(), catch() and finally() methods to PromiseProxyMixin.
2580
- * [BUGFIX] Add 'view' option to {{outlet}} helper
2581
- * Make `Ember.compare` return `date` when appropriate.
2582
- * Prefer `EmberENV` over `ENV`, and do not create a global `ENV` if it was not supplied.
2583
- * `{{unbound}}` helper supports bound helper static strings.
2584
- * [BUGFIX] Make sure mandatory setters don't change default enumerable.
2585
- * [BUGFIX] The `render` helper now sets a `parentController` property on the child controller.
2586
- * `{{render}}` helper now creates the controller with its model.
2587
- * Fix bug in Metamorph.js with nested `if` statements.
2588
- * Label promises for debugging.
2589
- * Deprecate `RSVP.Promise.prototype.fail`.
2590
- * Cleanup header comment: remove duplication and add version.
2591
- * [BUGFIX] Do not attempt to serialize undefined models.
2592
- * [BUGFIX] Ensure {{link-to}} path observers are reregistered after render.
2593
- * [BUGFIX] Ensure that the rootURL is available to location.
2594
- * [BUGFIX] Make routePath smarter w/ stacked resource names
2595
- * Better link-to error for invalid dest routes
2596
- * Use imported handlebars before global Handlebars
2597
- * Update router.js
2598
- * Update RSVP.js
2599
- * Improved a handful of error messages
2600
- * Provide more information for debugging
2601
- * Added more assertions and deprecation warnings
2602
- * [BUGFIX] Add preventDefault option to link-to and action.
2603
- * [BUGFIX] contextualizeBindingPath should be aware of empty paths
2604
- * Expose helpful vars in {{debugger}} helper body
2605
- * [BUGFIX] container.has should not cause injections to be run.
2606
- * [BUGFIX] Make flag LOG_TRANSITIONS_INTERNAL work again
2607
- * [BUGFIX] Fix default {{yield}} for Components.
2608
- * [BUGFIX] Ensure aliased {{with}} blocks are not shared.
2609
- * [BUGFIX] Update to latest Backburner.js.
2610
- * [BUGFIX] Fix issue with Ember.Test.unregisterHelper.
2611
- * [BUGFIX] Make Ember.Handlebars.makeViewHelper warning useful.
2612
- * [FEATURE reduceComputed-non-array-dependencies] `ReduceComputedProperty`s may have non-array dependent keys. When a non-array dependent key changes, the entire property is invalidated.
2613
- * [FEATURE ember-testing-lazy-routing] Uses an initializer to defer readiness while testing. Readiness is advanced upon the first call to `visit`.
2614
- * [FEATURE ember-testing-wait-hooks] Allows registration of additional functions that the `wait` testing helper will call to determine if it's ready to continue.
2615
- * [FEATURE propertyBraceExpansion] Add simple brace expansion for dependent keys and watched properties specified declaratively. This is primarily useful with reduce computed properties, for specifying dependencies on multiple item properties of a dependent array, as with `Ember.computed.sort('items.@each.{propertyA,propertyB}', userSortFn)`.
2616
- * [BUGFIX release] Update to Handlebars 1.1.2.
2617
- * [BUGFIX] Register a default RSVP error handler.
2618
- * Update to latest RSVP (80cec268).
2619
- * [BUGFIX] Ember.Object.create now takes `undefined` as an argument.
2620
- * Components are lazily looked up.
2621
- * Renaming everyBy and anyBy to isEvery and isAny.
2622
-
2623
- ## Ember 1.2.1 _(January 14, 2014)_
2624
-
2625
- * [SECURITY] Ensure primitive value contexts are escaped.
2626
- * [SECURITY] Ensure {{group}} helper escapes properly.
2627
-
2628
- ## Ember 1.2.0 _(November 22, 2013)_
2629
-
2630
- * [BUGFIX] Publish ember-handlebars-compiler along with builds.
2631
- * [BUGFIX] Use RegExp.test() for Ember.computed.match.
2632
- * [BUGFIX] {{partial}} helper now works with bound params
2633
- * [BUGFIX] Added assert mismatched template compiler version.
2634
- * [BUGFIX] Allow Ember.Object.create to accept an Ember.Object.
2635
- * [BUGFIX] Allow keyboard events to work with the action helper.
2636
- * [BUGFIX] Enumerable#any no longer returns false if NaN is matched - Fixes #3736
2637
- * [BUGFIX] PromiseProxy should merely observe promises. - Fixes #3714
2638
- * [BUGFIX] Fix issue with templateName in Route and render. - Fixes #3502
2639
- * [BUGFIX] Sort guid fallback unconfused by ObjectProxy.
2640
- * [BUGFIX] The router should cleanup itself upon destroy.
2641
- * Correct `Em.typeOf` docs re: boxed types.
2642
- * Update for Handlebars 1.1
2643
- * Allow test helpers to be injected on specific object.
2644
- * Update router.js
2645
- * [BUGFIX] Give precedence to routes with more static segments. Fixes #3573
2646
- * [BUGFIX] Improve unhandled action error messages
2647
- * [BUGFIX] Bubble `loading` action above pivot route
2648
- * [BUGFIX] reduceComputed ignore changes during reset.
2649
- * [BUGFIX] reduceComputed handle out-of-range index.
2650
- * [FEATURE] Add support for nested loading/error substates. A loading substate will be entered when a slow-to-resolve promise is returned from one of the Route#model hooks during a transition and an appropriately-named loading template/route can be found. An error substate will be entered when one of the Route#model hooks returns a rejecting promise and an appropriately-named error template/route can be found.
2651
- * [FEATURE] Components and helpers registered on the container can be rendered in templates via their dasherized names. E.g. {{helper-name}} or {{component-name}}
2652
- * [FEATURE] Add a `didTransition` hook to the router.
2653
- * [FEATURE] Add a non-block form link-to helper. E.g {{link-to "About us" "about"}} will have "About us" as link text and will transition to the "about" route. Everything works as with the block form link-to.
2654
- * [FEATURE] Add sortBy using Ember.compare to the Enumerable mixin
2655
- * [FEATURE reduceComputedSelf] reduceComputed dependent keys may refer to @this.
2656
- * [BUGFIX] reduceComputed handle out of range indexes.
2657
- * Update Ember.immediateObserver and Ember.beforeObserver to match the new Ember.observer style.
2658
- * Make Ember.observer work with the function as the last argument.
2659
- * Ember.run.debounce and throttle accept string numbers like time interval
2660
- * Use Ember.Error consistently.
2661
- * Add assertion upon too many ajaxStop's.
2662
- * Introduce registerAsyncHelper which allows for unchained async helpers
2663
- * Ember-testing should not cause a test failure when aborting transitions
2664
- * Ember.Test Helpers no longer need to be chained
2665
- * Refactored promises usage
2666
- * Should not reference global `Handlebars` object, use `Ember.Handlebars` instead
2667
- * Added support for jQuery as a `require` module
2668
- * Decamelize handles strings with numbers
2669
- * disallow container registration if the corresponding singleton lookup has already occurred
2670
- * collection view will now defer all normalization to the resolver
2671
- * Remove Route#redirect soft deprecation
2672
- * Universalize {{view}} helper quoteless binding syntax, prevent id binding
2673
- * prefer Ember.Logger.assert over Logger error + setTimeout throw.
2674
- * Allow for the initial router to be resolved.
2675
- * Don't allow registration of undefined factories.
2676
- * Add `Ember.Subarray.prototype.toString`.
2677
- * [Improved assert for #3457] provide helpful assertion if needs is specified but no container is present.
2678
- * Update router.js to bc22bb4d59e48d187f8d60db6553d9e157f06789
2679
- * Update route recognizer
2680
- * Allow apps with custom jquery builds to exclude the event-alias module
2681
- * Removes long-deprecated getPath/setPath
2682
-
2683
- ## Ember 1.1.3 _(January 13, 2014)_
2684
-
2685
- * [SECURITY] Ensure primitive value contexts are escaped.
2686
- * [SECURITY] Ensure {{group}} helper escapes properly.
2687
-
2688
- ## Ember 1.1.2 _(October 25, 2013)_
2689
-
2690
- * [BUGFIX] Fix failures in component rendering. - Fixes #3637
2691
-
2692
- ## Ember 1.1.1 _(October 23, 2013)_
2693
-
2694
- * [BUGFIX] Allow Ember.Object.create to accept an Ember.Object.
2695
-
2696
- ## Ember 1.1.0 _(October 21, 2013)_
2697
-
2698
- * Make Ember.run.later more flexible with arguments - Fixes #3072
2699
- * Add assertion upon too many ajaxStop's.
2700
- * [BUGFIX] Fix an issue with concatenatedProperties.
2701
- * [BUGFIX] Throw a sensible exception from SubArray.removeItem when not found.
2702
- * [BUGFIX] Fix evaluateUnboundHelper properties
2703
- * Use Ember.Error consistently.
2704
- * [BUGFIX] Make Component.sendAction behave the same as {{action}} helper.
2705
- * [BUGFIX] Unique reduceComputed dependent keys.
2706
- * Don't allow registration of undefined factories.
2707
- * Decamelize handles strings with numbers
2708
- * [BUGFIX] Allow a reduceComputed to have an undefined initialValue.
2709
- * [BUGFIX] Soft-deprecate mixed binding syntax in view helper
2710
- * Universalize {{view}} helper quoteless binding syntax, prevent id binding
2711
- * disallow container registration if the corresponding singleton lookup has already occurred
2712
- * [BUGFIX] Fix edge case in `TrackedArray`
2713
- * Remove Route#redirect soft deprecation
2714
- * [BUGFIX] link-to, bound helper issues with arrays of primitives
2715
- * [BUGFIX] Don't use incompatible array methods
2716
- * [BUGFIX] `Ember.Object.extend` should allow any property
2717
- * [BUGFIX] Fix to return `undefined` for `href` of {{link-to}}
2718
- * [BUGFIX] `Ember.keys` should return own property
2719
- * [BUGFIX] Fixes #3332 - Array Computed Properties should update synchronously
2720
- * [BUGFIX] Fixes issue when content is undefined for Ember.Select with optgroup
2721
- * [BUGFIX] `Ember.SubArray` operation composition fix.
2722
- * [BUGFIX] Fire observers for array computed changes.
2723
- * [BUGFIX] Added tests failing for issue #3331
2724
- * Fix a bug in suspendListeners
2725
- * [BUGFIX] Optimization: Clear the meta cache without using observers.
2726
- * [BUGFIX] Calling `replaceIn` would incorrectly move views from the `hasElement` to `inDOM`
2727
- * [BUGFIX] ReduceComputedProperty ignore invalidated property observers.
2728
- * Set source object as context for callbacks in computed array property
2729
- * allow to inject falsy values like 'false' and 'null'
2730
- * `Ember.TargetActionSupport`'s `sendAction` should support `null` as context.
2731
- * Create Ember.libraries for keeping track of versions for debugging. emberjs/data#1051
2732
- * components should declare actions in the actions hash
2733
- * Close #3307 – Fix unexpected behavior with functions in concatenated properties
2734
- * Add shortcut for whitelisting all modifier keys on {{action}} Modifier key-independent action helper use cases can be less verbose and more future-proof.
2735
- * Only throw an initialValue error if it is null or undefined (i.e. not 0 or some other falsy value)
2736
- * Improve message and logic around UnrecognizedURLError
2737
- * Incorrect error message in router.js
2738
- * Install default error handler on ApplicationRoute#actions, not #events
2739
-
2740
- ## Ember 1.0.0 _(August 31, 2013)_
2741
-
2742
- * Fix nested `{{yield}}`
2743
- * `ReduceComputed` groups changed properties.
2744
- * Multiple fixes and improvements to the new Array Computed Properties
2745
- * Adds the ability to specify view class for render
2746
- * Restructure controller init, to minimize property lookups
2747
- * Provide hook for persistence libraries to inject custom find behavior.
2748
- * Sync router.js
2749
- * Controller#controllers property should be readOnly
2750
- * Invalid Controller#controllers accesses throw runtime exceptions
2751
- * Inform about the Ember Inspector if not installed
2752
- * Don't force a layout on registered components
2753
- * Make TextField and TextArea components
2754
- * Adds Function.prototype.observesImmediately
2755
- * Move ember-states into a plugin: https://github.com/emberjs/ember-states
2756
- * Update Backburner
2757
- * Disabled model factory injections by default.
2758
- * Fix bug where link-to wouldn't be active even if resource is active
2759
- * Add Ember.PromiseProxyMixin
2760
- * Some fixes to grouped each
2761
- * Update to rsvp-2.0.2; fixes unit tests for RSVP#rethrow in IE 6,7,8
2762
- * Rename computed array macros to match #3158
2763
- * Consider `controllerName` in Ember.Route#render()
2764
- * Allow a template explicitly set on a view to be used when rendering a route.
2765
-
2766
-
2767
- ## Ember 1.0.0-rc.8 _(August 28, 2013)_
2768
-
2769
- * View, controller & route action handlers are now expected to be defined on an `actions` object.
2770
- * registerBoundHelper won't treat quoted strings / numbers as paths
2771
- * Array Computed Properties
2772
- * Rename bindAttr to bind-attr.
2773
- * Rename linkTo to link-to.
2774
- * Improved default route.serialize behavior. It will now attempt to populate named properties with the corresponding property on the model.
2775
- * Added Ember.getProperties
2776
- * Smarter linkTo observers
2777
- * Fix `Ember.EnumerableUtils#replace` to allow large size of array
2778
- * rsvp.js refresh with RSVP#rethrow and promise#fail
2779
- * Make sets during init behave the same as create(props)
2780
- * Continue to make view creation container aware
2781
- * Sync router.js - Closes #3153, #3180
2782
- * Application#resolver -> Application#Resolver
2783
- * The resolver now provides the normalization
2784
- * Add currentRouteName to ApplicationController
2785
- * Lookup itemViewClass and emptyView of collectionView if given as string
2786
- * Change behavior around uncached computed properties.
2787
- * Aliased xProperty methods in enumerable to xBy and aliased some and someProperty to any and anyBy respectively
2788
- * Factory Injections
2789
- * Support replaceURL on HashLocation
2790
- * Assorted performance improvements
2791
- * Add Ember.on, Function.prototype.on, init event
2792
- * Fix some `{{yield}}` bugs
2793
- * Improved `Route#controllerFor` to support `controllerName` and non-route lookups
2794
-
2795
-
2796
- ## Ember 1.0.0-rc.7 _(August 14, 2013)_
2797
-
2798
- * correctly preserve a views container
2799
- * Reference to RSVP repo for documentation
2800
- * Remove obsolete paragraph from ObjectController comments
2801
- * Add rel attribute binding to linkTo helper
2802
- * Add Ember.DataAdapter in ember-extension-support
2803
- * Asserts that a target element is in the DOM on `appendTo` and `replaceIn`.
2804
- * add Ember.create unit test, preventing parent object's pollute
2805
- * Sync with router.js
2806
- * fix #3094
2807
- * View event handlers inside eventManager should be wrapped in run loop
2808
- * fix #3093
2809
- * Handlebars template properties should not be methods
2810
- * Add assert that `this` is correct in deferReadiness and advanceReadiness. @stefanpenner / @lukemelia
2811
- * Remove `previousObject` argument from `Ember.Enumerable#nextObject`
2812
- * Remove `context` argument from `Ember.Enumerable#nextObject`
2813
- * Fixed some docs for Ember.Route
2814
- * Added the ability to send a context with actions in components
2815
- * Fixed a typo in documentation for {{log}}
2816
- * Added `mergedProperties` to ember-metal, Ember.Route's `events`
2817
- * render helper: falsy contexts no longer treated as absent
2818
- * Fix yield helper to only be craycray for components
2819
- * Components should not be singleton (just like views)
2820
- * Make methods on the router overridable. Denote private methods with _
2821
- * router.js sync - don't overwrite URL's on noop transitions
2822
- * adding docs for observers
2823
- * Clearer messaging for changes and removal of bad assert
2824
- * Removed old-router
2825
- * Clarified Ember.warn message for linkTo loading state
2826
- * linkTo param of 0 should be treated as a url param
2827
- * Aborts/redirects in willTransition don't enter LoadingRoute
2828
- * Assertion if incrementProperty given non-numeric value
2829
- * Add sendAction() to Ember.Component
2830
- * {{yield}} view should be virtual
2831
- * Remove warning about route rendering that was inaccurate and confusing
2832
- * Fix {{template}} deprecation warnings in tests
2833
- * Ember.controllerFor and Route#controllerFor no longer generate controllers
2834
- * improve readability of some exceptions caught b
2835
- * update release rakefile to work with the updated website
2836
- * Clean up Handlebars helpers registered in tests
2837
- * Better route assertions - Fixes #2003
2838
- * Mixins don't technically extend Ember.Mixin
2839
- * Docs and whitespace cleanup
2840
- * Re-add Ember.Object.create docs and document createWithMixins
2841
- * Revert "document the create method in for subclasses of Ember.Object"
2842
- * router.js sync - simplified transition promise chain
2843
- * Added a License to the gemspec - Fixes #3050
2844
- * Only use valueNormalizer if one is present insideGroup. Fixes #2809
2845
- * Remove unnecessary assertion for `Ember.inspect`
2846
- * Fixed problem with dependentKeys on registerBoundHelper.
2847
- * Should allow numbers in tagNames i.e. h1-6
2848
- * [CVE-2013-4170] Fix for Potential XSS Exploit When Binding to User-Supplied Data
2849
- * Update component_registration_test.js to use component vs. control
2850
- * Fix test to normalize URL for IE7
2851
- * Fix date assertion that returned by `Ember.inspect`
2852
- * fix tests, isolate keywords in component, yield back controller and keywords in addition to context
2853
- * Add some more tests to stress-test yield
2854
- * Make yielded content look at the original context
2855
- * Don't set context in Ember.controllerFor
2856
- * Tweak htmlSafe docs
2857
- * Improve error message for missing itemView
2858
- * Improve assertion for non-Array passed to #each
2859
- * Add Example for Ember.computed.alias
2860
- * Remove unreferenced property `Ember.Comparable#isComparable`
2861
- * Remove unused argument for `Ember.Array#objectAt`
2862
- * Fix indeterminate checkbox that is set on insert
2863
- * Add jQuery 1.9 to testing rake task
2864
- * Support object with `Ember.String.fmt`
2865
- * Add 'date', 'regexp' and 'error' support to `Ember.inspect`
2866
- * Improve `Ember.inspect` for array
2867
- * Fix replacement for `Ember.String.fmt` to be parsed as decimal digit
2868
- * Upgrade to latest router.js
2869
- * {{input}} helper doesn't override default type
2870
- * Deprecate `template` in favor of `partial`
2871
- * Document htmlSafe
2872
- * upgrade RSVP
2873
- * Expose `options` arg in `debugger` HB helper
2874
- * Use the original arg length of wrapped CP funcs, still call the wrapper
2875
- * Documentation for sendEvent and doc change in removeListeners
2876
- * Fixed incorrect example of multi-arg registerBoundHelper
2877
- * Support indeterminate property in checkboxes
2878
- * Fix: didInsertElement was fired twice
2879
- * upload prod builds to s3
2880
- * Application#setupForTesting should set `Ember.testing = true`
2881
- * remove un-needed context preservation
2882
- * Don't push childViews if undefined/invalid (issue #2967)
2883
- * keyEvent integration test helper to simulate keydown, keypress etc.
2884
- * Add documentation to cover the `{{each}}` helper's `emptyViewClass` option.
2885
- * Removes an unused Ember.get include
2886
- * Improve Ember.Logger setup - Fixes #2962
2887
- * Better documentation for Ember.run.throttle and debounce
2888
- * Update Backburner.js
2889
- * View helper learns about the container
2890
- * Fix the jQuery patch code for ember-testing click in Firefox.
2891
- * update ember-dev to give proper assertion test failures
2892
- * [fixes #2947] container#unregister
2893
- * Validate fullNames on resolve
2894
- * Route#model by default now uses lookupFactory
2895
- * add resolveModel to the default resolver
2896
- * fix deprecation warning
2897
- * ember-application test refactoring
2898
- * Specify controller of a route via controllerName
2899
- * Remove non ASCII character in handlebars assertion error message
2900
- * .jshintrc: set browser:false
2901
- * Throw exception on invalid arguments for pushObjects method (issue #2848)
2902
- * {{linkTo}} bound contexts, loading class
2903
- * Use released handlebars
2904
- * Fixed bug in Ember.Application#reset that calls `startRouting` twice.
2905
- * assert that item view exists in container and camelize lookup name
2906
- * Remove property for compatibility
2907
- * Created helpful error message when using @each on an array that does not return objects
2908
- * Update Router.js: slashless handleURL, numeric/string params
2909
- * Allows itemView option into the each/collection helper. If itemView exists and there is a controller container, then it will attempt to resolve the view via the container.
2910
- * Add Ember.Route#disconnectOutlet, to allow for clearing a previously rendered outlet. Fixes #2002
2911
- * remove duplication of testing for Ember.run.debounce
2912
- * Update supported ruby version
2913
- * Updated JSBin And JSFiddle links to point to working fiddle/bin
2914
- * Document the container
2915
- * Use Ember.isNone instead of Ember.none
2916
- * Quoteless route param in linkTo performs lookup
2917
- * Allow value of TextField to be 0
2918
- * Fire mousedown & mouseup on clicks, plus focus for text fields.
2919
- * Add a check for jQuery versions with a specific checkbox click bug.
2920
- * warns when trying to get a falsy property
2921
- * Updating new Ember.Component documentation to remove confusion
2922
- * Stringify linkTo examples
2923
- * Update router.js. Fixes #2897.
2924
- * Added functionality to Router.map to allow it to be called multiple times without the map being overwritten. Allows routes to be added at runtime. One test with multiple cases also added.
2925
- * Revert "Use Ember setter to set Ember.Route controller."
2926
- * Calling router.map now appends the routes instead of replacing them
2927
- * simplify history.state support check
2928
- * Polyfill history.state for non-supporting browsers
2929
- * Switch from unbind to off for router location events
2930
- * Support grouping option for Ember.Select using optgroup
2931
- * Update Handlebars version to 1.0.0
2932
- * Show `beforeModel` and `afterModel` in API Route docs
2933
- * update lock file
2934
- * Add tests for #1866 - loc helper
2935
- * add loc helper
2936
- * document ember-testing helpers
2937
-
2938
-
2939
- ## Ember 1.0.0-rc.6 _(June 23, 2013)_
2940
-
2941
- * Refactored `Ember.Route`s teardown mechanism for rendered views. This fixes #2857, previously multiple outlets were not tore down.
2942
- * Rename Control to Component. This avoids conflicts with the existing (behind-a-flag) control and is clearer about intent.
2943
- * Remove Ember.register to avoid introducing yet-another registration mechanism and move the logic into Ember.Handlebars.helper.
2944
- * Add test for parentViewDidChange event.
2945
- * Trigger parentViewDidChange event.[Fixes #2423]
2946
- * Make `control` helper more resilient.
2947
- * Ember.Select 0 can now be the selected value [Fixes #2763]
2948
- * Fix Ember.Select example.
2949
- * Ember.Control add inline docs.
2950
- * Add Ember.Control
2951
- * Make template loader an initializer
2952
- * Add lookupFactory
2953
- * Fix to support jQuery 1.7
2954
- * In mid-transition, `modelFor` accepts both camelCase and underscore naming
2955
- * In StateManager, use instanceof check instead of the legacy isState attribute. This is potentially breaking, but very unlikely to affect real-world code.
2956
- * StateManager and states now pass their `container` to child states.
2957
- * Ember.Test tests refactor
2958
- * Ember.Test fix wait helper resolution value
2959
- * Router facelift – Async transitions
2960
- * Ember.Test find helper no longer throws an error if the selector is not found.
2961
- * Additional API docs for LinkView
2962
- * [Fixes #2840] - textfield binding issue with null
2963
- * Update Backburner.js
2964
- * Make sure we are inside a run loop before syncing
2965
- * Inline helper function, remove unneeded function call.
2966
- * Remove unnecessary function call from `Ember.normalizeTuple`
2967
- * Ember.SortableMixin: new option sortFunction
2968
- * Update docs so that `Ember.View.$` is a method, not a property.
2969
- * Add documentation to cover LinkView's `eventName` property
2970
- * Improve docs for event names
2971
- * Remove expectAssertion in favor of ember-dev
2972
- * Added ability to change event type on which Ember.LinkView is triggered
2973
- * ContainerView#initializeViews learns about the container
2974
- * Improve Ember.View#createChildView container support
2975
- * Ensure assertion failures are test failures.
2976
- * Fix failing tests for non-blocking assertions
2977
- * Make the test suite work with non-blocking assertions
2978
- * Utilize the browser console.assert when possible
2979
- * Added custom test helper for testing assertions: expectAssertion
2980
- * Ember assertions work more like console.assert e.g. they are now uncatchable
2981
- * Update ember-dev
2982
- * Visit helper update router url before handling it
2983
- * Moved set of events to listen on by default to a property of EventDispatcher so it can be overridden
2984
- * Fix typo in array mixin docs
2985
- * Clarify subclasses of Ember.CoreView #2556
2986
- * Fix naming of _displayPropertyDidChange in comment
2987
- * Assert keyName not null and not undefined in get() and set()
2988
- * Add `debounce` to Ember.run. Uses `backburner.debounce`
2989
- * Cleaned up a bad check inside of `Ember.View._hasEquivalentView` that was causing routes with the same template and controller, but different view classes, not to render.
2990
- * Add documentation and test for Ember.Handlebars.helper
2991
- * Fix ember-dev s3 push.
2992
- * Fix App#reset to correctly reset even when Router.map was never called.
2993
- * Added test case that the render helper throws when a controller name doesn't resolve
2994
- * Release tooling improvements
2995
- * Adds assertion for misnamed controller name provided to render helper. [Fixes #2385]
2996
-
2997
-
2998
- ## Ember 1.0.0-rc.5 _(June 01, 2013)_
2999
-
3000
- * Added assertion for incorrect container lookup names
3001
- * adding docs for Ember.beforeObserver
3002
- * Remove ember-testing from production build
3003
- * Fixed bug with promises on startup. Fixes #2756.
3004
- * sync router.js fixes App#reset in ember-testing issue
3005
- * Notes that replaceWith only works with 'history' - Fixes #2744
3006
- * Fix failing tests in IE7 by normalizing URL
3007
- * Update backburner to fix IE8 failing test
3008
- * Update Backburner.js fixing the performance regression introduce in rc4
3009
- * maintain ruby'esq version string for gems
3010
- * remove starter_kit upload task (we just use the github tarballs)
3011
-
3012
-
3013
- ## Ember 1.0.0-rc.4 _(May 27, 2013)_
3014
-
3015
- * Loader: improve missing module error message
3016
- * Fix click test helper selector context
3017
- * fixes #2737: 'In the Router, if ApplicationController is an ObjectController, currentPath is proxied to the content.'
3018
- * Update backburner with autorun release
3019
- * use Ember.run.join internally for App#reset
3020
- * Add Ember.run.join
3021
- * Include 1.10 in jQuery version check
3022
- * Fix to ignore internal property in `Ember.keys`
3023
- * ensure willDestroy happens in action queue so live objects have a chance to respond to it before destroy
3024
- * Fix view leak (issue #2712)
3025
- * Added logging of view lookups
3026
- * App learns to LOG_ACTIVE_GENERATION
3027
- * Added support for calling multiple async test helpers concurrently
3028
- * fix misleading docs [fixes https://github.com/emberjs/website/issues/485]
3029
- * Added the ability to chain test helpers
3030
- * BREAKING: Move setting controller's `model` into setupController
3031
- * Updated ember-latest jsbin starting point URL
3032
- * Documentation for ComputedProperty cacheable
3033
- * Mask deprecation warning in metaPath testing
3034
- * mask deprecation warnings (when knowingly triggering them)
3035
- * Deprecate Ember.metaPath
3036
- * Treat {{#each}} as {{#each this}}
3037
- * Set actions as the default run loop queue
3038
- * Replace Ember.RunLoop with Backburner.js
3039
- * Deactivate route handlers before destroying container in App.reset() - Upgrade router.js micro-framework
3040
- * Create Test Adapter to keep ember-testing framework agnostic
3041
- * Simplify not-null-or-undefined checks
3042
- * [fixes #2697]
3043
- * update doc example to current router
3044
- * Ember.computed learns oneWay computed
3045
- * Find helper now throws when element not found and added selector context
3046
- * Fix downloads link for starter-kit
3047
- * Move /** @scope */ comments inline to their extend calls
3048
- * fixing JSON syntax error and upgrading ember-handlebars-compiler dependency to 1.0.0-rc.3
3049
- * Documentation: fix code block of Ember.String.capitalize
3050
- * Ember.Deferred now handles optional then handlers.
3051
- * upgrade ember-dev
3052
- * App#reset now only brings it's own run-loop if needed.
3053
- * gitignore bundler/* this allows for a local bundle --standalone
3054
- * Small corrections to Route.events documentation.
3055
- * Add assertion about setting the same current view to multiple container views
3056
- * Remove SC compatibility in Ember.Array
3057
- * Document and add assertion reflecting that helpers created with registerBoundHelper don't support invocation with Handlebars blocks.
3058
- * Trigger change in fillIn helper in ember testing
3059
- * Fix undefined error when promise rejected on startup
3060
- * Ember testing capture exceptions thrown in promises
3061
- * Rewrite `EMBER_VERSION` with `Ember::VERSION`
3062
- * Fix docs to use extend instead of create when setting observers
3063
- * Makes partial helper only lookup the deprecated template name if the first try is unsuccessful.
3064
- * Removed duplicate test for normalizeTuple
3065
- * Ember testing update url in visit helper
3066
- * bump RSVP (it now has RSVP.reject)
3067
- * Make parentController available from an itemController
3068
- * Stop unnecessary `jQuery.fn` extension
3069
- * Include `Ember::VERSION` in 'ember-source' gem
3070
- * Create Ember.Test with registerHelper method
3071
- * Improve {{render}} docs.
3072
- * Don't add disabled class if disabledWhen not provided
3073
- * More accurate, helpful error message for handlebars version errors.
3074
- * Adds disabledWhen option to {{linkTo}} helper
3075
- * Clean up pendingDisconnections properly
3076
- * Make router's render idempotent
3077
- * Switch from bind to on for routing handlers.
3078
- * Switch from delegate/undelegate to on/off for EventDispatcher.
3079
- * Remove IE specified test
3080
- * Adding regression test
3081
- * Remove unused helper function
3082
- * This function is already defined as `set`
3083
- * Deferred self rejection does not need special handling
3084
- * Fix rejecting a deferred with itself
3085
- * Fix CollectionView.arrayDidChange documentation
3086
- * ember-testing: Make wait a promise and a helper
3087
- * tests on chained helpers added ember-testing for running in qunit
3088
- * Added `routeTo` for event-based transitions
3089
- * Prevent unnecessary re-rendering when only route context has changed
3090
- * Add test for visit helper in ember testing
3091
- * Reduce the polling interval to make tests run much faster
3092
- * Update route-recognizer - Fixes #2559
3093
- * Revert "Use isNone to check tag name"
3094
- * Support for redirection from ApplicationRoute
3095
- * Improving Ember.Select's null-content regression test
3096
- * Prevent another exception on empty Ember.Select.content
3097
- * prevent exception on empty Em.Select content
3098
- * deprecate the defaultContainer (see: http://git.io/EKPpnA)
3099
- * RSVP is now promise/a+ 1.1 compliant
3100
- * Fix test for setTimeout with negative wait for older IE
3101
- * Use `Function.prototype.apply` to call `setTimeout` on older IE
3102
- * Use Ember.isNone
3103
- * Fixed view subclasses being instrumented as render.render.*
3104
- * Fixes #2526 - Updates JsFiddle and JsBin links for rc.3
3105
- * Add tests to deferred mixin
3106
- * Allow missing whitespace for assertion fot html text
3107
- * Fix incrementProperty/decrementProperty to be able to use with 0
3108
- * RSVP2
3109
- * Adds the ability to specify the view class used by the outlet Handlebars helper
3110
- * Make view helpers work with bindings
3111
- * get of property in false values should return undefined
3112
- * Really normalize hash params this time
3113
- * Normalize Ember.Handlebars.helper hashes
3114
- * Fix bug with Ember.Handlebars.helper
3115
- * Ember.EventDispatcher is now container managed.
3116
- * typeInjection's public api is via injection
3117
- * App#reset now triggers a eventDispatcher teardown
3118
- * Added docs of ArrayContentDidChange for array
3119
- * Move linkTo docs to helper instead of LinkView
3120
- * Use tag name supported by html 4
3121
- * Fix to use `Ember.ArrayPolyfills.forEach`
3122
- * Switch assertion for simulated Ember.create
3123
- * document {{input}} and {{textarea}} helpers
3124
- * convert bools to flags so it is easier to add new ones
3125
- * Fix to use `Ember.ArrayPolyfills.forEach` for IE8
3126
- * Skip Object.getOwnPropertyDescriptor only IE8
3127
- * Use stub `Object.create` for IE8
3128
- * Force downcase tag name for IE8
3129
- * rake release:gem + some cleanup
3130
- * Reduce late time to less than resolution capability of `setTimeout`
3131
- * Kepp timers order
3132
- * Adjust wait time to tick next run loop for more browsers
3133
- * additional Controller#needs documentation
3134
- * make use of Ember.isNone explicit in Ember.isEmpty
3135
- * Added API docs for 'needs' property of controller
3136
- * Use isNone to check tag name
3137
- * Added length property to Ember.Map
3138
-
3139
-
3140
- ## Ember 1.0.0-rc.3 _(April 19, 2013)_
3141
-
3142
- * fn.call is wasteful when the thisArg is not needed.
3143
- * don't needlessly close-over and rebuild insertViewCollection
3144
- * Don't apply href to LinkView that isn't using 'a' tag
3145
- * Documents {{linkTo}}
3146
- * Include ember-testing in full build
3147
- * Use `jQuery.is(':disabled')` instead of `jQuery(':disbled').length` for Opera
3148
- * Remove assigned but unused variable
3149
- * Document run.scheduleOnce, truncate run.once docs. Fixes #2132.
3150
- * fix failing tests for outerHTML fallback
3151
- * don't rely on EXTEND_PROTOTYPES == true
3152
- * Fixes Ember.EnumerableUtils without extend prototypes
3153
- * Do not flag .generateController for documentation.
3154
- * Do not build the docs for `.cacheable`. Fixes #2329.
3155
- * cleanup MutableEnumerable documentation
3156
- * Add Ember.Application#removeTestHelpers
3157
- * Fix a couple issues
3158
- * First pass of work for the ember-testing package
3159
- * Fixes error in documentation referring to non-existent 'Customizing Your Bindings' section
3160
- * Fix method comments
3161
- * Fix redirecting to child routes
3162
- * Fixes to MetamorphView's DOMManager replace
3163
- * Fixes #870 Lazy destruction + App#reset issues
3164
- * Eliminate unused variables
3165
- * Point to updated preconfigured starting points for JSFiddle/JSBin with latest Ember build that is now being auto-posted to builds.emberjs.com
3166
- * Fixes #2388: Added if statement to _resetSubControllers
3167
- * scope cached state transition hashes to the state manager class, so extending and mixins work with StateMangers as expected
3168
- * Fixes for upload of published builds.
3169
- * Update to latest ember-dev so that publish task can work properly
3170
- * Configure Travis for automatic deploy to AWS
3171
- * Add missing item type
3172
- * Do no emit Ember.alias deprecation warnings during alias tests
3173
- * add invokeRecursively to ViewCollection
3174
- * Failing test showing StateManagers using mixins to get some of their states have unexpected behavior
3175
- * Fix HistoryLocation rootURL handling and webkit workaround
3176
- * Remove unused argument from helper functions
3177
- * Use `toArray` to remove duplication
3178
- * Allow option view for Ember.Select overwritable
3179
- * Actually make Ember.alias() print deprecation warnings.
3180
- * use ``Ember.String.fmt`` instead of String extension
3181
- * automatically upload all passing builds to s3
3182
- * [Fixes #2424] App#reset
3183
- * s/nexts/these (nexts is not a word)
3184
- * More verbose error message on failed linkTo routing attempts
3185
- * viewName is a property
3186
- * remove unneeded closures
3187
- * JSDoc should use {*} for mixed types instead of {anything} and {any}
3188
- * add an "includeSelf" parameter to "invokeRecursively"
3189
- * Fix ArrayController#length when content is not explicitly set
3190
- * Close #2043 - fix issue with removing last element in collection
3191
- * Stop application template from duplicating on re-render
3192
- * assertion to catch mixins being passed to Object.create
3193
- * Enhance Ember.TargetActionSupport and introduce Ember.ViewTargetActionSupport
3194
- * fix {{textarea}} assert message
3195
- * Test for unwatch methods on object length property
3196
- * Tests for watch methods on length properties
3197
- * Test for isWatching on length property of an object
3198
- * Move Ember.typeOf to metal
3199
- * Fix array watching issue. Was affecting more than just plain arrays due to differences between typeOf and isArray.
3200
- * Remove mention of passing mixins to create.
3201
- * Revert "Fix Application#reset destroy issue"
3202
- * Fix view helper documentation and example to reflect context
3203
- * Ignore webkitStorageInfo during namespace lookup to avoid warning
3204
- * Fix Application#reset destroy issue
3205
- * Make Chrome initial popstate workaround account for rootURL
3206
- * Use a string instead of an array in RenderBuffer
3207
- * Convert a for in loop to a plain for loop
3208
- * Improve view container lookup performance
3209
- * remove unneeded asynchrony from Ember.Deferred tests
3210
- * remove unneeded asynchrony from routing tests
3211
- * Add {{text area}}
3212
- * Default text input action to 'enter'
3213
- * Add {{input action="foo" on="keyPress"}}
3214
- * More metal cleanup
3215
- * Better organize ember-metal and cache function lookups.
3216
- * remove sync from render to buffer
3217
- * make tests not depend on synchronous change events
3218
- * fix test not to expect synchronous observers
3219
- * Define Mixin properties in prototype
3220
- * Update ember-dev gem to latest version
3221
- * Share empty arrays in Ember.View prototype. Lazily slice it upon manipulation.
3222
- * Add views to Ember.View.views upon insertion in DOM rather than on init. Fixes #1553
3223
- * Make object destruction async so we can reduce churn when destroying interconnected object graphs.
3224
- * Define Ember.CoreObject#willDestroy. Fixes #1438.
3225
- * cleanup unneeded volatile()
3226
- * Match the transitionTo APIs.
3227
- * Avoid recursively calling transitionTo.
3228
- * Improve the performance of view notifications and transitions.
3229
- * Extract a private ViewCollection class to aid in manipulating several views at once.
3230
- * Add support for {{input type="checkbox"}}
3231
- * Add Ember.Handlebars.helper
3232
- * Add {{input type="text"}}
3233
- * Insert adjacent child views in batches rather than individually.
3234
-
3235
-
3236
- ## Ember 1.0.0-rc.2 _(March 29, 2013)_
3237
-
3238
- * Improved the App initialization process and deprecated Ember.Application#initialize. If you were using this, use deferReadiness and advanceReadiness instead.
3239
- * Added support for Ember.Application#then which fires similarly to the isReady hook
3240
- * Added more Ember.computed macros
3241
- * Added readOnly flag for computed properties
3242
- * Enumerable#compact now removes undefined values
3243
- * Fixed issue with unregistering actions on virtual views
3244
- * Make Ember.LinkView public
3245
- * Add support for jQuery 2.0
3246
- * Support browsers (FF 10 or less) that don't support domElement.outerHTML
3247
- * Made it easier to augment the Application's container's resolver
3248
- * Support tag as an alias for tagName in the {{view}} helper
3249
- * Add 'name' to attributeBinding for Ember.TextField and Ember.Select
3250
- * Return merged object from Ember.merge
3251
- * Deprecate setting tagNames on Metamorphs - Refs #2248
3252
- * Avoid parent's implicit index route clobbering child's explicit index.
3253
- * App#reset behaves more closely to App#create
3254
- * Make Evented#on, #off, and #one chainable
3255
- * Add basic implementation of allowedKeys for the {{action}} helper
3256
- * Improved Ember.Array#slice implementation
3257
- * Fix ArrayProxy arrangedObject handling - Fixes #2120, #2138
3258
- * Added ability to customize default generated controllers and routes
3259
- * Better HistoryLocation popstate handling - Fixes #2234
3260
- * Fix an issue with IE7
3261
- * Normalized Ember.run.later and Ember.run.next behavior.
3262
- * Fix issue where classNameBindings can try to update removed DOM element.
3263
- * Ember.Array methods always return Ember.Arrays
3264
- * RSVP is now exposed as Ember.RSVP
3265
- * ObjectProxy does not attempt to proxy unknown properties on create
3266
- * Can now set ENV.LOG_VERSION to false to disable version logging
3267
- * Ember.ArrayController#lastObject no longer raises when empty
3268
- * Fixes to {{render}} helper when used with model
3269
- * Improvements to {{linkTo}} controller handling
3270
- * Fix {{bindAttr}} when targeting prop in {{#each prop in array}} - #1523
3271
- * String#camelize lowercases the first letter
3272
- * Other miscellaneous bug fixes and documentation improvements
3273
-
3274
-
3275
- ## Ember 1.0.0-rc.1 _(February 15, 2013)_
3276
-
3277
- * Upgrade to Handlebars 1.0.0-rc.3
3278
- * Update RSVP.js
3279
- * Update router.js
3280
- * Support 0 values for input tags
3281
- * Support for jQuery 1.9
3282
- * ArrayController now defaults to empty array
3283
- * Added Vagrant support for setting up a development environment
3284
- * Adds {{each itemController="..."}}
3285
- * Fix issues where route transitions would not register properly
3286
- * Initial support for Application#reset
3287
- * Fix handling of keywords in bind helpers
3288
- * Better handling of DOM properties
3289
- * Better handling of complex {{#if}} targets
3290
- * {{linkTo}} shouldn't change view context
3291
- * Router#send accepts multiple params
3292
- * Provide a view's template name for debugging
3293
- * Create activate and deactivate hooks for router
3294
- * {{action}} targets are now looked up lazily
3295
- * The model for Route#render is now bound
3296
- * Improvements to ContainerView
3297
- * Added 'pattern' attribute to text field for iOS.
3298
- * CollectionView context is now its content
3299
- * Various enhancements to bound helpers: adds multiple property support to bound helpers, adds bind-able options hash properties, adds {{unbound}} helper support to render unbound form of helpers.
3300
- * Add App.inject
3301
- * Add Ember.EnumerableUtils.intersection
3302
- * Deprecate Controller#controllerFor in favor of Controller#needs
3303
- * Adds `bubbles` property to Ember.TextField
3304
- * Allow overriding of Ember.Router#handleURL
3305
- * Allow libraries loaded before Ember to tie into Ember load hooks
3306
- * Fixed behavior with Route#render and named outlets
3307
- * Fix bug where history location does not account for root URL
3308
- * Allow redirecting from mid-route
3309
- * Support string literals as param for {{linkTo}} and {{action}}
3310
- * Empty object proxies are no longer truthy in {{#if}}
3311
-
3312
-
3313
- ## Ember 1.0.0-pre.4 _(January 17, 2013)_
3314
-
3315
- * Add {{partial}}
3316
- * Fix regressions in router.js
3317
- * Support jQuery 1.9.0
3318
- * Use the controller with the same name as the template passed to render, if it exists
3319
-
3320
-
3321
- ## Ember 1.0.0-pre.3 _(January 17, 2013)_
3322
-
3323
- * BREAKING CHANGE: New Router API
3324
- * BREAKING CHANGE: `Ember.Object.create` behaves like `setProperties`. Use `createWithMixins` for the old behavior.
3325
- * BREAKING CHANGE: No longer default a view's context to itself
3326
- * BREAKING CHANGE: Remove the nearest view computed properties
3327
- * Significant performance improvements
3328
- * Bound handlebars helpers with `registerBoundHelper`
3329
- * Ember.String improvements
3330
- * TextSupport handles input, cut, and paste events
3331
- * Add `action` support to Ember.TextField
3332
- * Warn about using production builds in localhost
3333
- * Update Metamorph
3334
- * Deprecate Ember.alias in favor of Ember.aliasMethod
3335
- * Add Ember.computed.alias
3336
- * Allow chaining on DeferredMixin#then
3337
- * ArrayController learned itemControllerClass.
3338
- * Added VagrantFile and chef cookbooks to ease ember build for developers.
3339
- * Provide an Ember.Handlebars precompilation package
3340
- * Removed Tab controls
3341
- * Fix Chrome (pre v25) MutationObserver Memory Leak
3342
- * Update to Promises/A+ compatible RSVP
3343
- * Improved instrumentation
3344
- * Rename empty to isEmpty and none to isNone
3345
- * Added support for toStringExtension to augment toString
3346
- * Implement a default computed property setter.
3347
- * Add support for unhandledEvent to StateManager.
3348
- * Load external dependencies via an AMD shim
3349
- * Pass in the old value into the CP as a third argument
3350
- * Deep copy support for NativeArray
3351
- * Added an afterRender queue for scheduling code to run after the render queue has been drained
3352
- * Implement _super() for computed properties
3353
- * Miscellaneous bug fixes
3354
- * General cleanup
3355
-
3356
-
3357
- ## Ember 1.0.0-pre.2 _(October 25, 2012)_
3358
-
3359
- * Ember.SortableMixin: don't remove and reinsert items when their sort order doesn't change. Fixes #1486.
3360
- * Fix edge cases with adding/removing observers
3361
- * Added 'disabled' attribute binding to Select
3362
- * Deprecate usage of {{collection}} without a class in favor of {{each}}
3363
- * Changing `Ember.Handlebars.getPath` to `Ember.Handlebars.get` for consistency. This addresses #1469.
3364
- * Since `$.uuid` was removed from jQuery master, we're switching to using `Ember.uuid` instead.
3365
- * Add Ember.View#nearestOfType, deprecate nearestInstanceOf
3366
- * Adds support for globbed routes
3367
- * Remove CP_DEFAULT_CACHEABLE flag
3368
- * Remove VIEW_PRESERVES_CONTEXT flag
3369
- * Replace willRerender with willClearRender
3370
- * Bumped jQuery requirement to 1.7.2+, explicitly forbidding 1.7 and 1.7.1 (see: #1448)
3371
- * Add Ember.String.classify() to string extensions
3372
- * HistoryLocation now utilizes history.replaceState
3373
- * Add a basic instrumentation API
3374
- * Allow extension of chosen prototypes instead of the current all or none.
3375
- * Remove dependency on `window` throughout Ember
3376
- * Don't attempt to concat a concatenatedProperty onto an object that doesn't have a concat method
3377
- * Remove ember-views dependency from ember-states
3378
- * Multiselect updates array content in place.
3379
- * Support applications without a router
3380
- * Add Ember.Deferred mixin which implements promises using RSVP.js
3381
- * Fix for popstate firing on page load.
3382
- * Fixed bug in CP setter where observers could be suspended and never restored.
3383
- * Fixed a bug with setting computed properties that modify the passed in value.
3384
- * Initial work to allow operation with handlebars runtime only
3385
- * A listener registered with one can be removed with off
3386
- * Calling removeListener without method should remove all listeners
3387
- * Add autoinit flag to Application to call initialize on DOM ready.
3388
- * Create view for application template if no ApplicationView.
3389
- * Remove support for inline anonymous templates.
3390
- * Rename createRouter to setupRouter to make clear.
3391
- * Extract createRouter from Application#initialize
3392
- * Extract runInjections from Application#initialize
3393
- * Simplify syntax so we can extract more easily
3394
- * Extract createEventDispatcher from Application#init
3395
- * Update for Handlebars 1.0.rc.1
3396
- * Fix State.transitionTo to handle multiple contexts
3397
- * Cleanup classNameBindings on remove
3398
- * Support defining injections to occur after other injections
3399
- * Computed prop setter improvements
3400
- * fix :: syntax in classNameBindings to work with falsy values
3401
- * Fix Ember.Error properties
3402
- * Improved error handling with Ember.onerror
3403
- * Adds currentPath to Ember.StateManager
3404
- * Provide default args to tryInvoke - fixes #1327
3405
- * Fix a bug in multi-selects with primitive options
3406
- * Fix formatURL to use rootURL and remove formatPath
3407
- * Fixing Ember.Router.route when rootURL is used
3408
- * ContainerViews should invalidate `element` on children when rendering.
3409
- * Add test for selecting in multi selects with prompts
3410
- * Fix: Passing a regex to split in IE8 returns a single item array, causing class names beginning with a colon to fail to render in IE8.
3411
- * Adding itemViewClass attribute to the each helper.
3412
- * Reorganize load hooks to be more sane
3413
- * Improve application readiness framework
3414
- * Small restructuring of ArrayProxy
3415
- * Add #setObjects to mutable array. A helper for replacing whole content of the array with a new one.
3416
- * Fixed selecting items in ember multi-selects
3417
- * Add disconnectOutlet method to controller
3418
- * The content property of an ArrayProxy instance should be defined before modifying it
3419
- * Adds a has() method to Ember.OrderedSet
3420
- * Adds hooks for suspending observers
3421
- * Check that a controller inherits from Ember.Object before instantiating it to the router.
3422
- * Support jQuery 1.8 - fixes #1267
3423
- * Ember.empty returns true if empty Ember.ArrayProxy
3424
- * add scheduleOnce and remove flag
3425
- * add various lifecycle tests to check updated ContainerView path. Expose problem with flag for scheduling one time.
3426
- * Moving location tests to routing package
3427
- * Make outlet a Metamorph view
3428
- * Tests showing problem with adding and replacing
3429
- * refactor ContainerView children rendering to not make assumptions at scheduling time, just at render time.
3430
- * Remove remaining references to viewstates
3431
- * Select element should initialize with the correct selectedIndex when using valueBinding
3432
- * Remove deprecated Ember.ViewState.
3433
- * Handle undefined element in bindAttr and classNameBindings
3434
- * Render now uses context instead of _context
3435
- * Better version replacement regexp
3436
- * Outlets reference context instead of controller.
3437
- * Rakefile :clean remove 'tmp' folder
3438
- * Performance improvements
3439
-
3440
-
3441
- ## Ember 1.0.pre _(August 03, 2012)_
3442
-
3443
- * Return undefined instead of empty jQuery object for Ember.View#$ when not in DOM
3444
- * Adds didDefineProperty hook
3445
- * Implement immediateObserver placeholder in preparation for making observers asynchronous
3446
- * Change {{action}} API for more explicit contexts
3447
- * Add connectControllers convenience
3448
- * Assert that transitionTo at least matched a state
3449
- * Delay routing while contexts are loading
3450
- * Also rename trySetPath to trySet
3451
- * Replaced getPath/setPath with get/set
3452
- * Remove LEGACY_HANDLEBARS_TAG flag
3453
- * Add two new core methods to allow invoking possibly unknown methods on objects
3454
- * Change ternary syntax to double colon syntax
3455
- * Add tests for ternary operator in class bindings
3456
- * Test for defined Router lacking App(View|Controller)
3457
- * Allow alternate clicks for href handling - Fixes #1096
3458
- * Respect initialState when transitioning to parent of current state - Fixes #1144
3459
- * add reverseObjects
3460
- * Fixing rootURL when path is empty
3461
- * HistoryLocation appends paths to router rootURL
3462
- * Make Ember.Logger support the 'info' and 'debug' methods on fallback (for IE8).
3463
- * Support currentView on init if ContainerView is created with one
3464
- * {{bindAttr class="this"}} now works; fixes #810
3465
- * Allow connectOutlet(outletName, name, context) syntax
3466
- * turn on mandatory setter for ember-debug if not set
3467
- * Change the default setUnknownProperty to define it before setting.
3468
- * {{view}} now evaluates the context of class bindings using the same rules applied to other bindings
3469
- * dataTransfer property for drag and drop events
3470
- * require jQuery 1.7, no longer accept 1.6
3471
- * add mandatory setter assertion
3472
- * Add date comparison to Ember.compare
3473
- * We use jquery event handling for hashchange/popstate
3474
- * Deprecate Ember.Tabs - Fixes #409
3475
- * Remove data-tag-name "feature" from <script> tags
3476
- * Only register Ember.View.views for non virtual views
3477
- * Add support for tabindex in Ember Controls.
3478
- * Only push new history when initialURL has changed
3479
- * Support basic States inside of Routes
3480
- * Refactor context handling for States and Routes
3481
- * Make Map copyable
3482
- * Assert that path passed to urlFor is valid
3483
- * Do not run functions passed to Ember.assert, Ember.warn, and Ember.deprecate
3484
- * Allowing developer to turn off verbose stacktrace in deprecation warnings
3485
- * Ember.Route.serialize must return a hash
3486
- * lazy setup of ComputedProperties
3487
- * change convention from var m = meta(obj) to var meta = metaFor(obj)
3488
- * add hook for desc for willWatch and didUnwatch
3489
- * Call transitionEvent for each nested state - Fixes #977
3490
- * Define a 'store' property in ControllerMixin, to avoid proxy-like handling at router initialization (controllers store injection).
3491
- * if there is no context, allow for views without controllers
3492
- * Add MapWithDefault
3493
- * serialize route states recursively
3494
- * urlForEvent for a route with a dynamic part doesn't serialize the context
3495
- * Don't stopPropagation on action handling by default
3496
- * Implement a route's navigateAway event
3497
- * Change app.stateManager to app.router
3498
- * Allow a one-time event listener on Ember.Evented
3499
- * Rename `fire` to `trigger`
3500
- * change sendEvent signature from sendEvent(obj, name, …) to sendEvent(obj, name, params) to avoid copying the arguments. Conflicts:
3501
- * Deprecate Ember.ViewState
3502
- * remove Ember.MixinDelegate
3503
- * Call preventDefault on events handled through {{action}}
3504
- * Call transitionEvent on initialStates as well as targeted state
3505
- * During apply not applyPartial, chains maybe setup, this makes sure they are updated.
3506
- * allow computed properties to be overridden
3507
- * Change connectOutlet API to prefer Strings
3508
- * Fix bug with Ember.Router#route not reflecting redirections in location
3509
- * Give Ember.Select prompt an empty value
3510
- * Create Ember.ArrayPolyfills
3511
- * Rename ArrayUtils to EnumerableUtils
3512
- * Use transitionTo rather than goToState
3513
- * Improve ArrayUtils by removing unnecessary slices
3514
- * Use evented system for dom events on views
3515
- * Fix switchToUnwatched so ObjectProxy tests pass.
3516
- * Skip mixin properties with undefined values
3517
- * Make defineProperty override native properties
3518
- * Fix unsupported method errors in older browsers
3519
- * Improved Ember.create shim
3520
- * Can't use lib/ember.js because we use that for precompiling, so let's use dist/distold instead
3521
- * Use `getPath` instead of `get` in computed macros in order to allow 'foo.bar' dependencies
3522
- * A route's `serialize` should handle null contexts
3523
- * Router.location cannot be null or undefined
3524
- * Use 'hash' as default location implementation on Router
3525
- * Clean up location stubbing in routable_test
3526
- * Instantiate Ember.Location implementation from Router
3527
- * Add NoneLocation
3528
- * Add options hash syntax to connectOutlet.
3529
- * Added 'ember-select' CSS class to Ember.Select, as per the convention with other included views.
3530
- * Fix Ember.setPath when used on Ember.Namespaces
3531
- * Remove async transitions.
3532
- * Enumerate all properties per injection.
3533
- * Injections can specify the order they are run.
3534
- * Make sortable test deterministic
3535
- * Improve invalidation of view's controller prop
3536
- * Cleaning up in history location
3537
- * Removing lastSetURL from setURL
3538
- * Fix bug with computed properties setters not triggering observers when called with a previous value
3539
- * Fix failing test
3540
- * Adding popstate tests for history based location
3541
- * Splitting location implementations from Location
3542
- * Use accessors for eventTransitions
3543
- * Finish implementation of Sortable mixin
3544
- * Move sorting into separate mixin
3545
- * Crude sorting on ArrayController
3546
- * Split ArrayProxy into content and arrangedContent
3547
- * Fix broken upload_latest task by specifying version for github_api
3548
- * Add some convenience computed property macros to replace the major usages of binding transforms
3549
- * Initial pushState based location implementation
3550
- * Support #each foo in this and #with this as bar
3551
- * `collection` should take emptyViewClass as string
3552
- * Don't update the route if we're routing
3553
- * Don't special-case the top-level '/'
3554
- * Make routing unwind properly
3555
- * Replace occurrences of goToState with transitionTo.
3556
- * No longer support RunLoop instantiation without `new`.
3557
- * Improve naming and code style
3558
- * Guard mergeMixins parameters more generally
3559
- * Guard against implicit function application by Ember.assert
3560
- * Use Ember.assert instead of throw
3561
- * Guard against undefined mixins
3562
- * Remove unused local variables
3563
- * Update gems
3564
- * Enable selection by value in Ember.Select.
3565
- * Update build URL
3566
- * Fix issue with Ember.Select when reselecting the prompt
3567
- * Call setupStateManager in initialize, not in didBecomeReady
3568
- * Let ES5 browsers actually work
3569
- * Lookup event transitions recursively in the ancestor states.
3570
- * Support global paths in the with/as helper. Fixes #874
3571
- * Views should inherit controllers from their parent
3572
- * Semi-hackish memory management for Ember.Application
3573
- * Transition to root to enable the back-button
3574
- * Insert ApplicationView by default
3575
- * Respect href parameter for {{action}}
3576
- * Allow setting `target` on `ObjectController`
3577
- * Remove deprecated functionality from get/set
3578
- * urlFor should raise an error when route property is not defined
3579
- * fix build by checking VIEW_PRESERVES_CONTEXT
3580
- * Only call formatURL if a location is defined
3581
- * URL generation takes into account location type
3582
- * Rename templateContext to context
3583
- * Change default template context to controller
3584
- * Removes deprecated label wrapping behavior and value property of Ember.Checkbox
3585
- * ControllerObject class can be initialized with target, controllers and view properties
3586
- * Add Ember.State.transitionTo
3587
- * Wire up {{action}} to emit URLs
3588
- * Use standard StateManager send/sendRecursively and convert state method arguments to include options hash when necessary.
3589
- * Correct state transition name to reflect StateMachine state nesting.
3590
- * Add urlFor to Router
3591
- * make transitionEvent on state manager configurable
3592
- * The router's initialState is `root`
3593
- * Add redirectsTo in routes
3594
- * Make identical assertion messages distinguishable
3595
- * Check that tests don't leave open RunLoops behind
3596
- * Better Handlebars log helper
3597
- * Disallow automatic creating of RunLoops during testing; Require manual Ember.run setup.
3598
- * ObjectController
3599
- * rename location `style` to `implementation` and add `registerImplementation` method to ease custom implementations
3600
- * some sugar for Router initialization
3601
- * Fix initialization with non routable stateManager
3602
- * bindAttr should work with global paths
3603
- * Unbundled Handlebars
3604
- * Add Ember.Controller and `connectOutlet`
3605
- * Initial implementation of outlets
3606
- * Implement modelType guessing.
3607
- * Add support for modelType in the router
3608
-
3609
-
3610
- ## Ember 0.9.8.1 _(May 22, 2012)_
3611
-
3612
- * Fix bindAttr with global paths
3613
- * Fix initialization with non routable stateManager
3614
- * Better jQuery warning message
3615
- * Documentation fixes
3616
-
3617
-
3618
- ## Ember 0.9.8 _(May 21, 2012)_
3619
-
3620
- * Better docs
3621
- * Preliminary routing support
3622
- * Properly handle null content in Ember.Select - fixes #775
3623
- * Allow a context to be passed to the action helper
3624
- * Notify parentView of childView changes for virtual views
3625
- * Extract Ember.Application into a separate package
3626
- * Better console handling
3627
- * Removed warnings about element not being present in willInsertElement
3628
- * Removed old deprecated RunLoop syntax
3629
- * Add support for "input" event handlers
3630
- * Removed deprecated getPath/setPath global support, deprecated star paths
3631
- * Removed Ember.Set.create with enumerable
3632
- * Add Ember.Binding.registerTransform
3633
- * States should create a childStates array
3634
- * Always send Array#contentWillChange with contentDidChange
3635
- * Updated Metamorph - fixes #783
3636
- * Re-enable enumerable properties: [], firstObject and lastObject
3637
- * Add support for #each foo in bar
3638
- * Implement {{#with foo as bar}} syntax
3639
- * Fixed ordering of MutableArray#unshiftObjects
3640
- * Fix Em namespace in dev mode
3641
- * Add currentView property to Ember.ContainerView
3642
- * Namespace debugging functions, ember_assert, ember_deprecate, and ember_warn are now Ember.assert, Ember.deprecate, and Ember.warn.
3643
- * Rename BindableSpanView -> HandlebarsBoundView
3644
- * Updated Handlebars to 1.0.0.beta.6
3645
- * Ember.cacheFor should return falsy values
3646
- * Handlebars actions use a stateManager by default
3647
- * Bindings should connect to `this` and not the prototype.
3648
- * Fix security error w/ Opera and Frames - fixes #734
3649
- * Warn when attempting to appendTo or replaceIn with an existing Ember.View
3650
- * Change the context in which {{view}} renders
3651
- * Improve error when sending an unimplemented event
3652
- * Change didInsertElement function to event callback - fixes #740
3653
- * Precompile defaultTemplates for production builds
3654
- * Updated uglifier - fixes #733
3655
- * Improved the testing stack
3656
- * Using the colon syntax with classBinding should allow truthy values to propagate the associated class
3657
- * Add safeHtml method to String
3658
- * Improved compatibility with Handlebars.SafeString
3659
- * Deprecate Ember.Button - closes #436
3660
- * Refactor ember-states/view_states out into ember-viewstates so that states is free of ember-views dependency.
3661
- * Prevent classNames from being displayed twice
3662
- * Added ComputedProperty#volatile to turn off caching
3663
- * Support making Computed Properties cacheable by default
3664
-
3665
-
3666
- ## Ember 0.9.7.1 _(April 19, 2012)_
3667
-
3668
- * Better escaping method for RenderBuffer
3669
- * More rigorous XSS escaping from bindAttr
3670
-
3671
-
3672
- ## Ember 0.9.7 _(April 18, 2012)_
3673
-
3674
- * RenderBuffer now properly escapes attribute values. Fixes XSS vulnerability documented in #699.
3675
- * Make options an optional argument to Ember.Handlebars.getPath
3676
- * getProperties can be called with an array of property names
3677
- * Allow for jQuery prereleases and RCs - fixes #678
3678
- * Raise if both template and templateName appear
3679
- * DRY up createChildView initialization
3680
- * Ember.ContainerView should propagate template data
3681
- * allows yielded template blocks to be optional
3682
- * Fixed substate/parentState test
3683
- * Inline views should always have an id - Fixes #655
3684
- * Ember.View should not require view method sharing event name.
3685
- * Refactor and cleanup Ember.Checkbox
3686
- * Normalize keyword paths so that observers work
3687
- * Expose view and controller keywords to templates
3688
- * Ember.Select allows array selections when multiple=false.
3689
- * Ember.ArrayUtils.objectsAt returns correct objects.
3690
-
3691
-
3692
- ## Ember 0.9.6 _(March 30, 2012)_
3693
-
3694
- * Significant internal performance improvements
3695
- * Improved performance of RenderBuffer
3696
- * Avoid unnecessary ping-ponging in binding updates
3697
- * Fix infinite loop caused by jQuery.extend with array in older browsers
3698
- * Added ENV.SHIM_ES5 option to improve compatibility with Prototype.js
3699
- * Added Ember.Evented mixin for internal events
3700
- * Removed YES and NO constants
3701
- * No longer alias as SC/Sproutcore
3702
- * Deprecate lowercase Namespaces
3703
- * Improved "destroy" method and added "willDestroy" and "didDestroy" callbacks
3704
- * Support static classes in bindAttr
3705
- * Allow 'this' to be used in bindAttr
3706
- * Make sure States are exited in the proper order
3707
- * Deprecate re-rendering while view is inBuffer
3708
- * Add contextmenu event support
3709
- * {{action}} helper event includes view and context
3710
- * Simplified parameters passed by {{action}} helper to StateManager
3711
- * Allow the {{action}} helper to use "send" as the action name
3712
- * Collection itemViewClass itemHash bindings should be resolved in the proper context.
3713
- * Honor emptyViewClass attribute in collection view helper
3714
- * Allow View attributeBindings to be aliased.
3715
- * Add Ember.getWithDefault
3716
- * Add Ember.computed(key1, key2, func)
3717
- * Add Ember.Map
3718
- * Improvements to OrderedSet
3719
- * Warn if classNames or classNameBindings is set to non-array
3720
- * Warn when setting attributeBindings or classNameBindings with {{view}} helper
3721
- * Warn if user tries to change a view's elementId after creation
3722
- * Remove contained items from Ember.Set when calling #clear
3723
- * Treat classNameBindings the same as classBinding in the view helper
3724
- * Added maxlength to TextSupport; added size to TextField; added rows and cols to TextArea
3725
- * Fix bug where DOM did not update when Ember.Select content changed
3726
- * Dereference views from parent when viewName is specified and the view is destroyed
3727
- * Added "clear" method to Ember.MutableArray
3728
- * Added Ember.cacheFor to peek at computed property cache
3729
- * Added support for multiple attributes to Ember.Select
3730
- * Fix security warning in older Firefox
3731
- * Re-render views if the templateContext is changed
3732
- * More sugar for creating complex bindings
3733
- * Fixed bug where a class could not be reopened if an instance of it had already been created
3734
- * Enable unnamed Handlebars script tags to have a custom id with the `data-element-id` attribute
3735
- * Testing improvements including headless tests (rake test) and JSHint
3736
- * Improved framework build process
3737
- * API documentation improvements
3738
- * Added benchmarking harness for internals
3739
-
3740
-
3741
- ## Ember 0.9.5 _(February 17, 2012)_
3742
-
3743
- * Add Handlebars helper for {{yield}}
3744
- * Add a .jshintrc
3745
- * Add layout support to Ember.View
3746
- * Allow state managers to control their own logging
3747
- * Print more useful debug information in state manager
3748
- * Fix issues that prevented Ember from being used in iframes
3749
- * Fix path resolution for states
3750
- * State manager should raise if an event is unhandled
3751
- * Attribute Bindings should handle String objects - Fixes #497
3752
- * Fixed each/else - fixes #389
3753
- * Updated Metamorph - fixes #449
3754
- * States hashes misbehave when including classes
3755
- * The action helper should prevent default behavior on it's attached element
3756
- * Pass the event, view, and context to {{action}} helper actions
3757
- * #454 State Exit Methods Should Be Called In Reverse Order
3758
- * #454 test StateManager should send exit events in the correct order when changing to a top-level state
3759
- * Retrieve child views length after potential mutations
3760
- * Metamorph's replace now recursively invalidates childView elements
3761
- * Fixes a bug where parent views were not being set correctly when multiple views were added or removed from ContainerView
3762
- * Views removed from a container should clear rendered children.
3763
- * ContainerView should set parentView on new children
3764
- * Add state manager compatibility to action helper
3765
- * Adds ability to save metadata for computed properties
3766
- * Don't parse text/html by default. Use ENV.LEGACY_HANDLEBARS_TAG to restore this functionality. - Fixes #441
3767
- * Fix overzealous deprecation warnings
3768
- * Fix bug such that initialState *and* start states will be entered
3769
- * Miscellaneous documentation improvements
3770
- * Better framework warnings and deprecations
3771
-
3772
-
3773
- ## Ember 0.9.4 _(January 23, 2012)_
3774
-
3775
- * Add Ember.Select control
3776
- * Added Ember.Handlebars action helper to easily add event handling to DOM elements without requiring a new view
3777
- * jQuery 1.7 compatibility
3778
- * Added a runtime build target for usage with Node.js
3779
- * Instantiate a ViewState's view if it's not already an instance
3780
- * In addition to having a rootElement, state managers can now have a rootView property. If this is set, view states will append their view as a child view of that view.
3781
- * Views now register themselves with a controller if the viewController property is set
3782
- * Other miscellaneous improvements to States
3783
- * Allows setting a custom initial substate on states
3784
- * ContainerView now sets the parentView property of views that are added to its childViews array.
3785
- * Removed ember-handlebars-format, ember-datetime
3786
- * Array's [] property no longer notifies of changes. Use @each instead.
3787
- * Deprecated getPath/setPath global support
3788
- * Ember.Application's default rootElement has changed from document to document.body
3789
- * Events are no longer passed to views that are not in the DOM
3790
- * Miscellaneous improvements to Ember.Button
3791
- * Add return value to Ember.TargetActionSupport.triggerAction()
3792
- * Added Ember.Handlebars.precompile for template precompilation
3793
- * Fix security exceptions in older versions of Firefox
3794
- * Introduce Ember.onerror for improved error handling
3795
- * Make {{this}} work with numbers within an #each helper
3796
- * Textfield and textarea now bubble events by default
3797
- * Fixed issue where Handlebars helpers without arguments were interpreted as bindings
3798
- * Add callbacks for isVisible changes to Ember.View
3799
- * Fix unbound helper when used with {{this}}
3800
- * Add underscore and camelize to string prototype extensions.
3801
- * View tagName is now settable from Handlebars <script> template via data-tag-name
3802
- * Miscellaneous performance improvements
3803
- * Lots of minor bug fixes
3804
- * Inline documentation improvements
3805
-
3806
-
3807
- ## Ember 0.9.3 _(December 19, 2011)_
3808
-
3809
- * Make sure willInsertElement actually gets called on all child views. Element is still not guaranteed to work.
3810
- * Implement tab views and controller
3811
- * Fixed some parse errors and jslint warnings
3812
- * allow use of multiple {{bindAttr}}s per element
3813
-
3814
-
3815
- ## Ember 0.9.2 _(December 16, 2011)_
3816
-
3817
- * add replaceIn to replace an entire node's content with something new
3818
- * Use prepend() and after() methods of Metamorph
3819
- * Update Metamorph to include after() and prepend()
3820
- * Fixed some missing commas which prevented bpm from working
3821
- * Safer Runloop Unwinding
3822
- * Adding support for <script type="text/x-raw-handlebars">
3823
- * Remove parentView deprecation warning
3824
-
3825
-
3826
- ## Ember 0.9.1 _(December 14, 2011)_
3827
-
3828
- * Fix jslint warnings related to missing semicolons and variables defined twice
3829
- * Alias amber_assert to sc_assert for backwards compat
3830
- * Fix toString() for objects in the Ember namespace
3831
- * Clear rendered children *recursively* when removing a view from DOM.
3832
- * Manually assigns custom message provided new Ember.Error so it will appear in debugging tools.
3833
- * Add a currentView property to StateManager
3834
- * Duck type view states
3835
- * Add license file
3836
- * We don't need to support adding Array observers onto @each proxies, so don't bother notifying about them.
3837
- * Clean up some verbiage in watching.js
3838
- * Cleaned up the build script
3839
- * Fixed incorrect test
3840
- * Updated references to SproutCore to Ember
3841
- * Preserve old behavior for special '@each' keys.
3842
- * Making chained keys evaluate lazily and adding unit test
3843
- * Adding unit test to demonstrate issue #108.