Skip to content

Commit 5dde5af

Browse files
authored
Merge pull request #171 from javierbrea/release
Release v1.2.4
2 parents 7a4f0f4 + 3b9aaf9 commit 5dde5af

File tree

15 files changed

+11869
-7624
lines changed

15 files changed

+11869
-7624
lines changed

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.2.4] - 2020-10-29
15+
16+
### Added
17+
- chore(deps): Add node engine dep option for node@v15.x
18+
19+
### Changed
20+
- chore(deps): Update devDependencies
21+
1422
## [1.2.3] - 2020-10-19
1523

1624
### Changed

package-lock.json

Lines changed: 372 additions & 304 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.2.3",
3+
"version": "1.2.4",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -49,15 +49,15 @@
4949
"@stryker-mutator/jest-runner": "4.0.0",
5050
"babel-eslint": "10.1.0",
5151
"coveralls": "3.0.9",
52-
"eslint": "7.11.0",
53-
"eslint-config-prettier": "6.13.0",
52+
"eslint": "7.12.1",
53+
"eslint-config-prettier": "6.15.0",
5454
"eslint-plugin-prettier": "3.1.4",
55-
"eslint-plugin-react": "7.21.4",
55+
"eslint-plugin-react": "7.21.5",
5656
"husky": "4.3.0",
57-
"jest": "26.6.0",
58-
"lint-staged": "10.4.2",
57+
"jest": "26.6.1",
58+
"lint-staged": "10.5.0",
5959
"prettier": "2.1.2",
60-
"sinon": "9.2.0"
60+
"sinon": "9.2.1"
6161
},
6262
"lint-staged": {
6363
"src/**/*.js": "eslint",
@@ -73,6 +73,6 @@
7373
}
7474
},
7575
"engines": {
76-
"node": "12.x || 13.x || 14.x"
76+
"node": "12.x || 13.x || 14.x || 15.x"
7777
}
7878
}

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

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

test-e2e/react-app/.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
"settings": {
1414
"react": {
1515
"pragma": "React",
16-
"version": "^16.7.0"
16+
"version": "^17.0.0"
1717
}
18+
},
19+
"rules": {
20+
"react/jsx-uses-react": "off",
21+
"react/react-in-jsx-scope": "off"
1822
}
1923
}

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

Lines changed: 11366 additions & 7191 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"@data-provider/browser-storage": "2.0.5",
88
"@data-provider/react": "1.2.0",
99
"prop-types": "15.7.2",
10-
"react": "16.14.0",
11-
"react-dom": "16.14.0",
12-
"react-redux": "7.2.1",
10+
"react": "17.0.1",
11+
"react-dom": "17.0.1",
12+
"react-redux": "7.2.2",
1313
"redux": "4.0.5"
1414
},
1515
"scripts": {
@@ -37,9 +37,9 @@
3737
]
3838
},
3939
"devDependencies": {
40-
"react-scripts": "3.4.3",
40+
"react-scripts": "4.0.0",
4141
"babel-plugin-module-resolver": "4.0.0",
42-
"cypress": "5.4.0",
42+
"cypress": "5.5.0",
4343
"serve": "11.3.2",
4444
"start-server-and-test": "1.11.5"
4545
}

test-e2e/react-app/src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import { Provider } from "react-redux";
32
import { createStore, combineReducers } from "redux";
43
import { storeManager } from "@data-provider/core";

test-e2e/react-app/src/components/cookies-button/CookiesButton.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import PropTypes from "prop-types";
32

43
import "./CookiesButton.css";

test-e2e/react-app/src/components/cookies-value/CookiesValue.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import PropTypes from "prop-types";
32

43
export const CookiesValue = ({ value }) => {

0 commit comments

Comments
 (0)