Skip to content

Commit 330ff35

Browse files
committed
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python into feature/textanalytics5.2
* 'master' of https://github.com/Azure/azure-sdk-for-python: (40 commits) Sync eng/common directory with azure-sdk-tools for PR 1203 (#15441) [ServiceBus] Graceful noops for methods taking empty lists. (#15286) [text analytics] add sample stories and improve documents (#15429) [ServiceBus] Enable FQDNs and connection strings to support newlines and protocol prefixing (e.g. sb://) (#15212) Fix combined session+auto-auto_lock_renewer+receive-and-delete mode issue where registry would fail during receipt. Add tests and changelog entry. (#15343) Add Update-python-CIConfig (#15379) Remove aiodns from our CI (#15424) Resolve Broken Portal Link (#15431) [Key Vault] Update tests which disable soft-delete (#15352) switching order on readme (#15426) [text analtyics] add abby as codeowner (#15376) test (#15402) fix iothub version (#15405) [T2] Batch (#14757) [T2] Policyinsights (#14794) [T2] apimanagement Wave3 (#14804) [T2] devtestlabs Wave3 (#14795) [T2]eventgrid wave3 (#14805) [T2] Search (#14823) test,version,CHANGELOG (#14838) ...
2 parents 3261830 + 69cab9d commit 330ff35

File tree

2,140 files changed

+730640
-238677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,140 files changed

+730640
-238677
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
/sdk/template/ @Azure/azure-sdk-eng
100100

101101
# PRLabel: %Cognitive - Text Analytics
102-
/sdk/textanalytics/ @kristapratico @iscai-msft
102+
/sdk/textanalytics/ @kristapratico @iscai-msft @abhahn
103103

104104
# PRLabel: %Cognitive - Form Recognizer
105105
/sdk/formrecognizer/ @kristapratico @iscai-msft @rakshith91

eng/common/scripts/Add-IssueComment.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ param(
1616
[string]$AuthToken
1717
)
1818

19-
. "${PSScriptRoot}\common.ps1"
19+
. (Join-Path $PSScriptRoot common.ps1)
2020

2121
try {
2222
Add-GithubIssueComment -RepoOwner $RepoOwner -RepoName $RepoName `

eng/common/scripts/Add-IssueLabels.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ param(
1616
[string]$AuthToken
1717
)
1818

19-
. "${PSScriptRoot}\common.ps1"
19+
. (Join-Path $PSScriptRoot common.ps1)
2020

2121
try {
2222
Add-GithubIssueLabels -RepoOwner $RepoOwner -RepoName $RepoName `

eng/common/scripts/Delete-RemoteBranches.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ param(
55
$AuthToken
66
)
77

8-
. "${PSScriptRoot}\common.ps1"
8+
. (Join-Path $PSScriptRoot common.ps1)
99

1010
LogDebug "Operating on Repo [ $RepoName ]"
1111
try{

eng/common/scripts/Get-PullRequestCreator.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ param (
1212
[string]$AuthToken
1313
)
1414

15-
. "${PSScriptRoot}\common.ps1"
15+
. (Join-Path $PSScriptRoot common.ps1)
1616

1717
try
1818
{

eng/common/scripts/Package-Properties.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function Get-PkgProperties
9393
{
9494
$pkgDirectoryPath = Join-Path $serviceDirectoryPath $directory.Name
9595

96-
if ((Get-ChildItem -Path Function: | ? { $_.Name -eq $GetPackageInfoFromRepoFn }).Count -gt 0)
96+
if ($GetPackageInfoFromRepoFn -and (Test-Path "Function:$GetPackageInfoFromRepoFn"))
9797
{
9898
$pkgProps = &$GetPackageInfoFromRepoFn -pkgPath $pkgDirectoryPath -serviceDirectory $ServiceDirectory -pkgName $PackageName
9999
}

eng/common/scripts/Queue-Pipeline.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ param(
2121
[string]$Base64EncodedAuthToken
2222
)
2323

24-
. "${PSScriptRoot}\logging.ps1"
25-
. "${PSScriptRoot}\Invoke-DevOpsAPI.ps1"
24+
. (Join-Path $PSScriptRoot common.ps1)
2625

2726
if ($CancelPreviousBuilds)
2827
{

eng/common/scripts/Submit-PullRequest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ param(
5959
[boolean]$CloseAfterOpenForTesting=$false
6060
)
6161

62-
. "${PSScriptRoot}\common.ps1"
62+
. (Join-Path $PSScriptRoot common.ps1)
6363

6464
try {
6565
$resp = Get-GitHubPullRequests -RepoOwner $RepoOwner -RepoName $RepoName `

eng/common/scripts/Update-ChangeLog.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if ($ReleaseDate -and ($Unreleased -eq $True)) {
2222
exit 1
2323
}
2424

25-
. "${PSScriptRoot}\common.ps1"
25+
. (Join-Path $PSScriptRoot common.ps1)
2626

2727
if ($ReleaseDate)
2828
{

0 commit comments

Comments
 (0)