Skip to content

Commit

Permalink
Published version 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Feb 28, 2018
1 parent 2ae6107 commit b246c19
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

# 3.6.1

* Fixed [#1358](https://github.com/mobxjs/mobx/pull/1359): Deep comparison failing on IE11. By [le0nik](https://github.com/le0nik) through [#1359](https://github.com/mobxjs/mobx/pull/1359)

# 3.6.0

* Fixed [#1118](https://github.com/mobxjs/mobx/issues/1118), the deepEquals operator build into mobx gave wrong results for non-primitive objects. This affected for example `computed.struct`, or the `compareStructural` of `reaction`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx",
"version": "3.6.0",
"version": "3.6.1",
"description": "Simple, scalable state management.",
"main": "lib/mobx.js",
"umd:main": "lib/mobx.umd.js",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/eq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function eq(a, b, aStack?, bStack?) {
return deepEq(a, b, aStack, bStack)
}

var toString = Object.prototype.toString
const toString = Object.prototype.toString

// Internal recursive comparison function for `isEqual`.
function deepEq(a, b, aStack?, bStack?) {
Expand Down

0 comments on commit b246c19

Please sign in to comment.