Skip to content

Commit e7f5fbd

Browse files
committed
Bump version to 5.0.0-beta.0
1 parent 9118835 commit e7f5fbd

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"bdd"
1111
],
1212
"license": "MIT",
13-
"version": "5.0.0-alpha.1",
13+
"version": "5.0.0-beta.0",
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/jasmine/jasmine-npm"
@@ -32,7 +32,7 @@
3232
],
3333
"dependencies": {
3434
"glob": "^10.2.2",
35-
"jasmine-core": "~5.0.0-alpha.1"
35+
"jasmine-core": "~5.0.0-beta.0"
3636
},
3737
"bin": "./bin/jasmine.js",
3838
"main": "./lib/jasmine.js",

release_notes/5.0.0-beta.0.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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)_

0 commit comments

Comments
 (0)