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

Commit b1ce2ea

Browse files
authored
Merge pull request #109 from mocks-server/release
Release v2.2.0
2 parents 65fa01d + b3ad7bf commit b1ce2ea

File tree

11 files changed

+8475
-3569
lines changed

11 files changed

+8475
-3569
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
14+
node: ["12.22.1", "14.17.0", "16.1.0", "17.2.0"]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2

.github/workflows/publish-to-github.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://npm.pkg.github.com'
1414
# Defaults to the user or organization that owns the workflow file
1515
scope: '@mocks-server'

.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 publish

.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": "mocks-server",
4+
"projectKey": "mocks-server_plugin-admin-api"
5+
}
6+
}

CHANGELOG.md

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

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

1727
### 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

@@ -68,8 +68,6 @@ Please read the [contributing guidelines](.github/CONTRIBUTING.md) and [code of
6868
[license-url]: https://github.com/mocks-server/plugin-admin-api/blob/master/LICENSE
6969
[npm-downloads-image]: https://img.shields.io/npm/dm/@mocks-server/plugin-admin-api.svg
7070
[npm-downloads-url]: https://www.npmjs.com/package/@mocks-server/plugin-admin-api
71-
[npm-dependencies-image]: https://img.shields.io/david/mocks-server/plugin-admin-api.svg
72-
[npm-dependencies-url]: https://david-dm.org/mocks-server/plugin-admin-api
7371
[quality-gate-image]: https://sonarcloud.io/api/project_badges/measure?project=mocks-server_plugin-admin-api&metric=alert_status
7472
[quality-gate-url]: https://sonarcloud.io/dashboard?id=mocks-server_plugin-admin-api
7573
[release-image]: https://img.shields.io/github/release-date/mocks-server/plugin-admin-api.svg

0 commit comments

Comments
 (0)