Skip to content

Commit

Permalink
cut release 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rocktavious committed Sep 29, 2021
1 parent 1dab12b commit e86211e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
## [Unreleased]


<a name="v0.4.9"></a>
## [v0.4.9] - 2021-09-29
### Bugfix
- bubble up JQ errors are warning logs to help diagnose problems
- tag mutations for a service were being run in parallel but should have been serial
- Deprecated selector "labels" but used incorrect spelling of labels in the json tags

### Feature
- improve client side service deduplication which prevents a class of bugs with parallel API calls - also makes `service preview` output more representative of actual results

### Refactor
- only include auto alias `k8s:<name>-<namespace>` if no alias results were found


<a name="v0.4.8"></a>
## [v0.4.8] - 2021-09-20
### Bugfix
Expand Down Expand Up @@ -228,7 +242,8 @@
<a name="v0.0.1"></a>
## v0.0.1 - 2021-03-25

[Unreleased]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.8...HEAD
[Unreleased]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.9...HEAD
[v0.4.9]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.8...v0.4.9
[v0.4.8]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.7...v0.4.8
[v0.4.7]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.6...v0.4.7
[v0.4.6]: https://github.com/OpsLevel/kubectl-opslevel/compare/v0.4.5...v0.4.6
Expand Down
2 changes: 1 addition & 1 deletion src/common/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (s *ServiceRegistration) Merge(o ServiceRegistration) {
}
}

func parseField(filter string, resources []byte) *JQResponseMulti {
func parseField(field string, filter string, resources []byte) *JQResponseMulti {
parser := NewJQParserMulti(filter)
return parser.ParseMulti(field, resources)
}
Expand Down

0 comments on commit e86211e

Please sign in to comment.