Skip to content

Commit bdc0530

Browse files
authored
Merge pull request #379 from javierbrea/release
Release v1.6.0
2 parents adca3c6 + 2e1a554 commit bdc0530

File tree

11 files changed

+1923
-1784
lines changed

11 files changed

+1923
-1784
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["12.22.1", "14.16.1", "15.14.0", "16.1.0"]
13+
# NodeJS v17 still not supported in tests due to incompatibility with react-scripts
14+
node: ["12.22.7", "14.16.1", "15.14.0", "16.13.0"]
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v2
@@ -79,7 +80,7 @@ jobs:
7980
- name: Download test results
8081
uses: actions/download-artifact@v2
8182
with:
82-
name: coverage-16.1.0
83+
name: coverage-16.13.0
8384
path: coverage
8485
- name: Coveralls
8586
uses: coverallsapp/github-action@master

.github/workflows/publish-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Setup .npmrc file to publish to GitHub Packages
1111
- uses: actions/setup-node@v2
1212
with:
13-
node-version: '14.x'
13+
node-version: '16.x'
1414
registry-url: 'https://npm.pkg.github.com'
1515
# Defaults to the user or organization that owns the workflow file
1616
scope: '@javierbrea'

.github/workflows/publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '14.x'
12+
node-version: '16.x'
1313
registry-url: 'https://registry.npmjs.org/'
1414
- run: npm ci
1515
- run: npm publish

CHANGELOG.md

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

14+
## [1.6.0] - 2021-11-01
15+
### Changed
16+
- chore(deps): Update devDependencies
17+
- chore(deps): Support any NodeJs version greater than 10.x.
18+
1419
## [1.5.0] - 2021-07-21
1520
### Added
1621
- chore(#330): Use Cypress v8 in E2E tests. Add Cypress v8.x to peerDependencies

package-lock.json

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

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-localstorage-commands",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -46,19 +46,19 @@
4646
"cypress": "^2.1.0 || 3.x || 4.x || 5.x || 6.x || 7.x || 8.x"
4747
},
4848
"devDependencies": {
49-
"@stryker-mutator/core": "5.1.1",
50-
"@stryker-mutator/jest-runner": "5.1.1",
49+
"@stryker-mutator/core": "5.4.1",
50+
"@stryker-mutator/jest-runner": "5.4.1",
5151
"babel-eslint": "10.1.0",
52-
"eslint": "7.29.0",
52+
"eslint": "7.32.0",
5353
"eslint-config-prettier": "8.3.0",
54-
"eslint-plugin-prettier": "3.4.0",
55-
"eslint-plugin-react": "7.24.0",
56-
"husky": "6.0.0",
57-
"is-ci": "3.0.0",
58-
"jest": "27.0.6",
59-
"lint-staged": "11.0.0",
54+
"eslint-plugin-prettier": "3.4.1",
55+
"eslint-plugin-react": "7.25.1",
56+
"husky": "7.0.4",
57+
"is-ci": "3.0.1",
58+
"jest": "27.3.1",
59+
"lint-staged": "11.2.6",
6060
"prettier": "2.3.2",
61-
"sinon": "11.1.1"
61+
"sinon": "11.1.2"
6262
},
6363
"lint-staged": {
6464
"*.js": "eslint",
@@ -71,6 +71,6 @@
7171
"test-e2e/typescript/**/*.ts": "npm run lint:typescript"
7272
},
7373
"engines": {
74-
"node": "10.x || 12.x || 14.x || 15.x || 16.x"
74+
"node": ">=10.0.0"
7575
}
7676
}

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

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

0 commit comments

Comments
 (0)