added changeset file

Signed-off-by: Camgoz, Fatih <fatih.camgoz@rbc.com>
This commit is contained in:
Camgoz, Fatih
2025-05-16 12:46:15 -04:00
parent 4067231f2c
commit be82d839d4
+10
View File
@@ -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');
```