rebase: bump the github-dependencies group with 2 updates

Bumps the github-dependencies group with 2 updates: [github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2) and [github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets](https://github.com/Azure/azure-sdk-for-go).


Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.32.3 to 1.32.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](https://github.com/aws/aws-sdk-go-v2/compare/v1.32.3...v1.32.4)

Updates `github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/v1.2...sdk/azcore/v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-11-11 20:03:41 +00:00
committed by mergify[bot]
parent 89ab2e78e8
commit 710e7d273c
23 changed files with 200 additions and 135 deletions

View File

@ -1,5 +1,10 @@
# Release History
## 1.3.0 (2024-11-06)
### Features Added
* Added API Version support. Users can now change the default API Version by setting ClientOptions.APIVersion
## 1.2.0 (2024-10-21)
### Features Added

View File

@ -38,6 +38,10 @@ func NewClient(vaultURL string, credential azcore.TokenCredential, options *Clie
},
)
azcoreClient, err := azcore.NewClient(moduleName, version, runtime.PipelineOptions{
APIVersion: runtime.APIVersionOptions{
Location: runtime.APIVersionLocationQueryParam,
Name: "api-version",
},
PerRetry: []policy.Policy{authPolicy},
Tracing: runtime.TracingOptions{
Namespace: "Microsoft.KeyVault",

View File

@ -8,5 +8,5 @@ package azsecrets
const (
moduleName = "github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets"
version = "v1.2.0"
version = "v1.3.0"
)