Skip to content
This repository has been archived by the owner on Mar 22, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2561 from workmanw/deprecations-remove-ember-merge
Browse files Browse the repository at this point in the history
[On Hold] Removed `Ember.merge` from the list of 2.x deprecations.
  • Loading branch information
rwjblue committed Apr 26, 2016
2 parents 4d933e2 + 034e2a1 commit 527b3e7
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 527b3e7

Please sign in to comment.