Skip to content
This repository was archived by the owner on May 27, 2022. It is now read-only.

Commit 8459999

Browse files
authored
Merge pull request #104 from data-provider/release
Release v3.0.2
2 parents 434cbb2 + eed47d9 commit 8459999

File tree

12 files changed

+2438
-1420
lines changed

12 files changed

+2438
-1420
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,18 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["10.23.0", "12.19.0", "14.15.0", "15.2.0"]
13+
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
17+
with:
18+
fetch-depth: 0
1719
- name: Extract branch name
1820
shell: bash
1921
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
2022
id: extract-branch
2123
- name: Use Node.js
22-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v2
2325
with:
2426
node-version: ${{ matrix.node }}
2527
- name: Cache node modules
@@ -60,7 +62,7 @@ jobs:
6062
- name: Download test results
6163
uses: actions/download-artifact@v2
6264
with:
63-
name: coverage-15.2.0
65+
name: coverage-16.1.0
6466
path: coverage
6567
- name: Coveralls
6668
uses: coverallsapp/github-action@master

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
- name: Get NPM version is new
1313
id: check
14-
uses: EndBug/version-check@v1.6.0
14+
uses: EndBug/version-check@v2.0.1
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
@@ -10,9 +10,9 @@ jobs:
1010
- run: npm ci
1111
- run: npm run build
1212
# Setup .npmrc file to publish to GitHub Packages
13-
- uses: actions/setup-node@v1
13+
- uses: actions/setup-node@v2
1414
with:
15-
node-version: '12.x'
15+
node-version: '14.x'
1616
registry-url: 'https://npm.pkg.github.com'
1717
# Defaults to the user or organization that owns the workflow file
1818
scope: '@data-provider'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v1
10+
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '12.x'
12+
node-version: '14.x'
1313
registry-url: 'https://registry.npmjs.org/'
1414
- run: npm ci
1515
- run: npm run build

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm run lint-staged

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sonarlint.connectedMode.project": {
3+
"connectionId": "data-provider",
4+
"projectKey": "data-provider_memory"
5+
}
6+
}

CHANGELOG.md

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

14+
## [3.0.2] - 2021-05-20
15+
16+
### Added
17+
- chore(deps): Add Node v16.x to engines
18+
19+
### Changed
20+
- chore(deps): Update dependencies
21+
22+
### Removed
23+
- chore(deps): Remove Node v10.x from engines
24+
1425
## [3.0.1] - 2021-01-14
1526

1627
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Please read the [contributing guidelines](.github/CONTRIBUTING.md) and [code of
116116
[npm-downloads-url]: https://www.npmjs.com/package/@data-provider/memory
117117
[npm-dependencies-image]: https://img.shields.io/david/data-provider/memory.svg
118118
[npm-dependencies-url]: https://david-dm.org/data-provider/memory
119-
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider-memory&metric=alert_status
120-
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider-memory
119+
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider_memory&metric=alert_status
120+
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider_memory
121121
[release-image]: https://img.shields.io/github/release-date/data-provider/memory.svg
122122
[release-url]: https://github.com/data-provider/memory/releases

0 commit comments

Comments
 (0)