jest-image-snapshot 3.1.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +1 -2
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +7 -7
- package/.github/workflows/greetings.yml +0 -13
package/.travis.yml
CHANGED
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
# [4.0.0](https://github.com/americanexpress/jest-image-snapshot/compare/v3.1.0...v4.0.0) (2020-05-14)
|
2
|
+
|
3
|
+
|
4
|
+
### chore
|
5
|
+
|
6
|
+
* upgrade to jest 26 + drop node 8 support ([#205](https://github.com/americanexpress/jest-image-snapshot/issues/205)) ([4834533](https://github.com/americanexpress/jest-image-snapshot/commit/4834533369dae1533c93ad883e3f66617d7d9c3f))
|
7
|
+
|
8
|
+
|
9
|
+
### BREAKING CHANGES
|
10
|
+
|
11
|
+
* drop node 8 support
|
12
|
+
|
1
13
|
# [3.1.0](https://github.com/americanexpress/jest-image-snapshot/compare/v3.0.1...v3.1.0) (2020-04-17)
|
2
14
|
|
3
15
|
|
package/README.md
CHANGED
@@ -22,7 +22,7 @@ Want to get paid for your contributions to `jest-image-snapshot`?
|
|
22
22
|
|
23
23
|
## ✨ Features
|
24
24
|
|
25
|
-
* Take image snapshots of your
|
25
|
+
* Take image snapshots of your application
|
26
26
|
* Ability to compare snapshots from a baseline
|
27
27
|
* Update snapshots when you're good with changes
|
28
28
|
* Customize a difference threshold
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "jest-image-snapshot",
|
3
|
-
"version": "
|
3
|
+
"version": "4.0.0",
|
4
4
|
"description": "Jest matcher for image comparisons. Most commonly used for visual regression testing.",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"engines": {
|
7
|
-
"node": ">=
|
7
|
+
"node": ">= 10.14.2"
|
8
8
|
},
|
9
9
|
"scripts": {
|
10
10
|
"lint": "eslint ./ --ignore-path .gitignore --ext .js",
|
@@ -53,8 +53,8 @@
|
|
53
53
|
"eslint-config-amex": "^7.0.0",
|
54
54
|
"husky": "^4.2.1",
|
55
55
|
"image-size": "^0.8.3",
|
56
|
-
"jest": "^
|
57
|
-
"jest-snapshot": "^
|
56
|
+
"jest": "^26.0.1",
|
57
|
+
"jest-snapshot": "^26.0.1",
|
58
58
|
"semantic-release": "^17.0.4",
|
59
59
|
"lockfile-lint": "^4.0.0",
|
60
60
|
"mock-spawn": "^0.2.6"
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"rimraf": "^2.6.2"
|
71
71
|
},
|
72
72
|
"peerDependencies": {
|
73
|
-
"jest": ">=20 <=
|
73
|
+
"jest": ">=20 <=26"
|
74
74
|
},
|
75
75
|
"husky": {
|
76
76
|
"hooks": {
|
@@ -83,9 +83,9 @@
|
|
83
83
|
"@semantic-release/commit-analyzer",
|
84
84
|
"@semantic-release/release-notes-generator",
|
85
85
|
"@semantic-release/changelog",
|
86
|
+
"@semantic-release/npm",
|
86
87
|
"@semantic-release/git",
|
87
|
-
"@semantic-release/github"
|
88
|
-
"@semantic-release/npm"
|
88
|
+
"@semantic-release/github"
|
89
89
|
],
|
90
90
|
"branch": "master"
|
91
91
|
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
name: Greetings
|
2
|
-
|
3
|
-
on: [pull_request, issues]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
greeting:
|
7
|
-
runs-on: ubuntu-latest
|
8
|
-
steps:
|
9
|
-
- uses: actions/first-interaction@v1
|
10
|
-
with:
|
11
|
-
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
12
|
-
issue-message: 'Thanks for opening your first issue. Pull requests are always welcome!'
|
13
|
-
pr-message: 'Thank you for your contribution to jest-image-snapshot. We will be reviewing your PR. In the meantime, please sign the CLA and make sure all status checks have passed.'
|