Skip to content

Commit 4965c67

Browse files
authored
Merge pull request #303 from javierbrea/release
Release v1.4.4
2 parents 3710c3c + cf23017 commit 4965c67

File tree

9 files changed

+312
-255
lines changed

9 files changed

+312
-255
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["12.22.1", "14.16.1", "15.14.0"]
13+
node: ["12.22.1", "14.16.1", "15.14.0", "16.0.0"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2

CHANGELOG.md

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

14+
## [1.4.4] - 2021-04-29
15+
16+
### Added
17+
- chore(deps): Support Node v16.x in engines. Run tests also in node 16.0.0
18+
19+
### Changed
20+
- chore(deps): Update devDependencies
21+
1422
## [1.4.3] - 2021-04-07
1523

1624
### Added

package-lock.json

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

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-localstorage-commands",
3-
"version": "1.4.3",
3+
"version": "1.4.4",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -45,13 +45,13 @@
4545
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x || 7.x"
4646
},
4747
"devDependencies": {
48-
"@stryker-mutator/core": "4.5.1",
49-
"@stryker-mutator/jest-runner": "4.5.1",
48+
"@stryker-mutator/core": "4.6.0",
49+
"@stryker-mutator/jest-runner": "4.6.0",
5050
"babel-eslint": "10.1.0",
51-
"eslint": "7.23.0",
52-
"eslint-config-prettier": "8.1.0",
53-
"eslint-plugin-prettier": "3.3.1",
54-
"eslint-plugin-react": "7.23.1",
51+
"eslint": "7.25.0",
52+
"eslint-config-prettier": "8.3.0",
53+
"eslint-plugin-prettier": "3.4.0",
54+
"eslint-plugin-react": "7.23.2",
5555
"husky": "4.3.8",
5656
"jest": "26.6.3",
5757
"lint-staged": "10.5.4",
@@ -74,6 +74,6 @@
7474
}
7575
},
7676
"engines": {
77-
"node": "10.x || 12.x || 14.x || 15.x"
77+
"node": "10.x || 12.x || 14.x || 15.x || 16.x"
7878
}
7979
}

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.3
3+
sonar.projectVersion=1.4.4
44

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

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

Lines changed: 22 additions & 37 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"prop-types": "15.7.2",
1010
"react": "17.0.2",
1111
"react-dom": "17.0.2",
12-
"react-redux": "7.2.3",
13-
"redux": "4.0.5"
12+
"react-redux": "7.2.4",
13+
"redux": "4.1.0"
1414
},
1515
"scripts": {
1616
"start": "react-scripts start",
@@ -38,7 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"babel-plugin-module-resolver": "4.1.0",
41-
"cypress": "7.0.0",
41+
"cypress": "7.1.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)