Skip to content

Commit c96212e

Browse files
authored
Merge pull request #404 from javierbrea/release
Release v2.0
2 parents 6509854 + e306980 commit c96212e

File tree

13 files changed

+3842
-4141
lines changed

13 files changed

+3842
-4141
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,20 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
# NodeJS v17 still not supported in tests due to incompatibility with react-scripts
14-
node: ["12.22.7", "14.16.1", "16.13.0", "17.5.0"]
13+
node: ["14.18.0", "16.13.0", "17.5.0", "18.2.0"]
1514
steps:
1615
- name: Checkout
17-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1817
- name: Extract branch name
1918
shell: bash
2019
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
2120
id: extract-branch
2221
- name: Use Node.js
23-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v3
2423
with:
2524
node-version: ${{ matrix.node }}
2625
- name: Cache node modules
27-
uses: actions/cache@v2
26+
uses: actions/cache@v3
2827
env:
2928
cache-name: cache-node-modules
3029
with:
@@ -76,7 +75,7 @@ jobs:
7675
needs: test
7776
steps:
7877
- name: Checkout
79-
uses: actions/checkout@v2
78+
uses: actions/checkout@v3
8079
with:
8180
fetch-depth: 0
8281
- name: Download test results

.github/workflows/check-package-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
- name: Get NPM version is new
1313
id: check
14-
uses: EndBug/version-check@v2.0.1
14+
uses: EndBug/version-check@v2.1.0
1515
with:
1616
diff-search: true
1717
file-name: ./package.json

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
# Setup .npmrc file to publish to GitHub Packages
11-
- uses: actions/setup-node@v2
11+
- uses: actions/setup-node@v3
1212
with:
1313
node-version: '16.x'
1414
registry-url: 'https://npm.pkg.github.com'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v2
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
1111
with:
1212
node-version: '16.x'
1313
registry-url: 'https://registry.npmjs.org/'

CHANGELOG.md

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

14+
## [2.0.0] - 2022-05-30
15+
16+
### Removed
17+
- chore: Drop NodeJs 12 support
18+
- docs: Remove Fossa badge
19+
20+
### Changed
21+
- chore: Remove NodeJs v12 from tests workflow. Add NodeJs v18
22+
- chore(deps): Update devDependencies
23+
1424
## [1.7.0] - 2022-02-22
1525

1626
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Renovate](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com) [![Last commit][last-commit-image]][last-commit-url] [![Last release][release-image]][release-url]
44

5-
[![NPM downloads][npm-downloads-image]][npm-downloads-url] [![License][license-image]][license-url] [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjavierbrea%2Fcypress-localstorage-commands.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjavierbrea%2Fcypress-localstorage-commands?ref=badge_shield)
5+
[![NPM downloads][npm-downloads-image]][npm-downloads-url] [![License][license-image]][license-url]
66

77
# Cypress localStorage commands
88

0 commit comments

Comments
 (0)