From be82d839d45fade67c500a3f9ac41bdcb67fc022 Mon Sep 17 00:00:00 2001 From: "Camgoz, Fatih" Date: Fri, 16 May 2025 12:46:15 -0400 Subject: [PATCH] added changeset file Signed-off-by: Camgoz, Fatih --- .changeset/wise-teeth-study.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .changeset/wise-teeth-study.md diff --git a/.changeset/wise-teeth-study.md b/.changeset/wise-teeth-study.md new file mode 100644 index 0000000000..a0ee07cc60 --- /dev/null +++ b/.changeset/wise-teeth-study.md @@ -0,0 +1,10 @@ +--- +'@backstage/plugin-catalog-backend-module-azure': minor +--- + +isCloud function now also checks if hostname endswith visualstudio.com along with dev.azure.com + +```diff +- const isCloud = (host: string) => host === 'dev.azure.com'; ++ const isCloud = (host: string) => host === 'dev.azure.com' || host.endsWith('visualstudio.com'); +```