Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
69ee5e9
[Release] sdk/resourcemanager/apimanagement/armapimanagement/3.0.0 ge…
jliusan Apr 7, 2025
0b83b64
[Release] sdk/resourcemanager/search/armsearch/1.4.0-beta.3 (#24386)
jliusan Apr 7, 2025
d165f80
Add env var skip for matrix debug. Add acceptance test tag (#24392)
azure-sdk Apr 7, 2025
1a32b94
Allow eng packages to return from Save-Package-Properties (#24393)
scbedd Apr 7, 2025
61766db
if we are in CI, we should always allow the proxy to start (#24394)
scbedd Apr 7, 2025
118ffde
[azeventhubs] Optimize checkpoint listing to avoid wasted storage cal…
richardpark-msft Apr 7, 2025
391846a
Prepare changelog and version file for release of the internal packag…
scbedd Apr 7, 2025
69eb6af
Increment package version after release of internal (#24398)
azure-sdk Apr 7, 2025
e6d6600
fix test
jliusan Apr 8, 2025
16fa8d0
fix eng scripts (#24401)
JiaqiZhang-Dev Apr 8, 2025
7d23726
Allow eng/ based packages to parse ci.yml (#24405)
azure-sdk Apr 8, 2025
724d2ce
[azopenaiextensions] Update to openai-go v0.1.0-beta.7 (#24378)
glecaros Apr 8, 2025
a3fbf32
[azservicebus] Fixing broken test. (#24407)
richardpark-msft Apr 8, 2025
766ea7c
Increment package version after release of messaging/azeventhubs (#24…
azure-sdk Apr 8, 2025
423de74
Prepare azidentity v1.9.0 for release (#24373)
chlowell Apr 8, 2025
9eddb2a
Prepare azcontainerregistry v0.2.3 for release (#24382)
chlowell Apr 8, 2025
a4835cc
Sync eng/common directory with azure-sdk-tools for PR 10241 (#24409)
azure-sdk Apr 8, 2025
72f1b65
Increment package version after release of azidentity (#24411)
azure-sdk Apr 8, 2025
3121361
Add missing backticks (#24412)
azure-sdk Apr 9, 2025
e65d71a
remove invalid test
jliusan Apr 9, 2025
5723c20
update test
jliusan Apr 9, 2025
2a79c4a
upgrade tspclient version (#24415)
JiaqiZhang-Dev Apr 9, 2025
b5c75bc
upgrade emitter version (#24417)
JiaqiZhang-Dev Apr 9, 2025
19bf188
Increment package version after release of messaging/azservicebus (#2…
azure-sdk Apr 9, 2025
fb4e8e0
[azsecrets] prepare for release (#24422)
gracewilcox Apr 9, 2025
0ee1ed9
disable auto release (#24403)
JiaqiZhang-Dev Apr 10, 2025
5f94dad
update asset
jliusan Apr 10, 2025
710b6ee
Merge branch 'release-apimanagement-armapimanagement-3.0.0-1744006895…
jliusan Apr 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 22 additions & 19 deletions eng/common/pipelines/templates/archetype-typespec-emitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ parameters:
type: object
default: []

- name: EmitterPackageJsonPath
type: string
default: ""

extends:
template: /eng/pipelines/templates/stages/1es-redirect.yml
parameters:
Expand Down Expand Up @@ -189,26 +193,25 @@ extends:
ServiceEndpointUrl: https://api.esrp.microsoft.com
MainPublisher: ESRPRELPACMANTEST

- task: PowerShell@2
displayName: Create emitter-package.json
inputs:
pwsh: true
filePath: ./eng/common/scripts/typespec/New-EmitterPackageJson.ps1
arguments: >
-PackageJsonPath '$(buildArtifactsPath)/lock-files/package.json'
-OverridesPath '$(buildArtifactsPath)/overrides.json'
-OutputDirectory '$(Build.ArtifactStagingDirectory)'
workingDirectory: $(Build.SourcesDirectory)
- pwsh: |
npm install -g @azure-tools/typespec-client-generator-cli@latest
displayName: Install tsp-client

- task: PowerShell@2
displayName: Create emitter-package-lock.json
inputs:
pwsh: true
filePath: ./eng/common/scripts/typespec/New-EmitterPackageLock.ps1
arguments: >
-EmitterPackageJsonPath '$(Build.ArtifactStagingDirectory)/emitter-package.json'
-OutputDirectory '$(Build.ArtifactStagingDirectory)'
workingDirectory: $(Build.SourcesDirectory)
- pwsh: |
if (Test-Path -Path '$(buildArtifactsPath)/overrides.json') {
Write-Host "Using overrides.json to generate emitter-package.json"
tsp-client generate-config-files `
--package-json '$(buildArtifactsPath)/lock-files/package.json' `
--output-dir '$(Build.ArtifactStagingDirectory)' `
--emitter-package-json-path '${{ parameters.EmitterPackageJsonPath }}' `
--overrides '$(buildArtifactsPath)/overrides.json'
} else {
tsp-client generate-config-files `
--package-json '$(buildArtifactsPath)/lock-files/package.json' `
--output-dir '$(Build.ArtifactStagingDirectory)' `
--emitter-package-json-path '${{ parameters.EmitterPackageJsonPath }}'
}
displayName: Generate emitter-package.json and emitter-package-lock files

- template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
parameters:
Expand Down
23 changes: 20 additions & 3 deletions eng/common/scripts/Package-Properties.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,28 @@ class PackageProps {
return $null
}

[PSCustomObject]GetCIYmlForArtifact() {
[System.IO.FileInfo[]]ResolveCIFolderPath() {
$RepoRoot = Resolve-Path (Join-Path $PSScriptRoot ".." ".." "..")

$ciFolderPath = Join-Path -Path $RepoRoot -ChildPath (Join-Path "sdk" $this.ServiceDirectory)
$ciFiles = @(Get-ChildItem -Path $ciFolderPath -Filter "ci*.yml" -File)
$ciFiles = @()

# if this path exists, then we should look in it for the ci.yml files and return nothing if nothing is found
if (Test-Path $ciFolderPath){
$ciFiles = @(Get-ChildItem -Path $ciFolderPath -Filter "ci*.yml" -File)
}
# if not, we should at least try to resolve the eng/ folder to fall back and see if that's where the path exists
else {
$ciFolderPath = Join-Path -Path $RepoRoot -ChildPath (Join-Path "eng" $this.ServiceDirectory)
if (Test-Path $ciFolderPath) {
$ciFiles = @(Get-ChildItem -Path $ciFolderPath -Filter "ci*.yml" -File)
}
}

return $ciFiles
}

[PSCustomObject]GetCIYmlForArtifact() {
$ciFiles = @($this.ResolveCIFolderPath())
$ciArtifactResult = $null
$soleCIYml = ($ciFiles.Count -eq 1)

Expand Down
5 changes: 4 additions & 1 deletion eng/common/scripts/job-matrix/Create-JobMatrix.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ param (
[Parameter(Mandatory=$False)][array] $Filters,
[Parameter(Mandatory=$False)][array] $Replace,
[Parameter(Mandatory=$False)][array] $NonSparseParameters,
# Use for local generation/debugging when env: values are set in a matrix
[Parameter(Mandatory=$False)][switch] $SkipEnvironmentVariables,
[Parameter()][switch] $CI = ($null -ne $env:SYSTEM_TEAMPROJECTID)
)

Expand All @@ -34,7 +36,8 @@ $Filters = $Filters | Where-Object { $_ }
-displayNameFilter $DisplayNameFilter `
-filters $Filters `
-replace $Replace `
-nonSparseParameters $NonSparseParameters
-nonSparseParameters $NonSparseParameters `
-skipEnvironmentVariables:$SkipEnvironmentVariables

$serialized = SerializePipelineMatrix $matrix

Expand Down
44 changes: 22 additions & 22 deletions eng/common/scripts/job-matrix/job-matrix-functions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ function GenerateMatrix(
) {
$result = ProcessImport $config.matrixParameters $selectFromMatrixType $nonSparseParameters $config.displayNamesLookup

$matrixParameters = $result.Matrix
$importedMatrix = $result.ImportedMatrix
$matrixParameters = $result.Matrix
$importedMatrix = $result.ImportedMatrix
$combinedDisplayNameLookup = $result.DisplayNamesLookup

if ($selectFromMatrixType -eq "sparse") {
Expand Down Expand Up @@ -148,7 +148,7 @@ function ProcessNonSparseParameters(
$nonSparse = [MatrixParameter[]]@()

foreach ($param in $parameters) {
if ($null -eq $param){
if ($null -eq $param) {
continue
}
if ($param.Name -in $nonSparseParameters) {
Expand Down Expand Up @@ -430,9 +430,9 @@ function ProcessImport([MatrixParameter[]]$matrix, [String]$selection, [Array]$n
}
if ((!$matrix -and !$importPath) -or !$importPath) {
return [PSCustomObject]@{
Matrix = $matrix
ImportedMatrix = @()
DisplayNamesLookup = $displayNamesLookup
Matrix = $matrix
ImportedMatrix = @()
DisplayNamesLookup = $displayNamesLookup
}
}

Expand All @@ -456,9 +456,9 @@ function ProcessImport([MatrixParameter[]]$matrix, [String]$selection, [Array]$n
}

return [PSCustomObject]@{
Matrix = $matrix ?? @()
ImportedMatrix = $importedMatrix
DisplayNamesLookup = $combinedDisplayNameLookup
Matrix = $matrix ?? @()
ImportedMatrix = $importedMatrix
DisplayNamesLookup = $combinedDisplayNameLookup
}
}

Expand Down Expand Up @@ -643,7 +643,7 @@ function InitializeMatrix {
function GetMatrixDimensions([MatrixParameter[]]$parameters) {
$dimensions = @()
foreach ($param in $parameters) {
if ($null -eq $param){
if ($null -eq $param) {
continue
}
$dimensions += $param.Length()
Expand Down Expand Up @@ -760,12 +760,12 @@ function Get4dMatrixIndex([int]$index, [Array]$dimensions) {

function GenerateMatrixForConfig {
param (
[Parameter(Mandatory = $true)][string] $ConfigPath,
[Parameter(Mandatory = $true)][string] $Selection,
[Parameter(Mandatory = $false)][string] $DisplayNameFilter,
[Parameter(Mandatory = $false)][array] $Filters,
[Parameter(Mandatory = $false)][array] $Replace,
[Parameter(Mandatory = $false)][Array] $NonSparseParameters = @()
[Parameter(Mandatory = $true)][string] $ConfigPath,
[Parameter(Mandatory = $true)][string] $Selection,
[Parameter(Mandatory = $false)][string] $DisplayNameFilter,
[Parameter(Mandatory = $false)][array] $Filters,
[Parameter(Mandatory = $false)][array] $Replace,
[Parameter(Mandatory = $false)][Array] $NonSparseParameters = @()
)
$matrixFile = Join-Path $PSScriptRoot ".." ".." ".." ".." $ConfigPath

Expand All @@ -776,12 +776,12 @@ function GenerateMatrixForConfig {
$Filters = $Filters | Where-Object { $_ }

[array]$matrix = GenerateMatrix `
-config $config `
-selectFromMatrixType $Selection `
-displayNameFilter $DisplayNameFilter `
-filters $Filters `
-replace $Replace `
-nonSparseParameters $NonSparseParameters
-config $config `
-selectFromMatrixType $Selection `
-displayNameFilter $DisplayNameFilter `
-filters $Filters `
-replace $Replace `
-nonSparseParameters $NonSparseParameters

return , $matrix
}
8 changes: 4 additions & 4 deletions eng/emitter-package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-go": "0.4.2"
"@azure-tools/typespec-go": "0.4.3"
},
"devDependencies": {
"@azure-tools/typespec-autorest": "0.54.0",
"@azure-tools/typespec-azure-core": "0.54.0",
"@azure-tools/typespec-azure-resource-manager": "0.54.0",
"@azure-tools/typespec-azure-rulesets": "0.54.0",
"@azure-tools/typespec-client-generator-core": "0.54.0",
"@azure-tools/typespec-liftr-base": "0.8.0",
"@typespec/compiler": "1.0.0-rc.0",
"@typespec/events": "0.68.0",
"@typespec/http": "1.0.0-rc.0",
"@typespec/openapi": "1.0.0-rc.0",
"@typespec/rest": "0.68.0",
"@typespec/versioning": "0.68.0",
"@typespec/streams": "0.68.0",
"@typespec/events": "0.68.0",
"@typespec/sse": "0.68.0",
"@azure-tools/typespec-liftr-base": "0.8.0"
"@typespec/streams": "0.68.0",
"@typespec/versioning": "0.68.0"
}
}
6 changes: 3 additions & 3 deletions eng/scripts/Language-Settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ function Get-GoModuleProperties($goModPath)
$goModPath = $goModPath -replace "\\", "/"
# We should keep this regex in sync with what is in the azure-sdk repo at https://github.com/Azure/azure-sdk/blob/main/eng/scripts/Query-Azure-Packages.ps1#L238
# The serviceName named capture group is unused but used in azure-sdk, so it's kept here for parity
if (!$goModPath.Contains("testdata") -and !$goModPath.Contains("sdk/samples") -and $goModPath -match "(?<modPath>(sdk|profile)/(?<serviceDir>(.*?(?<serviceName>[^/]+)/)?(?<modName>[^/]+$)))")
if (!$goModPath.Contains("testdata") -and !$goModPath.Contains("sdk/samples") -and $goModPath -match "(?<modPath>(sdk|profile|eng)/(?<serviceDir>(.*?(?<serviceName>[^/]+)/)?(?<modName>[^/]+$)))")
{
$modPath = $matches["modPath"]
$modName = $matches["modName"] # We may need to start reading this from the go.mod file if the path and mod config start to differ
$serviceDir = $matches["serviceDir"]
$sdkType = "client"
if ($modName.StartsWith("arm") -or $modPath.Contains("resourcemanager")) { $sdkType = "mgmt" }
if ($modPath.Contains("eng/tools")) { $sdkType = "eng" }

$modVersion, $versionFile = Get-GoModuleVersionInfo $goModPath

if (!$modVersion) {
if (!$modVersion -and $sdkType -ne "eng") {
return $null
}

Expand Down
2 changes: 1 addition & 1 deletion eng/scripts/automation_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ else
fi

echo Install tsp-client
sudo npm install -g @azure-tools/typespec-client-generator-cli@v0.10.0 2>&1
sudo npm install -g @azure-tools/typespec-client-generator-cli@v0.19.0 2>&1
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ pr:
extends:
template: /eng/pipelines/templates/jobs/archetype-sdk-client.yml
parameters:
IncludeRelease: true
ServiceDirectory: 'resourcemanager/{{rpName}}/{{packageName}}'
1 change: 0 additions & 1 deletion eng/tools/generator/template/typespec/ci.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ pr:
extends:
template: /eng/pipelines/templates/jobs/archetype-sdk-client.yml
parameters:
IncludeRelease: true
ServiceDirectory: '{{.serviceDir}}'
4 changes: 2 additions & 2 deletions sdk/ai/azopenaiextensions/client_completions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestClient_GetCompletions(t *testing.T) {
},
MaxTokens: openai.Int(2048 - 127),
Temperature: openai.Float(0.0),
Model: azureOpenAI.Completions.Model,
Model: openai.CompletionNewParamsModel(azureOpenAI.Completions.Model),
})
skipNowIfThrottled(t, err)
require.NoError(t, err)
Expand Down Expand Up @@ -61,7 +61,7 @@ func TestGetCompletionsStream(t *testing.T) {
client := newStainlessTestClient(t, azureOpenAI.Completions.Endpoint)

stream := client.Completions.NewStreaming(context.TODO(), openai.CompletionNewParams{
Model: azureOpenAI.Completions.Model,
Model: openai.CompletionNewParamsModel(azureOpenAI.Completions.Model),
MaxTokens: openai.Int(2048),
Temperature: openai.Float(0.0),
Prompt: openai.CompletionNewParamsPromptUnion{
Expand Down
2 changes: 1 addition & 1 deletion sdk/ai/azopenaiextensions/client_rai_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestClient_GetCompletions_AzureOpenAI_ContentFilter_Response(t *testing.T)
client := newStainlessTestClient(t, azureOpenAI.Completions.Endpoint)

arg := openai.CompletionNewParams{
Model: azureOpenAI.Completions.Model,
Model: openai.CompletionNewParamsModel(azureOpenAI.Completions.Model),
Temperature: openai.Float(0.0),
MaxTokens: openai.Int(2048 - 127),
Prompt: openai.CompletionNewParamsPromptUnion{
Expand Down
6 changes: 3 additions & 3 deletions sdk/ai/azopenaiextensions/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ module github.com/Azure/azure-sdk-for-go/sdk/ai/azopenaiextensions
go 1.23.0

require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.1
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1
github.com/stretchr/testify v1.10.0
)

require (
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2
github.com/openai/openai-go v0.1.0-beta.2
github.com/openai/openai-go v0.1.0-beta.7
)

require (
Expand Down
12 changes: 6 additions & 6 deletions sdk/ai/azopenaiextensions/go.sum
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.1 h1:DSDNVxqkoXJiko6x8a90zidoYqnYYa6c1MTzDKzKkTo=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.1/go.mod h1:zGqV2R4Cr/k8Uye5w+dgQ06WJtEcbQG/8J7BB6hnCr4=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0 h1:Gt0j3wceWMwPmiazCa8MzMA0MfhmPIz0Qp0FJ6qcM0U=
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0/go.mod h1:Ot/6aikWnKWi4l9QB7qVSwa8iMphQNqkWALMoNT3rzM=
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2 h1:F0gBpfdPLGsw+nsgk6aqqkZS1jiixa5WwFe3fk/T3Ys=
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2/go.mod h1:SqINnQ9lVVdRlyC8cd1lCI0SdX4n2paeABd2K8ggfnE=
github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.2 h1:yz1bePFlP5Vws5+8ez6T3HWXPmwOK7Yvq8QxDBD3SKY=
github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.2/go.mod h1:Pa9ZNPuoNu/GztvBSKk9J1cDJW6vk/n0zLtV4mgd8N8=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 h1:ywEEhmNahHBihViHepv3xPBn1663uRv2t2q/ESv9seY=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0/go.mod h1:iZDifYGJTIgIIkYRNWPENUnqx6bJ2xnSDFI2tjwZNuY=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1 h1:FPKJS1T+clwv+OLGt13a8UjqeRuh0O4SJ3lUriThc+4=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1/go.mod h1:j2chePtV91HrC22tGoRX3sGY42uF13WzmmV80/OdVAA=
github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1 h1:WJTmL004Abzc5wDB5VtZG2PJk5ndYDgVacGqfirKxjM=
github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1/go.mod h1:tCcJZ0uHAmvjsVYzEFivsRTN00oz5BEsRgQHu5JZ9WE=
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 h1:oygO0locgZJe7PpYPXT5A29ZkwJaPqcva7BVeemZOZs=
Expand All @@ -28,8 +28,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
github.com/openai/openai-go v0.1.0-beta.2 h1:Ra5nCFkbEl9w+UJwAciC4kqnIBUCcJazhmMA0/YN894=
github.com/openai/openai-go v0.1.0-beta.2/go.mod h1:g461MYGXEXBVdV5SaR/5tNzNbSfwTBBefwc+LlDCK0Y=
github.com/openai/openai-go v0.1.0-beta.7 h1:ykC09BCIgdXL69wE/8NUjL2rCdAbo9kL3AjnGR6H91o=
github.com/openai/openai-go v0.1.0-beta.7/go.mod h1:g461MYGXEXBVdV5SaR/5tNzNbSfwTBBefwc+LlDCK0Y=
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
10 changes: 8 additions & 2 deletions sdk/azidentity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Release History

## 1.8.3-beta.1 (Unreleased)
## 1.9.1-beta.1 (Unreleased)

### Features Added
* `GetToken()` sets `AccessToken.RefreshOn` when the token provider specifies a value

### Breaking Changes

### Bugs Fixed

### Other Changes

## 1.9.0 (2025-04-08)

### Features Added
* `GetToken()` sets `AccessToken.RefreshOn` when the token provider specifies a value

### Other Changes
* `NewManagedIdentityCredential` logs the configured user-assigned identity, if any
* Deprecated `UsernamePasswordCredential` because it can't support multifactor
Expand Down
2 changes: 1 addition & 1 deletion sdk/azidentity/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23.0
require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.2
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.0
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2
github.com/golang-jwt/jwt/v5 v5.2.2
github.com/google/uuid v1.6.0
Expand Down
Loading
Loading