Skip to content

Commit adca3c6

Browse files
authored
Merge pull request #332 from javierbrea/release
Release v1.5.0
2 parents 4b5766e + 9d82787 commit adca3c6

File tree

9 files changed

+1644
-1633
lines changed

9 files changed

+1644
-1633
lines changed

CHANGELOG.md

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

14+
## [1.5.0] - 2021-07-21
15+
### Added
16+
- chore(#330): Use Cypress v8 in E2E tests. Add Cypress v8.x to peerDependencies
17+
18+
### Changed
19+
- chore(deps): Update devDependencies
20+
1421
## [1.4.5] - 2021-05-29
1522

1623
### Changed

package-lock.json

Lines changed: 1057 additions & 591 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.5",
3+
"version": "1.5.0",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -43,21 +43,21 @@
4343
"prepare": "is-ci || husky install"
4444
},
4545
"peerDependencies": {
46-
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x || 7.x"
46+
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x || 7.x || 8.x"
4747
},
4848
"devDependencies": {
49-
"@stryker-mutator/core": "5.0.1",
50-
"@stryker-mutator/jest-runner": "5.0.1",
49+
"@stryker-mutator/core": "5.1.1",
50+
"@stryker-mutator/jest-runner": "5.1.1",
5151
"babel-eslint": "10.1.0",
52-
"eslint": "7.27.0",
52+
"eslint": "7.29.0",
5353
"eslint-config-prettier": "8.3.0",
5454
"eslint-plugin-prettier": "3.4.0",
55-
"eslint-plugin-react": "7.23.2",
55+
"eslint-plugin-react": "7.24.0",
5656
"husky": "6.0.0",
5757
"is-ci": "3.0.0",
58-
"jest": "27.0.1",
58+
"jest": "27.0.6",
5959
"lint-staged": "11.0.0",
60-
"prettier": "2.3.0",
60+
"prettier": "2.3.2",
6161
"sinon": "11.1.1"
6262
},
6363
"lint-staged": {

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=javierbrea_cypress-localstorage-commands
3-
sonar.projectVersion=1.4.5
3+
sonar.projectVersion=1.5.0
44

55
sonar.javascript.file.suffixes=.js
66
sonar.sourceEncoding=UTF-8
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
module.exports = () => {
2-
// do nothing
1+
const webpackPreprocessor = require("@cypress/webpack-preprocessor");
2+
const defaults = webpackPreprocessor.defaultOptions;
3+
4+
module.exports = (on) => {
5+
delete defaults.webpackOptions.module.rules[0].use[0].options.presets;
6+
on("file:preprocessor", webpackPreprocessor(defaults));
37
};

0 commit comments

Comments
 (0)