Skip to content

Commit ce46013

Browse files
committed
build: changelog added
1 parent 041e16b commit ce46013

File tree

4 files changed

+738
-197
lines changed

4 files changed

+738
-197
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
### [1.1.1](https://github.com/joolfe/postman-util-lib/compare/1.1.0...1.1.1) (2020-08-23)
2+
3+
4+
### Features
5+
6+
* `jwtVerify()` now support JWK public keys ([24b1b5b](https://github.com/joolfe/postman-util-lib/commit/24b1b5b432dbe3b06ac44ee7a791dda52daca9fe))
7+
8+
9+
### Bug Fixes
10+
11+
* security vulnerabilities fix ([71f5733](https://github.com/joolfe/postman-util-lib/commit/71f5733b6132286b4d37b2a06f5af83f51cfad6c))
12+
13+
14+
### Documentation
15+
16+
* update parameters definition ([f8b64d8](https://github.com/joolfe/postman-util-lib/commit/f8b64d8b1e11e9b4075c3939e50ad65c308d959a))
17+
18+
19+
### Build System
20+
21+
* update deps ([4486b47](https://github.com/joolfe/postman-util-lib/commit/4486b47a4b24efa8f62726b64b0b1bbc5b9e1298))
22+
* update version to 1.1.0 ([9944562](https://github.com/joolfe/postman-util-lib/commit/994456228cf6de5c24239ee39afe6067ce60b94b))
23+
* version updated ([f4e158e](https://github.com/joolfe/postman-util-lib/commit/f4e158e0e0205aae2fd4ae5bd90174a2f3b3fa18))
24+

changelog.config.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
options: {
3+
preset: {
4+
name: 'conventionalcommits',
5+
types: [
6+
{ type: 'feat', section: 'Features' },
7+
{ type: 'fix', section: 'Bug Fixes' },
8+
{ type: 'perf', section: 'Performance Improvements' },
9+
{ type: 'revert', section: 'Reverts' },
10+
{ type: 'docs', section: 'Documentation' },
11+
{ type: 'style', section: 'Styles' },
12+
{ type: 'chore', section: 'Miscellaneous Chores' },
13+
{ type: 'refactor', section: 'Code Refactoring' },
14+
{ type: 'test', section: 'Tests' },
15+
{ type: 'build', section: 'Build System' },
16+
{ type: 'ci', section: 'Continuous Integration' }
17+
]
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)