Skip to content

Commit e13d1dd

Browse files
committed
v9.0.0
1 parent 826fd31 commit e13d1dd

File tree

13 files changed

+153
-29
lines changed

13 files changed

+153
-29
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [9.0.0](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.6...v9.0.0) (2023-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **expect-puppeteer:** fix `addSnapshotSerializer` usage ([826fd31](https://github.com/argos-ci/jest-puppeteer/commit/826fd319468ff74e2d314b7dfbed6fcc62ae31cd)), closes [#552](https://github.com/argos-ci/jest-puppeteer/issues/552)
12+
* **jest-dev-server:** no default host ([c35e403](https://github.com/argos-ci/jest-puppeteer/commit/c35e40362293a23caa50bcddb589ff8f63e16b8e))
13+
* **jest-dev-server:** properly detect if port is used, using both config.port and config.host options. ([351720a](https://github.com/argos-ci/jest-puppeteer/commit/351720a68e02026b25a98ece525003be9f4938dc)), closes [#555](https://github.com/argos-ci/jest-puppeteer/issues/555)
14+
* **types:** fix environment global types ([fb691f7](https://github.com/argos-ci/jest-puppeteer/commit/fb691f7213ca148f35f7062ab47465ab3ffc2d5e))
15+
* **types:** fix missing `jestPuppeteer` global before setup ([37e2294](https://github.com/argos-ci/jest-puppeteer/commit/37e2294a626255a701dc3adad004c610cc2c4c04))
16+
17+
18+
### Features
19+
20+
* drop Node.js v14 support ([d7d9833](https://github.com/argos-ci/jest-puppeteer/commit/d7d9833accf7ddb87c6782a50ae2b8e50dd01c78))
21+
22+
23+
### BREAKING CHANGES
24+
25+
* drop Node.js v14 support
26+
* **jest-dev-server:** default host is now `undefined` instead of "localhost"
27+
28+
29+
30+
31+
632
## [8.0.6](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.5...v8.0.6) (2023-03-24)
733

834

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"useWorkspaces": true,
3-
"version": "8.0.6",
3+
"version": "9.0.0",
44
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
55
}

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/expect-puppeteer/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [9.0.0](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.6...v9.0.0) (2023-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **expect-puppeteer:** fix `addSnapshotSerializer` usage ([826fd31](https://github.com/argos-ci/jest-puppeteer/commit/826fd319468ff74e2d314b7dfbed6fcc62ae31cd)), closes [#552](https://github.com/argos-ci/jest-puppeteer/issues/552)
12+
13+
14+
### Features
15+
16+
* drop Node.js v14 support ([d7d9833](https://github.com/argos-ci/jest-puppeteer/commit/d7d9833accf7ddb87c6782a50ae2b8e50dd01c78))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* drop Node.js v14 support
22+
23+
24+
25+
26+
627
## [8.0.5](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.4...v8.0.5) (2023-03-09)
728

829
**Note:** Version bump only for package expect-puppeteer

packages/expect-puppeteer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "expect-puppeteer",
33
"description": "Assertion toolkit for Puppeteer.",
4-
"version": "8.0.5",
4+
"version": "9.0.0",
55
"type": "commonjs",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",

packages/jest-dev-server/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [9.0.0](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.6...v9.0.0) (2023-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **jest-dev-server:** no default host ([c35e403](https://github.com/argos-ci/jest-puppeteer/commit/c35e40362293a23caa50bcddb589ff8f63e16b8e))
12+
* **jest-dev-server:** properly detect if port is used, using both config.port and config.host options. ([351720a](https://github.com/argos-ci/jest-puppeteer/commit/351720a68e02026b25a98ece525003be9f4938dc)), closes [#555](https://github.com/argos-ci/jest-puppeteer/issues/555)
13+
14+
15+
### Features
16+
17+
* drop Node.js v14 support ([d7d9833](https://github.com/argos-ci/jest-puppeteer/commit/d7d9833accf7ddb87c6782a50ae2b8e50dd01c78))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* drop Node.js v14 support
23+
* **jest-dev-server:** default host is now `undefined` instead of "localhost"
24+
25+
26+
27+
28+
629
## [8.0.5](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.4...v8.0.5) (2023-03-09)
730

831
**Note:** Version bump only for package jest-dev-server

packages/jest-dev-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jest-dev-server",
33
"description": "Starts a server before your Jest tests and tears it down after.",
4-
"version": "8.0.5",
4+
"version": "9.0.0",
55
"type": "commonjs",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -49,7 +49,7 @@
4949
"cwd": "^0.10.0",
5050
"find-process": "^1.4.7",
5151
"prompts": "^2.4.2",
52-
"spawnd": "^8.0.5",
52+
"spawnd": "^9.0.0",
5353
"tree-kill": "^1.2.2",
5454
"wait-on": "^7.0.1"
5555
}

packages/jest-environment-puppeteer/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [9.0.0](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.6...v9.0.0) (2023-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **types:** fix environment global types ([fb691f7](https://github.com/argos-ci/jest-puppeteer/commit/fb691f7213ca148f35f7062ab47465ab3ffc2d5e))
12+
* **types:** fix missing `jestPuppeteer` global before setup ([37e2294](https://github.com/argos-ci/jest-puppeteer/commit/37e2294a626255a701dc3adad004c610cc2c4c04))
13+
14+
15+
### Features
16+
17+
* drop Node.js v14 support ([d7d9833](https://github.com/argos-ci/jest-puppeteer/commit/d7d9833accf7ddb87c6782a50ae2b8e50dd01c78))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* drop Node.js v14 support
23+
24+
25+
26+
27+
628
## [8.0.6](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.5...v8.0.6) (2023-03-24)
729

830

packages/jest-environment-puppeteer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jest-environment-puppeteer",
33
"description": "Puppeteer environment for Jest.",
4-
"version": "8.0.6",
4+
"version": "9.0.0",
55
"type": "commonjs",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -52,7 +52,7 @@
5252
"chalk": "^4.1.2",
5353
"cosmiconfig": "^8.1.3",
5454
"deepmerge": "^4.3.1",
55-
"jest-dev-server": "^8.0.5",
55+
"jest-dev-server": "^9.0.0",
5656
"jest-environment-node": "^29.5.0"
5757
}
5858
}

packages/jest-puppeteer/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [9.0.0](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.6...v9.0.0) (2023-05-24)
7+
8+
9+
### Features
10+
11+
* drop Node.js v14 support ([d7d9833](https://github.com/argos-ci/jest-puppeteer/commit/d7d9833accf7ddb87c6782a50ae2b8e50dd01c78))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* drop Node.js v14 support
17+
18+
19+
20+
21+
622
## [8.0.6](https://github.com/argos-ci/jest-puppeteer/compare/v8.0.5...v8.0.6) (2023-03-24)
723

824

0 commit comments

Comments
 (0)