-
Notifications
You must be signed in to change notification settings - Fork 2
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
Marco Brotas
committed
Oct 18, 2023
1 parent
7838953
commit 43465f0
Showing
3 changed files
with
151 additions
and
0 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,22 @@ | ||
{{ range .Versions }} | ||
<a name="{{ .Tag.Name }}"></a> | ||
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} ({{ datetime "2006-01-02" .Tag.Date }}) | ||
|
||
{{ range .CommitGroups -}} | ||
### {{ .Title }} | ||
|
||
{{ range .Commits -}} | ||
* {{ .Subject }} | ||
{{ end }} | ||
{{ end -}} | ||
|
||
{{- if .NoteGroups -}} | ||
{{ range .NoteGroups -}} | ||
### {{ .Title }} | ||
|
||
{{ range .Notes }} | ||
{{ .Body }} | ||
{{ end }} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} |
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,27 @@ | ||
style: github | ||
template: CHANGELOG.tpl.md | ||
info: | ||
title: CHANGELOG | ||
repository_url: https://github.com/io-da/command | ||
options: | ||
commits: | ||
# filters: | ||
# Type: | ||
# - feat | ||
# - fix | ||
# - perf | ||
# - refactor | ||
commit_groups: | ||
# title_maps: | ||
# feat: Features | ||
# fix: Bug Fixes | ||
# perf: Performance Improvements | ||
# refactor: Code Refactoring | ||
header: | ||
pattern: "^(\\w*)\\:\\s(.*)$" | ||
pattern_maps: | ||
- Type | ||
- Subject | ||
notes: | ||
keywords: | ||
- BREAKING CHANGE |
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,102 @@ | ||
|
||
<a name="v1.4.1"></a> | ||
## [v1.4.1](https://github.com/io-da/command/compare/v1.4.0...v1.4.1) (2023-10-18) | ||
|
||
### Fix | ||
|
||
* allows middlewares to also be processed with closure commands | ||
|
||
|
||
<a name="v1.4.0"></a> | ||
## [v1.4.0](https://github.com/io-da/command/compare/v1.3.2...v1.4.0) (2023-10-18) | ||
|
||
### Chore | ||
|
||
* updates docs | ||
* few small adjustments to Readme | ||
* few small adjustments to Readme | ||
* update readme index | ||
* adds some error descriptions | ||
|
||
### Feat | ||
|
||
* implements support for closure commands | ||
|
||
|
||
<a name="v1.3.2"></a> | ||
## [v1.3.2](https://github.com/io-da/command/compare/v1.3.1...v1.3.2) (2023-10-16) | ||
|
||
### Fix | ||
|
||
* removes usage of slices package for backwards compatibility checks | ||
|
||
|
||
<a name="v1.3.1"></a> | ||
## [v1.3.1](https://github.com/io-da/command/compare/v1.3.0...v1.3.1) (2023-10-16) | ||
|
||
### Feat | ||
|
||
* improves middleware usage and adds missing documentation | ||
|
||
|
||
<a name="v1.3.0"></a> | ||
## [v1.3.0](https://github.com/io-da/command/compare/v1.2.8...v1.3.0) (2023-10-13) | ||
|
||
### Chore | ||
|
||
* further code cleanup | ||
* additional code cleanup | ||
* removes trash code and fixes benchmarks | ||
* updates respective docs | ||
|
||
### Cleanup | ||
|
||
* code cleanup | ||
|
||
### Feat | ||
|
||
* implements middleware feature and adds respective tests | ||
* implements inward and outward middlewares | ||
* implements await on async commands. feat: refactors bus to enforce one handler per command. | ||
|
||
|
||
<a name="v1.2.8"></a> | ||
## [v1.2.8](https://github.com/io-da/command/compare/v1.2.7...v1.2.8) (2023-09-26) | ||
|
||
### Fix | ||
|
||
* go.yaml for code coverage | ||
* test that was causing data race | ||
|
||
|
||
<a name="v1.2.7"></a> | ||
## [v1.2.7](https://github.com/io-da/command/compare/v1.2.6...v1.2.7) (2023-09-26) | ||
|
||
### Chore | ||
|
||
* bumb dependency version | ||
|
||
|
||
<a name="v1.2.6"></a> | ||
## [v1.2.6](https://github.com/io-da/command/compare/v1.2.5...v1.2.6) (2023-09-26) | ||
|
||
### Chore | ||
|
||
* adds CC_TEST_REPORTER_ID | ||
|
||
|
||
<a name="v1.2.5"></a> | ||
## [v1.2.5](https://github.com/io-da/command/compare/v1.2.4...v1.2.5) (2023-09-26) | ||
|
||
### Chore | ||
|
||
* enable github actions for code coverage | ||
|
||
|
||
<a name="v1.2.4"></a> | ||
## [v1.2.4](https://github.com/io-da/command/compare/v1.2.3...v1.2.4) (2023-09-26) | ||
|
||
### Chore | ||
|
||
* bump go version and remove travis integration | ||
|