Skip to content

Commit

Permalink
v0.7.1 Release prep (#737)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroFish91 authored Sep 4, 2024
1 parent 2475736 commit 7832ebc
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## 0.7.1 - 2024-09-04

### Changed
* [[684]](https://github.com/microsoft/vscode-azurecontainerapps/issues/684) Improve Dockerfile path descriptions
* [[685]](https://github.com/microsoft/vscode-azurecontainerapps/pull/685) Improve multiroot workspace support when running create and deploy commands

### Fixed
* [[734]](https://github.com/microsoft/vscode-azurecontainerapps/pull/734) Update scaling range validation to match the portal
* [[735]](https://github.com/microsoft/vscode-azurecontainerapps/pull/735) Remove potential for duplicate message after creating a container app

### Engineering
* [[697]](https://github.com/microsoft/vscode-azurecontainerapps/issues/697) Add projects and test cases for `deployWorkspaceProject`
* [[728]](https://github.com/microsoft/vscode-azurecontainerapps/pull/728) [[736]](https://github.com/microsoft/vscode-azurecontainerapps/pull/736) Update release pipeline to support signing
* [[729]](https://github.com/microsoft/vscode-azurecontainerapps/pull/729) Upgrade packages for various improvements to telemetry reporting

## 0.7.0 - 2024-04-17

This update comes with some major changes to the `Deploy Project from Workspace...` family of commands. We have now expanded support for monorepos by enabling the deployment and saving of multiple app configurations within the same workspace project. New settings configurations can now be found under `containerApps.deploymentConfigurations`. Any older settings will be migrated automatically to the new schema.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-azurecontainerapps",
"displayName": "Azure Container Apps",
"description": "%containerApps.description%",
"version": "0.7.1-alpha.0",
"version": "0.7.1",
"publisher": "ms-azuretools",
"icon": "resources/azure-containerapps.png",
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
Expand Down
8 changes: 5 additions & 3 deletions test/global.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ import * as assert from 'assert';
import * as vscode from 'vscode';
import { ext, registerOnActionStartHandler, registerUIExtensionVariables } from '../extension.bundle';

const longRunningLocalTestsEnabled: boolean = !/^(false|0)?$/i.test(process.env.AzCode_EnableLongRunningTestsLocal || '');
const longRunningRemoteTestsEnabled: boolean = !/^(false|0)?$/i.test(process.env.AzCode_UseAzureFederatedCredentials || '');
// const longRunningLocalTestsEnabled: boolean = !/^(false|0)?$/i.test(process.env.AzCode_EnableLongRunningTestsLocal || '');
// const longRunningRemoteTestsEnabled: boolean = !/^(false|0)?$/i.test(process.env.AzCode_UseAzureFederatedCredentials || '');

export const longRunningTestsEnabled: boolean = longRunningLocalTestsEnabled || longRunningRemoteTestsEnabled;
// export const longRunningTestsEnabled: boolean = longRunningLocalTestsEnabled || longRunningRemoteTestsEnabled;

export const longRunningTestsEnabled: boolean = false;

// Runs before all tests
suiteSetup(async function (this: Mocha.Context): Promise<void> {
Expand Down
2 changes: 1 addition & 1 deletion test/nightly/global.nightly.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const resourceGroupsToDelete = new Set<string>();

suiteSetup(async function (this: Mocha.Context): Promise<void> {
if (!longRunningTestsEnabled) {
this.skip();
return;
}

this.timeout(2 * 60 * 1000);
Expand Down

0 comments on commit 7832ebc

Please sign in to comment.