diff --git a/extensionsGallery-insider.json b/extensionsGallery-insider.json index 943a53d265dd..1d0e1c77c98c 100644 --- a/extensionsGallery-insider.json +++ b/extensionsGallery-insider.json @@ -4528,14 +4528,14 @@ }, "versions": [ { - "version": "0.4.4", - "lastUpdated": "5/23/2024", + "version": "0.4.5", + "lastUpdated": "7/21/2024", "assetUri": "", "fallbackAssetUri": "fallbackAssetUri", "files": [ { "assetType": "Microsoft.VisualStudio.Services.VSIXPackage", - "source": "https://sqlopsextensions.blob.core.windows.net/extensions/azure-cosmosdb-ads-extension/azure-cosmosdb-ads-extension-0.4.4.vsix" + "source": "https://sqlopsextensions.blob.core.windows.net/extensions/azure-cosmosdb-ads-extension/azure-cosmosdb-ads-extension-0.4.5.vsix" }, { "assetType": "Microsoft.VisualStudio.Services.Icons.Default", diff --git a/extensionsGallery.json b/extensionsGallery.json index e740ca57ad28..4544a57f6ba6 100644 --- a/extensionsGallery.json +++ b/extensionsGallery.json @@ -4528,14 +4528,14 @@ }, "versions": [ { - "version": "0.4.4", - "lastUpdated": "5/23/2024", + "version": "0.4.5", + "lastUpdated": "7/21/2024", "assetUri": "", "fallbackAssetUri": "fallbackAssetUri", "files": [ { "assetType": "Microsoft.VisualStudio.Services.VSIXPackage", - "source": "https://sqlopsextensions.blob.core.windows.net/extensions/azure-cosmosdb-ads-extension/azure-cosmosdb-ads-extension-0.4.4.vsix" + "source": "https://sqlopsextensions.blob.core.windows.net/extensions/azure-cosmosdb-ads-extension/azure-cosmosdb-ads-extension-0.4.5.vsix" }, { "assetType": "Microsoft.VisualStudio.Services.Icons.Default", diff --git a/scripts/validateGalleries.js b/scripts/validateGalleries.js index d50f0f6b2cfe..af5bff03b733 100644 --- a/scripts/validateGalleries.js +++ b/scripts/validateGalleries.js @@ -678,6 +678,7 @@ const validationPromises = [ validateExtensionGallery(STABLE_GALLERY_PATH, STABLE_GALLERY_JSON), ] +/* We are no longer publishing insiders builds so disable checks for now // argv[2] is the target branch name // RC1 branch only needs to check the stable gallery since the insiders gallery won't be updated there. const isRC1 = process.argv[2] === 'extensions/rc1'; @@ -685,4 +686,5 @@ const isRC1 = process.argv[2] === 'extensions/rc1'; if (!isRC1) { validationPromises.push(validateExtensionGallery(INSIDERS_GALLERY_PATH, INSIDERS_GALLERY_JSON)); } +*/ await Promise.all(validationPromises);