diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 166ffdb6..bcf2d4ca 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -10448,5 +10448,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '4.3.0'; + return '4.4.0'; }; diff --git a/package.json b/package.json index fd4eb305..29c3b953 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jasmine-core", "license": "MIT", - "version": "4.3.0", + "version": "4.4.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine.git" diff --git a/release_notes/4.4.0.md b/release_notes/4.4.0.md new file mode 100644 index 00000000..0674f02b --- /dev/null +++ b/release_notes/4.4.0.md @@ -0,0 +1,28 @@ +# Jasmine 4.4.0 Release Notes + +## Changes + +* Optimized the process of transitioning between specs in Node, Safari, and + Edge. This change reduces the run time of jasmine-core's own test suite by + 50-70% in Node, about 20% in Edge, and 75-90% in Safari. Your results may + vary. In general, suites with many fast specs will see the greatest + performance improvement. + +* Removed old code to support browsers that don't provide + addEventListener/removeEventListener. + +## Supported environments + +jasmine-core 4.4.0 has been tested in the following environments. + +| Environment | Supported versions | +|-------------------|--------------------| +| Node | 12.17+, 14, 16, 18 | +| Safari | 14-15 | +| Chrome | 105 | +| Firefox | 91, 102, 104 | +| Edge | 104 | + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_