vcolin7
vcolin7
Fixes #23315. There are currently no libraries in our SDK that have enabled Smoke Tests for samples that also depend on `unreleased_` dependencies, so we are re-enabling said tests. I...
We need to update the Key Vault documentation in a few places: - [ ] **Authentication in Samples:** Our samples should show the use of Managed Identity instead of Service...
Downloading an HSM's Security domain sometimes fails for our live tests without us logging a possible error message from the Powershell cmdlet. We can leverage [.NET](https://github.com/Azure/azure-sdk-for-net/blob/79fddcfff8d895a19cbea334ccea6d1a20cc918a/sdk/keyvault/test-resources-post.ps1#L99)'s approach to alleviate this...
This is based on [this draft](https://github.com/Azure/azure-sdk/pull/4351) for guidelines for handling events in Android. See [this PR](https://github.com/vcolin7/azure-sdk-for-android/pull/2) for an example of how developer would use these APIs.
**Is your feature request related to a problem? Please describe.** Currently, we have no automated way of checking and blocking a release if it contains new API changes until approved....
Currently, we cannot use any version of `jackson-dataformat-xml` higher than `2.12.x` because, starting with `2.13.0`, class [`XmlFactory`](https://github.com/FasterXML/jackson-dataformat-xml/blob/2049d6a0d9b7c74d8530737de4d91a74f7a8c62c/src/main/java/com/fasterxml/jackson/dataformat/xml/XmlFactory.java) uses method `XMLInputFactory.newFactory()` from package `javax.xml.stream`. This is a problem because Android itself...
Issue #928 made it clear that it is possible for users to mistake the Java and Android libraries, considering that both share the same name and a similar namespace, so...
Create new feeds for Android libraries connected to [the Android SDK feed](https://dev.azure.com/azure-sdk/public/_packaging?_a=feed&feed=azure-sdk-for-android) on Azure DevOps. [Reference](https://github.com/Azure/azure-sdk/pull/1899#discussion_r501974681).
Added a short delay to `AccessTokenCache.getToken()` to avoid an async-busy-loop when sharing cache
Fixes: #30466, #28364. # Description Added a short delay to `AccessTokenCache.getToken()` to avoid an async-busy-loop when the first thread to attempt the retrieval of a new token takes longer than...
Issues #30466 and #28364 demonstrated that, when sharing a client among multiple threads, all of them will also attempt to access the same access token cache when performing any operations...