From 04cc5e76b1d43a44227d159091f02f7241676229 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 18:15:30 -0400 Subject: [PATCH] Release v0.8.0 (#39) --- .../unreleased/BUG FIXES-20230927-012225.yaml | 6 ----- .../ENHANCEMENTS-20230927-012111.yaml | 5 ---- .../unreleased/FEATURES-20230912-123837.yaml | 5 ---- .../unreleased/FEATURES-20230927-012000.yaml | 5 ---- .changes/v0.8.0.md | 23 +++++++++++++++++++ CHANGELOG.md | 23 +++++++++++++++++++ bastionzero/bastionzero.go | 2 +- 7 files changed, 47 insertions(+), 22 deletions(-) delete mode 100644 .changes/unreleased/BUG FIXES-20230927-012225.yaml delete mode 100644 .changes/unreleased/ENHANCEMENTS-20230927-012111.yaml delete mode 100644 .changes/unreleased/FEATURES-20230912-123837.yaml delete mode 100644 .changes/unreleased/FEATURES-20230927-012000.yaml create mode 100644 .changes/v0.8.0.md diff --git a/.changes/unreleased/BUG FIXES-20230927-012225.yaml b/.changes/unreleased/BUG FIXES-20230927-012225.yaml deleted file mode 100644 index 34996ba..0000000 --- a/.changes/unreleased/BUG FIXES-20230927-012225.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'connections/connectiontype: Fix mapping of `Kube` to match expected value; it - now maps to `Kubernetes`' -time: 2023-09-27T01:22:25.375712-04:00 -custom: - Issues: "37" diff --git a/.changes/unreleased/ENHANCEMENTS-20230927-012111.yaml b/.changes/unreleased/ENHANCEMENTS-20230927-012111.yaml deleted file mode 100644 index 731512b..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20230927-012111.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: ENHANCEMENTS -body: 'connections/connectiontype: Add `Rdp` and `SqlServer`' -time: 2023-09-27T01:21:11.494876-04:00 -custom: - Issues: "37" diff --git a/.changes/unreleased/FEATURES-20230912-123837.yaml b/.changes/unreleased/FEATURES-20230912-123837.yaml deleted file mode 100644 index e501095..0000000 --- a/.changes/unreleased/FEATURES-20230912-123837.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: "targets/bzero: Add new endpoint that updates an agent's config for supported keys" -time: 2023-09-12T12:38:37.196317-04:00 -custom: - Issues: "34" diff --git a/.changes/unreleased/FEATURES-20230927-012000.yaml b/.changes/unreleased/FEATURES-20230927-012000.yaml deleted file mode 100644 index 431c644..0000000 --- a/.changes/unreleased/FEATURES-20230927-012000.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: 'connections: Add endpoint to close a single connection' -time: 2023-09-27T01:20:00.79065-04:00 -custom: - Issues: "37" diff --git a/.changes/v0.8.0.md b/.changes/v0.8.0.md new file mode 100644 index 0000000..86b3b10 --- /dev/null +++ b/.changes/v0.8.0.md @@ -0,0 +1,23 @@ +## v0.8.0 (September 27, 2023) + +FEATURES: + + +* targets/bzero: Add new endpoint that updates an agent's config for supported keys ([#34](https://github.com/bastionzero/bastionzero-sdk-go/issues/34)). + + +* connections: Add endpoint to close a single connection ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + +ENHANCEMENTS: + + +* connections/connectiontype: Add `Rdp` and `SqlServer` ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + +BUG FIXES: + + +* connections/connectiontype: Fix mapping of `Kube` to match expected value; it now maps to `Kubernetes` ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + diff --git a/CHANGELOG.md b/CHANGELOG.md index f42805b..793c13a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## v0.8.0 (September 27, 2023) + +FEATURES: + + +* targets/bzero: Add new endpoint that updates an agent's config for supported keys ([#34](https://github.com/bastionzero/bastionzero-sdk-go/issues/34)). + + +* connections: Add endpoint to close a single connection ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + +ENHANCEMENTS: + + +* connections/connectiontype: Add `Rdp` and `SqlServer` ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + +BUG FIXES: + + +* connections/connectiontype: Fix mapping of `Kube` to match expected value; it now maps to `Kubernetes` ([#37](https://github.com/bastionzero/bastionzero-sdk-go/issues/37)). + + ## v0.7.0 (September 05, 2023) FEATURES: diff --git a/bastionzero/bastionzero.go b/bastionzero/bastionzero.go index d9a54b4..132596b 100644 --- a/bastionzero/bastionzero.go +++ b/bastionzero/bastionzero.go @@ -34,7 +34,7 @@ import ( ) const ( - libraryVersion = "v0.7.0" + libraryVersion = "v0.8.0" // DefaultBaseURL is the default BastionZero API URL the Client communicates // with DefaultBaseURL = "https://cloud.bastionzero.com/"