diff --git a/Dockerfile b/Dockerfile index 43a55f7f3..4a4630b05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ COPY --chown=node . . COPY < Now browse to http://localhost:3000 ``` diff --git a/docs/docs/miscellaneous/developer-notes.md b/docs/docs/miscellaneous/developer-notes.md index 9565f748e..eec1ad1f5 100644 --- a/docs/docs/miscellaneous/developer-notes.md +++ b/docs/docs/miscellaneous/developer-notes.md @@ -51,6 +51,8 @@ You can now browse to the local docs site [http://localhost:8080/NotifyBC](http: ## Publish Version Checklist 1. update _version_ in _package.json_ -2. update _version_ _appVersion_ in _helm/Chart.yaml_ (major/minor only) -3. update [What's new](../getting-started/what's-new.md) (major/minor only) -4. create a new Github release +2. run `npm i` +3. globally find and replace older version number referenced in _docs_ folder +4. update _version_ _appVersion_ in _helm/Chart.yaml_ (major/minor only) +5. update [What's new](../getting-started/what's-new.md) (major/minor only) +6. create a new Github release diff --git a/docs/docs/miscellaneous/upgrade.md b/docs/docs/miscellaneous/upgrade.md index e12ce9723..7ffb3ad74 100644 --- a/docs/docs/miscellaneous/upgrade.md +++ b/docs/docs/miscellaneous/upgrade.md @@ -91,7 +91,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6, Replace - - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.1_. + - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_. - if _NotifyBC_ is deployed to Kubernetes using Helm, 1. backup MongoDB database @@ -102,7 +102,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6, helm upgrade -f helm/platform-specific/.yaml -f helm/values.local.yaml helm ``` Replace - - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.1_. + - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_. - \ with installed helm release name - \ with _openshift_ or _aks_ depending on your platform diff --git a/package-lock.json b/package-lock.json index 9ad840def..26a5d9925 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "notify-bc", - "version": "6.0.1", + "version": "6.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "notify-bc", - "version": "6.0.1", + "version": "6.0.2", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index c5203a664..c506471b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notify-bc", - "version": "6.0.1", + "version": "6.0.2", "dbSchemaVersion": "0.9.0", "description": "A versatile notification API server", "author": "f-w", diff --git a/src/observers/smtp.service.ts b/src/observers/smtp.service.ts index 0604dcab2..b573aae28 100644 --- a/src/observers/smtp.service.ts +++ b/src/observers/smtp.service.ts @@ -57,6 +57,7 @@ export class SmtpService implements OnApplicationBootstrap { } // create ethereal.email account + this.logger.log('obtaining ethereal email account...'); const etherealAccount = await promisify(createTestAccount)(); this.logger.log('ethereal email account created:'); this.logger.log(etherealAccount);