From deab7add4fbbe6aa5c61609a23341f06179d9640 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Mon, 12 Nov 2018 19:02:51 +0000 Subject: [PATCH] Merged PR 5749: Add 6.1.1 change log Add 6.1.1 change log --- .spelling | 1 + .vsts-ci/spelling.yml | 45 +++++++++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 27 ++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 .vsts-ci/spelling.yml diff --git a/.spelling b/.spelling index bfd9d917eab..a415cb5f9d3 100644 --- a/.spelling +++ b/.spelling @@ -727,6 +727,7 @@ v6.0.0 v6.0.1 v6.0.2 v6.1.0 +v6.1.1 validatenotnullorempty versioned versioning diff --git a/.vsts-ci/spelling.yml b/.vsts-ci/spelling.yml new file mode 100644 index 00000000000..9401627c933 --- /dev/null +++ b/.vsts-ci/spelling.yml @@ -0,0 +1,45 @@ +name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr) +trigger: + branches: + include: + - master + - release* + paths: + include: + - '*.md' +pr: + branches: + include: + - master + - release* + paths: + include: + - '*.md' + +resources: +- repo: self + clean: true +phases: +- phase: Linux_CI + + queue: + name: Hosted Ubuntu 1604 + steps: + - powershell: | + Get-ChildItem -Path env: + displayName: Capture environment + condition: succeededOrFailed() + + - bash: | + sudo npm install -g markdown-spellcheck@0.11.0 + displayName: Install mdspell + condition: succeededOrFailed() + + - powershell: Write-Host "##vso[build.updatebuildnumber]$env:BUILD_SOURCEBRANCHNAME-$env:BUILD_SOURCEVERSION-$((get-date).ToString("yyyyMMddhhmmss"))" + displayName: Set Build Name for Non-PR + condition: ne(variables['Build.Reason'], 'PullRequest') + + - bash: | + mdspell '**/*.md' '!**/Pester/**/*.md' --ignore-numbers --ignore-acronyms --report --en-us; + displayName: Test Spelling + condition: succeededOrFailed() diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b20ef5bf20..8a778e51c52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## v6.1.1 - 2018-11-13 + +### Engine Updates and Fixes + +- Fix issue with logging the null character in `ScriptBlock` logging (Internal 5607) +- Consolidation of all Windows PowerShell work ported to 6.1 (Internal 5233) + +### General Cmdlet Updates and Fixes + +- Use `ZipFile` and `ExtractToDirectory` APIs to extract zip file (Internal 5608) + +### Build and Packaging Improvements + +- Update the Archive module version (Internal 5671) +- Update to .NET Core `2.1.5` with SDK `2.1.403` (#7936) (Thanks @iSazonov!) +- Disable package major upgrade tests for release branch (Internal 5209) +- Bump versions for dependencies (Internal 5612) +- Port changes to allow `AzDevOps` NuGet feeds for macOS build (Internal 5716) +- Port macOS changes from GitHub (#8189, #8188, #8185) +- Add function to create a new `nuget.config` file (#8170) +- Updated `wxs` file to match published packages (Internal 5660) + +### Tests + +- Change API to match cmdlet which is more reliable in `AzDevOps` Pipelines Windows (#8003) +- Fix conflict with `Get-AdlStoreChildItem` from `az` module in tab completion tests (#8167) + ## v6.1.0 - 2018-09-13 ### Engine Updates and Fixes