From 8da5c13354c7e9f84ab9beeec635f435031079c9 Mon Sep 17 00:00:00 2001 From: JakeSCahill Date: Tue, 7 Jul 2026 11:19:47 +0100 Subject: [PATCH 1/2] docs: add try_catch processor to Cloud The try_catch processor (Connect 4.98.0) is cloud-supported but had no cloud-docs page. Adds the single-sourced stub, nav entry, and What's New entry, following the string_split precedent (#547). Co-Authored-By: Claude Fable 5 --- modules/ROOT/nav.adoc | 1 + .../pages/connect/components/processors/try_catch.adoc | 4 ++++ modules/get-started/pages/whats-new-cloud.adoc | 5 +++++ 3 files changed, 10 insertions(+) create mode 100644 modules/develop/pages/connect/components/processors/try_catch.adoc diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index 413b812c8..39df0cc7b 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -246,6 +246,7 @@ **** xref:develop:connect/components/processors/sync_response.adoc[] **** xref:develop:connect/components/processors/text_chunker.adoc[] **** xref:develop:connect/components/processors/try.adoc[] +**** xref:develop:connect/components/processors/try_catch.adoc[] **** xref:develop:connect/components/processors/unarchive.adoc[] **** xref:develop:connect/components/processors/while.adoc[] **** xref:develop:connect/components/processors/workflow.adoc[] diff --git a/modules/develop/pages/connect/components/processors/try_catch.adoc b/modules/develop/pages/connect/components/processors/try_catch.adoc new file mode 100644 index 000000000..9bcbe5fcb --- /dev/null +++ b/modules/develop/pages/connect/components/processors/try_catch.adoc @@ -0,0 +1,4 @@ += try_catch +:page-aliases: components:processors/try_catch.adoc + +include::connect:components:processors/try_catch.adoc[tag=single-source] diff --git a/modules/get-started/pages/whats-new-cloud.adoc b/modules/get-started/pages/whats-new-cloud.adoc index 6d0b78680..c143a64f5 100644 --- a/modules/get-started/pages/whats-new-cloud.adoc +++ b/modules/get-started/pages/whats-new-cloud.adoc @@ -28,6 +28,11 @@ A new guide walks Cloud customers through configuring IAM Roles for Service Acco You can now set cluster-wide defaults for new topics on BYOC and Dedicated clusters. The xref:reference:properties/cluster-properties.adoc#default_topic_partitions[`default_topic_partitions`], xref:reference:properties/cluster-properties.adoc#log_retention_ms[`log_retention_ms`], and xref:reference:properties/cluster-properties.adoc#retention_bytes[`retention_bytes`] cluster properties are now customer-managed. The default topic retention period (`log_retention_ms`) previously could only be changed by Redpanda support. See xref:manage:cluster-maintenance/config-cluster.adoc[Configure Cluster Properties]. +=== Redpanda Connect updates + +* Processors: +** xref:develop:connect/components/processors/try_catch.adoc[try_catch]: Combines the behavior of the `try` and `catch` processors into a single block with an explicit recovery path. + == May 2026 === Redpanda Console: redesigned Security page From f70354170561dd245a51e084329c779379254f3c Mon Sep 17 00:00:00 2001 From: JakeSCahill Date: Tue, 7 Jul 2026 14:48:48 +0100 Subject: [PATCH 2/2] chore: retrigger preview now that rp-connect-docs#452 is merged Co-Authored-By: Claude Fable 5