From 2884a0c986ae05647c15f4e4db40905b09a52692 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 23 Jul 2022 10:40:12 -0700 Subject: [PATCH] Bump version to 4.3.0 --- package.json | 4 ++-- release_notes/4.3.0.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 release_notes/4.3.0.md 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)_