-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blob encryption scope sas api view #24526
Blob encryption scope sas api view #24526
Commits on Sep 28, 2021
-
ADT ownership transitioning (Azure#24404)
David R. Williamson authoredSep 28, 2021 Configuration menu - View commit details
-
Copy full SHA for 1d78acd - Browse repository at this point
Copy the full SHA 1d78acdView commit details -
Remove SchemaRegistryClient caching (Azure#24380)
* Remove builder caching references. * Remove caching from SchemaRegistryAsyncClient. Make methods public for Response. * Remove cached tests. * Adding service annotation.
Configuration menu - View commit details
-
Copy full SHA for ffd48d4 - Browse repository at this point
Copy the full SHA ffd48d4View commit details -
[Amqp-core, EH]: Prepending namespace|entitypath consistenty in log, …
…first untrack processor subscriber then notify and adding retry to EventHubConsumer[Receiver]Client (Azure#24417)
Configuration menu - View commit details
-
Copy full SHA for 5ceab7e - Browse repository at this point
Copy the full SHA 5ceab7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d0ec336 - Browse repository at this point
Copy the full SHA d0ec336View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd8ad43 - Browse repository at this point
Copy the full SHA cd8ad43View commit details
Commits on Sep 29, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 95c0df8 - Browse repository at this point
Copy the full SHA 95c0df8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7441a50 - Browse repository at this point
Copy the full SHA 7441a50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e48e0e - Browse repository at this point
Copy the full SHA 8e48e0eView commit details -
Sync eng/common directory with azure-sdk-tools for PR 2046 (Azure#24431)
* Pass package name from calling pipeline to uniquely identify pull request review * Update log summary * Update eng/common/scripts/Detect-Api-Changes.ps1 Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> Co-authored-by: praveenkuttappan <prmarott@microsoft.com> Co-authored-by: praveenkuttappan <55455725+praveenkuttappan@users.noreply.github.com> Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 66d4525 - Browse repository at this point
Copy the full SHA 66d4525View commit details -
Enable API change detection in PR pipeline (Azure#24234)
* Enable API change detection in PR pipeline
Configuration menu - View commit details
-
Copy full SHA for ad3586a - Browse repository at this point
Copy the full SHA ad3586aView commit details -
Communication: Add TokenCredentialAddHostHeaderPolicy for TokenCreden…
…tial Requests (Azure#24442) * Communication: Add TokenCredentialAdditionalHeaderPolicy for CallingServerClientBuilder * Add TokenCredentialAddHostHeaderPolicyTests * Fixing comment * Use URL class to get hostname * Fix style errors Co-authored-by: Melissa Neubert <mneubert@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for e0987f9 - Browse repository at this point
Copy the full SHA e0987f9View commit details -
Add Compliance stage with policheck (Azure#24276)
* Add Compliance stage with policheck * Add vmImage pool * Fix issues flagged by PoliCheck * Move credscan into the compliance stage
Configuration menu - View commit details
-
Copy full SHA for 5d602a2 - Browse repository at this point
Copy the full SHA 5d602a2View commit details -
update readme for storage libraries to include BOM information. (Azur…
…e#22858) update readme for storage libraries
Configuration menu - View commit details
-
Copy full SHA for db51da8 - Browse repository at this point
Copy the full SHA db51da8View commit details -
Enable dependency validation of a single library (Azure#24241)
* Enable validation of a library via it's POM file. * Incorporate feedback and remove unused code.
Configuration menu - View commit details
-
Copy full SHA for e9e9f6b - Browse repository at this point
Copy the full SHA e9e9f6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d9ba2d - Browse repository at this point
Copy the full SHA 9d9ba2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f37bc26 - Browse repository at this point
Copy the full SHA f37bc26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4935311 - Browse repository at this point
Copy the full SHA 4935311View commit details
Commits on Sep 30, 2021
-
Rename certificates-refresh-interval to certificates-refresh-interval…
…--in-ms in keyvault jca (Azure#24339)
Configuration menu - View commit details
-
Copy full SHA for 462e0f9 - Browse repository at this point
Copy the full SHA 462e0f9View commit details -
Prepare to release azure-spring-bom and azure-spring-cloud-dependenci…
…es. (Azure#24425)
Rujun Chen authoredSep 30, 2021 Configuration menu - View commit details
-
Copy full SHA for 5fd44e7 - Browse repository at this point
Copy the full SHA 5fd44e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d110970 - Browse repository at this point
Copy the full SHA d110970View commit details -
Updated
KeyVaultCredentialPolicy
to extend `BearerTokenAuthenticati……onPolicy` in Key Vault clients. (Azure#24199) * Replaced all uses of KeyVaultCredentialPolicy with BearerTokenAuthenticationPolicy in Key Vault clients. Removed the KeyVaultCredentialPolicy and ScopeTokeCache classes from all Track 2 Key Vault libraries. * We now pass the appropriate scope to BearerTokenAuthenticationPolicy creating a new instance in client builders, tests and samples. * Added tests and recordings for KEK tests on MHSM. Fixed and cleaned up tests. * Removed unused imports. * Renamed MHSM_SCOPE to MANAGED_HSM_SCOPE in all client builders. * Reintroduced KeyVaultCredentialPolicy and modified it to extend from BearerTokenAuthenticationPolicy while extracting the scope provided in bearer challenges returned by the Key Vault service. * Fixed CvheckStyle errors. * Made changes to KeyVaultCredentialPolicy so we don't set the body of a request as null, but an empty String instead. * Removed scope constants from Key vault client builders. * Attempted to fix flaky live tests. * Removed verify test for HSM as the FromSource test already verifies the build's code coverage and running in parallel against the same HSM can cause problems for some tests. * Reverted KeyVaultCredentialPolicy in all libraries to set the request body to null instead of an empty string when sending the first unauthenticated request to get a bearer challenge. Also stored the value of the "Content-Length" header in the pipeline context for use in a subsequent request. * Fixed KV Administration client live tests that failed due to the authentication policy changes. Also fixed some flaky live tests. * Fixed CheckStyle issues. * Fixed another CheckStyle issue. * Fixed issue that caused an NPE in KeyVaultCredentialPolicy if the content of the request being originally sent were null from the beginning. * Updated KeyVaultCredentialPolicy in all other libraries. * Made an attempt at fixing the backup async live tests. * Added sleep timer when running against service for restore operations. * Applied PR feedback.
Configuration menu - View commit details
-
Copy full SHA for 75ff342 - Browse repository at this point
Copy the full SHA 75ff342View commit details -
[Storage] Try GMavenPlus to unblock Java 17 adoption. (Azure#24471)
* lets try. * fix java8 * fix java8 again:/ * track 1
Configuration menu - View commit details
-
Copy full SHA for b7bcbe3 - Browse repository at this point
Copy the full SHA b7bcbe3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 313b6b6 - Browse repository at this point
Copy the full SHA 313b6b6View commit details -
[Storage] Bump Groovy version to 3 that works with Java 17. (Azure#24477
) * bump groovy version * Revert "bump groovy version" This reverts commit a80c805. * use different spocks depending on java version. * rename.
Configuration menu - View commit details
-
Copy full SHA for 7f37198 - Browse repository at this point
Copy the full SHA 7f37198View commit details
Commits on Oct 1, 2021
-
Use New Javadoc Codesnippet Tooling to Support Java 17 (Azure#24475)
Use New Javadoc Snippet Tooling to Support Java 17
Configuration menu - View commit details
-
Copy full SHA for 12c4ba3 - Browse repository at this point
Copy the full SHA 12c4ba3View commit details -
Configuration menu - View commit details
-
Copy full SHA for dff5f49 - Browse repository at this point
Copy the full SHA dff5f49View commit details -
[Storage] Fix track 1 tests. (Azure#24490)
* Fix track 1 tests. * revert that.
Configuration menu - View commit details
-
Copy full SHA for ea82b91 - Browse repository at this point
Copy the full SHA ea82b91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ef1bdd - Browse repository at this point
Copy the full SHA 8ef1bddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ed75c9 - Browse repository at this point
Copy the full SHA 8ed75c9View commit details -
Adding additional logging to ReactorDispatcher and ReactorExecutor. A…
…dding closing logic (Azure#24457) * Closing ReactorExecutor if it has never been run. * Adding documentation to ReactorDispatcher. * Updating ReactorExecutor to schedule close work when reactor has not started or scheduler is closed. * Adding tests. * In method invocations, adding catch for RejectedExecutionException in the case that the scheduler is disposed. * Adding assertion for ReactorExecutorTest that an onError is also called. * Adding documentatioln to reactor connection and timeout to closing execturo. * Splitting try/catch conditions. * Add documentation to RequestResponseChannel. * Using testPublisher for AmqpChannelProcessorTest. Using Flux.never().
Configuration menu - View commit details
-
Copy full SHA for da926ad - Browse repository at this point
Copy the full SHA da926adView commit details -
Adding Andy to the IoT CODEOWNERS (Azure#24438)
Adding Andy to the IoT CODEOWNERS
Configuration menu - View commit details
-
Copy full SHA for 4f8a0ad - Browse repository at this point
Copy the full SHA 4f8a0adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ae82f0 - Browse repository at this point
Copy the full SHA 3ae82f0View commit details -
Update docker-start-proxy.ps1 (Azure#24495)
Update to the latest version of the container Co-authored-by: Sean Kane <68240067+seankane-msft@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e54c26a - Browse repository at this point
Copy the full SHA e54c26aView commit details -
Added support for Key Rotation. (Azure#24452)
* Added support for Key Rotation. * Added tests and updated recordings where necessary. * Added code snippets for Key Rotation. Updated client documentation and existing code snippets. * Applied PR feedback. * Removed unused import. * Updated releaseKey test for MHSM. * Fixed tests after merge from main.
Configuration menu - View commit details
-
Copy full SHA for e89f243 - Browse repository at this point
Copy the full SHA e89f243View commit details -
Renamed Mixed Audio models ( Addressed comments in apiview ) (Azure#2…
…4481) * Suggestions after apiview review * Changes for the comments of API Review * tests added back * Added StartRecordingOptions class * Annotation added for new class * Setters return type changed * Renaming enum names ( feedback on APIView review ) Co-authored-by: Ninika Sharma <ninsharm@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for f7ee76a - Browse repository at this point
Copy the full SHA f7ee76aView commit details -
Prepare Azure Core Libraries for October 2021 Release (Azure#24498)
Prepare Azure Core Libraries for October 2021 Release
Configuration menu - View commit details
-
Copy full SHA for 124b610 - Browse repository at this point
Copy the full SHA 124b610View commit details
Commits on Oct 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for b59c663 - Browse repository at this point
Copy the full SHA b59c663View commit details -
Add Storage Live Test Run to Core Live Test Run (Azure#24499)
Add Storage Live Test Run to Core Live Test Run
Configuration menu - View commit details
-
Copy full SHA for 5835f9c - Browse repository at this point
Copy the full SHA 5835f9cView commit details
Commits on Oct 4, 2021
-
[Storage] Run CI and live tests on Java 17 (Azure#24492)
* does this work? * try this. * Revert "try this." This reverts commit f157e60. * does this help ? * hmm? * hungry? * use java 17 in ci. * fix at least nio. * move it. * fixes. * disable these tests on java 17. CGLib doesn't work * fix that.
Configuration menu - View commit details
-
Copy full SHA for 7f4dd0e - Browse repository at this point
Copy the full SHA 7f4dd0eView commit details -
add support for setting throughput on database creation (Azure#24456)
* add support for setting throughput on database creation * added section to readme * removed locale from links * fix checkstyle issues * do not overwrite cosmosTemplate
Configuration menu - View commit details
-
Copy full SHA for 6b96d75 - Browse repository at this point
Copy the full SHA 6b96d75View commit details -
Increment version for core releases (Azure#24504)
Increment package version after release of Core libraries
Configuration menu - View commit details
-
Copy full SHA for 8a10ae6 - Browse repository at this point
Copy the full SHA 8a10ae6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72b460d - Browse repository at this point
Copy the full SHA 72b460dView commit details -
Fix azure-core-http-jdk-httpclient Tests (Azure#24511)
Fix azure-core-http-jdk-httpclient Tests
Configuration menu - View commit details
-
Copy full SHA for 15789cd - Browse repository at this point
Copy the full SHA 15789cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 885c08d - Browse repository at this point
Copy the full SHA 885c08dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dd2ff0 - Browse repository at this point
Copy the full SHA 6dd2ff0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f2cdf7 - Browse repository at this point
Copy the full SHA 0f2cdf7View commit details