release_notes/5.11.0.md
detectLateRejectionHandling works in beforeAll and afterAll as well as
in specs.
Clicking a link in the HTML reporter does exact filtering rather than a substring match.
If you use jasmine-browser-runner or load boot1.js directly from jasmine-core, you'll get the new filtering behavior automatically. Otherwise, it requires several changes to boot1.js:
queryString to the options object passed to HtmlReporter, and
remove filterSpecs.jasmine.HtmlExactSpecFilter instead of a
jasmine.HtmlSpecFilter.config.specFilter from
return specFilter.matches(spec.getFullName()); to
return specFilter.matches(spec)For a working example, see lib/jasmine-core/boot1.js in this package. Old boot1.js files will still work, but you'll get the old filtering behavior.
jasmineStarted and jasmineDone eventsSpec, Suite, and QueryString to ES6 classesEnvforbidDuplicateNames: true in jasmine-core's own testsThis version has been tested in the following environments.
| Environment | Supported versions |
|---|---|
| Node | 18.20.5**, 20, 22, 24 |
| Safari | 16**, 17** |
| Chrome | 140* |
| Firefox | 102**, 115**, 128**, 140, 143* |
| Edge | 140* |
* Evergreen browser. Each version of Jasmine is tested against the latest version available at release time.
** Supported on a best-effort basis. Support for these versions may be dropped if it becomes impractical, and bugs affecting only these versions may not be treated as release blockers.
_Release Notes generated with Anchorman