Skip to content

Commit

Permalink
Cut Release 'v2023.1.21'
Browse files Browse the repository at this point in the history
  • Loading branch information
opslevel-ops committed Jan 21, 2023
1 parent a051f8a commit ed3b106
Show file tree
Hide file tree
Showing 15 changed files with 35 additions and 49 deletions.
3 changes: 0 additions & 3 deletions .changes/unreleased/Bugfix-20230112-153713.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Dependency-20230121-121216.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Dependency-20230121-121428.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Feature-20221221-234054.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Feature-20221221-234105.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Feature-20221224-000722.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Refactor-20221224-000235.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Refactor-20221224-000317.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Refactor-20221224-000614.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Refactor-20230121-092510.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Refactor-20230121-135121.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Refactor-20230121-135402.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions .changes/v2023.1.21.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## [January 21, 2023](https://github.com/OpsLevel/opslevel-go/compare/v2022.12.16...v2023.1.21)
### Bugfix
* Fixing issue where check notes were being deleted on updates
### Feature
* Add CRUD for custom actions webhook actions
* Add CRUD for custom actions trigger definitions
* Add a new input type "JSON" which supports turning a map[string]string into escaped json when used in mutation input
### Refactor
* removed "NewEmptyString" function by refactoring "NewString" to work in the expected way. This maybe cause a BREAKING CHANGE!
* Add a "HandleErrors" method that wraps "FormatErrors" to reduce code paths and increase test coverage
* refactor "NewId" method to allow for "null" as a value for Update mutations where the input can have a null ID field that acts as an "unset" this field
* BREAKING CHANGE: Make new ID type that works like our API expects. The entire codebase has been refactor and method signatures have been changed to use the builtin ID type instead of graphql.ID type. This will fix a number of bugs with Update mutations being unable to "unset" or null out an IDs where permitted.
* Refactored error handling in methods to increase code coverage and reduce branching code paths
* Deprecated `DeleteGroupWithAlias` in favor of `DeleteGroup` handling both ID or Alias
### Dependency
* Bump github.com/relvacode/iso8601 from 1.1.0 to 1.3.0
* Bump github.com/hashicorp/go-retryablehttp from 0.7.1 to 0.7.2
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and is generated by [Changie](https://github.com/miniscruff/changie).## [December 16, 2022](https://github.com/OpsLevel/opslevel-go/compare/v2022.10.22...v2022.12.16)
and is generated by [Changie](https://github.com/miniscruff/changie).## [January 21, 2023](https://github.com/OpsLevel/opslevel-go/compare/v2022.12.16...v2023.1.21)
### Bugfix
* Fixing issue where check notes were being deleted on updates
### Feature
* Add CRUD for custom actions webhook actions
* Add CRUD for custom actions trigger definitions
* Add a new input type "JSON" which supports turning a map[string]string into escaped json when used in mutation input
### Refactor
* removed "NewEmptyString" function by refactoring "NewString" to work in the expected way. This maybe cause a BREAKING CHANGE!
* Add a "HandleErrors" method that wraps "FormatErrors" to reduce code paths and increase test coverage
* refactor "NewId" method to allow for "null" as a value for Update mutations where the input can have a null ID field that acts as an "unset" this field
* BREAKING CHANGE: Make new ID type that works like our API expects. The entire codebase has been refactor and method signatures have been changed to use the builtin ID type instead of graphql.ID type. This will fix a number of bugs with Update mutations being unable to "unset" or null out an IDs where permitted.
* Refactored error handling in methods to increase code coverage and reduce branching code paths
* Deprecated `DeleteGroupWithAlias` in favor of `DeleteGroup` handling both ID or Alias
### Dependency
* Bump github.com/relvacode/iso8601 from 1.1.0 to 1.3.0
* Bump github.com/hashicorp/go-retryablehttp from 0.7.1 to 0.7.2## [December 16, 2022](https://github.com/OpsLevel/opslevel-go/compare/v2022.10.22...v2022.12.16)
### Feature
* Adds support for new team tag type and new tag fields on the service ownership check
* Add query to get recommended runner scale
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package opslevel

const clientVersion = "v2022.12.16"
const clientVersion = "v2023.1.21"

0 comments on commit ed3b106

Please sign in to comment.