Skip to content

Commit

Permalink
Merge branch 'release/extensions' into extensions/rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles-Gagnon committed Jul 31, 2024
2 parents 37aae7f + ec26a81 commit 28e2e43
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions extensionsGallery-insider.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions extensionsGallery.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions scripts/validateGalleries.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,11 +678,13 @@ 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';
if (!isRC1) {
validationPromises.push(validateExtensionGallery(INSIDERS_GALLERY_PATH, INSIDERS_GALLERY_JSON));
}
*/
await Promise.all(validationPromises);

0 comments on commit 28e2e43

Please sign in to comment.