Skip to content

Commit

Permalink
Merged PR 5749: Add 6.1.1 change log
Browse files Browse the repository at this point in the history
Add 6.1.1 change log
  • Loading branch information
TravisEz13 committed Nov 12, 2018
1 parent 472a2bd commit deab7ad
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
1 change: 1 addition & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,7 @@ v6.0.0
v6.0.1
v6.0.2
v6.1.0
v6.1.1
validatenotnullorempty
versioned
versioning
Expand Down
45 changes: 45 additions & 0 deletions .vsts-ci/spelling.yml
Original file line number Diff line number Diff line change
@@ -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()
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit deab7ad

Please sign in to comment.