File tree 2 files changed +39
-2
lines changed
2 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 10
10
" bdd"
11
11
],
12
12
"license" : " MIT" ,
13
- "version" : " 5.0.0-alpha.1 " ,
13
+ "version" : " 5.0.0-beta.0 " ,
14
14
"repository" : {
15
15
"type" : " git" ,
16
16
"url" : " https://github.com/jasmine/jasmine-npm"
32
32
],
33
33
"dependencies" : {
34
34
"glob" : " ^10.2.2" ,
35
- "jasmine-core" : " ~5.0.0-alpha.1 "
35
+ "jasmine-core" : " ~5.0.0-beta.0 "
36
36
},
37
37
"bin" : " ./bin/jasmine.js" ,
38
38
"main" : " ./lib/jasmine.js" ,
Original file line number Diff line number Diff line change
1
+ # Jasmine 5.0.0-beta.0 Release Notes
2
+
3
+ This release adds the final pieces of support for parallel execution. There may
4
+ be other changes before the final 5.0 release, but parallel support is now
5
+ considered feature-complete. Please
6
+ [ open an issue] ( https://github.com/jasmine/jasmine-npm/issues/new ) if you think
7
+ anything's missing.
8
+
9
+ ## Breaking changes
10
+
11
+ * Dropped support for Node 16
12
+
13
+ ## New Features
14
+
15
+ * Added support for Node 20
16
+ * Parallel: Report unhandled exceptions/rejections that occur between spec files
17
+ * Parallel: ` --parallel=auto ` runs with an inferred number of workers
18
+
19
+ The number of workers will be one less than the number of CPUs reported by
20
+ Node. This is a reasonable default in most situations but may work poorly
21
+ inside containers, since the number of CPUs reported by Node is based on the
22
+ host machine's hardware and not the resources actually available in the
23
+ container. Inside a container you are likely to get better results by
24
+ explicitly specifying a number of workers instead, e.g. ` --parallel=4 ` .
25
+
26
+ * Parallel: Support use without globals
27
+
28
+ To use this feature, include ` globals: false ` in the options passed to the
29
+ [ ParallelRunner constructor] ( https://jasmine.github.io/api/npm/5.0.0-beta.0/ParallelRunner.html ) .
30
+
31
+ ## Internal Improvements
32
+
33
+ * Updated to Glob 10
34
+
35
+ ------
36
+
37
+ _ Release Notes generated with _ [ Anchorman] ( http://github.com/infews/anchorman ) _
You can’t perform that action at this time.
0 commit comments