From 9386ff8b9906ec95637706ce90f158306793b05d Mon Sep 17 00:00:00 2001 From: OpsLevel Bots Date: Fri, 16 Aug 2024 21:20:26 +0000 Subject: [PATCH] Cut Release 'v2024.8.16' --- .changes/unreleased/Bugfix-20240813-123252.yaml | 4 ---- .changes/unreleased/Feature-20240808-123025.yaml | 3 --- .changes/unreleased/Feature-20240815-092848.yaml | 3 --- .changes/unreleased/Feature-20240816-112558.yaml | 3 --- .changes/unreleased/Refactor-20240807-122518.yaml | 3 --- .changes/unreleased/Refactor-20240809-144622.yaml | 3 --- .changes/v2024.8.16.md | 10 ++++++++++ CHANGELOG.md | 11 +++++++++++ version.go | 2 +- 9 files changed, 22 insertions(+), 20 deletions(-) delete mode 100644 .changes/unreleased/Bugfix-20240813-123252.yaml delete mode 100644 .changes/unreleased/Feature-20240808-123025.yaml delete mode 100644 .changes/unreleased/Feature-20240815-092848.yaml delete mode 100644 .changes/unreleased/Feature-20240816-112558.yaml delete mode 100644 .changes/unreleased/Refactor-20240807-122518.yaml delete mode 100644 .changes/unreleased/Refactor-20240809-144622.yaml create mode 100644 .changes/v2024.8.16.md diff --git a/.changes/unreleased/Bugfix-20240813-123252.yaml b/.changes/unreleased/Bugfix-20240813-123252.yaml deleted file mode 100644 index 32527645..00000000 --- a/.changes/unreleased/Bugfix-20240813-123252.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: Bugfix -body: Fix bug where AlertSource and InfraResource queries failed because field name should be `ownerLocked` instead of `locked` - field -time: 2024-08-13T12:32:52.744704-04:00 diff --git a/.changes/unreleased/Feature-20240808-123025.yaml b/.changes/unreleased/Feature-20240808-123025.yaml deleted file mode 100644 index 0ecd269c..00000000 --- a/.changes/unreleased/Feature-20240808-123025.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Add support for Google Cloud Integrations -time: 2024-08-08T12:30:25.219009-04:00 diff --git a/.changes/unreleased/Feature-20240815-092848.yaml b/.changes/unreleased/Feature-20240815-092848.yaml deleted file mode 100644 index a022b26b..00000000 --- a/.changes/unreleased/Feature-20240815-092848.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: add filter query param to ListUsers() to filter out deactivated users -time: 2024-08-15T09:28:48.041582-05:00 diff --git a/.changes/unreleased/Feature-20240816-112558.yaml b/.changes/unreleased/Feature-20240816-112558.yaml deleted file mode 100644 index 27121d25..00000000 --- a/.changes/unreleased/Feature-20240816-112558.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: add ManagedAliases field and UniqueIdentifiers member function to System struct -time: 2024-08-16T11:25:58.301102-05:00 diff --git a/.changes/unreleased/Refactor-20240807-122518.yaml b/.changes/unreleased/Refactor-20240807-122518.yaml deleted file mode 100644 index 1b1fe79e..00000000 --- a/.changes/unreleased/Refactor-20240807-122518.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Refactor -body: Updated graphql operation names for infrastructure resources, and their schemas. -time: 2024-08-07T12:25:18.367734-04:00 diff --git a/.changes/unreleased/Refactor-20240809-144622.yaml b/.changes/unreleased/Refactor-20240809-144622.yaml deleted file mode 100644 index bcd5c0db..00000000 --- a/.changes/unreleased/Refactor-20240809-144622.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Refactor -body: BREAKING CHANGE - must explicitly access `Aliases`, `OwnershipTagKeys`, `TagsOverrideOwnership` on Integration nested Fragment structs to avoid `ambiguous selector` errors -time: 2024-08-09T14:46:22.462174-04:00 diff --git a/.changes/v2024.8.16.md b/.changes/v2024.8.16.md new file mode 100644 index 00000000..7dae734b --- /dev/null +++ b/.changes/v2024.8.16.md @@ -0,0 +1,10 @@ +## [August 16, 2024](https://github.com/OpsLevel/opslevel-go/compare/v2024.8.1...v2024.8.16) +### Bugfix +* Fix bug where AlertSource and InfraResource queries failed because field name should be `ownerLocked` instead of `locked` field +### Feature +* Add support for Google Cloud Integrations +* add filter query param to ListUsers() to filter out deactivated users +* add ManagedAliases field and UniqueIdentifiers member function to System struct +### Refactor +* Updated graphql operation names for infrastructure resources, and their schemas. +* BREAKING CHANGE - must explicitly access `Aliases`, `OwnershipTagKeys`, `TagsOverrideOwnership` on Integration nested Fragment structs to avoid `ambiguous selector` errors diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f5a7548..72427d3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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). +## [August 16, 2024](https://github.com/OpsLevel/opslevel-go/compare/v2024.8.1...v2024.8.16) +### Bugfix +* Fix bug where AlertSource and InfraResource queries failed because field name should be `ownerLocked` instead of `locked` field +### Feature +* Add support for Google Cloud Integrations +* add filter query param to ListUsers() to filter out deactivated users +* add ManagedAliases field and UniqueIdentifiers member function to System struct +### Refactor +* Updated graphql operation names for infrastructure resources, and their schemas. +* BREAKING CHANGE - must explicitly access `Aliases`, `OwnershipTagKeys`, `TagsOverrideOwnership` on Integration nested Fragment structs to avoid `ambiguous selector` errors + ## [August 01, 2024](https://github.com/OpsLevel/opslevel-go/compare/v2024.7.5...v2024.8.1) ### Feature * Add support for Azure Resource Integrations diff --git a/version.go b/version.go index b07d0223..7f7342cf 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package opslevel -const clientVersion = "v2024.8.1" +const clientVersion = "v2024.8.16"