Skip to content

Commit

Permalink
Merge pull request #227 from Azure-Samples/users/aipyne/release181
Browse files Browse the repository at this point in the history
Release 1.8.1
  • Loading branch information
aishik-pyne authored Apr 3, 2020
2 parents 7e41153 + 96fcf22 commit 4a64a41
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
6 changes: 5 additions & 1 deletion blockchain-workbench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Azure Blockchain Workbench Release Notes - Version 1.8.1

Thank you all for your continued support and interest in Azure Blockchain Workbench. We’re excited to announce the release of Workbench 1.8.1, in which we have resolved all the accessibility bugs, Azure Blockchain Workbench is now fully compliant with accessibility. We have also fixed a bug in the scripts that is used to connect AAD to your Workbench to mitigate some breaking changes in the azure cloud shell. You can deploy a new instance of Workbench through the Azure Portal or upgrade your existing deployments to 1.8.1 using our [upgrade script](https://github.com/Azure-Samples/blockchain/tree/master/blockchain-workbench/scripts/upgrade/readme.md).

# Azure Blockchain Workbench Release Notes - Version 1.8.0

Thank you all for your continued support and interest in Azure Blockchain Workbench. We’re excited to announce the release of Workbench 1.8.0, in which we have made component improvements and added availability in more Azure Regions. You can deploy a new instance of Workbench through the Azure Portal or upgrade your existing deployments to 1.8.0 using our [upgrade script](https://github.com/Azure-Samples/blockchain/tree/master/blockchain-workbench/scripts/upgrade/readme.md).
Thank you all for your continued support and interest in Azure Blockchain Workbench. We’re excited to announce the release of Workbench 1.8.0, in which we have made component improvements and added availability in more Azure Regions.

This update includes the following improvements:

Expand Down
2 changes: 1 addition & 1 deletion blockchain-workbench/latest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0
1.8.1
2 changes: 1 addition & 1 deletion blockchain-workbench/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ![Microsoft Azure Blockchain Workbench](./media/logo_small.png) Microsoft Azure Blockchain Workbench

*New!* Version 1.8.0 of Workbench has been released. Please see our [Release Notes](./CHANGELOG.md) and [Upgrade Instructions](./scripts/upgrade/readme.md) if you're running an older version.
*New!* Version 1.8.1 of Workbench has been released. Please see our [Release Notes](./CHANGELOG.md) and [Upgrade Instructions](./scripts/upgrade/readme.md) if you're running an older version.

This repository contains content and samples in number of areas, including:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<#
.SYNOPSIS
Upgrades Azure Blockchain Workbench to version 1.8.0.
Upgrades Azure Blockchain Workbench to version 1.8.1.
.DESCRIPTION
Upgrades Azure Blockchain Workbench to version 1.8.0.
Upgrades Azure Blockchain Workbench to version 1.8.1.
.PARAMETER SubscriptionID
SubscriptionID to create or locate all resources.
Expand All @@ -24,24 +24,25 @@ None. You cannot pipe objects to this script.
None. This script does not generate any output.
.EXAMPLE
C:\tmp> .\azureBlockchainWorkbenchUpgradeTov1_8_0.ps1 -SubscriptionID "<subscription_id>" -ResourceGroupName "<workbench-resource-group-name>"
C:\tmp> .\azureBlockchainWorkbenchUpgradeTov1_8_1.ps1 -SubscriptionID "<subscription_id>" -ResourceGroupName "<workbench-resource-group-name>"
#>


param(
[Parameter(Mandatory = $true)][string]$SubscriptionID,
[Parameter(Mandatory = $true)][string]$ResourceGroupName,
[Parameter(Mandatory = $false)][string]$TargetDockerTag = "1.8.0",
[Parameter(Mandatory = $false)][string]$ArtifactsRoot = "https://catalogartifact.azureedge.net/publicartifacts/microsoft-azure-blockchain.azure-blockchain-workbench-466ec686-381e-4fbc-856a-fd1e76aaddaa-azure-blockchain-workbench/Artifacts",
[Parameter(Mandatory = $false)][string]$TargetDockerTag = "1.8.1",
[Parameter(Mandatory = $false)][string]$ArtifactsRoot = "https://catalogartifact.azureedge.net/publicartifacts/microsoft-azure-blockchain.azure-blockchain-workbench-8504ab85-6940-42ed-8b4e-5f05a4d93b69-azure-blockchain-workbench/Artifacts",
[Parameter(Mandatory = $false)][string]$DockerRepository = "blockchainworkbenchprod.azurecr.io",
[Parameter(Mandatory = $false)][string]$DockerLogin = $null,
[Parameter(Mandatory = $false)][string]$DockerPw = $null,
[Parameter(Mandatory = $false)][switch]$TestApi,
[Parameter(Mandatory = $false)][switch]$TestEnv
)

Set-Item Env:\SuppressAzurePowerShellBreakingChangeWarnings "true"
# Comment the next line in before publishing
# Set-Item Env:\SuppressAzurePowerShellBreakingChangeWarnings "true"

#############################################
# Constants
Expand Down Expand Up @@ -586,4 +587,4 @@ if ($TestApi) {
# Script exit
#############################################

Write-Output "Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.8.0."
Write-Output "Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.8.1."
2 changes: 1 addition & 1 deletion blockchain-workbench/scripts/upgrade/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cd; Invoke-WebRequest -Uri https://aka.ms/workbenchUpgradeScript -OutFile azureB
When the upgrade completes, you will see the following message:

```powershell
Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.8.0.
Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.8.1.
```

Expand Down

0 comments on commit 4a64a41

Please sign in to comment.