Fix missed releases in Sept releases (#8117)

This commit is contained in:
Wes Haggard 2024-10-14 18:19:24 -07:00 коммит произвёл GitHub
Родитель fac3b75bc6
Коммит a907c96808
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 61 добавлений и 4 удалений

Просмотреть файл

@ -703,4 +703,14 @@ entries:
ChangelogContent: |-
#### Bugs Fixed
- When grabbing Queue Metrics for amount of messages, will now use the QueueTriggerMetrics.QueueLength instead of the ApproximateMessagesCount for less stale metrics.
- Name: Azure.Communication.Chat
Version: 1.3.1
DisplayName: Communication Chat
ServiceName: Communication
VersionType: Patch
Hidden: false
ChangelogUrl: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Communication.Chat_1.3.1/sdk/communication/Azure.Communication.Chat/CHANGELOG.md
ChangelogContent: |-
#### Bugs Fixed
Security patch, update to Azure.Core to 1.43.0.

Просмотреть файл

@ -2270,4 +2270,16 @@ entries:
- Experimental checkpointing metrics are no longer reported by this package. They've been moved to `azure-messaging-eventhubs` package.
([#38899](https://github.com/Azure/azure-sdk-for-java/pull/38899))
GroupId: com.azure
- Name: azure-ai-inference
Version: 1.0.0-beta.1
DisplayName: Azure AI Inference
ServiceName: Cognitive Services
VersionType: Beta
Hidden: false
ChangelogUrl: https://github.com/Azure/azure-sdk-for-java/tree/azure-ai-inference_1.0.0-beta.1/sdk/ai/azure-ai-inference/CHANGELOG.md
ChangelogContent: |-
#### Features Added
- Initial release of the Azure AI Inference client library for Java.
GroupId: com.azure

Просмотреть файл

@ -474,4 +474,34 @@ entries:
- All credentials now implement the `SupportsTokenInfo` or `AsyncSupportsTokenInfo` protocol. Each credential now has a `get_token_info` method which returns an `AccessTokenInfo` object. The `get_token_info` method is an alternative method to `get_token` that improves support for more complex authentication scenarios. ([#36882](https://github.com/Azure/azure-sdk-for-python/pull/36882))
- Information on when a token should be refreshed is now saved in `AccessTokenInfo` (if available).
- Name: azure-servicebus
Version: 7.12.3
DisplayName: Service Bus
ServiceName: Service Bus
VersionType: Patch
Hidden: false
ChangelogUrl: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.12.3/sdk/servicebus/azure-servicebus/CHANGELOG.md
ChangelogContent: |-
#### Bugs Fixed
- Fixed a bug where token refreshes were not happening on long running operations ([35717](https://github.com/Azure/azure-sdk-for-python/issues/35717))
- Fixed a bug where using TokenCredential to create a subscription with forwarding caused a `ResourceNotFoundError` ([36545](https://github.com/Azure/azure-sdk-for-python/pull/36545))
- Fixed a bug where messages received on one receiver could not be settled on another receiver over mgmt link ([35304](https://github.com/Azure/azure-sdk-for-python/issues/35304))
- Addressed a bug where excess Link Credits were being allocated when large messages were being received ([34270](https://github.com/Azure/azure-sdk-for-python/issues/34270))
- Name: azure-search-documents
Version: 11.6.0b5
DisplayName: Azure AI Search
ServiceName: Search
VersionType: Beta
Hidden: false
ChangelogUrl: https://github.com/Azure/azure-sdk-for-python/tree/azure-search-documents_11.6.0b5/sdk/search/azure-search-documents/CHANGELOG.md
ChangelogContent: |-
#### Features Added
- `SearchIndexClient`.`get_search_client` inherits the API version.
#### Bugs Fixed
- Fixed the issue that we missed ODATA header when using Entra ID auth.
- Fixed the issue that `encryptionKey` was lost during serialization. #37251

Просмотреть файл

@ -54,7 +54,7 @@ steps:
$today = Get-Date
$releaseFriday = GetFridayOfReleaseWeek $today
# Move to next month's release period but still collect notes from the second friday fo this month.
# Move to next month's release period but still collect notes from the second friday for this month.
if ($today -gt $releaseFriday) {
$releasePeriod = $today.AddMonths(1)
$releaseStartDate = $releaseFriday
@ -122,7 +122,6 @@ steps:
arguments: >
-releasePeriod $(ReleasePeriod)
-releaseStartDate $(ReleaseStartDate)
-commonScriptPath ./eng/common/scripts
-releaseDirectory $(AzureSDKReleaseNotesClonePath)/_data/releases
-repoLanguage ${{ repo.value.Language }}
-github_pat '$(azuresdk-github-pat)'

Просмотреть файл

@ -2,9 +2,10 @@
param (
[string]$releasePeriod,
[DateTime]$releaseStartDate,
[DateTime]$releaseEndDate,
[string]$repoLanguage,
[string]$commonScriptPath,
[string]$releaseDirectory = (Resolve-Path "$PSScriptRoot\..\..\_data\releases"),
[string]$commonScriptPath = (Resolve-Path "$PSScriptRoot/../common/scripts"),
[string]$releaseDirectory = (Resolve-Path "$PSScriptRoot/../../_data\releases"),
[string]$github_pat = $env:GITHUB_PAT
)
@ -186,6 +187,11 @@ foreach ($packageName in $updatedPackageSet.Keys)
foreach ($packageVersion in $updatedPackageSet[$packageName].Versions)
{
if ($releaseEndDate -and $packageVersion.Date -gt $releaseEndDate)
{
Write-Host "Skipped package '$packageName' because it '$($packageVersion.Date)' > '$releaseEndDate'"
continue
}
$presentKey = $existingYamlContent.entries.Where({ ($_.name -eq $packageName) -and ($_.version -eq $packageVersion.RawVersion) })
if ($presentKey.Count -eq 0)
{