diff --git a/package.json b/package.json index daec4f29..9a01d10c 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "bdd" ], "license": "MIT", - "version": "4.2.1", + "version": "4.3.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine-npm" @@ -29,7 +29,7 @@ ], "dependencies": { "glob": "^7.1.6", - "jasmine-core": "^4.2.0" + "jasmine-core": "^4.3.0" }, "bin": "./bin/jasmine.js", "main": "./lib/jasmine.js", diff --git a/release_notes/4.3.0.md b/release_notes/4.3.0.md new file mode 100644 index 00000000..d44706bb --- /dev/null +++ b/release_notes/4.3.0.md @@ -0,0 +1,33 @@ +# Jasmine NPM 4.3.0 Release Nodes + +This release updates the jasmine-core dependency to 4.3.0. See the +[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/4.3.0.md) +for more information. + +# New features + +* Added a config option to disable listing pending specs when there are failures + * This can make failure output easier to read when there are also a number of + pending specs. To use this feature, add `alwaysListPendingSpecs: false` to + the config file or call `.alwaysListPendingSpecs(false)` on the `Jasmine` + instance. + + +## Documentation updates + +* Added a contributing guide +* Copied CODE_OF_CONDUCT from core repo + +## Internal improvements + +* Converted `Jasmine` and `Loader` to ES6 classes + +## Supported environments + +The jasmine NPM package has been tested on Node 12.17-12.22, 14, 16, and 18. + + + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_