From e0b6a1db071d31da7f6dbbb5d390f34b7100a334 Mon Sep 17 00:00:00 2001 From: Matthew Lynch Date: Wed, 12 Nov 2025 15:56:44 -0600 Subject: [PATCH 1/2] add support for quarto-shiny on connect cloud --- internal/clients/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/clients/types/types.go b/internal/clients/types/types.go index 8fa536be0..f2f588cfb 100644 --- a/internal/clients/types/types.go +++ b/internal/clients/types/types.go @@ -174,7 +174,7 @@ func CloudContentTypeFromPublisherType(contentType contenttypes.ContentType) (Co return ContentTypeShiny, nil case contenttypes.ContentTypePythonStreamlit: return ContentTypeStreamlit, nil - case contenttypes.ContentTypeQuartoDeprecated, contenttypes.ContentTypeQuarto: + case contenttypes.ContentTypeQuartoDeprecated, contenttypes.ContentTypeQuarto, contenttypes.ContentTypeQuartoShiny: return ContentTypeQuarto, nil case contenttypes.ContentTypeRMarkdown: return ContentTypeRMarkdown, nil From 82e8db3c9ca88bb78539a19078fc1465520021b3 Mon Sep 17 00:00:00 2001 From: Matthew Lynch Date: Wed, 12 Nov 2025 15:58:57 -0600 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e085df10..1089677a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 (e.g., `/connect`). (#2999) - Fixed text and button alignment in webview (#3071) +### Added + +- Added support for deploying Quarto Shiny content to Connect Cloud (#3265) + ## [1.24.0] ### Added