Skip to content

Commit

Permalink
AU: 2 updated - azure-developer-cli sqltoolbelt
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Feb 11, 2023
1 parent a0fa35d commit 8163ca8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 26 deletions.
25 changes: 4 additions & 21 deletions azure-developer-cli/azure-developer-cli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>azure-developer-cli</id>
<version>0.6.0-beta1</version>
<version>0.6.0-beta2</version>
<packageSourceUrl>https://github.com/flcdrg/au-packages/tree/master/azure-developer-cli</packageSourceUrl>
<owners>flcdrg</owners>
<title>Azure Developer CLI</title>
Expand All @@ -26,29 +26,12 @@ and the [Getting started](https://docs.microsoft.com/azure/developer/azure-devel

### Package notes
This package installs and registers the `azd` command globally for all users. This contrasts with the original PowerShell script [https://aka.ms/install-azd.ps1](https://aka.ms/install-azd.ps1) that installs the CLI per-user.
</description><releaseNotes><![CDATA[### 0.6.0-beta.1 (2023-02-08)
#### Features Added
- [[#1236]](https://github.com/Azure/azure-dev/pull/1236) Support for command and service hooks
- [[#1414]](https://github.com/Azure/azure-dev/pull/1414) Support for installation via Homebrew. Windows Package Manager, and Chocolatey are also now supported.
- [[#1407]](https://github.com/Azure/azure-dev/pull/1407) Improve UX styling for `azd pipeline config`.
- [[#1478]](https://github.com/Azure/azure-dev/pull/1478) Support for multiple Azure tenants.
- [[#1345]](https://github.com/Azure/azure-dev/pull/1345) Core bicep module `appservice.bicep` now supports `ftpsState` as a parameter to configure FTPS upload behavior.
- [[#1497]](https://github.com/Azure/azure-dev/pull/1497) Core bicep module `appservice.bicep` now supports `healthCheckPath` as a parameter to configure the health-check endpoint.
- [[#1403]](https://github.com/Azure/azure-dev/pull/1403) Core bicep module `apim-api.bicep` now links Web App or Function App instances. This allows users on the Azure Portal to navigate to the API management resource directly from the Web App or Function App.
</description><releaseNotes><![CDATA[### 0.6.0-beta.2 (2023-02-10)
#### Bugs Fixed
- [[#1406]](https://github.com/Azure/azure-dev/pull/1424) On Windows, fix MSI installation not updating `azd` in some cases (reported by @lechnerc77, fixed by @heaths)
- [[#1418]](https://github.com/Azure/azure-dev/pull/1418) Display `provision` progress for PostgreSQL server resources.
- [[#1483]](https://github.com/Azure/azure-dev/pull/1483) For Python projects, skip packaging of virtual environment (`.venv` folders)
- [[#1495]](https://github.com/Azure/azure-dev/pull/1495) `init` now restores file executable permissions and initializes a `git` repository automatically.
- [[#1470]](https://github.com/Azure/azure-dev/pull/1470) Improve performance of `azd --help` on Windows for domain-joined users.
- [[#1503]](https://github.com/Azure/azure-dev/pull/1503) Fix display for Function App types in `provision` progress
Thanks to community members: @pamelafox, @lechnerc77 for their contributions in this release.
- [[#1527]](https://github.com/Azure/azure-dev/pull/1527) Fix running specific commands with `--output json` causing stack overflow errors to occur.
- [[#1534]](https://github.com/Azure/azure-dev/pull/1534) Fix running commands with `-e <environment name>` flag or with `AZURE_ENV_NAME` set not being respected. When running in CI environments, this caused prompting to occur, and failing if `--no-prompt` is specified.
]]></releaseNotes>

Expand Down
4 changes: 2 additions & 2 deletions azure-developer-cli/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop'; # stop on all errors
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url = 'https://github.com/Azure/azure-dev/releases/download/azure-dev-cli_0.6.0-beta.1/azd-windows-amd64.zip'
$checksum = '5828a8fc9786a7b223ed8be6cc079195b4213c8130f29b52fd3f2d9823716ba7'
$url = 'https://github.com/Azure/azure-dev/releases/download/azure-dev-cli_0.6.0-beta.2/azd-windows-amd64.zip'
$checksum = 'edabb3b066bd38700f191ffded9e10c470758a4258af10fe40f97303320f374e'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
Expand Down
2 changes: 1 addition & 1 deletion sqltoolbelt/sqltoolbelt.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>sqltoolbelt</id>
<version>2023.02.02</version>
<version>2023.02.09</version>
<packageSourceUrl>https://github.com/flcdrg/au-packages/tree/master/sqltoolbelt</packageSourceUrl>
<owners>kscelfo, flcdrg</owners>
<title>SQL Toolbelt</title>
Expand Down
4 changes: 2 additions & 2 deletions sqltoolbelt/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url = 'https://download.red-gate.com/installers/SQLToolbelt/2023-02-02/SQLToolbelt.exe'
$checksum = 'BD576F6781B1951B13154527B533260866F5A493F975A67FC0A9D0C8F9F51412'
$url = 'https://download.red-gate.com/installers/SQLToolbelt/2023-02-09/SQLToolbelt.exe'
$checksum = 'DCC527DA92FDF31E23F340F6B4C2A8C679998B1D3E9CA906A963E6E66DBD01A5'

$validProductPackageNames = @(
"SQL Compare",
Expand Down

0 comments on commit 8163ca8

Please sign in to comment.