Skip to content

Commit 3710c3c

Browse files
authored
Merge pull request #286 from javierbrea/release
Release v1.4.3
2 parents 012adf2 + 1bdbdce commit 3710c3c

File tree

9 files changed

+244
-183
lines changed

9 files changed

+244
-183
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["10.23.0", "12.19.0", "14.15.0", "15.2.0"]
13+
node: ["12.22.1", "14.16.1", "15.14.0"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
@@ -77,7 +77,7 @@ jobs:
7777
- name: Download test results
7878
uses: actions/download-artifact@v2
7979
with:
80-
name: coverage-15.2.0
80+
name: coverage-15.14.0
8181
path: coverage
8282
- name: Coveralls
8383
uses: coverallsapp/github-action@master

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
### Removed
1212
### BREAKING CHANGES
1313

14+
## [1.4.3] - 2021-04-07
15+
16+
### Added
17+
- chore(deps): Support Cypress v7.x in peerDependencies
18+
19+
### Changed
20+
- test(e2e): Run e2e tests in Cypress v7.x
21+
- chore(pipelines): Update node versions
22+
- chore(pipelines): Do not run tests in Node 10, because it is not supported by Cypress v7.x
23+
- chore(deps): Update devDependencies
24+
1425
## [1.4.2] - 2021-03-31
1526

1627
### Changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-localstorage-commands",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -42,7 +42,7 @@
4242
"test:ci": "npm run test:unit && npm run test:mutation && npm run test:e2e"
4343
},
4444
"peerDependencies": {
45-
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x"
45+
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x || 7.x"
4646
},
4747
"devDependencies": {
4848
"@stryker-mutator/core": "4.5.1",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.organization=javierbrea
22
sonar.projectKey=cypress-localstorage-commands
3-
sonar.projectVersion=1.4.2
3+
sonar.projectVersion=1.4.3
44

55
sonar.javascript.file.suffixes=.js
66
sonar.sourceEncoding=UTF-8

test-e2e/react-app/package-lock.json

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

test-e2e/react-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"babel-plugin-module-resolver": "4.1.0",
41-
"cypress": "6.8.0",
41+
"cypress": "7.0.0",
4242
"react-scripts": "4.0.3",
4343
"serve": "11.3.2",
4444
"start-server-and-test": "1.12.1"

0 commit comments

Comments
 (0)