diff --git a/.changes/unreleased/Bugfix-20231213-113813.yaml b/.changes/unreleased/Bugfix-20231213-113813.yaml deleted file mode 100644 index b52d4b9d..00000000 --- a/.changes/unreleased/Bugfix-20231213-113813.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Bugfix -body: fix error logged when JSONString passed to fmt.Sprintf() -time: 2023-12-13T11:38:13.335444-06:00 diff --git a/.changes/unreleased/Dependency-20231205-153351.yaml b/.changes/unreleased/Dependency-20231205-153351.yaml deleted file mode 100644 index 3847dbf1..00000000 --- a/.changes/unreleased/Dependency-20231205-153351.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: "Dependency" -body: "Bump github.com/hasura/go-graphql-client from 0.10.0 to 0.10.1" -time: 2023-12-05T15:33:51.00000Z - diff --git a/.changes/unreleased/Feature-20231115-143536.yaml b/.changes/unreleased/Feature-20231115-143536.yaml deleted file mode 100644 index 4785d358..00000000 --- a/.changes/unreleased/Feature-20231115-143536.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Add support for Property Definitions -time: 2023-12-07T15:22:26.29648-05:00 diff --git a/.changes/unreleased/Feature-20231201-182930.yaml b/.changes/unreleased/Feature-20231201-182930.yaml deleted file mode 100644 index 07c648c5..00000000 --- a/.changes/unreleased/Feature-20231201-182930.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Add `NewJSONInput` which creates a properly marshalled input type for graphql -time: 2023-12-01T18:29:30.253906-06:00 diff --git a/.changes/unreleased/Feature-20231211-113343.yaml b/.changes/unreleased/Feature-20231211-113343.yaml deleted file mode 100644 index d23cccb5..00000000 --- a/.changes/unreleased/Feature-20231211-113343.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: add func to generate yaml files from our structs -time: 2023-12-11T11:33:43.214239-06:00 diff --git a/.changes/unreleased/Feature-20231211-195315.yaml b/.changes/unreleased/Feature-20231211-195315.yaml deleted file mode 100644 index c3eac6b5..00000000 --- a/.changes/unreleased/Feature-20231211-195315.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Add ability to set the parent system of a service during create or update -time: 2023-12-11T19:53:15.713772-06:00 diff --git a/.changes/unreleased/Feature-20231212-111729.yaml b/.changes/unreleased/Feature-20231212-111729.yaml deleted file mode 100644 index 72ccfa87..00000000 --- a/.changes/unreleased/Feature-20231212-111729.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: add default struct tags which provide default values for a struct to help with sample yaml generation -time: 2023-12-12T11:17:29.938129-06:00 diff --git a/.changes/v2023.12.14.md b/.changes/v2023.12.14.md new file mode 100644 index 00000000..ce23c6f5 --- /dev/null +++ b/.changes/v2023.12.14.md @@ -0,0 +1,11 @@ +## [December 14, 2023](https://github.com/OpsLevel/opslevel-go/compare/v2023.11.16...v2023.12.14) +### Bugfix +* fix error logged when JSONString passed to fmt.Sprintf() +### Feature +* Add `NewJSONInput` which creates a properly marshalled input type for graphql +* Add support for Property Definitions +* add func to generate yaml files from our structs +* Add ability to set the parent system of a service during create or update +* add default struct tags which provide default values for a struct to help with sample yaml generation +### Dependency +* Bump github.com/hasura/go-graphql-client from 0.10.0 to 0.10.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 436ffa22..2f66d1b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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 14, 2023](https://github.com/OpsLevel/opslevel-go/compare/v2023.11.16...v2023.12.14) +### Bugfix +* fix error logged when JSONString passed to fmt.Sprintf() +### Feature +* Add `NewJSONInput` which creates a properly marshalled input type for graphql +* Add support for Property Definitions +* add func to generate yaml files from our structs +* Add ability to set the parent system of a service during create or update +* add default struct tags which provide default values for a struct to help with sample yaml generation +### Dependency +* Bump github.com/hasura/go-graphql-client from 0.10.0 to 0.10.1 + ## [November 16, 2023](https://github.com/OpsLevel/opslevel-go/compare/v2023.10.20...v2023.11.16) ### Bugfix * make UserIdentifierInput fields pointers, fixing the omitempty struct tag behavior diff --git a/version.go b/version.go index 146d7316..168b9340 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package opslevel -const clientVersion = "v2023.11.16" +const clientVersion = "v2023.12.14"