Skip to content

Commit c27b759

Browse files
committed
Jest 20.0.4
1 parent 02e20c9 commit c27b759

File tree

12 files changed

+31
-25
lines changed

12 files changed

+31
-25
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## master
22

3+
## jest 20.0.4
4+
5+
* Fix jest-haste-map's handling of duplicate module IDs. ([#3647](https://github.com/facebook/jest/pull/3647)
6+
* Fix behavior of `enableAutomock()` when automock is set to false. ([#3624](https://github.com/facebook/jest/pull/3624)
7+
* Fix progress bar in windows. ([#3626](https://github.com/facebook/jest/pull/3626)
8+
39
## jest 20.0.3
410

511
* Fix arrow typeahead on Windows. ([#3563](https://github.com/facebook/jest/pull/3563))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.0.0-rc.4",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"npmClient": "yarn",
55
"packages": [
66
"packages/*"

packages/jest-cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jest-cli",
33
"description": "Delightful JavaScript Testing.",
4-
"version": "20.0.3",
4+
"version": "20.0.4",
55
"main": "build/jest.js",
66
"dependencies": {
77
"ansi-escapes": "^1.4.0",
@@ -14,15 +14,15 @@
1414
"istanbul-lib-instrument": "^1.4.2",
1515
"istanbul-lib-source-maps": "^1.1.0",
1616
"jest-changed-files": "^20.0.3",
17-
"jest-config": "^20.0.3",
17+
"jest-config": "^20.0.4",
1818
"jest-docblock": "^20.0.3",
1919
"jest-environment-jsdom": "^20.0.3",
20-
"jest-haste-map": "^20.0.3",
21-
"jest-jasmine2": "^20.0.3",
20+
"jest-haste-map": "^20.0.4",
21+
"jest-jasmine2": "^20.0.4",
2222
"jest-message-util": "^20.0.3",
2323
"jest-regex-util": "^20.0.3",
2424
"jest-resolve-dependencies": "^20.0.3",
25-
"jest-runtime": "^20.0.3",
25+
"jest-runtime": "^20.0.4",
2626
"jest-snapshot": "^20.0.3",
2727
"jest-util": "^20.0.3",
2828
"micromatch": "^2.3.11",

packages/jest-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-config",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -12,10 +12,10 @@
1212
"glob": "^7.1.1",
1313
"jest-environment-jsdom": "^20.0.3",
1414
"jest-environment-node": "^20.0.3",
15-
"jest-jasmine2": "^20.0.3",
15+
"jest-jasmine2": "^20.0.4",
1616
"jest-matcher-utils": "^20.0.3",
1717
"jest-regex-util": "^20.0.3",
18-
"jest-resolve": "^20.0.3",
18+
"jest-resolve": "^20.0.4",
1919
"jest-validate": "^20.0.3",
2020
"pretty-format": "^20.0.3"
2121
}

packages/jest-editor-support/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-editor-support",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"

packages/jest-haste-map/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-haste-map",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"

packages/jest-jasmine2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-jasmine2",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -19,6 +19,6 @@
1919
"p-map": "^1.1.1"
2020
},
2121
"devDependencies": {
22-
"jest-runtime": "^20.0.3"
22+
"jest-runtime": "^20.0.4"
2323
}
2424
}

packages/jest-repl/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "jest-repl",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
77
},
88
"license": "BSD-3-Clause",
99
"main": "build/index.js",
1010
"dependencies": {
11-
"jest-runtime": "^20.0.3",
11+
"jest-runtime": "^20.0.4",
1212
"jest-util": "^20.0.3",
1313
"repl": "^0.1.3",
1414
"yargs": "^7.0.2"

packages/jest-resolve/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-resolve",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -13,6 +13,6 @@
1313
"resolve": "^1.3.2"
1414
},
1515
"devDependencies": {
16-
"jest-haste-map": "^20.0.3"
16+
"jest-haste-map": "^20.0.4"
1717
}
1818
}

packages/jest-runtime/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-runtime",
3-
"version": "20.0.3",
3+
"version": "20.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -14,10 +14,10 @@
1414
"chalk": "^1.1.3",
1515
"convert-source-map": "^1.4.0",
1616
"graceful-fs": "^4.1.11",
17-
"jest-config": "^20.0.3",
18-
"jest-haste-map": "^20.0.3",
17+
"jest-config": "^20.0.4",
18+
"jest-haste-map": "^20.0.4",
1919
"jest-regex-util": "^20.0.3",
20-
"jest-resolve": "^20.0.3",
20+
"jest-resolve": "^20.0.4",
2121
"jest-util": "^20.0.3",
2222
"json-stable-stringify": "^1.0.1",
2323
"micromatch": "^2.3.11",

0 commit comments

Comments
 (0)