From ba1a51b1f03b36343296a10a39402e6bf3e6580e Mon Sep 17 00:00:00 2001 From: Cody Bruno Date: Fri, 29 Sep 2023 13:32:11 -0400 Subject: [PATCH] Add CHANGELOG for v0.24.0 --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc0dfd9..df48647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v0.24.0 [2023-09-29] + +_Deprecated_ + +- The `source_type` config argument has been deprecated and will be removed in the next major version. Please use the `source_types` config argument instead. If both config arguments are set, `source_types` will take precedence. For backward compatibility, please see below for old and new value equivalents: ([#167](https://github.com/turbot/steampipe-plugin-kubernetes/pull/167)) + - `source_type = 'all'` : `source_types = ["deployed", "helm", "manifest"]` + - `source_type = 'deployed'` : `source_types = ["deployed"]` + - `source_type = 'helm'` : `source_types = ["helm"]` + - `source_type = 'manifest'` : `source_types = ["manifest"]` + +_What's new?_ + +- Added the `source_types` config argument, which allows specifying a combination of source types to load per connection. ([#167](https://github.com/turbot/steampipe-plugin-kubernetes/pull/167)) + ## v0.23.0 [2023-09-26] _What's new?_