-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
738 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
### [1.1.1](https://github.com/joolfe/postman-util-lib/compare/1.1.0...1.1.1) (2020-08-23) | ||
|
||
|
||
### Features | ||
|
||
* `jwtVerify()` now support JWK public keys ([24b1b5b](https://github.com/joolfe/postman-util-lib/commit/24b1b5b432dbe3b06ac44ee7a791dda52daca9fe)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* security vulnerabilities fix ([71f5733](https://github.com/joolfe/postman-util-lib/commit/71f5733b6132286b4d37b2a06f5af83f51cfad6c)) | ||
|
||
|
||
### Documentation | ||
|
||
* update parameters definition ([f8b64d8](https://github.com/joolfe/postman-util-lib/commit/f8b64d8b1e11e9b4075c3939e50ad65c308d959a)) | ||
|
||
|
||
### Build System | ||
|
||
* update deps ([4486b47](https://github.com/joolfe/postman-util-lib/commit/4486b47a4b24efa8f62726b64b0b1bbc5b9e1298)) | ||
* update version to 1.1.0 ([9944562](https://github.com/joolfe/postman-util-lib/commit/994456228cf6de5c24239ee39afe6067ce60b94b)) | ||
* version updated ([f4e158e](https://github.com/joolfe/postman-util-lib/commit/f4e158e0e0205aae2fd4ae5bd90174a2f3b3fa18)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
options: { | ||
preset: { | ||
name: 'conventionalcommits', | ||
types: [ | ||
{ type: 'feat', section: 'Features' }, | ||
{ type: 'fix', section: 'Bug Fixes' }, | ||
{ type: 'perf', section: 'Performance Improvements' }, | ||
{ type: 'revert', section: 'Reverts' }, | ||
{ type: 'docs', section: 'Documentation' }, | ||
{ type: 'style', section: 'Styles' }, | ||
{ type: 'chore', section: 'Miscellaneous Chores' }, | ||
{ type: 'refactor', section: 'Code Refactoring' }, | ||
{ type: 'test', section: 'Tests' }, | ||
{ type: 'build', section: 'Build System' }, | ||
{ type: 'ci', section: 'Continuous Integration' } | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.