Skip to content

Commit

Permalink
Removed Ember.merge from the list of 2.x deprecations. Per emberjs/…
Browse files Browse the repository at this point in the history
…ember.js#13344 it is being undeprecated.
  • Loading branch information
Wesley Workman committed Apr 17, 2016
1 parent 5853546 commit 034e2a1
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions source/deprecations/v2.x.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,28 +363,6 @@ Support the following forms will be removed after 2.4:
{{/render}}
```

### Deprecations Added in 2.5

#### Ember.merge

##### until: 3.0.0
##### id: ember-metal.merge

`Ember.merge` is deprecated in favor of `Ember.assign`, which is now a public API since Ember 2.5. For typical usages, this
should be a 1-to-1 replacement:

Before:

```js
Ember.merge({}, defaultOptions);
```

After:

```js
Ember.assign({}, defaultOptions);
```

### Deprecations Added in 2.6

#### Use Ember.String.htmlSafe over Ember.Handlebars.SafeString
Expand Down

0 comments on commit 034e2a1

Please sign in to comment.