-
Notifications
You must be signed in to change notification settings - Fork 1
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
[AutoPR @azure/arm-locks] Private links #4370
Commits on Jun 18, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d769b84 - Browse repository at this point
Copy the full SHA d769b84View commit details -
Fix hard-coded master (Azure#15843)
Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 1d0b3dd - Browse repository at this point
Copy the full SHA 1d0b3ddView commit details -
[Communication]: Always use x-ms-date for Hmac (Azure#15807)
* Always use x-ms-date for Hmac * Try to fix phone number tests * Still another error in phone number tests * Update phoneNumber session records * Update phone numbers node sessions * Manually fix node record sessions for phone numbers * Update missed session files Co-authored-by: JP Chen <jiach@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for ddf4714 - Browse repository at this point
Copy the full SHA ddf4714View commit details -
Configuration menu - View commit details
-
Copy full SHA for c075155 - Browse repository at this point
Copy the full SHA c075155View commit details -
[KeyVault] - Add networkAcls to MHSM ARM template (Azure#15830)
This PR makes three changes to our deployment template: - Add networkAcls to the Managed HSM properties - Remove the 60 second sleep after activation - Speed up challenge auth tests for KV Keys by using methods that don't require creating and deleting keys. The first is now needed, and without it deployment will fail. The second is no longer needed, since it looks like the az cli appropriately waits before coming back. Finally, the third is something I noticed - there's no reason to create and purge keys which takes a long time in order to test CAE.
Configuration menu - View commit details
-
Copy full SHA for bdff63d - Browse repository at this point
Copy the full SHA bdff63dView commit details -
[Core] - Move core-tracing to @opentelemetry/api 0.20.0 (Azure#15672)
## What - Bump @opentelemetry/api to 0.20.0 in @azure/core-tracing - Move all packages that are on core-http to the next core-tracing version - Remove version collision check from the tracer cache ## Why This is part of our effort to move everyone to OTel 0.20.0 - but we have to stage it due to a transitive dependency and a breaking change in OTel. This PR updates core-tracing to use the latest OTel, fixes any breaking changes, and moves packages that we can move to the latest version of core-tracing. Once core-rest-pipeline 1.1.0 is GA'd we'll be able to move the rest of the packages over to the latest core-tracing as well. Removing the version collision came out of an offline discussion after these changes were reviewed - since it's a common source of pain and hasn't added much benefit (tracer conflicts incompatibility was never a problem) we decided to remove that logic and always grab a unique symbol per OT compatibility. ## Callouts The packages that are already on core-v2 will _not_ be upgraded at this time - we'll coordinate that with the GA of core-rest-pipeline 1.1.0
Configuration menu - View commit details
-
Copy full SHA for d023204 - Browse repository at this point
Copy the full SHA d023204View commit details
Commits on Jun 21, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 37d1df4 - Browse repository at this point
Copy the full SHA 37d1df4View commit details -
[identity] Adding extensions API, identity-vscode, and identity-cache…
…-persistence (Azure#15384) * [identity] Remove machine-code-dependent codepaths (Azure#15024) * [identityg Remove machine-code-dependent codepaths * Linter fixes * Disable broken perf test * Added missing import back * [identity] Add extension registration API and default credential stack * [identity-native] Introducing identity-native * [identity] Rework extension API. * Remove identity native * Identity-persistence module * Adding identity-vscode module * Updated rush configuration * Moved identity perf back to linking local identity * Symbolic refactor of extension system * Renamed MsalCredentialOptions to CacheableCredentialOptions * Use Symbol.for instead of hacking around SymbolConstructor * Improved identity-vscode samples * Use persistence by default if a persistence provider has been registered. * Improved identity-persistence samples * Rename to identity-cache-persistence * Feedback from arch board for mainline identity package * Rename CredentialPersistenceOptions, format and lint * Revert sanitization of scopes. * Regenerated API.md for mainline identity * Add tests and finalize @azure/identity-cache-persistence * Record tests for identity-cache-persistence * Renamed sample files. * Some changes for testing in identity * Updated identity-vscode * Remove async version of useIdentityExtension * Added a couple of tests for default no-extension behavior * Fixed tests in recorder * Removed errant console.log * Added basic tests of identity-vscode * Fixed a couple of tests that have started caching correctly * Added browser shim for extensions/consumer.ts * Mock keytar using sinon in live/playback environments * Disable persistence tests on node !== 12 * Addressed feedback in identity-cache-persistence * Restore perf-test * Removed sanitizeScopeUrl from recorder * Update sdk/identity/identity/src/credentials/visualStudioCodeCredential.ts Co-authored-by: Jeff Fisher <xirzec@xirzec.com> * Fix gitignores * Feedback for identity-vscode * Changelog entry for recorder changes. * core-http -> core-auth * setter methods instead of setter props * Some changes to docs and keywords * Fixed linter warning * Switch persistence tests from 12 to 14. * Make the tests even refuse to import msal-node-extensions on anything other than Node 14 * Reverted changes to recorder * master -> main * More master -> main * [identity] Make the samples extract only part of the token data Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
Configuration menu - View commit details
-
Copy full SHA for 4471210 - Browse repository at this point
Copy the full SHA 4471210View commit details -
[AzureMonitorExporter] Adding support for temporary redirect (Azure#1…
…5850) * Adding support for temporary redirect * Lint
Configuration menu - View commit details
-
Copy full SHA for 919e856 - Browse repository at this point
Copy the full SHA 919e856View commit details -
Package artifact path (Azure#15512)
* Changes to create artifact in package directory
Configuration menu - View commit details
-
Copy full SHA for f9efdf4 - Browse repository at this point
Copy the full SHA f9efdf4View commit details -
[service-bus] Closing some open areas where we could mask errors, and…
… fixing flaky tests to be more reliable. (Azure#15761) Making changes to simplify a flaky test (and hopefully make it more reliable). The main issue with the 'handle interrupted detach' method was that it relied on too many moving parts to work reliably. We could just eternally loop like we'd expect customers to do, but in the end we have a very simple test we're trying to perform - we want to receive, and while we're in the process of draining, cause a detach and have it early exit and reject/resolve immediately rather than waiting for the timeout. I reworked the test to make that simpler by just removing the unneeded connection.idle() and just calling directly into the onDetached method. Because it happens prior to rhea even seeing that we're draining we should reliably win that race each time. There were a couple of other things changed for this PR as well: - The max time per test was lowered accidentally. Bringing it back what's been used as the standard time in other libraries - Fixed a spot in receiveMessages() where, if the link had been closed, we'd falsly return an empty array instead of throwing an exception indicating the link closed. This didn't appear to be related to the bug but it's incorrect and can hide bugs so I'd rather just throw the error than eat the condition and return an empty array. It's rare, but when it does happen the empty array response isn't right either - we're probably in the middle of a connection reset/change event. Fixes Azure#13461
Configuration menu - View commit details
-
Copy full SHA for d4d2c75 - Browse repository at this point
Copy the full SHA d4d2c75View commit details -
Sync eng/common directory with azure-sdk-tools for PR 1716 (Azure#15876)
* Update links with master to use main * Update ci.yml files Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 5da2922 - Browse repository at this point
Copy the full SHA 5da2922View commit details -
Sync eng/common directory with azure-sdk-tools for PR 1719 (Azure#15885)
* Update pipeline generation tool version Consume latest changes from pipeline generation tool in Azure/azure-sdk-tools#1708 * Update tool version to include fix for public ci Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 450f924 - Browse repository at this point
Copy the full SHA 450f924View commit details
Commits on Jun 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for b26a218 - Browse repository at this point
Copy the full SHA b26a218View commit details -
[Identity] Comment improvements. Identity generally doesn't return nu…
…ll anymore (Azure#15783) I’ve got some customers writing to me directly with some confusion regarding getToken returning null. We’ve got some remnants of this type, but at this point, Identity doesn’t return null (except for ClientSecretCredential in the browser, which is generally unusable outside of our tests). This PR is to update these docs and to give a bit of clarity on what errors we’re throwing.
Configuration menu - View commit details
-
Copy full SHA for 53d6089 - Browse repository at this point
Copy the full SHA 53d6089View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ab9b83 - Browse repository at this point
Copy the full SHA 8ab9b83View commit details -
[core] Update @azure/core-tracing to use @opentelemetry/api@1.0.0 (Az…
…ure#15883) Now that `@opentelemetry/api` GA'd at [1.0.0](https://www.npmjs.com/package/@opentelemetry/api) we can bump our own dependency to `@opentelemetry/api@1.0.0` Reminder: not _all_ packages are on the latest @opentelemetry/api... those that depend on @azure/core-rest-pipeline cannot be upgraded yet.
Configuration menu - View commit details
-
Copy full SHA for ac8d65c - Browse repository at this point
Copy the full SHA ac8d65cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a64747c - Browse repository at this point
Copy the full SHA a64747cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bf5cd3e - Browse repository at this point
Copy the full SHA bf5cd3eView commit details -
[identity] Add publication metadata for extension pacakges (Azure#15900)
This should allow our pipelines to pick these packages up for publication.
Configuration menu - View commit details
-
Copy full SHA for 0f4ae0c - Browse repository at this point
Copy the full SHA 0f4ae0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c7f3a2a - Browse repository at this point
Copy the full SHA c7f3a2aView commit details -
[core] - added changelog entries for recent changes (Azure#15902)
I recently added a few breaking changes to core-tracing which have impacted core-http but forgot to add changelog entries. This commit just addresses the changelog.
Configuration menu - View commit details
-
Copy full SHA for 0eeb81a - Browse repository at this point
Copy the full SHA 0eeb81aView commit details
Commits on Jun 23, 2021
-
[ContainerRegistry] switch to use official TS code generator (Azure#1…
…5777) and re-generate code. * Don't set userAgentPrefix in convenience layer * Update version constant prefix * Use latest @autorest/typescript plugin
Configuration menu - View commit details
-
Copy full SHA for 556da80 - Browse repository at this point
Copy the full SHA 556da80View commit details -
Arm cosmosdb release (Azure#15789)
* arm-cosmosdb-release * version update
Configuration menu - View commit details
-
Copy full SHA for 63bc1fd - Browse repository at this point
Copy the full SHA 63bc1fdView commit details -
[KeyVault] - Migrate Key Vault Admin package to Core V2 (Azure#15881)
## What - Migrate @azure/keyvault-admin to core V2 - Migrate `KeyVaultBackupClient` and `KeyVaultAccessControlClient` to core CAE - Bump our minimum `@azure/core-lro` version to 1.0.6 ## Why This PR proves out two important things: it demonstrates that core continuous access evaluation works for both container registry (already done) and Key Vault (this PR). It also demonstrates the migration path for Core V2 for Key Vault. The change to core-lro addresses an issue where core-lro was incorrectly depending on core-http (Azure#15880) That has been fixed on 1.0.6 and allows package owners to migrate to core-rest-pipeline and remove core-http without seeing build breaks. Resolves Azure#15522 Resolves Azure#14306
Configuration menu - View commit details
-
Copy full SHA for b499bfb - Browse repository at this point
Copy the full SHA b499bfbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56c7442 - Browse repository at this point
Copy the full SHA 56c7442View commit details -
Move to @azure/msal-node-extensions 1.0.0-alpha.7 (Azure#15908)
* Move to @azure/msal-node-extensions 1.0.0-alpha.7 This version unpins the `keytar` dependency, resolving build issues for some developers, and allowing keytar 7.7.0 (which uses NAPI, reducing prebuild complexity). * Update pnpm-lock
Configuration menu - View commit details
-
Copy full SHA for 5728f70 - Browse repository at this point
Copy the full SHA 5728f70View commit details -
[Communication]Feature: add sender display name within send typing no…
…tifications (Azure#15731) * Feature: add sender display name within send typing notifications * update Changelog * update signaling package * update swagger file
Configuration menu - View commit details
-
Copy full SHA for 023db76 - Browse repository at this point
Copy the full SHA 023db76View commit details -
Update ubuntu VM image (Azure#15706)
* Update ubuntu vm image * Update vmImage names * Update platform-matric.json * Update platform-matric.json
Configuration menu - View commit details
-
Copy full SHA for a1f909d - Browse repository at this point
Copy the full SHA a1f909dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c59958 - Browse repository at this point
Copy the full SHA 6c59958View commit details -
Fix handling of typed arrays in request bodies (Azure#15904)
NodeJS does not support directly passing typed arrays or ArrayBuffers to `http.ClientRequest` streams. This means we must correctly wrap these types in a `Buffer` for them to be serialized correctly.
Configuration menu - View commit details
-
Copy full SHA for 137c671 - Browse repository at this point
Copy the full SHA 137c671View commit details -
[Tables] Migration Guide (Azure#15857)
* Migration Guide * Update sdk/tables/data-tables/MigrationGuide.md Co-authored-by: Christopher Scott <chriscott@hotmail.com> * Update sdk/tables/data-tables/MigrationGuide.md Co-authored-by: Christopher Scott <chriscott@hotmail.com> * Update sdk/tables/data-tables/MigrationGuide.md Co-authored-by: Christopher Scott <chriscott@hotmail.com> * Update sdk/tables/data-tables/MigrationGuide.md Co-authored-by: Christopher Scott <chriscott@hotmail.com> * Update sdk/tables/data-tables/MigrationGuide.md Co-authored-by: Christopher Scott <chriscott@hotmail.com> * Fix typos * Apply suggestions from code review Co-authored-by: Matt Ellis <matt.ellis@microsoft.com> * Address comments Co-authored-by: Christopher Scott <chriscott@hotmail.com> Co-authored-by: Matt Ellis <matt.ellis@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 65a90e5 - Browse repository at this point
Copy the full SHA 65a90e5View commit details -
[core] - GA core-rest-pipeline 1.1.0 (Azure#15923)
## What - Update `@azure/core-rest-pipeline` to 1.1.0 from beta - Update dependencies to the latest version - Update everyone to the same version of `@azure/core-tracing` ## Why Now that we used the CAE capabilities added in core-rest-pipeline in both container registry and key vault it's time to GA this version! It also unblocks our efforts to get everyone upgraded to the latest core-tracing (and OTel by extension) versions.
Configuration menu - View commit details
-
Copy full SHA for 99d53b6 - Browse repository at this point
Copy the full SHA 99d53b6View commit details -
[Tables] Support AAD Authentication (Azure#15852)
* Support AAD Authentication * Update changelog * Update recordings * fix format * Update sdk/tables/data-tables/README.md Co-authored-by: Matt Ellis <matt.ellis@microsoft.com> * Address comments and add test * Update release version * Add Acknowledgments to changelog * Fix link * Remove breaking changes section Co-authored-by: Matt Ellis <matt.ellis@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 2d2c656 - Browse repository at this point
Copy the full SHA 2d2c656View commit details
Commits on Jun 24, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 46078e3 - Browse repository at this point
Copy the full SHA 46078e3View commit details -
[service-bus] Fixing issue where links were not removed from our inte…
…rnal cache (Azure#15929) Today we cache any opened links in the connectionContext. These links should be removed when the link itself is closed but, due to a mismatch in the values, we weren't. I've fixed this by just making an abstract method in LinkEntity (the base for all the link types) and just having each link properly remove itself from the cache. Fixes Azure#15890
Configuration menu - View commit details
-
Copy full SHA for 58b1993 - Browse repository at this point
Copy the full SHA 58b1993View commit details -
arm-trafficmanager-release (Azure#15695)
* arm-trafficmanager-release * readme update * update package.json
Configuration menu - View commit details
-
Copy full SHA for bb833fc - Browse repository at this point
Copy the full SHA bb833fcView commit details -
arm-eventgrid-release (Azure#15791)
* arm-eventgrid-release * update package.json * Update sdk/eventgrid/arm-eventgrid/README.md Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com> Co-authored-by: Wei Dong <40835867+dw511214992@users.noreply.github.com> Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>
Configuration menu - View commit details
-
Copy full SHA for b77a2a4 - Browse repository at this point
Copy the full SHA b77a2a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93d102b - Browse repository at this point
Copy the full SHA 93d102bView commit details -
[Core Rest] Add pagination helper for rest clients @azure-rest/core-c…
…lient-paging (Azure#15831) * Prototype paging helper function * Use paginate in farmbeats * Updates * Update farmbeats * Address PR feedback * Move paging to its own package * Use REST Error * Update types output * update home page * Explicit return RestError * Move paging to its own file and update changelog and versions
Configuration menu - View commit details
-
Copy full SHA for 23bb270 - Browse repository at this point
Copy the full SHA 23bb270View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f71ecd - Browse repository at this point
Copy the full SHA 5f71ecdView commit details -
[Azure Monitor Exporter] Updating OpenTelemetry API to 1.0.0 (Azure#1…
…5934) * Updating OpenTelemetry API to 1.0.0 * Updating version in Monitor Query * lint fix * Format * rush update
Configuration menu - View commit details
-
Copy full SHA for 24302c8 - Browse repository at this point
Copy the full SHA 24302c8View commit details -
[Tables] Add missing browser mappings (Azure#15944)
* Add missing browser mappings * Update changelog
Configuration menu - View commit details
-
Copy full SHA for 1f6b914 - Browse repository at this point
Copy the full SHA 1f6b914View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3c3f90 - Browse repository at this point
Copy the full SHA d3c3f90View commit details -
[Tables] Expose client option allowInsecureConnection (Azure#15938)
In order for Tables to connect to Azurite and Storage emulator, the client needs to accept `allowInsecureConnection`. Also when using the emulator connection string shortcut, setting it by default.
Configuration menu - View commit details
-
Copy full SHA for cbaa410 - Browse repository at this point
Copy the full SHA cbaa410View commit details -
Sync eng/common directory with azure-sdk-tools for PR 1729 (Azure#15927)
* Check for API review status only if release date is set in changelog * Change property name to ReleaseStatus Co-authored-by: Praveen Kuttappan <praveen.kuttappan@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3c21c59 - Browse repository at this point
Copy the full SHA 3c21c59View commit details -
[core] - Bump core-http to 2.0.0 and core-lro to 2.0.0 (Azure#15925)
## What - Update core-http to 2.0.0 - Update core-lro to 2.0.0 - Update packages to use latest version ## Why This will support our last breaking change for core-tracing, and allow everyone to be on the same minimum version. This will also allow us to target ES2017 across the board.
Configuration menu - View commit details
-
Copy full SHA for 5903b7c - Browse repository at this point
Copy the full SHA 5903b7cView commit details -
[Identity] Samples aligned with other languages (v1 compatible) (Azur…
…e#15031) In this PR we're aligning the samples of Identity with other languages. The samples I'm adding in this PR are: - Rolling certificates with ClientCertificateCredential ([.Net](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/samples/ClientCertificateCredentialSamples.md#rolling-certificates)). - ClientCertificateCredential with a Key Vault Certificate ([Python](Azure/azure-sdk-for-python#18109)) (decided not to use `@azure/keyvault-certificates` because of the possible issues converting certificates from one format to another in Node). - Custom credentials ([.Net](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/samples/DefiningCustomCredentialTypes.md#defining-custom-credential-types)). - Using MSAL directly ([.Net](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/samples/DefiningCustomCredentialTypes.md#authenticating-with-msal-directly)). - On Behalf Of Flow ([.Net](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/samples/DefiningCustomCredentialTypes.md#authenticating-with-the-on-behalf-of-flow)). New samples related to the v2-specific features will be added after the Identity package is separated. Related to Azure#14435 --- I’ve decided to use this opportunity to: Fix Azure#15324 This PR also implicitly: Fixes Azure#15573
Configuration menu - View commit details
-
Copy full SHA for 9b9a9d1 - Browse repository at this point
Copy the full SHA 9b9a9d1View commit details -
Tweak workspace settings for VS Code startup perf (Azure#15956)
This greatly improved my first open experience on my laptop. The only tradeoff is `node_modules` folders won't appear in the file tree of VS Code, but I think this is a pretty uncommon place to browse into manually.
Configuration menu - View commit details
-
Copy full SHA for aa8db15 - Browse repository at this point
Copy the full SHA aa8db15View commit details -
Add Ubuntu 20 to local dns bypass template (Azure#15951)
Co-authored-by: Praveen Kuttappan <praveen.kuttappan@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4ff4cef - Browse repository at this point
Copy the full SHA 4ff4cefView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8afa5cf - Browse repository at this point
Copy the full SHA 8afa5cfView commit details -
Attestation\README listing links as a list (Azure#15914)
* displayed links as a list rather than a single line * displayed links as a list rather than a single line * appconfiguration\Readme: displayed links as a list rather than a single line * attestation\Readme: displayed links as a list rather than a single line #6449 * Apply suggestions from code review Co-authored-by: Deyaaeldeen Almahallawi <dealmaha@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for d9066a2 - Browse repository at this point
Copy the full SHA d9066a2View commit details
Commits on Jun 25, 2021
-
Update references from master to main (Azure#15977)
Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for c6b82ee - Browse repository at this point
Copy the full SHA c6b82eeView commit details -
[App config] Perf tests (Azure#15763)
Adds the list test Closes Azure#13981
Configuration menu - View commit details
-
Copy full SHA for 35739ab - Browse repository at this point
Copy the full SHA 35739abView commit details -
[core-http] Throttling retry policy fix in core-http (Azure#15832)
Fixes Azure#15796 ## Problem The throttlingRetryPolicy in core-http has the potential to retry for an extended period if the service continues returning "retry after" headers on subsequent calls. Here's the snippet of code that handles the "retry after" retries: ```typescript public async sendRequest(httpRequest: WebResource): Promise<HttpOperationResponse> { return this._nextPolicy.sendRequest(httpRequest.clone()).catch((err) => { // other code elided.... return delay(delayInMs).then((_: any) => this.sendRequest(httpRequest.clone())); ``` ## Solution Update delay such that it respects abort signal. Similar to what I had to do for app-config at Azure#15721
Configuration menu - View commit details
-
Copy full SHA for bb9896d - Browse repository at this point
Copy the full SHA bb9896dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d76e6f6 - Browse repository at this point
Copy the full SHA d76e6f6View commit details -
[event-hubs] migrate samples to v2 (Azure#15053)
Followed the steps at https://github.com/Azure/azure-sdk-for-js/wiki/Samples-v2-Migration-Guide /cc @willmtemple Note: I moved browserSamples and expressSamples into the generated v5 samples folder since dev-tool doesn't work with those.
Configuration menu - View commit details
-
Copy full SHA for 2f90a87 - Browse repository at this point
Copy the full SHA 2f90a87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9440254 - Browse repository at this point
Copy the full SHA 9440254View commit details -
[ContainerRegistry] Update delete image sample (Azure#16002)
to delete tags before delete the image as this is the recommended best practice for the service.
Configuration menu - View commit details
-
Copy full SHA for ca61eb9 - Browse repository at this point
Copy the full SHA ca61eb9View commit details -
[Identity] Test improvements (Azure#15999)
* [Identity] Test improvements * temporary node 16 fix * Since unhandled promise rejections are not supported in Node 16, tickAsync can't be awaited * fix the test Co-authored-by: Harsha Nalluru <sanallur@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 4ccc8d9 - Browse repository at this point
Copy the full SHA 4ccc8d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63b6236 - Browse repository at this point
Copy the full SHA 63b6236View commit details -
[KeyVault] - Add support for getRandomBytes operation (Azure#15955)
## What - Regenerate from 7.3-preview swagger - Add `getRandomBytes` method ## Why - For July we would like to add support for the RNG endpoint in a Managed HSM. While this is a customer ask for Java, we will add this to all languages at the same time.
Configuration menu - View commit details
-
Copy full SHA for f3a8efe - Browse repository at this point
Copy the full SHA f3a8efeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4784937 - Browse repository at this point
Copy the full SHA 4784937View commit details -
Prepare to move to @types/node v12 (Azure#16012)
As part of #7022, we will be moving the version of `@types/node` from 8 to 12 This PR has the changes required to fix the build errors that occurred when trying out this change - The [Agent](https://nodejs.org/docs/latest-v12.x/api/http.html#http_class_http_agent) class in Node.js 12 has an extra property `maxTotalSockets`. The docs say there is a default value for this, but it it is still marked as a mandatory property in the types. We use our own interface for this class for the purposes of user providing their own custom agent. Am casting it in this PR to the expected type. If anyone has better ideas here, am all ears :) - `global.URL` is not a thing as per the types for Node.js 12. We needed this to support Node.js 8 - Fixing the types for `port` in the parsed url The actual move to v12 for `@types/node` will be done in a separate PR
Configuration menu - View commit details
-
Copy full SHA for 82085ff - Browse repository at this point
Copy the full SHA 82085ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for b729674 - Browse repository at this point
Copy the full SHA b729674View commit details
Commits on Jun 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1a5d100 - Browse repository at this point
Copy the full SHA 1a5d100View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8da289 - Browse repository at this point
Copy the full SHA b8da289View commit details
Commits on Jun 28, 2021
-
Prepare Storage packages to move to @types/node v12 (Azure#16020)
* Use BufferEncoding as encoding is not a string in Node.js 12 * Fix typing issue for fsStat returning unknown
Configuration menu - View commit details
-
Copy full SHA for ff90eba - Browse repository at this point
Copy the full SHA ff90ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 23de687 - Browse repository at this point
Copy the full SHA 23de687View commit details -
[Cosmos] Simple endpoint refresh interval (Azure#15781)
* adds simple background refresh * Adds setInterval with unref * cleanup * wip prenock * wip * Removes recorder, fixes timeout in tests * extract api * fix lint * format * Adds flag * lint * Fix parition spelling * modify endpoint check * fix tests * Comment proxy * adds back copyright * skip session spec * Fix session token * Fix session spec on emulator
Configuration menu - View commit details
-
Copy full SHA for d3647f8 - Browse repository at this point
Copy the full SHA d3647f8View commit details -
Support track2 management packages (Azure#15975)
* Support track2 management packages
Configuration menu - View commit details
-
Copy full SHA for 00ea067 - Browse repository at this point
Copy the full SHA 00ea067View commit details -
Fix lint script for app config perf test (Azure#16046)
Perf test packages should not be using the eslint plugin Fixes the below error ``` ESLint couldn't find the plugin "@azure/eslint-plugin-azure-sdk". (The package "@azure/eslint-plugin-azure-sdk" was not found when loaded as a Node module from the directory "/home/vsts/work/1/s/sdk".) It's likely that the plugin isn't installed correctly. Try reinstalling by running the following: npm install @azure/eslint-plugin-azure-sdk@latest --save-dev The plugin "@azure/eslint-plugin-azure-sdk" was referenced from the config file in "../../../.eslintrc.json". ```
Configuration menu - View commit details
-
Copy full SHA for facf5c1 - Browse repository at this point
Copy the full SHA facf5c1View commit details -
[core-rest] - Update core-client-paging-rest to use the latest core-r…
…est-pipeline (Azure#16045) This PR updates the newly added `@azure-rest/core-client-paging` package to use the same version of `@azure/core-rest-pipeline` that the other packages use. We recently GA'd (on main, not released yet) version 1.1.0 of `@azure/core-rest-pipeline` and want to keep everyone on the latest version.
Configuration menu - View commit details
-
Copy full SHA for 37d3ed9 - Browse repository at this point
Copy the full SHA 37d3ed9View commit details -
Fix linter errors in app config perf tests (Azure#16048)
Follow up for Azure#16046 to fix the resulting linter errors
Configuration menu - View commit details
-
Copy full SHA for 13772c2 - Browse repository at this point
Copy the full SHA 13772c2View commit details -
[web-pubsub] Migrate
@azure/web-pubsub
to new core pipeline (Azure#……16010) Update to latest core packages and improve pipeline robustness.
Configuration menu - View commit details
-
Copy full SHA for 21f28dc - Browse repository at this point
Copy the full SHA 21f28dcView commit details -
[EventGrid] Move to Core V2 Generator (Azure#16047)
As part of the development of the new pipeline, event grid was hand ported to use the new pipeline. Now that the code generator targets the new pipeline, we can start using it to generate the code. Since EventGrid includes the `/api/events` path segment in the Endpoint, We need to do a small amount of post processing of the generated code, to ensure `/api/events` is not appended to the endpoint (we do this by setting an empty path in the operation spec, which is as things were before moving over to the generator). Fixes Azure#15823
Configuration menu - View commit details
-
Copy full SHA for 5c5c2cf - Browse repository at this point
Copy the full SHA 5c5c2cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 018fd46 - Browse repository at this point
Copy the full SHA 018fd46View commit details -
[Identity] node-fetch takes above 2 seconds to send the request on so…
…me environments (Azure#15937)
Configuration menu - View commit details
-
Copy full SHA for 8919e6a - Browse repository at this point
Copy the full SHA 8919e6aView commit details -
[Identity] Add support for Bridge to Kubernetes to ManagedIdentityCre…
…dential (Azure#15856) * [Identity] Add support for Bridge to Kubernetes to ManagedIdentityCredential * one very simple test * forgot this line
Configuration menu - View commit details
-
Copy full SHA for ec4abba - Browse repository at this point
Copy the full SHA ec4abbaView commit details -
[Azure Monitor Exporter] Separate tests into internal and public fold…
…ers (Azure#15932) * [Monitor Exporter] Separate tests into internal and public folders * fix build * put tests in internal * prettier * console log for testing * testing * format * console * try flush processor * format * remove console logs
Configuration menu - View commit details
-
Copy full SHA for df68c3e - Browse repository at this point
Copy the full SHA df68c3eView commit details -
[synapse] - Ignore known rollup warnings (Azure#15948)
## What - Adds warning filter to ignore known rollup warnings that are safe to ignore - Ignore `this has been rewritten to undefined` in synapse - Ignore circular dependencies in synapse ## Why These are both known warnings, are safe to ignore, and add noise to the build output unnecessarily. The first is totally safe to ignore: ``` var __spreadArray = (this && this.__spreadArray) || function (to, from) { ``` Is emitted from TypeScript in the OTel ESM and is safe to use. The second is a known issue in OTel 1.0.0 that is not harmful at runtime. Finally, we have precedent for doing the exact same thing in other packages like service-bus.
Configuration menu - View commit details
-
Copy full SHA for 5b4eac3 - Browse repository at this point
Copy the full SHA 5b4eac3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a7c129 - Browse repository at this point
Copy the full SHA 5a7c129View commit details
Commits on Jun 29, 2021
-
Update contributing guide to reflect Node.js support (Azure#16057)
The watchful eyes of @vishnureddy17 found that we still have reference to Node.js 8 in our Contributing Guide!! This PR fixes that. Related to #7022
Configuration menu - View commit details
-
Copy full SHA for f854a85 - Browse repository at this point
Copy the full SHA f854a85View commit details -
Update identity to 2.0.0-beta.4 for quantum jobs (Azure#15801)
* Update identity to 2.0.0-beta.4 for quantum jobs * Fix CI Errors * Fix CI Errors
Configuration menu - View commit details
-
Copy full SHA for 9699830 - Browse repository at this point
Copy the full SHA 9699830View commit details -
[core] Retry on 503 using the Retry-After header (Azure#15906)
Based on the Retry-After specification, 503 should also be supported when considering the Retry-After header. This also aligns with upcoming Identity plans.
Configuration menu - View commit details
-
Copy full SHA for c8126be - Browse repository at this point
Copy the full SHA c8126beView commit details -
[digital-twins-core] rename test folder and enable minmax testing (Az…
…ure#16049) close Azure#13814
Configuration menu - View commit details
-
Copy full SHA for b17fb63 - Browse repository at this point
Copy the full SHA b17fb63View commit details -
[Identity] [InteractiveBrowserCredential] [Node] Enable PKCE (Azure#1…
…5853) This PR enables PKCE on the InteractiveBrowserCredential. We don’t have tests for this yet. I’ll make sure to test it manually, at least. Fixes Azure#15168
Configuration menu - View commit details
-
Copy full SHA for 36b468c - Browse repository at this point
Copy the full SHA 36b468cView commit details -
[monitor-query] Regenerate client with stable swaggers and add in inc…
…ludeVisualization option. (Azure#16058) * Big update to use the latest stable swagger files for all of the Log Analytics services. Each reference is by git commit ID this time to prevent any accidental drift. Also, added in the includeRender header (via the `includeVisualization` option). Fixes Azure#15771 * Fixing codeowners to reflect the proper owners for the package: @KarishmaGhiya - main owner @maorleger - backup owner * Formatting!
Configuration menu - View commit details
-
Copy full SHA for d4d5002 - Browse repository at this point
Copy the full SHA d4d5002View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8236d61 - Browse repository at this point
Copy the full SHA 8236d61View commit details -
Convenience Method to create a synonymmap object (Azure#16054)
* Convenience Method to create a synonymmap object * Update sdk/search/search-documents/src/synonymMapHelper.ts Co-authored-by: Jeff Fisher <xirzec@xirzec.com> * Fix for PR Comments Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
Configuration menu - View commit details
-
Copy full SHA for 20321ef - Browse repository at this point
Copy the full SHA 20321efView commit details
Commits on Jun 30, 2021
-
[Identity] InteractiveBrowserCredential loginHint (Azure#15855)
* [Identity] InteractiveBrowserCredential LoginHint * formatting * Update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 14fddf7 - Browse repository at this point
Copy the full SHA 14fddf7View commit details -
Sync eng/common directory with azure-sdk-tools for PR 1725 (Azure#16079)
* Bring changes from JS docs metadata * Move business logic inside Update-DocsMsMetadata.ps1 * Update with the latest changes in JS PR * Update from latest PR feedback * Add check for empty path to prevent crashes when creating relative paths Co-authored-by: Daniel Jurek <djurek@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 528f940 - Browse repository at this point
Copy the full SHA 528f940View commit details -
[core] - Update release dates for July Release (Azure#16069)
This PR just updates the release dates for core releases that I plan to release: - @azure/core-tracing - @azure/core-http - @azure/core-rest-pipeline - @azure/core-client - @azure/core-lro - @azure/core-auth
Configuration menu - View commit details
-
Copy full SHA for 702007a - Browse repository at this point
Copy the full SHA 702007aView commit details -
Update devops workitem helpers (Azure#16083)
- Switch to using rest instead of cli for querying work items as cli is limited to 1000 items only. - Fix issues with Generated fields not being set. - Correctly sort older workitems by version isntead of string. Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for bbd295a - Browse repository at this point
Copy the full SHA bbd295aView commit details -
[event-hubs] add AmqpAnnotatedMessage support (Azure#15939)
* [event-hubs] add AmqpAnnotatedMessage support * undo experimental deletion of decode method from service bus * address feedback
Configuration menu - View commit details
-
Copy full SHA for 19d0e76 - Browse repository at this point
Copy the full SHA 19d0e76View commit details -
update core-client version to 1.2.1 (Azure#16109)
See Azure#16094 for details. This PR just updates core-client to 1.2.1 so I can release it
Configuration menu - View commit details
-
Copy full SHA for 39d2a80 - Browse repository at this point
Copy the full SHA 39d2a80View commit details -
fix core-http changelog (Azure#16116)
The release pipeline complains if there are empty sections in the changelog. Removing the empty section to correct this and unblock core-http release.
Configuration menu - View commit details
-
Copy full SHA for 44ba530 - Browse repository at this point
Copy the full SHA 44ba530View commit details -
Sync eng/common directory with azure-sdk-tools for PR 1763 (Azure#16091)
* Disable release date check * Release check is not finding release date Co-authored-by: Praveen Kuttappan <praveen.kuttappan@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f143bcf - Browse repository at this point
Copy the full SHA f143bcfView commit details -
[App Config] changelog and update versions for GA (Azure#16115)
For 1.2.0 release
Configuration menu - View commit details
-
Copy full SHA for 40dd9e4 - Browse repository at this point
Copy the full SHA 40dd9e4View commit details -
[Text Analytics] Merge feature branch for v5.1.0 to main (Azure#16121)
It consists of the following already-reviewed PRs: Azure#16114 Azure#16095 Azure#15995 Azure#15684 Azure#15649 Azure#15598 Azure#15554
Configuration menu - View commit details
-
Copy full SHA for 761a4e6 - Browse repository at this point
Copy the full SHA 761a4e6View commit details -
[Identity] Support for tenant Id Challenges / tenant discovery in Cli…
…entCredentials (Azure#15837) This PR adds `tenantId` to the `getTokenOptions`, and adds options on every Identity credential to allow multi-tenant authentication (which will be disabled by default). Fixes Azure#15797
Configuration menu - View commit details
-
Copy full SHA for d8407ad - Browse repository at this point
Copy the full SHA d8407adView commit details -
Increment version for core releases (Azure#16113)
* Increment package version after release of azure-core-tracing * Increment package version after release of azure-core-lro * Increment package version after release of azure-core-rest-pipeline * Run rush update Co-authored-by: Maor Leger <malege@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 020a075 - Browse repository at this point
Copy the full SHA 020a075View commit details -
Increment version for core releases (Azure#16125)
* Increment package version after release of azure-core-http * Increment package version after release of azure-core-client
Configuration menu - View commit details
-
Copy full SHA for cec69b6 - Browse repository at this point
Copy the full SHA cec69b6View commit details
Commits on Jul 1, 2021
-
[service-bus] Fix message loss issues with peekLock and receiveAndDel…
…ete (Azure#15989) Fixing an issue where we could lose messages or provoke an alarming message from rhea (`Received transfer when credit was 0`) The message loss issue is related to how we trigger 'drain' using 'addCredit(1)'. Our 'receiver.drain; receiver.addCredit(1)' pattern actually does add a credit, which shows up in the flow frame that gets sent for our drain. This has led to occasionally receiving more messages than we intended. The second part of this was that we were masking this error because we had code that specifically threw out messages if more arrived than were requested. If the message was being auto-renewed it's possible for the message to appear to be missing, and if we were in receiveAndDelete the message is effectively lost at that point. That code is now removed (we defer to just allowing the extrra message, should a bug arise that causes that) and we log an error indicating it did happen. The rhea error message appeared to be triggered by our accidentally allowing multiple overlapping 'drain's to occur (finalAction did not check to see if we were _already_ draining and would allow it to happen multiple times). Removing the concurrent drains fixed this issue but I didn't fully investigate why. Fixes Azure#15606, Azure#15115
Configuration menu - View commit details
-
Copy full SHA for d75f119 - Browse repository at this point
Copy the full SHA d75f119View commit details -
Configuration menu - View commit details
-
Copy full SHA for dea0b2e - Browse repository at this point
Copy the full SHA dea0b2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f34b099 - Browse repository at this point
Copy the full SHA f34b099View commit details -
disable orginal pipeline for mgmt in main branch (Azure#16026)
* Delete mgmt-ci.yml * Delete mgmt-pr.yml
Configuration menu - View commit details
-
Copy full SHA for c07f91d - Browse repository at this point
Copy the full SHA c07f91dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b75850 - Browse repository at this point
Copy the full SHA 9b75850View commit details -
Update docs metadata mutation logic (Azure#16132)
Co-authored-by: Daniel Jurek <djurek@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 1eea0bb - Browse repository at this point
Copy the full SHA 1eea0bbView commit details -
Ensure word alpha is present in dev build (Azure#16089)
* Ensure word alpha is present in dev build
Configuration menu - View commit details
-
Copy full SHA for e93bfac - Browse repository at this point
Copy the full SHA e93bfacView commit details -
Configuration menu - View commit details
-
Copy full SHA for 55adc3d - Browse repository at this point
Copy the full SHA 55adc3dView commit details -
Daily reference docs for JS (Azure#15749)
* Add dev version to Save-Package-Properties.ps1 and includd in build process * Now with fewer pipelines * Add daily docs.ms work to docindex.yml * Update-DocsMsMetadata and required functions * Common * Docs meatadata release and daily docs build * eq * Loop over artifacts in paramaters.Artifacts * Add PackageInfo to path * download: current * Output artifacts * Pool * Use relative paths in package properties json file and use dev version as Version (if available) when setting metadata * Skip checking out docs repo if it's already checked out * Don't overcomplicate docs-metadata-release.yml * With parameters properly defined and redundant logic removed * Use TargetBranchName * Retain original version to differentiate where metadata and readme docs end up * Add docs repo support for GetDocsMetadata: first cut * Sparse checkout needs to include metadata * Add metadata from packages that aren't tracked in the CSV file yet * Use "dev" if the package has a "dev" version in JS. This will not work in other languages and shouldn't be put into eng/common. That will need to be refactored into logic that could be in Language-Settings.ps1 * Refactor and use sparse checkout everywhere * Refactor long path support * Correct path * Parameter names * Remove unnecessary parameter * Close quote * Add pipeline starting * Keep the single quotes * Output link to CI build * Refactor: * Rename docs-metadata-release2.yml" to "update-docsms-metadata.yml" * Documentation for Update-DocsMsMetadata.ps1 * Documentation for Update-DocsMsPackages.ps1 * Add function invocation to Update-DocsMsMetadata.ps1 to override the package metadata from PackageInfo before it's written into the metadata folder * Refactor logic for generating daily branch name * Add ability to override daily docs branch name at queue time * Apply suggestions from code review Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> * Review feedback: Save-Package-Properties.ps1 * Update comments for path normalization * Change path normalization logic to not switch current location * Update docs * Add ability to specify variable name for default branch * Try convertToJson * Tab scope * Do doc artifact info loop in Update-DocsMsMetadata.ps1 instead of yaml template * Single quotes * Remove template loop * Remove extra template references * Move convertToJson * Try different formatting given convertToJson * Reverse Update-DocsMsMetadata.ps1 to operate on a single object. Looping can happen in yaml * Loop in yaml, Rename Update-DocsMsMetadata parameter * Try re-formatting yaml * Spell parameters properly * Missing backtick * Remove extra logging * First cut at default implementation * Move business logic inside Update-DocsMsMetadata.ps1, PowerShell can handle an array or a single item in the cmdlet parameters * Use proper function name * PackageProps has a DevVersion * No DefaultImplementation in this change. This should be part of a wider effort. * Straggling master -> main rename * Use existing devops starting logic * Remove extra condition * Fix backslashes * Correct number of backslashes * Use variable for branch name * Update eng/scripts/Language-Settings.ps1 Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> * Review feedback * Do not replace the default branch with the tag in links when doing a Dev build (pointing to the default branch is preferable and the tag does not exist) * Conditions on docs version for template project * Do not run PublishDocsToNightlyBranch if TestPipeline is true * Performance improvements, switch to Linux to take advantage of paths that don't look like escape sequences to ConvertFrom-Json * Add markdown files to sparse checkout * Reproduce failure for template publishing * Remove eng, it's already there by default * Fix instances where metadata might not be available because of filtering Hide == true (e.g. in template packages). The only information consumed from CSV metadata at this time is the service name which gets normalized and placed in the package overview metadata. Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 43ecf92 - Browse repository at this point
Copy the full SHA 43ecf92View commit details -
[Text Analytics] Update CHANGELOG with release date (Azure#16146)
* [Text Analytics] Update CHANGELOG with release date * edit
Configuration menu - View commit details
-
Copy full SHA for 400a1f2 - Browse repository at this point
Copy the full SHA 400a1f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for bfff737 - Browse repository at this point
Copy the full SHA bfff737View commit details -
Configuration menu - View commit details
-
Copy full SHA for e356efd - Browse repository at this point
Copy the full SHA e356efdView commit details -
Sync eng/common directory with azure-sdk-tools for PR 1772 (Azure#16151)
* Update change log headers based on guideline update Updates based on Azure/azure-sdk#3103 - Renamed "Key Bugs Fixed" to "Bugs Fixed" - Renamed "Fixed" to "Other Changes" Added a warning in validation if at lease one of the recommended headers aren't used. * Update eng/common/scripts/ChangeLog-Operations.ps1 Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com> Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com> Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 899fc0a - Browse repository at this point
Copy the full SHA 899fc0aView commit details
Commits on Jul 2, 2021
-
Merge branch 'main' into feature/v4
# Conflicts: # eng/pipelines/mgmt-ci.yml # eng/pipelines/mgmt-pr.yml
Configuration menu - View commit details
-
Copy full SHA for 3bcdc0b - Browse repository at this point
Copy the full SHA 3bcdc0bView commit details
Commits on Jul 5, 2021
-
Appconfiguration release (Azure#16190)
* arm-appconfiguration-release * arm-appconfiguration-release
Configuration menu - View commit details
-
Copy full SHA for 9a47f3d - Browse repository at this point
Copy the full SHA 9a47f3dView commit details
Commits on Jul 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 785029b - Browse repository at this point
Copy the full SHA 785029bView commit details
Commits on Jul 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 52ad992 - Browse repository at this point
Copy the full SHA 52ad992View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7ed37e - Browse repository at this point
Copy the full SHA b7ed37eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c6fb107 - Browse repository at this point
Copy the full SHA c6fb107View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43c5bc4 - Browse repository at this point
Copy the full SHA 43c5bc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b79e507 - Browse repository at this point
Copy the full SHA b79e507View commit details
Commits on Jul 9, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 3fe4a1c - Browse repository at this point
Copy the full SHA 3fe4a1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5565230 - Browse repository at this point
Copy the full SHA 5565230View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4dbf054 - Browse repository at this point
Copy the full SHA 4dbf054View commit details -
Configuration menu - View commit details
-
Copy full SHA for 719cb86 - Browse repository at this point
Copy the full SHA 719cb86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35fc536 - Browse repository at this point
Copy the full SHA 35fc536View commit details -
Configuration menu - View commit details
-
Copy full SHA for de107dd - Browse repository at this point
Copy the full SHA de107ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3804071 - Browse repository at this point
Copy the full SHA 3804071View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18c9ac9 - Browse repository at this point
Copy the full SHA 18c9ac9View commit details
Commits on Jul 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 24c4d46 - Browse repository at this point
Copy the full SHA 24c4d46View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb5b44c - Browse repository at this point
Copy the full SHA eb5b44cView commit details -
CodeGen from PR 13945 in Azure/azure-rest-api-specs
Merge 9fb392c3cc6d332236ea007c20f1481428e62521 into 571282bb195d489c7a127d8a5336bda35a3b282e
SDKAuto committedJul 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 03ee84a - Browse repository at this point
Copy the full SHA 03ee84aView commit details