forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python …
…into regenerate_certs * 'master' of https://github.com/Azure/azure-sdk-for-python: (100 commits) replace aka link (Azure#12597) [ServiceBus] Message/ReceivedMessage Properties alignment with other languages (Azure#12451) Find list of installed packages using pkg_resources (Azure#12591) token refresh offset (Azure#12136) updates (Azure#12595) User authentication samples (Azure#11343) Remove unnecessary base class (Azure#12374) Sequence -> Iterable for scopes (Azure#12579) Disable apistubgen step until issue is fixed (Azure#12594) fix pylint issue (Azure#12578) fix name in example (Azure#12572) Update tests.md (Azure#12574) Add stress tests for max batch size/prefetch, and for unsettled message receipt. Add capability to not auto-complete and adjust max_batch_size into the base stress tester. (Azure#12344) [formrecognizer] Capitalize enum values (Azure#12540) Update Pinned CI Packages (Azure#11586) remove async response hook policy (Azure#12529) update to target new warden version (Azure#12522) fix azure-storage-blob readme and samples issues (Azure#12511) code fence not formatted appropriately (Azure#12520) Fix documentation typo (Azure#12519) ...
- Loading branch information
Showing
1,189 changed files
with
423,112 additions
and
30,136 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,35 @@ | ||
# requirements leveraged by ci tools | ||
setuptools==44.1.0; python_version == '2.7' | ||
setuptools==45.1.0; python_version >= '3.5' | ||
setuptools==46.4.0; python_version >= '3.5' | ||
virtualenv==20.0.23 | ||
wheel==0.34.2 | ||
Jinja2==2.11.1 | ||
Jinja2==2.11.2 | ||
packaging==20.4 | ||
tox==3.14.6 | ||
tox==3.15.0 | ||
tox-monorepo==0.1.2 | ||
twine==1.15.0 | ||
twine==1.15.0; python_version == '2.7' or python_version == '3.5' | ||
twine==3.1.1; python_version >= '3.6' | ||
pathlib2==2.3.5 | ||
readme-renderer[md]==25.0 | ||
doc-warden==0.5.4 | ||
doc-warden==0.7.1 | ||
# we pin coverage to 4.5.4 because there is an bug with `pytest-cov`. the generated coverage files cannot be `coverage combine`ed | ||
coverage==4.5.4 | ||
codecov==2.0.22 | ||
beautifulsoup4==4.8.2 | ||
codecov==2.1.0 | ||
beautifulsoup4==4.9.1 | ||
pkginfo==1.5.0.1 | ||
|
||
# locking packages defined as deps from azure-sdk-tools or azure-devtools | ||
pytoml==0.1.21 | ||
pyOpenSSL==19.1.0 | ||
json-delta==2.0 | ||
ConfigArgParse==1.1 | ||
ConfigArgParse==1.2.3 | ||
six==1.14.0 | ||
vcrpy==3.0.0 | ||
pyyaml==5.3.1 | ||
pytest==5.4.1; python_version >= '3.5' | ||
pytest==5.4.2; python_version >= '3.5' | ||
pytest==4.6.9; python_version == '2.7' | ||
pytest-cov==2.8.1 | ||
|
||
# local dev packages | ||
./tools/azure-devtools | ||
./tools/azure-sdk-tools | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
eng/common/pipelines/templates/steps/daily-dev-build-variable.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This script fragment is used across our repos to set a variable "SetDevVersion" which | ||
# is used when this pipeline is going to be generating and publishing daily dev builds. | ||
|
||
steps: | ||
- pwsh: | | ||
$setDailyDevBuild = "false" | ||
if (('$(Build.Reason)' -eq 'Schedule') -and ('$(System.TeamProject)' -eq 'internal')) { | ||
$setDailyDevBuild = "true" | ||
} | ||
echo "##vso[task.setvariable variable=SetDevVersion]$setDailyDevBuild" | ||
displayName: "Setup Versioning Properties" | ||
condition: eq(variables['SetDevVersion'], '') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,48 @@ | ||
# Wrapper Script for ChangeLog Verification | ||
param ( | ||
[Parameter(Mandatory=$true)] | ||
[string]$PackageName, | ||
[Parameter(Mandatory=$true)] | ||
[string]$ServiceName, | ||
[string]$RepoRoot, | ||
[ValidateSet("net","java","js","python")] | ||
[string]$Language, | ||
[string]$RepoName, | ||
[boolean]$ForRelease=$False | ||
[String]$ChangeLogLocation, | ||
[String]$VersionString, | ||
[string]$PackageName, | ||
[string]$ServiceName, | ||
[string]$RepoRoot, | ||
[ValidateSet("net", "java", "js", "python")] | ||
[string]$Language, | ||
[string]$RepoName, | ||
[boolean]$ForRelease = $False | ||
) | ||
|
||
Import-Module "${PSScriptRoot}/modules/common-manifest.psd1" | ||
$ProgressPreference = "SilentlyContinue" | ||
. (Join-Path $PSScriptRoot SemVer.ps1) | ||
Import-Module (Join-Path $PSScriptRoot modules ChangeLog-Operations.psm1) | ||
|
||
if ([System.String]::IsNullOrEmpty($Language)) | ||
$validChangeLog = $false | ||
if ($ChangeLogLocation -and $VersionString) | ||
{ | ||
$Language = $RepoName.Substring($RepoName.LastIndexOf('-') + 1) | ||
$validChangeLog = Confirm-ChangeLogEntry -ChangeLogLocation $ChangeLogLocation -VersionString $VersionString -ForRelease $ForRelease | ||
} | ||
else | ||
{ | ||
Import-Module (Join-Path $PSScriptRoot modules Package-Properties.psm1) | ||
if ([System.String]::IsNullOrEmpty($Language)) | ||
{ | ||
if ($RepoName -match "azure-sdk-for-(?<lang>[^-]+)") | ||
{ | ||
$Language = $matches["lang"] | ||
} | ||
else | ||
{ | ||
Write-Error "Failed to set Language automatically. Please pass the appropriate Language as a parameter." | ||
exit 1 | ||
} | ||
} | ||
|
||
$PackageProp = Get-PkgProperties -PackageName $PackageName -ServiceName $ServiceName -Language $Language -RepoRoot $RepoRoot | ||
$validChangeLog = Confirm-ChangeLogEntry -ChangeLogLocation $PackageProp.pkgChangeLogPath -VersionString $PackageProp.pkgVersion -ForRelease $ForRelease | ||
} | ||
|
||
if (!$validChangeLog) | ||
{ | ||
exit 1 | ||
} | ||
|
||
$PackageProp = Get-PkgProperties -PackageName $PackageName -ServiceName $ServiceName -Language $Language -RepoRoot $RepoRoot | ||
Confirm-ChangeLog -ChangeLogLocation $PackageProp.pkgChangeLogPath -VersionString $PackageProp.pkgReadMePath -ForRelease $ForRelease | ||
exit 0 |
Oops, something went wrong.