Skip to content

Commit f3e367e

Browse files
authored
Merge pull request #526 from javierbrea/release
Release v2.2.2
2 parents 20dcd31 + 9155d6b commit f3e367e

File tree

85 files changed

+3720
-3279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+3720
-3279
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v3
1212
- name: Get NPM version is new
1313
id: check
14-
uses: EndBug/[email protected].0
14+
uses: EndBug/[email protected].1
1515
with:
1616
diff-search: true
1717
file-name: ./package.json
@@ -27,18 +27,18 @@ jobs:
2727
uses: martinbeentjes/[email protected]
2828
- name: Check Changelog version
2929
id: changelog_reader
30-
uses: mindsers/changelog-reader-action@v2.1.1
30+
uses: mindsers/changelog-reader-action@v2.2.2
3131
with:
3232
version: ${{ steps.package-version.outputs.current-version }}
3333
path: ./CHANGELOG.md
3434
- name: Read version from Sonar config
3535
id: sonar-version
36-
uses: christian-draeger/read-properties@1.0.1
36+
uses: christian-draeger/read-properties@1.1.1
3737
with:
3838
path: './sonar-project.properties'
39-
property: 'sonar.projectVersion'
39+
properties: 'sonar.projectVersion'
4040
- name: Check Sonar version
41-
if: steps.sonar-version.outputs.value != steps.package-version.outputs.current-version
41+
if: steps.sonar-version.outputs.sonar-projectVersion != steps.package-version.outputs.current-version
4242
run: |
4343
echo "Version not changed"
4444
exit 1

CHANGELOG.md

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

13+
## [2.2.2] - 2022-12-07
14+
15+
### Added
16+
- docs: Add alternatives
17+
18+
### Changed
19+
- chore(deps): Update devDependencies
20+
- test(e2e): Rename cypress-10 folder to cypress-latest
21+
- test(e2e): Use Cypress 12 in E2E tests
22+
1323
## [2.2.1] - 2022-08-30
1424

1525
### Changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Extends Cypress' cy commands with localStorage methods. Allows preserving localS
1818

1919
This solution allows you to use all browser localStorage methods through Cypress commands, and preserve it between tests and spec files. It also allows to simulate that localStorage is disabled in the browser.
2020

21+
## Alternatives
22+
23+
As from Cypress 12, you can use [`cy.session`](https://docs.cypress.io/api/commands/session) and [Cypress Test Isolation](https://docs.cypress.io/guides/core-concepts/test-isolation) in order to persist localStorage between tests. __Anyway, this plugin can be still used for an easier manipulation of the localStorage, writing localStorage assertions and even disabling it for checking the error handling.__
24+
2125
## Installation
2226

2327
This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

0 commit comments

Comments
 (0)