From 7b89e412121c81be658fc3d4909f155d487bffef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 17:19:08 -0400 Subject: [PATCH] Release v0.9.0 (#41) --- .../ENHANCEMENTS-20230925-190924.yaml | 6 ------ .../ENHANCEMENTS-20231011-122738.yaml | 6 ------ .../unreleased/FEATURES-20231006-135721.yaml | 5 ----- .changes/v0.9.0.md | 17 +++++++++++++++++ CHANGELOG.md | 17 +++++++++++++++++ bastionzero/bastionzero.go | 2 +- 6 files changed, 35 insertions(+), 18 deletions(-) delete mode 100644 .changes/unreleased/ENHANCEMENTS-20230925-190924.yaml delete mode 100644 .changes/unreleased/ENHANCEMENTS-20231011-122738.yaml delete mode 100644 .changes/unreleased/FEATURES-20231006-135721.yaml create mode 100644 .changes/v0.9.0.md diff --git a/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml b/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml deleted file mode 100644 index ec66d9d..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add - mfaDuration to the OrganizationControlsPolicy type' -time: 2023-09-25T19:09:24.163112-04:00 -custom: - Issues: "36" diff --git a/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml b/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml deleted file mode 100644 index c2fdee8..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'targets/database: Add new field DatabaseAuthenticationConfig and deprecate - SplitCert and DatabaseType' -time: 2023-10-11T12:27:38.297052484-05:00 -custom: - Issues: "40" diff --git a/.changes/unreleased/FEATURES-20231006-135721.yaml b/.changes/unreleased/FEATURES-20231006-135721.yaml deleted file mode 100644 index 9cba31d..0000000 --- a/.changes/unreleased/FEATURES-20231006-135721.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: 'targets/database: Add support for GET list of database authentication configs' -time: 2023-10-06T13:57:21.309141752-05:00 -custom: - Issues: "40" diff --git a/.changes/v0.9.0.md b/.changes/v0.9.0.md new file mode 100644 index 0000000..f2a3ca3 --- /dev/null +++ b/.changes/v0.9.0.md @@ -0,0 +1,17 @@ +## v0.9.0 (October 18, 2023) + +FEATURES: + + +* policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add mfaDuration to the OrganizationControlsPolicy type ([#36](https://github.com/bastionzero/bastionzero-sdk-go/issues/36)). + + +* targets/database: Add support for GET list of database authentication configs ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + +ENHANCEMENTS: + + +* targets/database: Add new field DatabaseAuthenticationConfig and deprecate SplitCert and DatabaseType ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 793c13a..9f55eac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## v0.9.0 (October 18, 2023) + +FEATURES: + + +* policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add mfaDuration to the OrganizationControlsPolicy type ([#36](https://github.com/bastionzero/bastionzero-sdk-go/issues/36)). + + +* targets/database: Add support for GET list of database authentication configs ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + +ENHANCEMENTS: + + +* targets/database: Add new field DatabaseAuthenticationConfig and deprecate SplitCert and DatabaseType ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + ## v0.8.0 (September 27, 2023) FEATURES: diff --git a/bastionzero/bastionzero.go b/bastionzero/bastionzero.go index 132596b..dc20037 100644 --- a/bastionzero/bastionzero.go +++ b/bastionzero/bastionzero.go @@ -34,7 +34,7 @@ import ( ) const ( - libraryVersion = "v0.8.0" + libraryVersion = "v0.9.0" // DefaultBaseURL is the default BastionZero API URL the Client communicates // with DefaultBaseURL = "https://cloud.bastionzero.com/"