Skip to content

Commit

Permalink
Release v22.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Jimenez Esun committed Feb 20, 2018
1 parent 9df3035 commit acb7f64
Show file tree
Hide file tree
Showing 28 changed files with 101 additions and 93 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
## master

## 22.4.0

### Fixes

* `[jest-haste-map]` Overhauls how Watchman crawler works fixing Windows
([#5615](https://github.com/facebook/jest/pull/5615))
* `[expect]` Allow matching of Errors against plain objects
([#5611](https://github.com/facebook/jest/pull/5611))
* `[jest-haste-map]` Do not read binary files in Haste, even when instructed to
do so ([#5612](https://github.com/facebook/jest/pull/5612))
* `[jest-cli]` Don't skip matchers for exact files
([#5582](https://github.com/facebook/jest/pull/5582))
* `[docs]` Update discord links
Expand All @@ -26,6 +32,8 @@
from source. ([#5177](https://github.com/facebook/jest/pull/5177))
* `[jest-validate]` Add ability to log deprecation warnings for CLI flags.
([#5536](https://github.com/facebook/jest/pull/5536))
* `[jest-serializer]` Added new module for serializing. Works using V8 or JSON
([#5609](https://github.com/facebook/jest/pull/5609))
* `[docs]` Add a documentation note for project `displayName` configuration
([#5600](https://github.com/facebook/jest/pull/5600))

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.5.1",
"version": "22.3.0",
"version": "22.4.0",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/babel-jest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "babel-jest",
"description": "Jest plugin to use babel for transformation.",
"version": "22.2.2",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand Down
8 changes: 4 additions & 4 deletions packages/expect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expect",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -10,10 +10,10 @@
"browser": "build-es5/index.js",
"dependencies": {
"ansi-styles": "^3.2.0",
"jest-diff": "^22.1.0",
"jest-diff": "^22.4.0",
"jest-get-type": "^22.1.0",
"jest-matcher-utils": "^22.2.0",
"jest-message-util": "^22.2.0",
"jest-matcher-utils": "^22.4.0",
"jest-message-util": "^22.4.0",
"jest-regex-util": "^22.1.0"
}
}
14 changes: 7 additions & 7 deletions packages/jest-circus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-circus",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -9,13 +9,13 @@
"main": "build/index.js",
"dependencies": {
"chalk": "^2.0.1",
"expect": "^22.3.0",
"jest-diff": "^22.1.0",
"jest-matcher-utils": "^22.2.0",
"jest-message-util": "^22.2.0",
"jest-snapshot": "^22.2.0"
"expect": "^22.4.0",
"jest-diff": "^22.4.0",
"jest-matcher-utils": "^22.4.0",
"jest-message-util": "^22.4.0",
"jest-snapshot": "^22.4.0"
},
"devDependencies": {
"jest-runtime": "^22.3.0"
"jest-runtime": "^22.4.0"
}
}
20 changes: 10 additions & 10 deletions packages/jest-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jest-cli",
"description": "Delightful JavaScript Testing.",
"version": "22.3.0",
"version": "22.4.0",
"main": "build/jest.js",
"dependencies": {
"ansi-escapes": "^3.0.0",
Expand All @@ -16,18 +16,18 @@
"istanbul-lib-instrument": "^1.8.0",
"istanbul-lib-source-maps": "^1.2.1",
"jest-changed-files": "^22.2.0",
"jest-config": "^22.3.0",
"jest-environment-jsdom": "^22.3.0",
"jest-config": "^22.4.0",
"jest-environment-jsdom": "^22.4.0",
"jest-get-type": "^22.1.0",
"jest-haste-map": "^22.3.0",
"jest-message-util": "^22.2.0",
"jest-haste-map": "^22.4.0",
"jest-message-util": "^22.4.0",
"jest-regex-util": "^22.1.0",
"jest-resolve-dependencies": "^22.1.0",
"jest-runner": "^22.3.0",
"jest-runtime": "^22.3.0",
"jest-snapshot": "^22.2.0",
"jest-util": "^22.3.0",
"jest-validate": "^22.2.2",
"jest-runner": "^22.4.0",
"jest-runtime": "^22.4.0",
"jest-snapshot": "^22.4.0",
"jest-util": "^22.4.0",
"jest-validate": "^22.4.0",
"jest-worker": "^22.2.2",
"micromatch": "^2.3.11",
"node-notifier": "^5.2.1",
Expand Down
16 changes: 8 additions & 8 deletions packages/jest-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-config",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -10,14 +10,14 @@
"dependencies": {
"chalk": "^2.0.1",
"glob": "^7.1.1",
"jest-environment-jsdom": "^22.3.0",
"jest-environment-node": "^22.3.0",
"jest-environment-jsdom": "^22.4.0",
"jest-environment-node": "^22.4.0",
"jest-get-type": "^22.1.0",
"jest-jasmine2": "^22.3.0",
"jest-jasmine2": "^22.4.0",
"jest-regex-util": "^22.1.0",
"jest-resolve": "^22.3.0",
"jest-util": "^22.3.0",
"jest-validate": "^22.2.2",
"pretty-format": "^22.1.0"
"jest-resolve": "^22.4.0",
"jest-util": "^22.4.0",
"jest-validate": "^22.4.0",
"pretty-format": "^22.4.0"
}
}
4 changes: 2 additions & 2 deletions packages/jest-diff/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-diff",
"version": "22.1.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -11,6 +11,6 @@
"chalk": "^2.0.1",
"diff": "^3.2.0",
"jest-get-type": "^22.1.0",
"pretty-format": "^22.1.0"
"pretty-format": "^22.4.0"
}
}
2 changes: 1 addition & 1 deletion packages/jest-docblock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-docblock",
"version": "22.2.2",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-editor-support/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-editor-support",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -10,7 +10,7 @@
"dependencies": {
"babel-traverse": "^6.14.1",
"babylon": "^6.14.1",
"jest-snapshot": "^22.2.0"
"jest-snapshot": "^22.4.0"
},
"typings": "index.d.ts"
}
4 changes: 2 additions & 2 deletions packages/jest-environment-jsdom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-environment-jsdom",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -9,7 +9,7 @@
"main": "build/index.js",
"dependencies": {
"jest-mock": "^22.2.0",
"jest-util": "^22.3.0",
"jest-util": "^22.4.0",
"jsdom": "^11.5.1"
}
}
4 changes: 2 additions & 2 deletions packages/jest-environment-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-environment-node",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -9,6 +9,6 @@
"main": "build/index.js",
"dependencies": {
"jest-mock": "^22.2.0",
"jest-util": "^22.3.0"
"jest-util": "^22.4.0"
}
}
6 changes: 3 additions & 3 deletions packages/jest-haste-map/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-haste-map",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -10,8 +10,8 @@
"dependencies": {
"fb-watchman": "^2.0.0",
"graceful-fs": "^4.1.11",
"jest-docblock": "^22.2.2",
"jest-serializer": "^22.3.0",
"jest-docblock": "^22.4.0",
"jest-serializer": "^22.4.0",
"jest-worker": "^22.2.2",
"micromatch": "^2.3.11",
"sane": "^2.0.0"
Expand Down
14 changes: 7 additions & 7 deletions packages/jest-jasmine2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-jasmine2",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -11,16 +11,16 @@
"callsites": "^2.0.0",
"chalk": "^2.0.1",
"co": "^4.6.0",
"expect": "^22.3.0",
"expect": "^22.4.0",
"graceful-fs": "^4.1.11",
"is-generator-fn": "^1.0.0",
"jest-diff": "^22.1.0",
"jest-matcher-utils": "^22.2.0",
"jest-message-util": "^22.2.0",
"jest-snapshot": "^22.2.0",
"jest-diff": "^22.4.0",
"jest-matcher-utils": "^22.4.0",
"jest-message-util": "^22.4.0",
"jest-snapshot": "^22.4.0",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"jest-runtime": "^22.3.0"
"jest-runtime": "^22.4.0"
}
}
4 changes: 2 additions & 2 deletions packages/jest-leak-detector/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "jest-leak-detector",
"version": "22.1.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
},
"license": "MIT",
"main": "build/index.js",
"dependencies": {
"pretty-format": "^22.1.0"
"pretty-format": "^22.4.0"
},
"devDependencies": {
"weak": "^1.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-matcher-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jest-matcher-utils",
"description": "A set of utility functions for expect and related packages",
"version": "22.2.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -11,6 +11,6 @@
"dependencies": {
"chalk": "^2.0.1",
"jest-get-type": "^22.1.0",
"pretty-format": "^22.1.0"
"pretty-format": "^22.4.0"
}
}
2 changes: 1 addition & 1 deletion packages/jest-message-util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-message-util",
"version": "22.2.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand Down
6 changes: 3 additions & 3 deletions packages/jest-repl/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "jest-repl",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
},
"license": "MIT",
"main": "build/index.js",
"dependencies": {
"jest-runtime": "^22.3.0",
"jest-validate": "^22.2.2",
"jest-runtime": "^22.4.0",
"jest-validate": "^22.4.0",
"repl": "^0.1.3",
"yargs": "^10.0.3"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-resolve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-resolve",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -12,6 +12,6 @@
"chalk": "^2.0.1"
},
"devDependencies": {
"jest-haste-map": "^22.3.0"
"jest-haste-map": "^22.4.0"
}
}
18 changes: 9 additions & 9 deletions packages/jest-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-runner",
"version": "22.3.0",
"version": "22.4.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git"
Expand All @@ -9,14 +9,14 @@
"main": "build/index.js",
"dependencies": {
"exit": "^0.1.2",
"jest-config": "^22.3.0",
"jest-docblock": "^22.2.2",
"jest-haste-map": "^22.3.0",
"jest-jasmine2": "^22.3.0",
"jest-leak-detector": "^22.1.0",
"jest-message-util": "^22.2.0",
"jest-runtime": "^22.3.0",
"jest-util": "^22.3.0",
"jest-config": "^22.4.0",
"jest-docblock": "^22.4.0",
"jest-haste-map": "^22.4.0",
"jest-jasmine2": "^22.4.0",
"jest-leak-detector": "^22.4.0",
"jest-message-util": "^22.4.0",
"jest-runtime": "^22.4.0",
"jest-util": "^22.4.0",
"jest-worker": "^22.2.2",
"throat": "^4.0.0"
}
Expand Down
Loading

0 comments on commit acb7f64

Please sign in to comment.