From fb9f379ab2b48f44fab1165a4156f9c7818b1885 Mon Sep 17 00:00:00 2001 From: alexalikiotis Date: Thu, 26 Nov 2020 16:15:25 +0200 Subject: [PATCH] "chore(release): 4.0.0" --- .openshiftio/application.yaml | 4 ++-- CHANGELOG.md | 18 ++++++++++++++++++ licenses/licenses.xml | 2 +- package-lock.json | 2 +- package.json | 4 ++-- 5 files changed, 24 insertions(+), 6 deletions(-) diff --git a/.openshiftio/application.yaml b/.openshiftio/application.yaml index 35cee01..0eb8c04 100644 --- a/.openshiftio/application.yaml +++ b/.openshiftio/application.yaml @@ -13,7 +13,7 @@ parameters: - name: RELEASE_VERSION description: The release version number of application displayName: Release version - value: 3.0.2 + value: 4.0.0 - name: SOURCE_REPOSITORY_URL description: The source URL for the application displayName: Source URL @@ -47,7 +47,7 @@ objects: - name: latest from: kind: DockerImage - name: registry.access.redhat.com/ubi8/nodejs-12 + name: 'registry.access.redhat.com/ubi8/nodejs-14:latest' - apiVersion: build.openshift.io/v1 kind: BuildConfig metadata: diff --git a/CHANGELOG.md b/CHANGELOG.md index bd03657..1669277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.0.0](https://github.com/nodeshift-starters/nodejs-health-check/compare/v3.0.2...v4.0.0) (2020-11-26) + + +### Features + +* upgrade tape from 4.13.2 to 5.0.1 ([#186](https://github.com/nodeshift-starters/nodejs-health-check/issues/186)) ([00d27fc](https://github.com/nodeshift-starters/nodejs-health-check/commit/00d27fc270ce2b3d5d0b9ea18ba38bb4a175954d)) + + +### Bug Fixes + +* package.json & package-lock.json to reduce vulnerabilities ([#180](https://github.com/nodeshift-starters/nodejs-health-check/issues/180)) ([6b7ce31](https://github.com/nodeshift-starters/nodejs-health-check/commit/6b7ce316afde959bb44df7a00e2c38521d52d7cc)) +* package.json & package-lock.json to reduce vulnerabilities ([#182](https://github.com/nodeshift-starters/nodejs-health-check/issues/182)) ([fbdb2d6](https://github.com/nodeshift-starters/nodejs-health-check/commit/fbdb2d6006295d01293d22bf02766a1ae9873d90)) +* upgrade coveralls from 3.0.11 to 3.1.0 ([#187](https://github.com/nodeshift-starters/nodejs-health-check/issues/187)) ([c74d018](https://github.com/nodeshift-starters/nodejs-health-check/commit/c74d018a15e0fc118d56868bccdbc29040134a97)) +* upgrade coveralls from 3.0.9 to 3.0.11 ([#176](https://github.com/nodeshift-starters/nodejs-health-check/issues/176)) ([c9b8f3c](https://github.com/nodeshift-starters/nodejs-health-check/commit/c9b8f3cdcf85532522f9894fd0b7b72f646feb2e)) +* upgrade debug from 4.1.1 to 4.2.0 ([#178](https://github.com/nodeshift-starters/nodejs-health-check/issues/178)) ([13b1d82](https://github.com/nodeshift-starters/nodejs-health-check/commit/13b1d82f6e1e08fd57845b9b2a6dc8e4b896b906)) +* upgrade kube-probe from 0.4.0 to 0.5.0 ([#189](https://github.com/nodeshift-starters/nodejs-health-check/issues/189)) ([da26fff](https://github.com/nodeshift-starters/nodejs-health-check/commit/da26fffb24e25a7a5f18e1f70767bc2579ccad6f)) +* upgrade nodeshift from 6.0.2 to 6.2.0 ([#188](https://github.com/nodeshift-starters/nodejs-health-check/issues/188)) ([9542ed3](https://github.com/nodeshift-starters/nodejs-health-check/commit/9542ed3064297a4c0a78b5dfa258456f26e5ef33)) + ### [3.0.2](https://github.com/nodeshift-starters/nodejs-health-check/compare/v3.0.1...v3.0.2) (2020-04-27) ### [3.0.1](https://github.com/nodeshift-starters/nodejs-health-check/compare/v3.0.0...v3.0.1) (2019-11-27) diff --git a/licenses/licenses.xml b/licenses/licenses.xml index de36fa7..8c8e777 100644 --- a/licenses/licenses.xml +++ b/licenses/licenses.xml @@ -1,7 +1,7 @@ nodejs-health-check - 3.0.2 + 4.0.0 Apache-2.0 diff --git a/package-lock.json b/package-lock.json index 7dd839c..1e5a362 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nodejs-health-check", - "version": "3.0.2", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 77fdd70..322aa16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodejs-health-check", - "version": "3.0.2", + "version": "4.0.0", "author": "Red Hat, Inc.", "license": "Apache-2.0", "scripts": { @@ -13,7 +13,7 @@ "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", "ci": "npm run lint && npm run coveralls", "release": "standard-version -a", - "openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-12", + "openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-14:latest", "postinstall": "license-reporter report -s && license-reporter save -s --xml licenses.xml", "start": "node ." },