Skip to content

Commit f3dab7c

Browse files
Release 24.7.1
1 parent 0efb1d7 commit f3dab7c

File tree

31 files changed

+174
-170
lines changed

31 files changed

+174
-170
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,17 @@
44

55
### Fixes
66

7-
- `[@jest/config]` Normalize `testSequencer` to its absolute path ([#8267](https://github.com/facebook/jest/pull/8267))
8-
- `[@jest/console]` Print to stderr when calling `console.error`, `console.warn` or `console.assert` using the `jest-runtime` CLI ([#8261](https://github.com/facebook/jest/pull/8261))
9-
107
### Chore & Maintenance
118

129
### Performance
1310

11+
## 24.7.1
12+
13+
### Fixes
14+
15+
- `[@jest/config]` Normalize `testSequencer` to its absolute path ([#8267](https://github.com/facebook/jest/pull/8267))
16+
- `[@jest/console]` Print to stderr when calling `console.error`, `console.warn` or `console.assert` using the `jest-runtime` CLI ([#8261](https://github.com/facebook/jest/pull/8261))
17+
1418
## 24.7.0
1519

1620
### Features

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "3.13.1",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"npmClient": "yarn",
55
"packages": [
66
"packages/*"

packages/babel-jest/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "babel-jest",
33
"description": "Jest plugin to use babel for transformation.",
4-
"version": "24.7.0",
4+
"version": "24.7.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/facebook/jest.git",
@@ -11,7 +11,7 @@
1111
"main": "build/index.js",
1212
"types": "build/index.d.ts",
1313
"dependencies": {
14-
"@jest/transform": "^24.7.0",
14+
"@jest/transform": "^24.7.1",
1515
"@jest/types": "^24.7.0",
1616
"@types/babel__core": "^7.1.0",
1717
"babel-plugin-istanbul": "^5.1.0",
@@ -32,5 +32,5 @@
3232
"publishConfig": {
3333
"access": "public"
3434
},
35-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
35+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
3636
}

packages/expect/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "expect",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -15,7 +15,7 @@
1515
"ansi-styles": "^3.2.0",
1616
"jest-get-type": "^24.3.0",
1717
"jest-matcher-utils": "^24.7.0",
18-
"jest-message-util": "^24.7.0",
18+
"jest-message-util": "^24.7.1",
1919
"jest-regex-util": "^24.3.0"
2020
},
2121
"devDependencies": {
@@ -27,5 +27,5 @@
2727
"publishConfig": {
2828
"access": "public"
2929
},
30-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
30+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
3131
}

packages/jest-circus/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-circus",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -11,18 +11,18 @@
1111
"types": "build/index.d.ts",
1212
"dependencies": {
1313
"@babel/traverse": "^7.1.0",
14-
"@jest/environment": "^24.7.0",
15-
"@jest/test-result": "^24.7.0",
14+
"@jest/environment": "^24.7.1",
15+
"@jest/test-result": "^24.7.1",
1616
"@jest/types": "^24.7.0",
1717
"chalk": "^2.0.1",
1818
"co": "^4.6.0",
19-
"expect": "^24.7.0",
19+
"expect": "^24.7.1",
2020
"is-generator-fn": "^2.0.0",
21-
"jest-each": "^24.7.0",
21+
"jest-each": "^24.7.1",
2222
"jest-matcher-utils": "^24.7.0",
23-
"jest-message-util": "^24.7.0",
24-
"jest-snapshot": "^24.7.0",
25-
"jest-util": "^24.7.0",
23+
"jest-message-util": "^24.7.1",
24+
"jest-snapshot": "^24.7.1",
25+
"jest-util": "^24.7.1",
2626
"pretty-format": "^24.7.0",
2727
"stack-utils": "^1.0.1",
2828
"throat": "^4.0.0"
@@ -33,13 +33,13 @@
3333
"@types/co": "^4.6.0",
3434
"@types/stack-utils": "^1.0.1",
3535
"execa": "^1.0.0",
36-
"jest-runtime": "^24.7.0"
36+
"jest-runtime": "^24.7.1"
3737
},
3838
"engines": {
3939
"node": ">= 6"
4040
},
4141
"publishConfig": {
4242
"access": "public"
4343
},
44-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
44+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
4545
}

packages/jest-cli/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "jest-cli",
33
"description": "Delightful JavaScript Testing.",
4-
"version": "24.7.0",
4+
"version": "24.7.1",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",
77
"dependencies": {
8-
"@jest/core": "^24.7.0",
9-
"@jest/test-result": "^24.7.0",
8+
"@jest/core": "^24.7.1",
9+
"@jest/test-result": "^24.7.1",
1010
"@jest/types": "^24.7.0",
1111
"chalk": "^2.0.1",
1212
"exit": "^0.1.2",
1313
"import-local": "^2.0.0",
1414
"is-ci": "^2.0.0",
15-
"jest-config": "^24.7.0",
16-
"jest-util": "^24.7.0",
15+
"jest-config": "^24.7.1",
16+
"jest-util": "^24.7.1",
1717
"jest-validate": "^24.7.0",
1818
"prompts": "^2.0.1",
1919
"realpath-native": "^1.1.0",
@@ -70,5 +70,5 @@
7070
"publishConfig": {
7171
"access": "public"
7272
},
73-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
73+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
7474
}

packages/jest-config/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-config",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -11,18 +11,18 @@
1111
"types": "build/index.d.ts",
1212
"dependencies": {
1313
"@babel/core": "^7.1.0",
14-
"@jest/test-sequencer": "^24.7.0",
14+
"@jest/test-sequencer": "^24.7.1",
1515
"@jest/types": "^24.7.0",
16-
"babel-jest": "^24.7.0",
16+
"babel-jest": "^24.7.1",
1717
"chalk": "^2.0.1",
1818
"glob": "^7.1.1",
19-
"jest-environment-jsdom": "^24.7.0",
20-
"jest-environment-node": "^24.7.0",
19+
"jest-environment-jsdom": "^24.7.1",
20+
"jest-environment-node": "^24.7.1",
2121
"jest-get-type": "^24.3.0",
22-
"jest-jasmine2": "^24.7.0",
22+
"jest-jasmine2": "^24.7.1",
2323
"jest-regex-util": "^24.3.0",
24-
"jest-resolve": "^24.7.0",
25-
"jest-util": "^24.7.0",
24+
"jest-resolve": "^24.7.1",
25+
"jest-util": "^24.7.1",
2626
"jest-validate": "^24.7.0",
2727
"micromatch": "^3.1.10",
2828
"pretty-format": "^24.7.0",
@@ -39,5 +39,5 @@
3939
"publishConfig": {
4040
"access": "public"
4141
},
42-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
42+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
4343
}

packages/jest-console/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jest/console",
3-
"version": "24.6.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -23,5 +23,5 @@
2323
"publishConfig": {
2424
"access": "public"
2525
},
26-
"gitHead": "04e6a66d2ba8b18bee080bb28547db74a255d2c7"
26+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
2727
}

packages/jest-core/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
22
"name": "@jest/core",
33
"description": "Delightful JavaScript Testing.",
4-
"version": "24.7.0",
4+
"version": "24.7.1",
55
"main": "build/jest.js",
66
"types": "build/jest.d.ts",
77
"dependencies": {
8-
"@jest/console": "^24.6.0",
9-
"@jest/reporters": "^24.7.0",
10-
"@jest/test-result": "^24.7.0",
11-
"@jest/transform": "^24.7.0",
8+
"@jest/console": "^24.7.1",
9+
"@jest/reporters": "^24.7.1",
10+
"@jest/test-result": "^24.7.1",
11+
"@jest/transform": "^24.7.1",
1212
"@jest/types": "^24.7.0",
1313
"ansi-escapes": "^3.0.0",
1414
"chalk": "^2.0.1",
1515
"exit": "^0.1.2",
1616
"graceful-fs": "^4.1.15",
1717
"jest-changed-files": "^24.7.0",
18-
"jest-config": "^24.7.0",
19-
"jest-haste-map": "^24.7.0",
20-
"jest-message-util": "^24.7.0",
18+
"jest-config": "^24.7.1",
19+
"jest-haste-map": "^24.7.1",
20+
"jest-message-util": "^24.7.1",
2121
"jest-regex-util": "^24.3.0",
22-
"jest-resolve-dependencies": "^24.7.0",
23-
"jest-runner": "^24.7.0",
24-
"jest-runtime": "^24.7.0",
25-
"jest-snapshot": "^24.7.0",
26-
"jest-util": "^24.7.0",
22+
"jest-resolve-dependencies": "^24.7.1",
23+
"jest-runner": "^24.7.1",
24+
"jest-runtime": "^24.7.1",
25+
"jest-snapshot": "^24.7.1",
26+
"jest-util": "^24.7.1",
2727
"jest-validate": "^24.7.0",
28-
"jest-watcher": "^24.7.0",
28+
"jest-watcher": "^24.7.1",
2929
"micromatch": "^3.1.10",
3030
"p-each-series": "^1.0.0",
3131
"pirates": "^4.0.1",
@@ -34,7 +34,7 @@
3434
"strip-ansi": "^5.0.0"
3535
},
3636
"devDependencies": {
37-
"@jest/test-sequencer": "^24.7.0",
37+
"@jest/test-sequencer": "^24.7.1",
3838
"@types/ansi-escapes": "^3.0.1",
3939
"@types/exit": "^0.1.30",
4040
"@types/graceful-fs": "^4.1.2",
@@ -85,5 +85,5 @@
8585
"publishConfig": {
8686
"access": "public"
8787
},
88-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
88+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
8989
}

packages/jest-each/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-each",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"description": "Parameterised tests for Jest",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",
@@ -21,7 +21,7 @@
2121
"@jest/types": "^24.7.0",
2222
"chalk": "^2.0.1",
2323
"jest-get-type": "^24.3.0",
24-
"jest-util": "^24.7.0",
24+
"jest-util": "^24.7.1",
2525
"pretty-format": "^24.7.0"
2626
},
2727
"engines": {
@@ -30,5 +30,5 @@
3030
"publishConfig": {
3131
"access": "public"
3232
},
33-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
33+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
3434
}

packages/jest-environment-jsdom/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-environment-jsdom",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -10,11 +10,11 @@
1010
"main": "build/index.js",
1111
"types": "build/index.d.ts",
1212
"dependencies": {
13-
"@jest/environment": "^24.7.0",
14-
"@jest/fake-timers": "^24.7.0",
13+
"@jest/environment": "^24.7.1",
14+
"@jest/fake-timers": "^24.7.1",
1515
"@jest/types": "^24.7.0",
1616
"jest-mock": "^24.7.0",
17-
"jest-util": "^24.7.0",
17+
"jest-util": "^24.7.1",
1818
"jsdom": "^11.5.1"
1919
},
2020
"devDependencies": {
@@ -26,5 +26,5 @@
2626
"publishConfig": {
2727
"access": "public"
2828
},
29-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
29+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
3030
}
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-environment-node",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -10,17 +10,17 @@
1010
"main": "build/index.js",
1111
"types": "build/index.d.ts",
1212
"dependencies": {
13-
"@jest/environment": "^24.7.0",
14-
"@jest/fake-timers": "^24.7.0",
13+
"@jest/environment": "^24.7.1",
14+
"@jest/fake-timers": "^24.7.1",
1515
"@jest/types": "^24.7.0",
1616
"jest-mock": "^24.7.0",
17-
"jest-util": "^24.7.0"
17+
"jest-util": "^24.7.1"
1818
},
1919
"engines": {
2020
"node": ">= 6"
2121
},
2222
"publishConfig": {
2323
"access": "public"
2424
},
25-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
25+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
2626
}
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jest/environment",
3-
"version": "24.7.0",
3+
"version": "24.7.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git",
@@ -10,8 +10,8 @@
1010
"main": "build/index.js",
1111
"types": "build/index.d.ts",
1212
"dependencies": {
13-
"@jest/fake-timers": "^24.7.0",
14-
"@jest/transform": "^24.7.0",
13+
"@jest/fake-timers": "^24.7.1",
14+
"@jest/transform": "^24.7.1",
1515
"@jest/types": "^24.7.0",
1616
"jest-mock": "^24.7.0"
1717
},
@@ -21,5 +21,5 @@
2121
"publishConfig": {
2222
"access": "public"
2323
},
24-
"gitHead": "eb0413622542bc0f70c32950d9daeeab9f6802ac"
24+
"gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280"
2525
}

0 commit comments

Comments
 (0)