Skip to content

Commit

Permalink
build: add auto-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ptweety committed Oct 12, 2022
1 parent ff7ceb5 commit c1ef6ca
Show file tree
Hide file tree
Showing 3 changed files with 159 additions and 19 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

#### [Unreleased](https://github.com/ptweety/node-red-contrib-ccu/compare/v3.5.2...HEAD)

- fix: remove nyc and replace by c8 [`850b43b`](https://github.com/ptweety/node-red-contrib-ccu/commit/850b43b15e82c46cab3b4c5035efd6689980cc4d)
- fix: update qa.yml workflow [`ff7ceb5`](https://github.com/ptweety/node-red-contrib-ccu/commit/ff7ceb53ecc3b9b4a9fd81587e8d7f1e1ee8e252)
- fix: update postpublish script [`1cf7ab9`](https://github.com/ptweety/node-red-contrib-ccu/commit/1cf7ab9451d81cfd3976cdc474ccb3c1d527bc18)

#### [v3.5.2](https://github.com/ptweety/node-red-contrib-ccu/compare/v3.5.1...v3.5.2)

> 12 October 2022
- add tests for mqtt-wildcard and nextport [`2826ce8`](https://github.com/ptweety/node-red-contrib-ccu/commit/2826ce8feafc36ca12d05c61c210505ac88c43ab)
- remove nextport and hm-discover [`acff33d`](https://github.com/ptweety/node-red-contrib-ccu/commit/acff33d571d4d637bb86f68fc82c21a7d83264e1)
- remove promise.prototype.finally and buffer-base62 [`c3ddd3a`](https://github.com/ptweety/node-red-contrib-ccu/commit/c3ddd3a8622a167b1a4af1f3233b3c0202d88255)
- remove mqtt-wildcard [`c8153ad`](https://github.com/ptweety/node-red-contrib-ccu/commit/c8153ad3522bc323735a2b541a91ee475a3b1477)
- bump version to 3.5.2 [`6e145a6`](https://github.com/ptweety/node-red-contrib-ccu/commit/6e145a62ae59e3c4e47378744862b91c9b0e8a61)

#### [v3.5.1](https://github.com/ptweety/node-red-contrib-ccu/compare/v3.5.0...v3.5.1)

> 10 October 2022
- add first set of simple examples [`c45f6c2`](https://github.com/ptweety/node-red-contrib-ccu/commit/c45f6c2e1f1522370c2864ed9e3ce96d122b3de4)
- Reactivated TLSSSL authentication warning [`9fb3466`](https://github.com/ptweety/node-red-contrib-ccu/commit/9fb3466d16d640b11cec22ab47fdd62c7a367d3b)
- bump version [`e076902`](https://github.com/ptweety/node-red-contrib-ccu/commit/e076902bb64dba54e4f65c301c75315a1a350c4d)
- update package-lock.json [`88a5dc1`](https://github.com/ptweety/node-red-contrib-ccu/commit/88a5dc1df4fcee609b7d467fa5a433972aafde2e)
- set min Node-RED version to 1.0 [`adbea13`](https://github.com/ptweety/node-red-contrib-ccu/commit/adbea139b1d04eb0c4148034aa2af3a0aa8eb9a3)
140 changes: 121 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"deprecated": false,
"description": "Node-RED Nodes for the Homematic CCU",
"devDependencies": {
"auto-changelog": "^2.4.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-promise": "^6.0.1",
"hm-simulator": "^0.1.1",
Expand Down Expand Up @@ -105,6 +106,7 @@
"lintfix": "xo --fix",
"lintonly": "xo",
"postpublish": "git push origin --all && git push origin --no-verify --tags",
"version": "auto-changelog && git add CHANGELOG.md",
"prepublishOnly": "npm run checkgit --silent",
"test": "xo && npx c8 --check-coverage --lines 50 npm run testonly",
"testcov": "npx c8 --check-coverage --lines 50 npm run testonly",
Expand All @@ -114,6 +116,13 @@
"start": "node ./node_modules/node-red/red.js -s ../.node-red/settings.js -u ../.node-red",
"update": "npx npm-check-updates -u && npm install"
},
"auto-changelog": {
"template": "compact",
"startingVersion": "v3.5.1",
"hideCredit": true,
"unreleased": true,
"commitLimit": false
},
"xo": {
"space": 4,
"plugins": [
Expand Down

0 comments on commit c1ef6ca

Please sign in to comment.