From be16b6572e3c3838d4702f861534dade0435ba0a Mon Sep 17 00:00:00 2001 From: Ashley Jeffs Date: Mon, 3 Oct 2022 19:02:22 +0100 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 2 ++ internal/impl/redis/input_list.go | 2 +- website/docs/components/inputs/redis_list.md | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3d13c75c7..f93b2ba46a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. ## Unreleased +## 4.9.0 - 2022-10-03 + ### Added - New `parquet` input for reading a batch of Parquet files from disk. diff --git a/internal/impl/redis/input_list.go b/internal/impl/redis/input_list.go index 2bc9c41f80..48aa1a29a0 100644 --- a/internal/impl/redis/input_list.go +++ b/internal/impl/redis/input_list.go @@ -24,7 +24,7 @@ func redisListInputConfig() *service.ConfigSpec { return spec. Field(service.NewStringField("key"). Description("The key of a list to read from.")). - Field(service.NewInputMaxInFlightField()). + Field(service.NewInputMaxInFlightField().Version("4.9.0")). Field(service.NewDurationField("timeout"). Description("The length of time to poll for new messages before reattempting."). Default("5s"). diff --git a/website/docs/components/inputs/redis_list.md b/website/docs/components/inputs/redis_list.md index b657808910..ac2ce1ab3b 100644 --- a/website/docs/components/inputs/redis_list.md +++ b/website/docs/components/inputs/redis_list.md @@ -256,6 +256,7 @@ Optionally sets a limit on the number of messages that can be flowing through a Type: `int` Default: `0` +Requires version 4.9.0 or newer ### `timeout`