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

Commit 27e7017

Browse files
authored
Merge pull request #135 from data-provider/release
Release v1.5.2
2 parents 4f043b4 + 4f110a9 commit 27e7017

31 files changed

+4566
-3688
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
@@ -19,7 +19,7 @@ jobs:
1919
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
2020
id: extract-branch
2121
- name: Use Node.js
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v2
2323
with:
2424
node-version: ${{ matrix.node }}
2525
- name: Cache node modules
@@ -62,10 +62,12 @@ jobs:
6262
steps:
6363
- name: Checkout
6464
uses: actions/checkout@v2
65+
with:
66+
fetch-depth: 0
6567
- name: Download test results
6668
uses: actions/download-artifact@v2
6769
with:
68-
name: coverage-15.2.0
70+
name: coverage-16.1.0
6971
path: coverage
7072
- name: Coveralls
7173
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_react"
5+
}
6+
}

CHANGELOG.md

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

13+
## [1.5.2] - 2021-05-24
14+
15+
### Added
16+
- chore(deps): Add Node v16.x to engines
17+
18+
### Changed
19+
- chore(deps): Update dependencies
20+
21+
### Removed
22+
- chore(deps): Remove Node v10.x from engines
23+
1324
## [1.5.1] - 2020-12-19
1425

1526
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ Please read the [contributing guidelines](.github/CONTRIBUTING.md) and [code of
546546
[npm-downloads-url]: https://www.npmjs.com/package/@data-provider/react
547547
[npm-dependencies-image]: https://img.shields.io/david/data-provider/react.svg
548548
[npm-dependencies-url]: https://david-dm.org/data-provider/react
549-
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider-react&metric=alert_status
550-
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider-react
549+
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider_react&metric=alert_status
550+
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider_react
551551
[release-image]: https://img.shields.io/github/release-date/data-provider/react.svg
552552
[release-url]: https://github.com/data-provider/react/releases

0 commit comments

Comments
 (0)