Skip to content

Commit

Permalink
Merge branch 'master' into latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcturusZhang committed Mar 2, 2020
2 parents dee1b8d + 090dc0e commit 3eb252e
Show file tree
Hide file tree
Showing 5,008 changed files with 60,806 additions and 68,781 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
80 changes: 80 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,85 @@
# CHANGELOG

## `v40.0.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| logic | 2019-05-01 |
| maps | 2020-02-01-preview |
| peering | 2020-01-01-preview |

### Updated Packages

| Package Name | API Version |
| -----------: | :---------: |
| devspaces | 2019-04-01 |
| machinelearningservices | 2020-01-01 |
| msi | 2015-08-31-preview |
| operationalinsights | 2015-03-20<br/>2015-11-01-preview |
| policyinsights | 2019-10-01 |
| security | v1.0<br/>v2.0 |
| sql | 2015-05-01-preview<br/>2017-03-01-preview<br/>2018-06-01-preview |
| subscriptions | 2018-06-01<br/>2019-06-01 |

### BreakingChanges

| Package Name | API Version |
| -----------: | :---------: |
| backup | 2017-07-01 |
| containerregistry | 2019-05-01-preview<br/>2019-06-01-preview<br/>2019-12-01-preview |
| datafactory | 2018-06-01 |
| datamigration | 2018-07-15-preview |
| documentdb | 2019-12-12 |
| features | 2019-07-01 |
| frontdoor | 2020-01-01 |
| graphrbac | 1.6 |
| hanaonazure | 2017-11-03-preview |
| msi | 2018-11-30 |
| mysql | 2017-12-01 |
| postgresql | 2017-12-01 |
| prediction | customvision |
| resources | 2015-11-01<br/>2016-02-01<br/>2016-07-01<br/>2016-09-01<br/>2017-05-10<br/>2018-02-01<br/>2018-05-01<br/>2019-03-01<br/>2019-05-01 |
| security | v3.0 |
| securityinsight | 2017-08-01-preview |
| sql | v3.0 |
| storage | 2019-06-01 |

### Removed Packages

| Package Name | API Version |
| -----------: | :---------: |
| logic | 2019-05-01 |

**NOTE:** `services/preview/logic/mgmt/2019-05-01/logic` was moved to `services/logic/mgmt/2019-05-01/logic`, since it is a stable package and was placed in `preview` directory by mistake.

## `v39.3.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| containerservice | 2019-10-27-preview |
| synapse | 2019-06-01-preview |

## `v39.2.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| containerservice | 2020-02-01 |

## `v39.1.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| apimanagement | 2019-12-01-preview |
| reservations | 2019-07-19-preview |

## `v39.0.0`

### New Packages
Expand Down
8 changes: 8 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Security Policy

## Reporting a Vulnerability

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) <[email protected]>. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue).

Please do not open issues for anything you think might have a security implication.

47 changes: 47 additions & 0 deletions eng/common/Extract-ReleaseNotes.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# given a CHANGELOG.md file, extract the relevant info we need to decorate a release
param (
[Parameter(Mandatory = $true)]
[String]$ChangeLogLocation
)

$RELEASE_TITLE_REGEX = "(?<releaseNoteTitle>^\#+.*(?<version>\b\d+\.\d+\.\d+([^0-9\s][^\s:]+)?))"

$releaseNotes = @{}
$contentArrays = @{}
if ($ChangeLogLocation.Length -eq 0)
{
return $releaseNotes
}

try
{
$contents = Get-Content $ChangeLogLocation

# walk the document, finding where the version specifiers are and creating lists
$version = ""
foreach($line in $contents){
if ($line -match $RELEASE_TITLE_REGEX)
{
$version = $matches["version"]
$contentArrays[$version] = @()
}

$contentArrays[$version] += $line
}

# resolve each of discovered version specifier string arrays into real content
foreach($key in $contentArrays.Keys)
{
$releaseNotes[$key] = New-Object PSObject -Property @{
ReleaseVersion = $key
ReleaseContent = $contentArrays[$key] -join [Environment]::NewLine
}
}
}
catch
{
Write-Host "Error parsing $ChangeLogLocation."
Write-Host $_.Exception.Message
}

return $releaseNotes
Loading

0 comments on commit 3eb252e

Please sign in to comment.