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

Commit 62741bd

Browse files
authored
Merge pull request #132 from data-provider/release
Release v3.1.0
2 parents 8459999 + ea6aec3 commit 62741bd

File tree

8 files changed

+13332
-9209
lines changed

8 files changed

+13332
-9209
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ 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
17-
with:
18-
fetch-depth: 0
1917
- name: Extract branch name
2018
shell: bash
2119
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
@@ -59,6 +57,8 @@ jobs:
5957
steps:
6058
- name: Checkout
6159
uses: actions/checkout@v2
60+
with:
61+
fetch-depth: 0
6262
- name: Download test results
6363
uses: actions/download-artifact@v2
6464
with:

.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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
### Removed
1212
### BREAKING CHANGES
1313

14+
## [3.1.0] - 2021-12-06
15+
16+
### Changed
17+
- chore: Support any NodeJs version >=12.x.
18+
- chore: Run tests also in NodeJs 17 in pipelines. Remove tests execution using NodeJs 15
19+
- chore: Update dependencies
20+
21+
### Fixed
22+
- docs: Remove broken npm dependencies badge
23+
1424
## [3.0.2] - 2021-05-20
1525

1626
### 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] [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fdata-provider%2Fmemory%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/data-provider/memory/master)
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

@@ -114,8 +114,6 @@ Please read the [contributing guidelines](.github/CONTRIBUTING.md) and [code of
114114
[license-url]: https://github.com/data-provider/memory/blob/master/LICENSE
115115
[npm-downloads-image]: https://img.shields.io/npm/dm/@data-provider/memory.svg
116116
[npm-downloads-url]: https://www.npmjs.com/package/@data-provider/memory
117-
[npm-dependencies-image]: https://img.shields.io/david/data-provider/memory.svg
118-
[npm-dependencies-url]: https://david-dm.org/data-provider/memory
119117
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=data-provider_memory&metric=alert_status
120118
[quality-gate-url]: https://sonarcloud.io/dashboard?id=data-provider_memory
121119
[release-image]: https://img.shields.io/github/release-date/data-provider/memory.svg

0 commit comments

Comments
 (0)