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

Commit

Permalink
Merge pull request #165 from data-provider/release
Browse files Browse the repository at this point in the history
Release v1.6.0
  • Loading branch information
javierbrea authored Dec 6, 2021
2 parents 27e7017 + b1ab32c commit c61d416
Show file tree
Hide file tree
Showing 19 changed files with 44,239 additions and 10,834 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"extends": ["plugin:react/recommended"],
"parserOptions": {
"sourceType": "module"
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
node: ["12.22.1", "14.17.0", "16.1.0", "17.2.0"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -41,8 +41,15 @@ jobs:
- name: Test unit
run: npm run test:unit
- name: Test E2E
if: ${{ matrix.node != '17.2.0'}}
run: npm run test:e2e:ci
id: test-e2e
- name: Test E2E Node 17
if: ${{ matrix.node == '17.2.0'}}
run: npm run test:e2e:ci
env:
NODE_OPTIONS: --openssl-legacy-provider
id: test-e2e-node-17
- name: Upload E2E tests screenshots
if: ${{ always() && steps.test-e2e.outcome == 'failure' }}
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@data-provider'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm run build
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
### Removed

## [1.6.0] - 2021-12-06

### Changed
- chore: Support any NodeJs version >=12.x.
- chore: Run tests also in NodeJs 17 in pipelines. Remove tests execution using NodeJs 15
- test: Use 127.0.0.1 instead of localhost when requesting in tests for Node 17 support
- chore: Update dependencies

### Fixed
- docs: Remove broken npm dependencies badge

## [1.5.2] - 2021-05-24

### Added
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build status][build-image]][build-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Quality Gate][quality-gate-image]][quality-gate-url]

[![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]
[![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]

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

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

0 comments on commit c61d416

Please sign in to comment.