-
Notifications
You must be signed in to change notification settings - Fork 861
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[azdatalake][STG84] Append with flush (#22245)
* Update package versions (#22201) * Update package versions * upgrade to MSAL v1.2.1 * add token_type to fake tokens * revert debugging --------- Co-authored-by: Charles Lowell <[email protected]> * Increment package version after release of messaging/azeventgrid (#22060) * Increment package version after release of ai/azopenai (#22126) * azblob: STG91 upgrade (#22194) * azfile: STG91 upgrade (#22193) * update source link to new azopenai location (#22208) * link current instead of depricated path * remove newline at end of file * More azappconfig cleanup (#22209) * More azappconfig cleanup Update BeginCreateSnapshot to return the complete Snapshot type. Remove unused response types. Added some missed error checking in a few tests. * fix a few doc comments * Fix spelling (preceeding=> preceding) (#22202) Co-authored-by: Anton Kolesnyk <[email protected]> * Storage: Reject HTTP endpoints (#22183) * [azeventhubs] Fixing an issue where a processor wouldn't grab partitions (#22153) The processor load balancer had a bug where a processor would not claim partitions even if it didn't yet have the proper share. Added in stress tests (balance, multibalance) to run several scenarios with our supported strategies and different parallel owners. Fixes #22097 * Clean up ETags in azappconfig (#22212) Use azcore.ETag instead of string for public surface area. Add doc comments for non-standard ETag option names. * [azopenai] Fixing issue where you can't use whisper with m4a files. (#22210) Fixing issue where you can't use whisper with m4a files. * It's one of the formats that doesn't seem to be recognized without an explicit file extension, which you can pass via Filename * My tests were too heavily dependent on implementation details of the models. Changing this out to check that things are working correctly without checking the exact contents of the response. * Also, rerecorded tests since we're doing multiple audio tests as well. Fixes #22195 * Updating changelog for STG91 preview (#22216) * azfile: STG 91 Preview (#22217) * Increment package version after release of storage/azblob (#22219) * [azopenai] Update changelog for release. (#22215) * Replace string with azcore.ETag (#22218) Missed one in last round of clean-up. * Add script to go mod tidy modules (#22214) Will tidy all modules under the current working directory or under the specified directory. * Increment package version after release of storage/azfile (#22220) * Added Simon and Kushagra as code owners on GO Cosmos SDK (#22221) * [azservicebus] Updating batching to allow for a configurable wait time (#22154) Updating batching to allow for a configurable wait time. Can lead to fuller batches for people that want to tune it. Fixes #19172 * Sync eng/common directory with azure-sdk-tools for PR 7459 (#22222) * check for the presence of a compatible powershell. ensure that we always return a list of tags * allow the script to require pshell6+ * remove the en-us from the link --------- Co-authored-by: Scott Beddall (from Dev Box) <[email protected]> * Fix image tag for multiimage deployments (#22224) Co-authored-by: Liudmila Molkova <[email protected]> * Refresh azcontainerregistry module (#22161) * upgrade to latest codegen * merge resolver * enable span and add changelog * update module name * fix generator tool (#22205) * fix generator tool * gofmt * fix * goimports * azdatalake preview stg82 * azdatalake preview stg82 (#22227) * Rename azidentity/cache pipeline (#22231) * Handle errors in mod tidy script (#22234) * Sync eng/common directory with azure-sdk-tools for PR 7445 (#22233) * Add package filter parameter to select recursively found packages in release * Handle empty value for packageFilter --------- Co-authored-by: Ben Broderick Phillips <[email protected]> * Use package filter to prevent recursive package publish (#22232) * append with flush --------- Co-authored-by: Rick Winter <[email protected]> Co-authored-by: Charles Lowell <[email protected]> Co-authored-by: Azure SDK Bot <[email protected]> Co-authored-by: Sourav Gupta <[email protected]> Co-authored-by: Felix <[email protected]> Co-authored-by: Joel Hendrix <[email protected]> Co-authored-by: Anton Kolesnyk <[email protected]> Co-authored-by: Richard Park <[email protected]> Co-authored-by: Kushagra Thapar <[email protected]> Co-authored-by: Scott Beddall (from Dev Box) <[email protected]> Co-authored-by: Liudmila Molkova <[email protected]> Co-authored-by: Chenjie Shi <[email protected]> Co-authored-by: Peng Jiahui <[email protected]> Co-authored-by: Ben Broderick Phillips <[email protected]>
- Loading branch information
1 parent
0d997dd
commit a8c6499
Showing
159 changed files
with
5,819 additions
and
3,118 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Param( | ||
[string]$searchPath = $PWD.Path | ||
) | ||
|
||
$modFiles = Get-ChildItem -Path $searchPath -Include "go.mod" -Recurse | ||
|
||
$tidyErrors = $modFiles | ForEach-Object -Parallel { | ||
Set-Location $_.Directory | ||
Write-Host (Get-Location) | ||
$output = go mod tidy 2>&1 | ||
if ($LASTEXITCODE) { | ||
return @{ Directory = $_.Directory; Output = $output } | ||
} | ||
} | ||
|
||
if ($tidyErrors) { | ||
Write-Error "Encountered the following tidy failures:" -ErrorAction 'Continue' | ||
foreach ($err in $tidyErrors) { | ||
Write-Host "=== $($err.Directory) ===" | ||
$err.Output | ||
} | ||
exit 1 | ||
} |
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 |
---|---|---|
|
@@ -84,7 +84,7 @@ comments. | |
|
||
<!-- LINKS --> | ||
[azure_openai_access]: https://learn.microsoft.com/azure/cognitive-services/openai/overview#how-do-i-get-access-to-azure-openai | ||
[azopenai_repo]: https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/cognitiveservices/azopenai | ||
[azopenai_repo]: https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/ai/azopenai | ||
[azopenai_pkg_go]: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/ai/azopenai | ||
[azure_identity]: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity | ||
[azure_sub]: https://azure.microsoft.com/free/ | ||
|
@@ -95,4 +95,4 @@ comments. | |
[coc]: https://opensource.microsoft.com/codeofconduct/ | ||
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/ | ||
[coc_contact]: mailto:[email protected] | ||
[azure_openai_quickstart]: https://learn.microsoft.com/azure/cognitive-services/openai/quickstart | ||
[azure_openai_quickstart]: https://learn.microsoft.com/azure/cognitive-services/openai/quickstart |
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
Oops, something went wrong.