diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 18d6eb56..f6049e31 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -10268,5 +10268,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '4.1.0'; + return '4.1.1'; }; diff --git a/package.json b/package.json index d9e64243..70821221 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jasmine-core", "license": "MIT", - "version": "4.1.0", + "version": "4.1.1", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine.git" diff --git a/release_notes/4.1.1.md b/release_notes/4.1.1.md new file mode 100644 index 00000000..d3b4e2ea --- /dev/null +++ b/release_notes/4.1.1.md @@ -0,0 +1,35 @@ +# Jasmine 4.1.1 Release Notes + +## Summary + +This release fixes several bugs involving equality comparison of properties +with Symbol keys. + +## Bug fixes + +* Fixes for crash bugs and output problems when comparing objects with Symbol keys + * Include symbol properties in matcher diffs + * Fixed exception when comparing arrays with Symbol keys + * Include symbol properties in matcher diffs + * Include symbol keys when pretty-printing objects + * Fixes [#1966](https://github.com/jasmine/jasmine/issues/1966) + +* Exclude non-enumerable symbol properties from equality comparison + * Merges [#1963](https://github.com/jasmine/jasmine/pull/1963) from @suke + + +## Supported environments + +jasmine-core 4.1.1 has been tested in the following environments. + +| Environment | Supported versions | +|-------------------|--------------------| +| Node | 12.17+, 14, 16, 18 | +| Safari | 14, 15 | +| Chrome | 101 | +| Firefox | 91, 100 | +| Edge | 101 | + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_