Skip to content

Commit 9495225

Browse files
author
Gregg Van Hove
committed
Bump version to 3.6.2
1 parent c8ebcff commit 9495225

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bdd"
1010
],
1111
"license": "MIT",
12-
"version": "3.6.1",
12+
"version": "3.6.2",
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/jasmine/jasmine-npm"

release_notes/3.6.2.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Jasmine NPM 3.6.2 Release Notes
2+
3+
# Summary
4+
5+
This release fixes an issue with load order of helper files introduced by switching globbing libraries
6+
7+
# Changes
8+
9+
10+
Added support for ES modules
11+
12+
* Fixes [#150](https://github.com/jasmine/jasmine-npm/issues/150).
13+
* Specs and helpers with names ending in .mjs are loaded as ES modules
14+
(`import("foo.mjs")`).
15+
* All other specs and helpers are loaded as CommonJS modules, as before
16+
(`require("foo.js")`).
17+
* If using ES modules with Node 10 or 11, run
18+
`node --experimental-modules /path/to/jasmine` instead of `jasmine`.
19+
20+
21+
Switch back to just plain `glob` for smaller dependency list
22+
23+
* Fixes [#162](https://github.com/jasmine/jasmine-npm/issues/162)
24+
25+
Remove code related to multiple workers as it never worked in the first place
26+
27+
* See [#153](https://github.com/jasmine/jasmine-npm/issues/153)
28+
* Fixes [#163](https://github.com/jasmine/jasmine-npm/issues/163)
29+
* Fixes [#165](https://github.com/jasmine/jasmine-npm/issues/165)
30+
* See also discussion in [#162](https://github.com/jasmine/jasmine-npm/issues/162)
31+

0 commit comments

Comments
 (0)