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

Commit 43cbe0d

Browse files
committed
chore(deps): Update dependencies. Support NodeJs version >=12
1 parent 13075c0 commit 43cbe0d

19 files changed

+39737
-4533
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"es6": true,
55
"node": true
66
},
7-
"parser": "babel-eslint",
7+
"parser": "@babel/eslint-parser",
88
"extends": ["plugin:react/recommended"],
99
"parserOptions": {
1010
"sourceType": "module"

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
13+
node: ["12.22.1", "14.17.0", "16.1.0", "17.2.0"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
@@ -41,8 +41,15 @@ jobs:
4141
- name: Test unit
4242
run: npm run test:unit
4343
- name: Test E2E
44+
if: ${{ matrix.node != '17.2.0'}}
4445
run: npm run test:e2e:ci
4546
id: test-e2e
47+
- name: Test E2E Node 17
48+
if: ${{ matrix.node == '17.2.0'}}
49+
run: npm run test:e2e:ci
50+
env:
51+
NODE_OPTIONS: --openssl-legacy-provider
52+
id: test-e2e-node-17
4653
- name: Upload E2E tests screenshots
4754
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
4855
uses: actions/upload-artifact@v2

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Setup .npmrc file to publish to GitHub Packages
1313
- uses: actions/setup-node@v2
1414
with:
15-
node-version: '14.x'
15+
node-version: '16.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: 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 run build

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.6.0] - 2021-12-06
14+
15+
### Changed
16+
- chore: Support any NodeJs version >=12.x.
17+
- chore: Run tests also in NodeJs 17 in pipelines. Remove tests execution using NodeJs 15
18+
- test: Use 127.0.0.1 instead of localhost when requesting in tests for Node 17 support
19+
- chore: Update dependencies
20+
21+
### Fixed
22+
- docs: Remove broken npm dependencies badge
23+
1324
## [1.5.2] - 2021-05-24
1425

1526
### Added

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build status][build-image]][build-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Quality Gate][quality-gate-image]][quality-gate-url]
22

3-
[![NPM dependencies][npm-dependencies-image]][npm-dependencies-url] [![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]
3+
[![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

55
[![NPM downloads][npm-downloads-image]][npm-downloads-url] [![License][license-image]][license-url]
66

@@ -544,8 +544,6 @@ Please read the [contributing guidelines](.github/CONTRIBUTING.md) and [code of
544544
[license-url]: https://github.com/data-provider/react/blob/master/LICENSE
545545
[npm-downloads-image]: https://img.shields.io/npm/dm/@data-provider/react.svg
546546
[npm-downloads-url]: https://www.npmjs.com/package/@data-provider/react
547-
[npm-dependencies-image]: https://img.shields.io/david/data-provider/react.svg
548-
[npm-dependencies-url]: https://david-dm.org/data-provider/react
549547
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider_react&metric=alert_status
550548
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider_react
551549
[release-image]: https://img.shields.io/github/release-date/data-provider/react.svg

0 commit comments

Comments
 (0)