From acd7f5cce5c2666bd23f1f7abf77a57ab6923a26 Mon Sep 17 00:00:00 2001 From: iscai-msft <43154838+iscai-msft@users.noreply.github.com> Date: Tue, 6 Oct 2020 16:04:46 -0400 Subject: [PATCH 01/87] add TA 5.1.0b2 release notes (#1893) --- releases/2020-10/python.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 21e8bc0a9ae..19e7e456e46 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -19,6 +19,7 @@ The Azure SDK team is pleased to make available the October 2020 client library #### Beta - Service Bus +- Text Analytics ## Installation Instructions @@ -26,6 +27,7 @@ To install the latest beta version of the packages, copy and paste the following ```bash pip install azure-servicebus --pre +pip install azure-ai-textanalytics --pre ``` ## Feedback @@ -44,6 +46,12 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here * Administration Client calls now take only entity names, not `Descriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string). * `AMQPMessage` (`Message.amqp_message`) properties are now read-only, changes of these properties would not be reflected in the underlying message. This may be subject to change before GA. +### Text Analytics [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md#510b2-2020-10-06) + +#### Breaking changes + +* Removed extra property `length` from relevant models. Originally, this property represented the length of the `text` property in those same models. To get the length of the text in these models, just call `len()` on the text property. + ## Latest Releases View all the latest versions of Python packages [here][python-latest-releases]. From afa0e0d228fa95041bc02ee8f5f4d9484de461a7 Mon Sep 17 00:00:00 2001 From: Xiang Yan Date: Wed, 7 Oct 2020 09:36:38 -0700 Subject: [PATCH 02/87] release notes for search and app config (#1891) * release notes for search and app config --- releases/2020-10/python.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 19e7e456e46..81f3df19af5 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -14,11 +14,12 @@ The Azure SDK team is pleased to make available the October 2020 client library #### Updates -- _Add packages_ +- App Configuration #### Beta - Service Bus +- Search - Text Analytics ## Installation Instructions @@ -27,6 +28,8 @@ To install the latest beta version of the packages, copy and paste the following ```bash pip install azure-servicebus --pre +pip install azure-search-documents --pre +pip install azure-appconfiguration pip install azure-ai-textanalytics --pre ``` @@ -46,6 +49,22 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here * Administration Client calls now take only entity names, not `Descriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string). * `AMQPMessage` (`Message.amqp_message`) properties are now read-only, changes of these properties would not be reflected in the underlying message. This may be subject to change before GA. +### Search [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/search/azure-search-documents/CHANGELOG.md) + +#### New Features + +- Added auto_flush_interval support for SearchIndexingBufferedSender + +#### Breaking Changes + +- Renamed SearchIndexDocumentBatchingClient to SearchIndexingBufferedSender +- Renamed SearchIndexDocumentBatchingClient.add_upload_actions to SearchIndexingBufferedSender.upload_documents +- Renamed SearchIndexDocumentBatchingClient.add_delete_actions to SearchIndexingBufferedSender.delete_documents +- Renamed SearchIndexDocumentBatchingClient.add_merge_actions to SearchIndexingBufferedSender.merge_documents +- Renamed SearchIndexDocumentBatchingClient.add_merge_or_upload_actions to SearchIndexingBufferedSender.merge_or_upload_documents +- Stopped supporting window kwargs for SearchIndexingBufferedSender +- Split kwarg hook into on_new, on_progress, on_error, on_remove for SearchIndexingBufferedSender + ### Text Analytics [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md#510b2-2020-10-06) #### Breaking changes From e40b9b47a7e2a701a4e27f4af8d93031659bf4cc Mon Sep 17 00:00:00 2001 From: Xiang Yan Date: Wed, 7 Oct 2020 16:26:59 -0700 Subject: [PATCH 03/87] release notes for metrics advisor (#1903) --- _data/releases/latest/python-packages.csv | 1 + releases/2020-10/index.md | 2 +- releases/2020-10/python.md | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 09e902ff8d7..68e48529bd6 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -38,6 +38,7 @@ "azure-mgmt-streamanalytics","","1.0.0rc1","Resource Management - Stream Analytics","Stream Analytics","streamanalytics","NA","","mgmt","","" "azure","5.0.0","","azure","","NA","NA","NA","","true","" "azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","NA","","","","Will replace: azure-cognitiveservices-anomalydetector" +"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","","","" "azure-ai-nspkg","1.0.0","","azure-ai-nspkg","Text Analytics","textanalytics","NA","NA","","","" "azure-applicationinsights","0.1.0","","azure-applicationinsights","Application Insights","https://github.com/Azure/azure-sdk-for-python/tree/azure-applicationinsights_0.1.0/azure-applicationinsights","NA","","","","" "azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index 0328b6ae605..43fc8500f09 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -11,7 +11,7 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( ## Release Highlights -* +* Azure Metrics Advisor Client Libraries Beta 1 release * * diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 81f3df19af5..79a141479d8 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -21,6 +21,7 @@ The Azure SDK team is pleased to make available the October 2020 client library - Service Bus - Search - Text Analytics +- Metrics Advisor ## Installation Instructions @@ -31,6 +32,7 @@ pip install azure-servicebus --pre pip install azure-search-documents --pre pip install azure-appconfiguration pip install azure-ai-textanalytics --pre +pip install azure-ai-metricsadvisor --pre ``` ## Feedback From 730b64d1c375a6e9a8781e871618598100f507f9 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Thu, 8 Oct 2020 13:09:26 -0700 Subject: [PATCH 04/87] Add Key Vault release notes (#1901) * Add Key Vault release notes * Reorder packages --- releases/2020-10/dotnet.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/releases/2020-10/dotnet.md b/releases/2020-10/dotnet.md index bb8fc46e070..47080302559 100644 --- a/releases/2020-10/dotnet.md +++ b/releases/2020-10/dotnet.md @@ -19,6 +19,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas #### Beta - Event Hubs +- Key Vault - Tables ## Installation Instructions @@ -27,8 +28,14 @@ To install any of our packages, please search for them via `Manage NuGet Package ```bash $> dotnet add package Azure.Data.Tables --version 3.0.0-beta.2 + $> dotnet add package Azure.Messaging.EventHubs --version 5.3.0-beta.3 $> dotnet add package Azure.Messaging.EventHubs.Processor --version 5.3.0-beta.3 + +$> dotnet add package Azure.Security.KeyVault.Administration --version 4.0.0-beta.2 +$> dotnet add package Azure.Security.KeyVault.Certificates --version 4.2.0-beta.2 +$> dotnet add package Azure.Security.KeyVault.Keys --version 4.2.0-beta.2 +$> dotnet add package Azure.Security.KeyVault.Secrets --version 4.2.0-beta.2 ``` ## Feedback @@ -60,6 +67,10 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. +### Key Vault + +- Bug fixes and performance improvements. + ## Latest Releases View all the latest versions of .NET packages [here][dotnet-latest-releases]. From 095e61497b844eff38d28249db38aa2f103a2b5b Mon Sep 17 00:00:00 2001 From: vcolin7 Date: Thu, 8 Oct 2020 15:53:17 -0500 Subject: [PATCH 05/87] Added release notes templates and package indexes for Android and iOS. (#1899) * Added the release notes templates for the Android and iOS SDKs. * Applied suggestions from code review. Co-authored-by: Brandon Siegel <96068+bsiegel@users.noreply.github.com> * Changing "beta" references to "preview". * Added files in `releases/latest` for both Android and iOS. Updated `releases/latest/index.md` * Applied PR feedback. Reverted "preview" mentions to "beta". * Moved templates to the right place (`eng/scripts/release-template`). Added entries for all currently available libraries in `_data/releases/latest`. Added files for iOS and Android in `_includes/releases` and `_includes/releases/variables`. * Modifed the variables file for iOS and fixed replace logic in `pkgrow.md` to support iOS. * Removed unused links in `_includes/releases/variables` for Android and iOS. * Removed unused links in `_includes/releases/variables` for C++ and Embedded C. * Added entries for Android and iOS in `_data/sidebars/releases_sidebar.yml`. Added sections for Android and iOS to `docs/policies/release.md`. Updated `eng/scripts/Update-Release-Versions.ps1` to include Android and iOS. Reverted removal of unused links for Android, iOS, C and C++ in the hopes the script change fixes the CI issues. * Added entries for Android and iOS in `_data/sidebars/releases_sidebar.yml`. Added sections for Android and iOS to `docs/policies/release.md`. Updated `eng/scripts/Update-Release-Versions.ps1` to include Android and iOS. Reverted removal of unused links for Android, iOS, C and C++ in the hopes the script change fixes the CI issues. * Applied PR feedback. Co-authored-by: Brandon Siegel <96068+bsiegel@users.noreply.github.com> --- _data/releases/latest/android-packages.csv | 4 + _data/releases/latest/ios-packages.csv | 4 + _data/sidebars/releases_sidebar.yml | 4 + _includes/refs.md | 2 + _includes/releases/android.md | 11 +++ _includes/releases/ios.md | 11 +++ _includes/releases/nav.md | 2 +- _includes/releases/pkgrow.md | 2 +- _includes/releases/variables/android.md | 7 ++ _includes/releases/variables/ios.md | 7 ++ docs/policies/releases.md | 31 ++++++ eng/scripts/Update-Release-Versions.ps1 | 108 ++++++++++++++++++++- eng/scripts/release-template/android.md | 70 +++++++++++++ eng/scripts/release-template/index.md | 2 + eng/scripts/release-template/ios.md | 73 ++++++++++++++ releases/latest/android.md | 9 ++ releases/latest/index.md | 2 + releases/latest/ios.md | 9 ++ 18 files changed, 355 insertions(+), 3 deletions(-) create mode 100644 _data/releases/latest/android-packages.csv create mode 100644 _data/releases/latest/ios-packages.csv create mode 100644 _includes/releases/android.md create mode 100644 _includes/releases/ios.md create mode 100644 _includes/releases/variables/android.md create mode 100644 _includes/releases/variables/ios.md create mode 100644 eng/scripts/release-template/android.md create mode 100644 eng/scripts/release-template/ios.md create mode 100644 releases/latest/android.md create mode 100644 releases/latest/ios.md diff --git a/_data/releases/latest/android-packages.csv b/_data/releases/latest/android-packages.csv new file mode 100644 index 00000000000..13d032ebcd2 --- /dev/null +++ b/_data/releases/latest/android-packages.csv @@ -0,0 +1,4 @@ +"Package","GroupId","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" +"azure-communication-chat","com.azure.android","","1.0.0-beta.2","Communication Chat","Communication","communication","NA","NA","client","","" +"azure-communication-common","com.azure.android","","1.0.0-beta.1","Communication Common","Communication","communication","NA","NA","client","","" +"azure-core","com.azure.android","","1.0.0-beta.2","Core","Core","core","NA","NA","client","","" \ No newline at end of file diff --git a/_data/releases/latest/ios-packages.csv b/_data/releases/latest/ios-packages.csv new file mode 100644 index 00000000000..0a409b1a9a7 --- /dev/null +++ b/_data/releases/latest/ios-packages.csv @@ -0,0 +1,4 @@ +"Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" +"AzureCommunication","","1.0.0-beta.2","Communication Common","Communication","communication","NA","NA","client","","" +"AzureCommunicationChat","","1.0.0-beta.2","Communication Chat","Communication","communication","NA","NA","client","","" +"AzureCore","","1.0.0-beta.2","Core","Core","core","NA","NA","client","","" \ No newline at end of file diff --git a/_data/sidebars/releases_sidebar.yml b/_data/sidebars/releases_sidebar.yml index ca1530f2b59..abe48571c58 100644 --- a/_data/sidebars/releases_sidebar.yml +++ b/_data/sidebars/releases_sidebar.yml @@ -17,6 +17,10 @@ entries: url: /releases/latest/cpp.html - title: Embedded C url: /releases/latest/c.html + - title: Android + url: /releases/latest/android.html + - title: iOS + url: /releases/latest/ios.html - title: 2020 Releases folderitems: - title: October diff --git a/_includes/refs.md b/_includes/refs.md index 7b3b4835dec..67e3e557644 100644 --- a/_includes/refs.md +++ b/_includes/refs.md @@ -17,7 +17,9 @@ [python-guidelines]: {{ site.baseurl }}{% link docs/python/introduction.md %} [typescript-guidelines]: {{ site.baseurl }}{% link docs/typescript/introduction.md %} +[android-latest-releases]: {{ site.baseurl }}{% link releases/latest/android.md %} [dotnet-latest-releases]: {{ site.baseurl }}{% link releases/latest/dotnet.md %} +[ios-latest-releases]: {{ site.baseurl }}{% link releases/latest/ios.md %} [java-latest-releases]: {{ site.baseurl }}{% link releases/latest/java.md %} [js-latest-releases]: {{ site.baseurl }}{% link releases/latest/js.md %} [python-latest-releases]: {{ site.baseurl }}{% link releases/latest/python.md %} diff --git a/_includes/releases/android.md b/_includes/releases/android.md new file mode 100644 index 00000000000..ccd1600b95b --- /dev/null +++ b/_includes/releases/android.md @@ -0,0 +1,11 @@ +{% include releases/header.md %} + +## Android + +{% assign packages = site.data.releases.latest.android-packages %} + +{{ description | replace: 'PackageCount', packages.size }} + +{% include releases/variables/android.md %} + +{% include releases/pkgtable.md %} \ No newline at end of file diff --git a/_includes/releases/ios.md b/_includes/releases/ios.md new file mode 100644 index 00000000000..6443819f9c0 --- /dev/null +++ b/_includes/releases/ios.md @@ -0,0 +1,11 @@ +{% include releases/header.md %} + +## iOS + +{% assign packages = site.data.releases.latest.ios-packages %} + +{{ description | replace: 'PackageCount', packages.size }} + +{% include releases/variables/ios.md %} + +{% include releases/pkgtable.md %} \ No newline at end of file diff --git a/_includes/releases/nav.md b/_includes/releases/nav.md index b8276e264cd..a47ccece03d 100644 --- a/_includes/releases/nav.md +++ b/_includes/releases/nav.md @@ -1 +1 @@ -[.NET](#net) | [Java](#java) | [JavaScript/TypeScript](#javascript) | [Python](#python) | [C++](#c) | [Embedded C](#embedded-c) | \ No newline at end of file +[.NET](#net) | [Java](#java) | [JavaScript/TypeScript](#javascript) | [Python](#python) | [C++](#c) | [Embedded C](#embedded-c) | [Android](#android) |[iOS](#ios) | \ No newline at end of file diff --git a/_includes/releases/pkgrow.md b/_includes/releases/pkgrow.md index b2559225eca..e6cb5306c34 100644 --- a/_includes/releases/pkgrow.md +++ b/_includes/releases/pkgrow.md @@ -4,7 +4,7 @@ {% assign trimmedPackage = item.Package | remove: package_trim %} - {% assign package_url = package_url_template | replace: 'item.Package', item.Package | replace: 'item.TrimmedPackage', trimmedPackage | replace: 'item.GroupId', item.GroupId %} + {% assign package_url = package_url_template | replace: 'item.Package', item.Package | replace: 'item.TrimmedPackage', trimmedPackage | replace: 'item.GroupId', item.GroupId | replace: 'item.RepoPath', item.RepoPath %} {% if item.VersionGA != "" %} {% assign url = package_url | replace: 'item.Version', item.VersionGA %} {% include releases/pkgbadge.md label=package_label url=url version=item.VersionGA %} diff --git a/_includes/releases/variables/android.md b/_includes/releases/variables/android.md new file mode 100644 index 00000000000..f186c4ca583 --- /dev/null +++ b/_includes/releases/variables/android.md @@ -0,0 +1,7 @@ +{% assign package_label = "maven" %} +{% assign package_trim = "azure-" %} + +{% assign package_url_template = "https://search.maven.org/artifact/item.GroupId/item.Package/item.Version/aar" %} + + +{% assign source_url_template = "https://github.com/Azure/azure-sdk-for-android/tree/item.Package_item.Version/sdk/item.RepoPath/item.Package" %} \ No newline at end of file diff --git a/_includes/releases/variables/ios.md b/_includes/releases/variables/ios.md new file mode 100644 index 00000000000..fcf1c268fe9 --- /dev/null +++ b/_includes/releases/variables/ios.md @@ -0,0 +1,7 @@ +{% assign package_label = "spm" %} +{% assign package_trim = "Azure" %} + +{% assign package_url_template = "https://github.com/Azure/azure-sdk-for-ios/tree/item.Version/sdk/item.RepoPath/item.Package" %} + + +{% assign source_url_template = "https://github.com/Azure/azure-sdk-for-ios/tree/item.Version/sdk/item.RepoPath/item.Package" %} \ No newline at end of file diff --git a/docs/policies/releases.md b/docs/policies/releases.md index 0284885e1ab..17f63ff7c7f 100644 --- a/docs/policies/releases.md +++ b/docs/policies/releases.md @@ -270,6 +270,37 @@ An Embedded C release includes a Tag and Release (e.g. [1.0.0-preview.5](https:/ **GA Hotfix Release:** `1.0.0` -> `1.0.1` +#### Android + +Maven supports the [convention](https://cwiki.apache.org/confluence/display/MAVENOLD/Versioning) `MAJOR.MINOR.PATCH-QUALIFIER`, which doesn't support SemVer 2 sorting for pre-releases so we have to use a special convention based on their [versioning code](https://github.com/apache/maven/blob/master/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java). The preferred format for version numbers is: + +- `X.Y.Z-alpha.YYYYMMDD.r` (`r` is based on the number of builds performed on the given day) for daily alpha releases. +- `X.Y.Z-beta.N` for beta releases. + +Beta packages are published directly to the Maven central registry. Alpha packages will be published to the isolated [azure-sdk-for-android](https://dev.azure.com/azure-sdk/public/_packaging?_a=feed&feed=azure-sdk-for-android) DevOps feed. To consume an alpha package you should either pin to a specific version or use a version specifier like `(X.Y.Z-alpha, X.Y.Z-beta)` to get the latest alpha release while avoiding any potential beta versions which might contain older changes. + +#### Incrementing after release (Android) + +**Beta Release:** `1.0.0-beta.1` -> `1.0.0-beta.2` + +**GA Release:** `1.1.0` -> `1.2.0-beta.1` + +**GA Hotfix Release:** `1.0.0` -> `1.0.1` + +#### iOS + +iOS releases the source code of the repository in a single unit of source code. It supports only the Swift Package Manager and does not ship packages to any package registry. Because the iOS repo ships from the `master` branch, code going into the `master` branch must be in a completed state and ready to ship. + +An iOS release includes a Tag and Release (e.g. [1.0.0-beta.2](https://github.com/Azure/azure-sdk-for-ios/releases/tag/1.0.0-beta.2)) on GitHub and documentation as GitHub Pages. + +#### Incrementing after release (iOS) + +**Preview release:** `1.0.0-beta.1` -> `1.0.0-beta.2` + +**GA Release:** `1.1.0` -> `1.2.0-beta.1` + +**GA Hotfix Release:** `1.0.0` -> `1.0.1` + ## Beta Releases and GA Graduation The Azure SDK team may choose to create a beta release for several reasons: diff --git a/eng/scripts/Update-Release-Versions.ps1 b/eng/scripts/Update-Release-Versions.ps1 index f39feeaf6a4..ba41b0098c9 100644 --- a/eng/scripts/Update-Release-Versions.ps1 +++ b/eng/scripts/Update-Release-Versions.ps1 @@ -313,7 +313,7 @@ function Update-c-Packages($packageList) } } -function Check-cpp-links($pkg, $version) +function Check-cpp-links($pkg, $version) { $valid = $true; $valid = $valid -and (CheckLink ("https://github.com/Azure/azure-sdk-for-cpp/tree/{0}_{1}/sdk/{2}/{0}" -f $pkg.Package, $version, $pkg.RepoPath)) @@ -360,6 +360,102 @@ function Update-cpp-Packages($packageList) } } +function Check-android-links($pkg, $version) +{ + $valid = $true; + $valid = $valid -and (CheckLink ("https://github.com/Azure/azure-sdk-for-android/tree/{0}_{1}/sdk/{2}/{0}/" -f $pkg.Package, $version, $pkg.RepoPath)) + $valid = $valid -and (CheckLink ("https://search.maven.org/artifact/{2}/{0}/{1}/aar/" -f $pkg.Package, $version, $pkg.GroupId)) + return $valid; +} + +function Update-android-Packages($packageList) +{ + foreach ($pkg in $packageList) + { + $version = GetVersionWebContent "android" $pkg.Package "latest-ga" + + if ($null -eq $version) { + Write-Host "Skipping update for $($pkg.Package) as we don't have versiong info for it. " + continue; + } + + if ($version -eq "") { + $pkg.VersionGA = "" + } + elseif (Check-android-links $pkg $version) { + if ($pkg.VersionGA -ne $version) { + Write-Host "Updating VersionGA for $($pkg.Package) from $($pkg.VersionGA) to $version" + $pkg.VersionGA = $version + } + } + else { + Write-Warning "Not updating VersionGA for $($pkg.Package) because at least one associated URL is not valid!" + } + + $version = GetVersionWebContent "android" $pkg.Package "latest-preview" + if ($version -eq "") { + $pkg.VersionPreview = "" + } + elseif (Check-android-links $pkg $version) { + if ($pkg.VersionPreview -ne $version) { + Write-Host "Updating VersionPreview for $($pkg.Package) from $($pkg.VersionPreview) to $version" + $pkg.VersionPreview = $version + } + } + else { + Write-Warning "Not updating VersionPreview for $($pkg.Package) because at least one associated URL is not valid!" + } + UpdateDocLinks "android" $pkg + } +} + +function Check-ios-links($pkg, $version) +{ + $valid = $true; + $valid = $valid -and (CheckLink ("https://github.com/Azure/azure-sdk-for-ios/tree/{0}/sdk/{1}" -f $version, $pkg.RepoPath)) + $valid = $valid -and (CheckLink ("https://github.com/Azure/azure-sdk-for-ios/archive/{0}.zip" -f $version)) + return $valid +} +function Update-ios-Packages($packageList) +{ + foreach ($pkg in $packageList) + { + $version = GetVersionWebContent "ios" $pkg.Package "latest-ga" + if ($null -eq $version) { + Write-Host "Skipping update for $($pkg.Package) as we don't have versiong info for it. " + continue; + } + + if ($version -eq "") { + $pkg.VersionGA = "" + } + elseif (Check-ios-links $pkg $version){ + if ($pkg.VersionGA -ne $version) { + Write-Host "Updating VersionGA $($pkg.Package) from $($pkg.VersionGA) to $version" + $pkg.VersionGA = $version; + } + } + else { + Write-Warning "Not updating VersionGA for $($pkg.Package) because at least one associated URL is not valid!" + } + + $version = GetVersionWebContent "ios" $pkg.Package "latest-preview" + if ($version -eq "") { + $pkg.VersionPreview = "" + } + elseif (Check-ios-links $pkg $version){ + if ($pkg.VersionPreview -ne $version) { + Write-Host "Updating VersionPreview $($pkg.Package) from $($pkg.VersionPreview) to $version" + $pkg.VersionPreview = $version; + } + } + else { + Write-Warning "Not updating VersionPreview for $($pkg.Package) because at least one associated URL is not valid!" + } + UpdateDocLinks "ios" $pkg + } +} + function Output-Latest-Versions($lang) { $packagelistFile = Join-Path $releaseFolder "$lang-packages.csv" @@ -386,6 +482,8 @@ switch($language) Output-Latest-Versions "python" Output-Latest-Versions "c" Output-Latest-Versions "cpp" + # Output-Latest-Versions "android" + # Output-Latest-Versions "ios" break } "java" { @@ -412,6 +510,14 @@ switch($language) Output-Latest-Versions $language break } + "android" { + Output-Latest-Versions $language + break + } + "ios" { + Output-Latest-Versions $language + break + } default { Write-Host "Unrecognized Language: $language" exit 1 diff --git a/eng/scripts/release-template/android.md b/eng/scripts/release-template/android.md new file mode 100644 index 00000000000..bda489b9deb --- /dev/null +++ b/eng/scripts/release-template/android.md @@ -0,0 +1,70 @@ +--- +title: Azure SDK for Android (%%MMMM yyyy%%) +layout: post +tags: android azure +sidebar: releases_sidebar +repository: azure/azure-sdk-for-android +--- + +The Azure SDK team is pleased to announce our %%MMMM yyyy%% client library releases. + +#### GA + +- _Add packages_ + +#### Updates + +- _Add packages_ + +#### Beta + +- _Add packages_ + +## Installation Instructions + +To use the latest GA and beta libraries, refer to the dependency information below, which may be copied into your projects Gradle `build.gradle` or Maven `pom.xml` file as appropriate. If you are using a different build tool, refer to its documentation on how to specify dependencies. + +### Gradle + +#### Java +```gradle +// Insert dependencies +``` + +#### Kotlin + +```gradle +// Insert dependencies +``` + +### Maven + +```xml + +``` + +## Feedback + +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-android/issues). + +## Changelog + +Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: + +### _Package name_ + +- Major changes only! + +## Need help + +- For reference documentation visit the [Azure SDK for Android documentation](https://azure.github.io/azure-sdk-for-android/). +- For tutorials, samples, quick starts and other documentation, visit the [Azure SDK for Android repository](https://github.com/azure/azure-sdk-for-android/). +- File an issue via [Github Issues](https://github.com/Azure/azure-sdk-for-android/issues/new/choose). +- Check [previous questions](https://stackoverflow.com/questions/tagged/azure-android-sdk) or ask new ones on + StackOverflow using the `azure-android-sdk` tag. + +## Latest Releases + +View all the latest versions of Android packages [here][android-latest-releases]. + +{% include refs.md %} diff --git a/eng/scripts/release-template/index.md b/eng/scripts/release-template/index.md index 62cfe8104c7..4b65abf5955 100644 --- a/eng/scripts/release-template/index.md +++ b/eng/scripts/release-template/index.md @@ -24,3 +24,5 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( * [Python release notes](python.md) * [C++ release notes](cpp.md) * [Embedded C release notes](c.md) +* [Android release notes](android.md) +* [iOS release notes](ios.md) diff --git a/eng/scripts/release-template/ios.md b/eng/scripts/release-template/ios.md new file mode 100644 index 00000000000..86ef736f1aa --- /dev/null +++ b/eng/scripts/release-template/ios.md @@ -0,0 +1,73 @@ +--- +title: Azure SDK for iOS (%%MMMM yyyy%%) +layout: post +tags: ios azure +sidebar: releases_sidebar +repository: azure/azure-sdk-for-ios +--- + +The Azure SDK team is pleased to announce our %%MMMM yyyy%% client library releases. + +#### GA + +- _Add packages_ + +#### Updates + +- _Add packages_ + +#### Beta + +- _Add packages_ + +## Installation Instructions + +To install the latest GA and beta libraries, use the [Swift Package Manager](https://swift.org/package-manager/). + +### Xcode + +Follow the instructions in [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app): + +With your project open in Xcode 11 or later, select **File > Swift Packages > Add Package Dependency...** Enter the clone URL of this repository: *https://github.com/Azure/azure-sdk-for-ios.git* and click **Next**. For the version rule, specify the exact version or version range you wish to use with your application and click **Next**. Finally, place a checkmark next to each client library you wish to use with your application, ensure your application target is selected in the **Add to target** dropdown, and click **Finish**. + +### Swift CLI + +Follow the example in [Importing Dependencies](https://swift.org/package-manager/#importing-dependencies): + +Open your project's `Package.swift` file and add a new package dependency to your project's `dependencies` section, specifying the clone URL of the repository and the version specifier you wish to use: + +```swift +// Insert dependencies here +``` + +Next, add each client library you wish to use in a target to the target's array of `dependencies`: + +```swift +// Insert dependencies here +``` + +## Feedback + +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-ios/issues). + +## Changelog + +Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: + +### _Package name_ + +- Major changes only! + +## Need help + +- For reference documentation visit the [Azure SDK for iOS documentation](https://azure.github.io/azure-sdk-for-ios/). +- For tutorials, samples, quick starts and other documentation, visit the [Azure SDK for iOS repository](https://github.com/azure/azure-sdk-for-ios/). +- File an issue via [Github Issues](https://github.com/Azure/azure-sdk-for-ios/issues/new/choose). +- Check [previous questions](https://stackoverflow.com/questions/tagged/azure+ios) or ask new ones on + StackOverflow using the `azure` and `ios` tags. + +## Latest Releases + +View all the latest versions of iOS packages [here][ios-latest-releases]. + +{% include refs.md %} diff --git a/releases/latest/android.md b/releases/latest/android.md new file mode 100644 index 00000000000..19d19f9a790 --- /dev/null +++ b/releases/latest/android.md @@ -0,0 +1,9 @@ +--- +title: Azure SDK for Android (Latest) +layout: default +tags: android +sidebar: releases_sidebar +header: true +--- +{% include releases/android.md type="client" %} +{% include refs.md %} diff --git a/releases/latest/index.md b/releases/latest/index.md index a9811ae0b3a..09f57566627 100644 --- a/releases/latest/index.md +++ b/releases/latest/index.md @@ -11,4 +11,6 @@ sidebar: releases_sidebar {% include releases/python.md type="client" %} {% include releases/cpp.md type="client" %} {% include releases/c.md type="client" %} +{% include releases/android.md type="client" %} +{% include releases/ios.md type="client" %} {% include refs.md %} \ No newline at end of file diff --git a/releases/latest/ios.md b/releases/latest/ios.md new file mode 100644 index 00000000000..0b06b9d549b --- /dev/null +++ b/releases/latest/ios.md @@ -0,0 +1,9 @@ +--- +title: Azure SDK for iOS (Latest) +layout: default +tags: ios +sidebar: releases_sidebar +header: true +--- +{% include releases/ios.md type="client" %} +{% include refs.md %} From 474de437e3d0d9f301cbce7cbcfa6bd004b5a1ab Mon Sep 17 00:00:00 2001 From: Sameeksha Vaity Date: Thu, 8 Oct 2020 17:44:47 -0700 Subject: [PATCH 06/87] Add metrics advisor new package to package index (#1907) This PR adds metrics advisor to package index for Java, JS and python. .NET is still waiting to release. --- _data/releases/latest/java-packages.csv | 1 + _data/releases/latest/js-packages.csv | 1 + _data/releases/latest/python-packages.csv | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 55f21acfdb6..7b8c1c1bc7d 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -28,6 +28,7 @@ "azure-security-keyvault-secrets","com.azure","4.2.1","4.3.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" "azure-data-schemaregistry-avro","com.azure","","1.0.0-beta.4","Schema Registry Avro","Data Schemaregistry","schemaregistry","","","client","","" "azure-messaging-servicebus","com.azure","","7.0.0-beta.6","Service Bus","Service Bus","servicebus","","","client","","Will replace: azure-servicebus" +"azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" "azure-storage-blob","com.azure","12.8.0","","Storage - Blobs","Storage","storage","","","client","","Replaces: azure-storage-blob 11.x" "azure-storage-blob-batch","com.azure","12.6.0","","Storage - Blobs Batch","Storage","storage","","","client","","" "azure-storage-blob-cryptography","com.azure","12.8.0","","Storage - Blobs Cryptography","Storage","storage","","","client","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 7d1b82f811a..4d7bb8587b1 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -11,6 +11,7 @@ "@azure/event-hubs","5.3.0","","Event Hubs","Event Hubs","eventhub","","","client","","" "@azure/eventhubs-checkpointstore-blob","1.0.1","","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhub","","","client","","" "@azure/ai-form-recognizer","3.0.0","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","Replaces: @azure/cognitiveservices-formrecognizer" +"@azure/ai-metrics-advisor","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" "@azure/identity","1.1.0","1.2.0-beta.1","Identity","Identity","identity","","","client","","" "@azure/keyvault-admin","","4.0.0-beta.1","Key Vault - Administration","Key Vault","keyvault","","","client","","" "@azure/keyvault-certificates","4.1.0","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 68e48529bd6..127d9c93688 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -38,7 +38,7 @@ "azure-mgmt-streamanalytics","","1.0.0rc1","Resource Management - Stream Analytics","Stream Analytics","streamanalytics","NA","","mgmt","","" "azure","5.0.0","","azure","","NA","NA","NA","","true","" "azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","NA","","","","Will replace: azure-cognitiveservices-anomalydetector" -"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","","","" +"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","client","","" "azure-ai-nspkg","1.0.0","","azure-ai-nspkg","Text Analytics","textanalytics","NA","NA","","","" "azure-applicationinsights","0.1.0","","azure-applicationinsights","Application Insights","https://github.com/Azure/azure-sdk-for-python/tree/azure-applicationinsights_0.1.0/azure-applicationinsights","NA","","","","" "azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" From 952ada1f6d673837324f1c001dc6789285ffc273 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Fri, 9 Oct 2020 11:36:39 -0700 Subject: [PATCH 07/87] Identity and Key Vault 2020-10 release notes (#1904) --- releases/2020-10/python.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 79a141479d8..2526c7a827f 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -15,6 +15,8 @@ The Azure SDK team is pleased to make available the October 2020 client library #### Updates - App Configuration +- Identity +- Key Vault Keys #### Beta @@ -22,6 +24,7 @@ The Azure SDK team is pleased to make available the October 2020 client library - Search - Text Analytics - Metrics Advisor +- Key Vault Administration ## Installation Instructions @@ -33,6 +36,9 @@ pip install azure-search-documents --pre pip install azure-appconfiguration pip install azure-ai-textanalytics --pre pip install azure-ai-metricsadvisor --pre +pip install azure-identity +pip install azure-keyvault-administration +pip install azure-keyvault-keys ``` ## Feedback @@ -73,6 +79,26 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here * Removed extra property `length` from relevant models. Originally, this property represented the length of the `text` property in those same models. To get the length of the text in these models, just call `len()` on the text property. +### Identity [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/azure-identity/CHANGELOG.md#141-2020-10-07) + +#### Key Bug Fixes +- Fixed a bug causing tokens acquired from the Azure CLI to have incorrectly long lifetimes + +### Key Vault + +#### Administration [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md#400b2-2020-10-06) + +#### New Features +- `KeyVaultBackupClient.get_backup_status` and `.get_restore_status` enable checking the status of a pending operation by its job ID + +#### Breaking Changes +- The `role_assignment_name` parameter of `KeyVaultAccessControlClient.create_role_assignment` is now an optional keyword-only argument. The client will generate a name for the assignment when one isn't provided. + +#### Keys [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/keyvault/azure-keyvault-keys/CHANGELOG.md#430-2020-10-06) + +#### New Features +- CryptographyClient can perform decrypt and sign operations locally + ## Latest Releases View all the latest versions of Python packages [here][python-latest-releases]. From eb151b33c6670b57f558fd09438d03830149042c Mon Sep 17 00:00:00 2001 From: Mariana Rios Flores Date: Fri, 9 Oct 2020 12:29:06 -0700 Subject: [PATCH 08/87] [TA] .NET changelog (#1906) --- releases/2020-09/dotnet.md | 2 +- releases/2020-10/dotnet.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/releases/2020-09/dotnet.md b/releases/2020-09/dotnet.md index d72eb13d0d2..13689eee744 100644 --- a/releases/2020-09/dotnet.md +++ b/releases/2020-09/dotnet.md @@ -38,7 +38,7 @@ $> dotnet add package Azure.AI.AnomalyDetector --version 3.0.0-preview.2 $> dotnet add package Azure.AI.FormRecognizer --version 3.0.0 - $> dotnet add package Azure.AI.TextAnalytics --version 5.1.0-beta.1 +$> dotnet add package Azure.AI.TextAnalytics --version 5.1.0-beta.1 $> dotnet add package Azure.Data.AppConfiguration --version 1.0.2 diff --git a/releases/2020-10/dotnet.md b/releases/2020-10/dotnet.md index 47080302559..e9895183317 100644 --- a/releases/2020-10/dotnet.md +++ b/releases/2020-10/dotnet.md @@ -21,12 +21,15 @@ The Azure SDK team is pleased to announce our October 2020 client library releas - Event Hubs - Key Vault - Tables +- Text Analytics ## Installation Instructions To install any of our packages, please search for them via `Manage NuGet Packages...` in Visual Studio (with `Include prerelease` checked) or copy these commands into your terminal: ```bash +$> dotnet add package Azure.AI.TextAnalytics --version 5.1.0-beta.2 + $> dotnet add package Azure.Data.Tables --version 3.0.0-beta.2 $> dotnet add package Azure.Messaging.EventHubs --version 5.3.0-beta.3 @@ -71,6 +74,11 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Bug fixes and performance improvements. +### Text Analytics [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md#510-beta2-2020-10-06) + +#### Breaking changes +- Removed property `Length` from the library as it can be obtained by calling `Length` on the `Text` property of types `CategorizedEntity`, `SentenceSentiment`, `LinkedEntityMatch`, `AspectSentiment`, `OpinionSentiment`, and `PiiEntity`. + ## Latest Releases View all the latest versions of .NET packages [here][dotnet-latest-releases]. From 6be963ea7f6bb0dccbd55d04098487b155545922 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 9 Oct 2020 15:16:19 -0700 Subject: [PATCH 09/87] Update package index with latest published versions (#1877) --- _data/releases/latest/c-packages.csv | 4 +- _data/releases/latest/dotnet-packages.csv | 97 ++++++++++++----------- _data/releases/latest/java-packages.csv | 95 +++++++++++----------- _data/releases/latest/js-packages.csv | 66 +++++++-------- _data/releases/latest/python-packages.csv | 49 ++++++------ 5 files changed, 159 insertions(+), 152 deletions(-) diff --git a/_data/releases/latest/c-packages.csv b/_data/releases/latest/c-packages.csv index 20d8f33799e..a31d90928a2 100644 --- a/_data/releases/latest/c-packages.csv +++ b/_data/releases/latest/c-packages.csv @@ -1,4 +1,4 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" -"docs","1.0.0","","Core","Core","src/azure/core","NA","","client","","" -"docs","1.0.0","","IoT","IoT","src/azure/iot","NA","","client","","" +"docs","1.0.0","1.1.0-beta.1","Core","Core","src/azure/core","NA","","client","","" +"docs","1.0.0","1.1.0-beta.1","IoT","IoT","src/azure/iot","NA","","client","","" "docs","","","Storage","Storage","src/azure/storage","NA","NA","client","","" diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 4876f36474a..a50e8235cf2 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -1,47 +1,48 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "Azure.AI.AnomalyDetector","","3.0.0-preview.2","Anomaly Detector","Anomaly Detector","anomalydetector","","","client","","Will replace: Microsoft.Azure.CognitiveServices.AnomalyDetector" "Azure.Data.AppConfiguration","1.0.2","","App Configuration","App Configuration","appconfiguration","","","client","","" -"Azure.Extensions.AspNetCore.Configuration.Secrets","1.0.0","","ASP.NET Extension - Configuration Secrets","Extensions","extensions","","","client","","" +"Azure.Extensions.AspNetCore.Configuration.Secrets","1.0.1","","ASP.NET Extension - Configuration Secrets","Extensions","extensions","","","client","","" "Azure.Extensions.AspNetCore.DataProtection.Blobs","1.0.1","","ASP.NET Extension - DataProtection Blobs","Extensions","extensions","","","client","","" "Azure.Extensions.AspNetCore.DataProtection.Keys","1.0.2","","ASP.NET Extension - DataProtection Keys","Extensions","extensions","","","client","","" -"Azure.Search.Documents","11.1.1","","Cognitive Search ","Search","search","","","client","","Replaces: Microsoft.Azure.Search" -"Azure.Communication.Administration","","1.0.0-beta.1","Communication Administration","Commuincation","communication","","","client","","" -"Azure.Communication.Chat","","1.0.0-beta.1","Communication Chat","Communication","communication","","","client","","" -"Azure.Communication.Common","","1.0.0-beta.1","Communication Common","Communication","communication","","","client","","" -"Azure.Communication.Sms","","1.0.0-beta.1","Communication Sms","Communication","communication","","","client","","" -"Azure.Core","1.5.0","","Core","Core","core","","","client","","" +"Azure.Search.Documents","11.1.1","11.2.0-beta.1","Cognitive Search ","Search","search","","","client","","Replaces: Microsoft.Azure.Search" +"Azure.Communication.Administration","","1.0.0-beta.2","Communication Administration","Commuincation","communication","","","client","","" +"Azure.Communication.Chat","","1.0.0-beta.2","Communication Chat","Communication","communication","","","client","","" +"Azure.Communication.Common","","1.0.0-beta.2","Communication Common","Communication","communication","","","client","","" +"Azure.Communication.Sms","","1.0.0-beta.2","Communication Sms","Communication","communication","","","client","","" +"Azure.Core","1.5.1","","Core","Core","core","","","client","","" "Azure.Cosmos","","4.0.0-preview3","Cosmos","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/4.0.0-preview3","https://docs.microsoft.com/dotnet/api/azure.cosmos?view=azure-dotnet-preview","NA","client","","Will Replace: Microsoft.Azure.Cosmos" -"Azure.Messaging.EventGrid","","4.0.0-beta.2","Event Grid","Event Grid","eventgrid","","","client","","Will replace: Microsoft.Azure.EventGrid" -"Azure.Messaging.EventHubs","5.2.0","5.3.0-beta.2","Event Hubs","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs" -"Azure.Messaging.EventHubs.Processor","5.2.0","5.3.0-beta.2","Event Hubs - Event Processor","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs.Processor" +"Azure.Messaging.EventGrid","","4.0.0-beta.3","Event Grid","Event Grid","eventgrid","","","client","","Will replace: Microsoft.Azure.EventGrid" +"Azure.Messaging.EventHubs","5.2.0","5.3.0-beta.3","Event Hubs","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs" +"Azure.Messaging.EventHubs.Processor","5.2.0","5.3.0-beta.3","Event Hubs - Event Processor","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs.Processor" "Azure.AI.FormRecognizer","3.0.0","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","Replaces: Microsoft.Azure.CognitiveServices.FormRecognizer" -"Azure.Identity","1.2.3","1.3.0-beta.1","Identity","Identity","identity","","","client","","" -"Azure.Security.KeyVault.Administration","","4.0.0-beta.1","Key Vault - Administration","Key Vault","keyvault","","","client","","" -"Azure.Security.KeyVault.Certificates","4.1.0","4.2.0-beta.1","KeyVault - Certificates","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" -"Azure.Security.KeyVault.Keys","4.1.0","4.2.0-beta.1","KeyVault - Keys","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" -"Azure.Security.KeyVault.Secrets","4.1.0","4.2.0-beta.1","KeyVault - Secrets","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" +"Azure.Identity","1.2.3","1.3.0-beta.2","Identity","Identity","identity","","","client","","" +"Azure.Security.KeyVault.Administration","","4.0.0-beta.2","Key Vault - Administration","Key Vault","keyvault","","","client","","" +"Azure.Security.KeyVault.Certificates","4.1.0","4.2.0-beta.2","KeyVault - Certificates","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" +"Azure.Security.KeyVault.Keys","4.1.0","4.2.0-beta.2","KeyVault - Keys","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" +"Azure.Security.KeyVault.Secrets","4.1.0","4.2.0-beta.2","KeyVault - Secrets","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" "Azure.Data.SchemaRegistry","","1.0.0-beta.2","Schema Registry","Schema Registry","schemaregistry","","","client","","" -"Azure.Messaging.ServiceBus","","7.0.0-preview.7","Service Bus","Service Bus","servicebus","","","client","","Will Replace: Microsoft.Azure.ServiceBus" -"Azure.Storage.Blobs","12.6.0","","Storage - Blobs","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Blob" -"Azure.Storage.Blobs.Batch","12.3.1","","Storage - Blobs Batch","Storage","storage","","","client","","" -"Azure.Storage.Common","12.5.2","","Storage - Common","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Common" -"Azure.Storage.Files.DataLake","12.4.0","","Storage - Files Data Lake","Storage","storage","","","client","","" -"Azure.Storage.Files.Shares","12.4.0","","Storage - Files Shares","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.File" -"Azure.Storage.Queues","12.4.2","","Storage - Queues","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Queue" -"Azure.Data.Tables","","3.0.0-beta.1","Tables","Tables","tables","","","client","","Will replace: Microsoft.Azure.Cosmos.Table" -"Azure.AI.TextAnalytics","5.0.0","5.1.0-beta.1","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: Microsoft.Azure.CognitiveServices.Language.TextAnalytics" +"Azure.Messaging.ServiceBus","","7.0.0-preview.8","Service Bus","Service Bus","servicebus","","","client","","Will Replace: Microsoft.Azure.ServiceBus" +"Azure.Storage.Blobs","12.6.0","12.7.0-preview.1","Storage - Blobs","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Blob" +"Azure.Storage.Blobs.Batch","12.3.1","12.4.0-preview.1","Storage - Blobs Batch","Storage","storage","","","client","","" +"Azure.Storage.Common","12.5.2","12.6.0-preview.1","Storage - Common","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Common" +"Azure.Storage.Files.DataLake","12.4.0","12.5.0-preview.1","Storage - Files Data Lake","Storage","storage","","","client","","" +"Azure.Storage.Files.Shares","12.4.0","12.5.0-preview.1","Storage - Files Shares","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.File" +"Azure.Storage.Queues","12.4.2","12.5.0-preview.1","Storage - Queues","Storage","storage","","","client","","Replaces: Microsoft.Azure.Storage.Queue" +"Azure.Data.Tables","","3.0.0-beta.2","Tables","Tables","tables","","","client","","Will replace: Microsoft.Azure.Cosmos.Table" +"Azure.AI.TextAnalytics","5.0.0","5.1.0-beta.2","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: Microsoft.Azure.CognitiveServices.Language.TextAnalytics" "Azure.ResourceManager.AppConfiguration","","1.0.0-preview.1","Resource Management - AppConfiguration","App Configuration","appconfiguration","","","mgmt","","" -"Azure.ResourceManager.Communication","","1.0.0-beta.1","Resource Management - Communication","Communication","communication","","","mgmt","","" +"Azure.ResourceManager.Communication","","1.0.0-beta.2","Resource Management - Communication","Communication","communication","","","mgmt","","" "Azure.ResourceManager.Compute","","1.0.0-preview.2","Resource Management - Compute","Compute","compute","","","mgmt","","" "Azure.ResourceManager.CosmosDB","","1.0.0-preview.1","Resource Management - CosmosDB","CosmosDB","cosmosdb","","","mgmt","","" "Azure.ResourceManager.Dns","","1.0.0-preview.1","Resource Management - Dns","Dns","dns","","","mgmt","","" -"Azure.ResourceManager.Insights","","1.0.0-preview.1","Resource Management - Insights","Insights","insights","NA","","mgmt","","" "Azure.ResourceManager.EventHubs","","1.0.0-preview.1","Resource Management - EventHubs","Event Hubs","eventhub","","","mgmt","","" +"Azure.ResourceManager.Insights","","1.0.0-preview.1","Resource Management - Insights","Insights","insights","","","mgmt","","" "Azure.ResourceManager.KeyVault","","1.0.0-preview.1","Resource Management - KeyVault","Key Vault","keyvault","","","mgmt","","" "Azure.ResourceManager.Network","","1.0.0-preview.2","Resource Management - Network","Network","network","","","mgmt","","" "Azure.ResourceManager.Resources","","1.0.0-preview.2","Resource Management - Resources","Resources","resources","","","mgmt","","" "Azure.ResourceManager.Storage","","1.0.0-preview.2","Resource Management - Storage","Storage","storage","","","mgmt","","" "Azure.AI.InkRecognizer","","1.0.0-preview.1","Azure.AI.InkRecognizer","","NA","NA","NA","","true","" +"Azure.AI.MetricsAdvisor","","1.0.0-beta.1","Azure.AI.MetricsAdvisor","","NA","NA","NA","","","" "Azure.Analytics.Synapse.AccessControl","","1.0.0-preview.2","Azure.Analytics.Synapse.AccessControl","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Artifacts","","1.0.0-preview.4","Azure.Analytics.Synapse.Artifacts","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Spark","","1.0.0-preview.2","Azure.Analytics.Synapse.Spark","Synapse","synapse","","","","","" @@ -54,10 +55,10 @@ "Azure.DigitalTwins.Core","","1.0.0-preview.3","Azure.DigitalTwins.Core","Digitaltwins","digitaltwins","","","","","" "Azure.Extensions.Configuration.Secrets","","1.0.0-preview.1","Azure.Extensions.Configuration.Secrets","","NA","NA","NA","","true","" "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" -"Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.4","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" +"Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.18","Azure.Template","","NA","NA","NA","","true","" -"Azure.Core.Experimental","","0.1.0-preview.5","Core Experimental","","NA","","","","","" +"Azure.Template","","1.0.3-beta.26","Azure.Template","","NA","NA","NA","","true","" +"Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" "Hyak.Common","1.2.2","","Hyak.Common","","NA","NA","NA","","true","" @@ -409,8 +410,8 @@ "Microsoft.Azure.Connectors.Zendesk","","0.0.1-alpha","Microsoft.Azure.Connectors.Zendesk","","NA","NA","NA","","","" "Microsoft.Azure.Connectors.Zenkraft","","0.0.1-alpha","Microsoft.Azure.Connectors.Zenkraft","","NA","NA","NA","","","" "Microsoft.Azure.ContainerRegistry","","1.0.0-preview.1","Microsoft.Azure.ContainerRegistry","Container Registry","containerregistry","NA","","","","" -"Microsoft.Azure.Cosmos","3.13.0","3.13.0-preview","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb?view=azure-dotnet","NA","","","Will be replaced by: Azure.Cosmos" -"Microsoft.Azure.Cosmos.Direct","3.13.3","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" +"Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb?view=azure-dotnet","NA","","","Will be replaced by: Azure.Cosmos" +"Microsoft.Azure.Cosmos.Direct","3.14.0","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" "Microsoft.Azure.Cosmos.Encryption","","1.0.0-preview6","Microsoft.Azure.Cosmos.Encryption","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/encryption/1.0.0-preview4/Microsoft.Azure.Cosmos.Encryption","NA","NA","","","" "Microsoft.Azure.Cosmos.Table","","2.0.0-preview","Microsoft.Azure.Cosmos.Table","","NA","NA","NA","","","" "Microsoft.Azure.CosmosDB.BulkExecutor","","2.4.1-preview","Microsoft.Azure.CosmosDB.BulkExecutor","Cosmos DB","https://github.com/Azure/azure-cosmosdb-bulkexecutor-dotnet-getting-started","NA","NA","","","" @@ -419,9 +420,9 @@ "Microsoft.Azure.DataLake.Store","","1.2.3-alpha","Microsoft.Azure.DataLake.Store","Data Lake","https://github.com/Azure/azure-data-lake-store-net/tree/1.2.3-alpha","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store?view=azure-dotnet-preview","NA","","","" "Microsoft.Azure.DataLake.USQL.SDK","1.4.200831","","Microsoft.Azure.DataLake.USQL.SDK","","NA","NA","NA","","","" "Microsoft.Azure.DCAP","1.6.0","","Microsoft.Azure.DCAP","DCAP","https://github.com/microsoft/Azure-DCAP-Client/tree/1.6","NA","NA","","","" -"Microsoft.Azure.DocumentDB","2.11.6","","Microsoft.Azure.DocumentDB","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" +"Microsoft.Azure.DocumentDB","2.12.0","","Microsoft.Azure.DocumentDB","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" "Microsoft.Azure.DocumentDB.ChangeFeedProcessor","2.3.2","","Microsoft.Azure.DocumentDB.ChangeFeedProcessor","Cosmos","https://github.com/Azure/azure-documentdb-changefeedprocessor-dotnet/tree/master","NA","NA","","","" -"Microsoft.Azure.DocumentDB.Core","2.11.6","","Microsoft.Azure.DocumentDB.Core","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" +"Microsoft.Azure.DocumentDB.Core","2.12.0","","Microsoft.Azure.DocumentDB.Core","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" "Microsoft.Azure.EventGrid","3.2.0","","Microsoft.Azure.EventGrid","Event Grid","eventgrid","https://docs.microsoft.com/dotnet/api/overview/azure/eventgrid?view=azure-dotnet","NA","","","Will be replaced by: Azure.Messaging.EventGrid" "Microsoft.Azure.EventHubs","4.3.0","","Microsoft.Azure.EventHubs","Event Hub","eventhub","https://docs.microsoft.com/dotnet/api/overview/azure/event-hubs?view=azure-dotnet","","","","Replaced by: Azure.Messaging.EventHubs" "Microsoft.Azure.EventHubs.Processor","4.3.0","","Microsoft.Azure.EventHubs.Processor","Event Hub","eventhub","NA","","","","Replaced by: Azure.Messaging.EventHubs.Processor" @@ -454,7 +455,7 @@ "Microsoft.Azure.Management.Avs","","1.0.0-preview.1","Microsoft.Azure.Management.Avs","Avs","avs","NA","NA","","","" "Microsoft.Azure.Management.AzureStackHCI","","1.0.0-preview.1","Microsoft.Azure.Management.AzureStackHCI","Azure StackHCI","azurestackhci","NA","NA","","","" "Microsoft.Azure.Management.BackupServices","","1.0.5-preview","Microsoft.Azure.Management.BackupServices","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Batch","11.0.0","","Microsoft.Azure.Management.Batch","Batch","batch","https://docs.microsoft.com/dotnet/api/overview/azure/batch?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Batch","12.0.0","","Microsoft.Azure.Management.Batch","Batch","batch","https://docs.microsoft.com/dotnet/api/overview/azure/batch?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.Batch.Fluent","1.26.1","","Microsoft.Azure.Management.Batch.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.BatchAI","2.0.0","","Microsoft.Azure.Management.BatchAI","BatchAI","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/batchai/Microsoft.Azure.Management.BatchAI","https://docs.microsoft.com/dotnet/api/overview/azure/batchai?view=azure-dotnet","","","","" "Microsoft.Azure.Management.BatchAI.Fluent","1.34.0","","Microsoft.Azure.Management.BatchAI.Fluent","","NA","NA","NA","","","" @@ -464,7 +465,7 @@ "Microsoft.Azure.Management.BotService","","0.9.3-preview","Microsoft.Azure.Management.BotService","BotService","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/botservice/Microsoft.Azure.Management.BotService","NA","","","","" "Microsoft.Azure.Management.Cdn","","5.0.0-preview","Microsoft.Azure.Management.Cdn","Cdn","cdn","NA","NA","","","" "Microsoft.Azure.Management.Cdn.Fluent","1.34.0","","Microsoft.Azure.Management.Cdn.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/cdn?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.CognitiveServices","","7.3.0-preview","Microsoft.Azure.Management.CognitiveServices","Cognitive Services","cognitiveservices","NA","NA","","","" +"Microsoft.Azure.Management.CognitiveServices","","7.4.0-preview","Microsoft.Azure.Management.CognitiveServices","Cognitive Services","cognitiveservices","NA","NA","","","" "Microsoft.Azure.Management.CognitiveServices.Fluent","","1.9.1-beta","Microsoft.Azure.Management.CognitiveServices.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.Compute","39.0.0","","Microsoft.Azure.Management.Compute","Compute","compute","NA","NA","","","" "Microsoft.Azure.Management.Compute.Fluent","1.34.0","","Microsoft.Azure.Management.Compute.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtualmachines?view=azure-dotnet","NA","","","" @@ -483,7 +484,7 @@ "Microsoft.Azure.Management.DataBox","1.2.0","","Microsoft.Azure.Management.DataBox","DataBox","databox","NA","NA","","","" "Microsoft.Azure.Management.DataBoxEdge","1.0.0","","Microsoft.Azure.Management.DataBoxEdge","DataBoxEdge","databoxedge","NA","NA","","","" "Microsoft.Azure.Management.DataFactories","4.13.3","","Microsoft.Azure.Management.DataFactories","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.DataFactory","4.11.0","","Microsoft.Azure.Management.DataFactory","DataFactory","datafactory","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.DataFactory","4.12.0","","Microsoft.Azure.Management.DataFactory","DataFactory","datafactory","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.DataLake.Analytics","","3.5.3-preview","Microsoft.Azure.Management.DataLake.Analytics","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-analytics?view=azure-dotnet-preview","","","","" "Microsoft.Azure.Management.DataLake.Store","","2.4.2-preview","Microsoft.Azure.Management.DataLake.Store","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store?view=azure-dotnet-preview","NA","","","" "Microsoft.Azure.Management.DataLake.StoreUploader","","1.0.1-preview","Microsoft.Azure.Management.DataLake.StoreUploader","","NA","NA","NA","","","" @@ -507,13 +508,13 @@ "Microsoft.Azure.Management.GuestConfiguration","1.4.0","","Microsoft.Azure.Management.GuestConfiguration","GuestConfiguration","guestconfiguration","NA","NA","","","" "Microsoft.Azure.Management.HDInsight","5.6.0","","Microsoft.Azure.Management.HDInsight","HDInsight","hdinsight","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.HDInsight.Job","2.0.7","","Microsoft.Azure.Management.HDInsight.Job","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.HealthcareApis","1.1.0","","Microsoft.Azure.Management.HealthcareApis","Healthcare Apis","healthcareapis","NA","NA","","","" +"Microsoft.Azure.Management.HealthcareApis","2.0.0","","Microsoft.Azure.Management.HealthcareApis","Healthcare Apis","healthcareapis","NA","NA","","","" "Microsoft.Azure.Management.HybridCompute","","0.1.0-preview.2","Microsoft.Azure.Management.HybridCompute","Hybrid Compute","hybridcompute","NA","NA","","","" "Microsoft.Azure.Management.HybridData","1.0.1","","Microsoft.Azure.Management.HybridData","Hybrid Data","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.Management.HybridData_1.0.1/sdk/hybriddatamanager/Microsoft.Azure.Management.HybridDataManager","NA","NA","","","" "Microsoft.Azure.Management.Intune","","0.2.0-preview","Microsoft.Azure.Management.Intune","","NA","NA","NA","","","" "Microsoft.Azure.Management.IotCentral","2.3.0","","Microsoft.Azure.Management.IotCentral","Iot Central","iotcentral","NA","NA","","","" "Microsoft.Azure.Management.IotHub","","2.10.0-preview","Microsoft.Azure.Management.IotHub","IotHub","iothub","NA","","","","" -"Microsoft.Azure.Management.KeyVault","3.0.1","3.1.0-preview.1","Microsoft.Azure.Management.KeyVault","Key Vault","keyvault","NA","NA","","","" +"Microsoft.Azure.Management.KeyVault","3.0.1","3.1.0-preview.2","Microsoft.Azure.Management.KeyVault","Key Vault","keyvault","NA","NA","","","" "Microsoft.Azure.Management.KeyVault.Fluent","1.34.0","","Microsoft.Azure.Management.KeyVault.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.Kusto","6.0.0","","Microsoft.Azure.Management.Kusto","Kusto","kusto","NA","NA","","","" "Microsoft.Azure.Management.LabServices","3.0.0","","Microsoft.Azure.Management.LabServices","LabServices","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/labservices/Microsoft.Azure.Management.LabServices","NA","","","","" @@ -540,7 +541,7 @@ "Microsoft.Azure.Management.Monitor.Fluent","1.34.0","","Microsoft.Azure.Management.Monitor.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/monitor?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.Msi.Fluent","1.34.0","","Microsoft.Azure.Management.Msi.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.MySQL","","0.1.0-preview","Microsoft.Azure.Management.MySQL","","NA","NA","NA","","","" -"Microsoft.Azure.Management.NetApp","1.6.0","","Microsoft.Azure.Management.NetApp","NetApp","netapp","NA","NA","","","" +"Microsoft.Azure.Management.NetApp","1.7.0","","Microsoft.Azure.Management.NetApp","NetApp","netapp","NA","NA","","","" "Microsoft.Azure.Management.Network","20.1.1","","Microsoft.Azure.Management.Network","Network","network","NA","NA","","","" "Microsoft.Azure.Management.Network.Fluent","1.34.0","","Microsoft.Azure.Management.Network.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtual-network?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.NotificationHubs","","2.3.3-preview","Microsoft.Azure.Management.NotificationHubs","NotificationHubs","notificationhubs","https://docs.microsoft.com/dotnet/api/overview/azure/notification-hubs?view=azure-dotnet-preview","NA","","","" @@ -599,7 +600,7 @@ "Microsoft.Azure.Management.ServiceFabric.Fluent","","1.9.1-beta","Microsoft.Azure.Management.ServiceFabric.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.SignalR","1.1.0","","Microsoft.Azure.Management.SignalR","SignalR","signalr","NA","NA","","","" "Microsoft.Azure.Management.SiteRecovery","","2.0.2-preview","Microsoft.Azure.Management.SiteRecovery","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Sql","","1.44.2-preview","Microsoft.Azure.Management.Sql","","NA","NA","NA","","","" +"Microsoft.Azure.Management.Sql","","1.45.0-preview","Microsoft.Azure.Management.Sql","","NA","NA","NA","","","" "Microsoft.Azure.Management.Sql.Fluent","1.34.0","","Microsoft.Azure.Management.Sql.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/sql?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.SqlVirtualMachine","1.0.0","","Microsoft.Azure.Management.SqlVirtualMachine","Sql VirtualMachine","sqlvirtualmachine","NA","","","","" "Microsoft.Azure.Management.Storage","17.2.0","","Microsoft.Azure.Management.Storage","Storage","storage","NA","NA","","","" @@ -609,7 +610,7 @@ "Microsoft.Azure.Management.StorSimple.Fluent","","1.9.1-beta","Microsoft.Azure.Management.StorSimple.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/storsimple?view=azure-dotnet-preview","NA","","","" "Microsoft.Azure.Management.Storsimple8000series","1.0.0","","Microsoft.Azure.Management.Storsimple8000series","Storsimple8000series","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storsimple8000series/Microsoft.Azure.Management.StorSimple8000Series","NA","NA","","","" "Microsoft.Azure.Management.StreamAnalytics","2.1.0","3.0.0-preview","Microsoft.Azure.Management.StreamAnalytics","StreamAnalytics","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/streamanalytics/Microsoft.Azure.Management.StreamAnalytics","https://docs.microsoft.com/dotnet/api/overview/azure/stream-analytics?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.Subscription","","1.1.4-preview","Microsoft.Azure.Management.Subscription","Subscription","subscription","NA","NA","","","" +"Microsoft.Azure.Management.Subscription","1.1.5","","Microsoft.Azure.Management.Subscription","Subscription","subscription","NA","NA","","","" "Microsoft.Azure.Management.Support","1.0.1","","Microsoft.Azure.Management.Support","Support","support","NA","NA","","","" "Microsoft.Azure.Management.Synapse","","1.0.0-preview.3","Microsoft.Azure.Management.Synapse","Synapse","synapse","NA","NA","","","" "Microsoft.Azure.Management.TrafficManager","2.5.3","","Microsoft.Azure.Management.TrafficManager","Traffic Manager","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/trafficmanager/Microsoft.Azure.Management.TrafficManager","NA","","","","" @@ -647,15 +648,15 @@ "Microsoft.Azure.Synapse","","0.1.0-preview","Microsoft.Azure.Synapse","Synapse","synapse","NA","","","","" "Microsoft.Azure.Template","","1.0.2-preview1","Microsoft.Azure.Template","","NA","NA","NA","","","" "Microsoft.Azure.Test.HttpRecorder","1.13.3","","Microsoft.Azure.Test.HttpRecorder","Test HttpRecorder","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mgmtcommon/TestFramework/Microsoft.Azure.Test.HttpRecorder","NA","NA","","","" -"Microsoft.Azure.WebJobs","3.0.19","","Microsoft.Azure.WebJobs","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/v3.0.18/src/Microsoft.Azure.WebJobs","NA","NA","","","" -"Microsoft.Azure.WebJobs.Core","3.0.19","","Microsoft.Azure.WebJobs.Core","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/v3.0.18","NA","NA","","","" +"Microsoft.Azure.WebJobs","3.0.22","","Microsoft.Azure.WebJobs","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/v3.0.18/src/Microsoft.Azure.WebJobs","NA","NA","","","" +"Microsoft.Azure.WebJobs.Core","3.0.22","","Microsoft.Azure.WebJobs.Core","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/v3.0.18","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions","4.0.1","","Microsoft.Azure.WebJobs.Extensions","WebJob","https://github.com/Azure/azure-webjobs-sdk-extensions/tree/dev/src/WebJobs.Extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.ApiHub","","1.0.0-beta9","Microsoft.Azure.WebJobs.Extensions.ApiHub","WebJob","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.AuthTokens","","1.0.0-beta6","Microsoft.Azure.WebJobs.Extensions.AuthTokens","WebJob","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.CosmosDB","3.0.7","","Microsoft.Azure.WebJobs.Extensions.CosmosDB","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions/tree/cosmos-v3.0.7/src/WebJobs.Extensions.CosmosDB","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.DocumentDB","1.3.0","","Microsoft.Azure.WebJobs.Extensions.DocumentDB","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.DurableTask","2.3.0","","Microsoft.Azure.WebJobs.Extensions.DurableTask","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/v2.2.2/src/WebJobs.Extensions.DurableTask","https://docs.microsoft.com/dotnet/api/overview/azure/functions?view=azure-dotnet","NA","","","" -"Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","0.3.0","","Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/Analyzer-v0.3.0/src/WebJobs.Extensions.DurableTask.Analyzers","NA","NA","","","" +"Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","0.3.2","","Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/Analyzer-v0.3.0/src/WebJobs.Extensions.DurableTask.Analyzers","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.EdgeHub","1.0.7","","Microsoft.Azure.WebJobs.Extensions.EdgeHub","WebJobs","https://github.com/Azure/iotedge/tree/1.0.7/edge-hub","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.EventGrid","2.1.0","","Microsoft.Azure.WebJobs.Extensions.EventGrid","WebJobs","https://github.com/Azure/azure-functions-eventgrid-extension/tree/v2.1.0/src/EventGridExtension","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.EventHubs","4.1.1","","Microsoft.Azure.WebJobs.Extensions.EventHubs","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" @@ -668,7 +669,7 @@ "Microsoft.Azure.WebJobs.Extensions.SendGrid","3.0.0","","Microsoft.Azure.WebJobs.Extensions.SendGrid","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions/tree/v3.0.0/src/WebJobs.Extensions.SendGrid","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.ServiceBus","4.2.0","","Microsoft.Azure.WebJobs.Extensions.ServiceBus","WebJobs","https://github.com/Azure/azure-functions-servicebus-extension/tree/v4.1.2","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.SignalRService","1.2.2","","Microsoft.Azure.WebJobs.Extensions.SignalRService","WebJobs","https://github.com/Azure/azure-functions-signalrservice-extension/tree/v1.2.0/src/SignalRServiceExtension","NA","NA","","","" -"Microsoft.Azure.WebJobs.Extensions.Storage","4.0.2","","Microsoft.Azure.WebJobs.Extensions.Storage","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/master/src/Microsoft.Azure.WebJobs.Extensions.Storage","NA","NA","","","" +"Microsoft.Azure.WebJobs.Extensions.Storage","4.0.3","","Microsoft.Azure.WebJobs.Extensions.Storage","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/master/src/Microsoft.Azure.WebJobs.Extensions.Storage","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.Twilio","3.0.0","","Microsoft.Azure.WebJobs.Extensions.Twilio","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions/tree/v3.0.0/src/WebJobs.Extensions.Twilio","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.WebHooks","","1.0.0-beta4","Microsoft.Azure.WebJobs.Extensions.WebHooks","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Host.Storage","4.0.1","","Microsoft.Azure.WebJobs.Host.Storage","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/storage-v4.0.1/src/Microsoft.Azure.WebJobs.Host.Storage","NA","NA","","","" @@ -680,7 +681,7 @@ "Microsoft.Azure.WebJobs.Script","","1.0.0-beta3","Microsoft.Azure.WebJobs.Script","WebJobs","https://github.com/Azure/azure-functions-host/tree/dev/src/WebJobs.Script","NA","NA","","","" "Microsoft.Azure.WebJobs.Script.Abstractions","","1.0.0-preview","Microsoft.Azure.WebJobs.Script.Abstractions","","NA","NA","NA","","","" "Microsoft.Azure.WebJobs.Script.Extensibility","","1.0.0-beta3","Microsoft.Azure.WebJobs.Script.Extensibility","WebJobs","https://github.com/Azure/azure-functions-host","NA","NA","","","" -"Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator","1.1.8","","Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator","WebJobs","https://github.com/Azure/azure-functions-host","NA","NA","","","" +"Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator","1.2.0","","Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator","WebJobs","https://github.com/Azure/azure-functions-host","NA","NA","","","" "Microsoft.Azure.WebJobs.Script.WebHost","","1.0.0-beta3","Microsoft.Azure.WebJobs.Script.WebHost","WebJobs","https://github.com/Azure/azure-functions-host/tree/dev/src/WebJobs.Script.WebHost","NA","NA","","","" "Microsoft.Azure.WebJobs.ServiceBus","","3.0.0-beta8","Microsoft.Azure.WebJobs.ServiceBus","WebJobs","https://github.com/Azure/azure-webjobs-sdk/tree/v3.0.0-beta8/src/Microsoft.Azure.WebJobs.ServiceBus","NA","NA","","","" "Microsoft.Azure.WebJobs.Sources","3.0.19","","Microsoft.Azure.WebJobs.Sources","WebJobs","https://github.com/Azure/azure-webjobs-sdk","NA","NA","","","" @@ -704,13 +705,13 @@ "Microsoft.Extensions.Azure","1.0.0","","Microsoft.Extensions.Azure","Core","core","NA","","","","" "Microsoft.Extensions.Caching.Cosmos","","1.0.0-preview4","Microsoft.Extensions.Caching.Cosmos","Cosmos DB","https://github.com/Azure/Microsoft.Extensions.Caching.Cosmos/tree/v1.0.0-preview4","NA","NA","","","" "Microsoft.Hadoop.Client","1.5.13","","Microsoft.Hadoop.Client","","NA","NA","NA","","","" -"Microsoft.Rest.ClientRuntime","2.3.21","","Microsoft.Rest.ClientRuntime","Rest","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Rest.ClientRuntime_2.3.21/sdk/mgmtcommon/ClientRuntime","NA","NA","","","" +"Microsoft.Rest.ClientRuntime","2.3.22","","Microsoft.Rest.ClientRuntime","Rest","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Rest.ClientRuntime_2.3.21/sdk/mgmtcommon/ClientRuntime","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Azure","3.3.19","","Microsoft.Rest.ClientRuntime.Azure","Rest","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mgmtcommon/ClientRuntime.Azure","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Azure.Authentication","2.4.1","","Microsoft.Rest.ClientRuntime.Azure.Authentication","Rest","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Rest.ClientRuntime.Azure.Authentication_2.4.1/sdk/mgmtcommon/Auth/Az.Auth/Az.Authentication","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Azure.TestFramework","1.7.7","","Microsoft.Rest.ClientRuntime.Azure.TestFramework","Rest","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Rest.ClientRuntime.Azure.TestFramework_1.7.7/sdk/mgmtcommon/TestFramework/ClientRuntime.Azure.TestFramework","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Etw","2.1.3","","Microsoft.Rest.ClientRuntime.Etw","Rest","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mgmtcommon/ClientRuntime.Etw","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Log4Net","2.1.4","","Microsoft.Rest.ClientRuntime.Log4Net","Rest","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mgmtcommon/ClientRuntime.Log4Net","NA","NA","","","" -"Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider","2.2.0","","Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider","","NA","NA","NA","","","" +"Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider","2.4.0","","Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider","","NA","NA","NA","","","" "Microsoft.Web.RedisOutputCacheProvider","3.0.1","","Microsoft.Web.RedisOutputCacheProvider","Redis","https://github.com/Azure/aspnet-redis-providers/tree/NuGet-Release/RedisOutputCacheProvider-3.0.1/src/OutputCacheProvider","NA","NA","","","" "Microsoft.Web.RedisSessionStateProvider","4.0.1","","Microsoft.Web.RedisSessionStateProvider","Redis","https://github.com/Azure/aspnet-redis-providers/tree/NuGet-Release/RedisSessionStateProvider-4.0.1/src/RedisSessionStateProvider","NA","NA","","","" "Microsoft.WindowsAzure.Caching","2.9.5","","Microsoft.WindowsAzure.Caching","","NA","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 7b8c1c1bc7d..1255b091fd5 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -1,43 +1,43 @@ "Package","GroupId","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-ai-anomalydetector","com.azure","","3.0.0-beta.1","Anomaly Detector","Anomaly Detector","anomalydetector","","","client","","" -"azure-data-appconfiguration","com.azure","1.1.5","","App Configuration","App Configuration","appconfiguration","","","client","","" -"azure-search-documents","com.azure","11.1.0","11.2.0-beta.1","Cognitive Search","Search","search","","","client","","Replaces: azure-search" -"azure-communication-administration","com.azure","","1.0.0-beta.1","Communication Administration","Communication","communication","","","client","","" -"azure-communication-chat","com.azure","","1.0.0-beta.1","Communication Chat","Communication","communication","","","client","","" -"azure-communication-common","com.azure","","1.0.0-beta.1","Communication Common","Communication","communication","","","client","","" -"azure-communication-sms","com.azure","","1.0.0-beta.1","Communication Sms","Communication","communication","","","client","","" -"azure-core","com.azure","1.8.1","","Core","Core","core","","","client","","" +"azure-data-appconfiguration","com.azure","1.1.6","","App Configuration","App Configuration","appconfiguration","","","client","","" +"azure-search-documents","com.azure","11.1.1","11.2.0-beta.2","Cognitive Search","Search","search","","","client","","Replaces: azure-search" +"azure-communication-administration","com.azure","","1.0.0-beta.2","Communication Administration","Communication","communication","","","client","","" +"azure-communication-chat","com.azure","","1.0.0-beta.2","Communication Chat","Communication","communication","","","client","","" +"azure-communication-common","com.azure","","1.0.0-beta.2","Communication Common","Communication","communication","","","client","","" +"azure-communication-sms","com.azure","","1.0.0-beta.2","Communication Sms","Communication","communication","","","client","","" +"azure-core","com.azure","1.9.0","","Core","Core","core","","","client","","" "azure-core-amqp","com.azure","1.5.1","1.6.0-beta.1","Core - AMQP","Core","core","","","client","","" -"azure-core-http-netty","com.azure","1.6.1","","Core - HTTP Netty","Core","core","","","client","","" -"azure-core-http-okhttp","com.azure","1.3.1","","Core - HTTP OkHttp","Core","core","","","client","","" -"azure-core-experimental","com.azure","","1.0.0-beta.4","Core Experimental","Core","core","","","client","","" -"azure-core-serializer-avro-apache","com.azure","","1.0.0-beta.3","Core Serializer Apache Avro","Core","core","","","client","","" +"azure-core-http-netty","com.azure","1.6.2","","Core - HTTP Netty","Core","core","","","client","","" +"azure-core-http-okhttp","com.azure","1.3.2","","Core - HTTP OkHttp","Core","core","","","client","","" +"azure-core-experimental","com.azure","","1.0.0-beta.7","Core Experimental","Core","core","","","client","","" +"azure-core-serializer-avro-apache","com.azure","","1.0.0-beta.4","Core Serializer Apache Avro","Core","core","","","client","","" "azure-core-serializer-avro-jackson","com.azure","","1.0.0-beta.1","Core Serializer Apache Jackson","Core","core","","","client","","" -"azure-core-serializer-json-gson","com.azure","1.0.1","","Core Serializer GSON JSON","Core","core","","","client","","" -"azure-core-serializer-json-jackson","com.azure","1.0.1","","Core Serializer Jackson JSON","Core","core","","","client","","" -"azure-cosmos","com.azure","4.5.1","","Cosmos","Cosmos","cosmos","","","client","","Replaces: azure-cosmos 3.x" -"azure-digitaltwins-core","com.azure","","1.0.0-beta.2","Digital Twins","Digital Twins","digitaltwins","NA","","client","","" -"azure-messaging-eventgrid","com.azure","","2.0.0-beta.2","Event Grid","Event Grid","eventgrid","","","client","","Will replace: azure-eventgrid" +"azure-core-serializer-json-gson","com.azure","1.0.2","","Core Serializer GSON JSON","Core","core","","","client","","" +"azure-core-serializer-json-jackson","com.azure","1.0.2","","Core Serializer Jackson JSON","Core","core","","","client","","" +"azure-cosmos","com.azure","4.6.0","","Cosmos","Cosmos","cosmos","","","client","","Replaces: azure-cosmos 3.x" +"azure-digitaltwins-core","com.azure","","1.0.0-beta.3","Digital Twins","Digital Twins","digitaltwins","","","client","","" +"azure-messaging-eventgrid","com.azure","","2.0.0-beta.3","Event Grid","Event Grid","eventgrid","","","client","","Will replace: azure-eventgrid" "azure-messaging-eventhubs","com.azure","5.2.0","5.3.0-beta.1","Event Hubs","Event Hubs","eventhubs","","","client","","Replaces: azure-eventhubs" "azure-messaging-eventhubs-checkpointstore-blob","com.azure","1.2.0","1.3.0-beta.1","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhubs","","","client","","" -"azure-ai-formrecognizer","com.azure","3.0.1","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","" -"azure-identity","com.azure","1.1.2","1.2.0-beta.1","Identity","Identity","identity","","","client","","" +"azure-ai-formrecognizer","com.azure","3.0.2","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","" +"azure-identity","com.azure","1.1.3","1.2.0-beta.2","Identity","Identity","identity","","","client","","" "azure-security-keyvault-administration","com.azure","","4.0.0-beta.1","Key Vault - Administration","Key Vault","keyvault","","","client","","" -"azure-security-keyvault-certificates","com.azure","4.1.1","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-certificates" -"azure-security-keyvault-keys","com.azure","4.2.1","4.3.0-beta.1","Key Vault - Keys","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-keys" -"azure-security-keyvault-secrets","com.azure","4.2.1","4.3.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" +"azure-security-keyvault-certificates","com.azure","4.1.2","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-certificates" +"azure-security-keyvault-keys","com.azure","4.2.2","4.3.0-beta.1","Key Vault - Keys","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-keys" +"azure-security-keyvault-secrets","com.azure","4.2.2","4.3.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" +"azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" "azure-data-schemaregistry-avro","com.azure","","1.0.0-beta.4","Schema Registry Avro","Data Schemaregistry","schemaregistry","","","client","","" "azure-messaging-servicebus","com.azure","","7.0.0-beta.6","Service Bus","Service Bus","servicebus","","","client","","Will replace: azure-servicebus" -"azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" -"azure-storage-blob","com.azure","12.8.0","","Storage - Blobs","Storage","storage","","","client","","Replaces: azure-storage-blob 11.x" -"azure-storage-blob-batch","com.azure","12.6.0","","Storage - Blobs Batch","Storage","storage","","","client","","" -"azure-storage-blob-cryptography","com.azure","12.8.0","","Storage - Blobs Cryptography","Storage","storage","","","client","","" -"azure-storage-common","com.azure","12.8.0","","Storage - Common","Storage","storage","","","client","","" -"azure-storage-file-datalake","com.azure","12.2.0","","Storage - File Data Lake","Storage","storage","","","client","","Replaces: azure-data-lake-store-sdk" -"azure-storage-file-share","com.azure","12.6.0","","Storage - File Shares","Storage","storage","","","client","","Replaces: azure-storage-file" -"azure-storage-queue","com.azure","12.6.0","","Storage - Queues","Storage","storage","","","client","","Replaces: azure-storage-queue 10.x" -"azure-data-tables","com.azure","","12.0.0-beta.1","Tables","Tables","tables","","","client","","" -"azure-ai-textanalytics","com.azure","5.0.0","5.1.0-beta.1","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: azure-cognitiveservices-textanalytics" +"azure-storage-blob","com.azure","12.8.0","12.9.0-beta.2","Storage - Blobs","Storage","storage","","","client","","Replaces: azure-storage-blob 11.x" +"azure-storage-blob-batch","com.azure","12.6.0","12.7.0-beta.1","Storage - Blobs Batch","Storage","storage","","","client","","" +"azure-storage-blob-cryptography","com.azure","12.8.0","12.9.0-beta.1","Storage - Blobs Cryptography","Storage","storage","","","client","","" +"azure-storage-common","com.azure","12.8.0","12.9.0-beta.2","Storage - Common","Storage","storage","","","client","","" +"azure-storage-file-datalake","com.azure","12.2.0","12.3.0-beta.1","Storage - File Data Lake","Storage","storage","","","client","","Replaces: azure-data-lake-store-sdk" +"azure-storage-file-share","com.azure","12.6.0","12.7.0-beta.1","Storage - File Shares","Storage","storage","","","client","","Replaces: azure-storage-file" +"azure-storage-queue","com.azure","12.6.0","12.7.0-beta.1","Storage - Queues","Storage","storage","","","client","","Replaces: azure-storage-queue 10.x" +"azure-data-tables","com.azure","","12.0.0-beta.2","Tables","Tables","tables","","","client","","" +"azure-ai-textanalytics","com.azure","5.0.0","5.1.0-beta.2","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: azure-cognitiveservices-textanalytics" "azure-core-tracing-opentelemetry","com.azure","","1.0.0-beta.6","Tracing","Core","core","","","client","","" "azure-resourcemanager-appservice","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - App Service","App Service","resourcemanager","","","mgmt","","" "azure-resourcemanager-authorization","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Authorization","Authorization","resourcemanager","","","mgmt","","" @@ -125,12 +125,13 @@ "azure-cognitiveservices-videosearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-videosearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-videosearch","NA","NA","","","" "azure-cognitiveservices-visualsearch","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-visualsearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-visualsearch","NA","NA","","","" "azure-cognitiveservices-websearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-websearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-websearch","NA","NA","","","" +"azure-communication-chat","com.azure.android","","1.0.0-beta.2","azure-communication-chat","","NA","NA","NA","","","" "azure-computervision","com.microsoft.azure.cognitiveservices","","0.0.1-beta","azure-computervision","","NA","NA","NA","","","" -"azure-core","com.azure.android","","1.0.0-beta.1","azure-core","","NA","NA","NA","","","" +"azure-core","com.azure.android","","1.0.0-beta.2","azure-core","","NA","NA","NA","","","" "azure-core","com.microsoft.azure","0.9.8","","azure-core","","NA","","NA","","","" "azure-core-management","com.azure","","1.0.0-preview.4","azure-core-management","Core","core","","NA","","","" "azure-core-parent","com.azure","","1.0.0-preview.2","azure-core-parent","","NA","NA","NA","","","" -"azure-core-test","com.azure","1.4.2","","azure-core-test","Core","core","","","","","" +"azure-core-test","com.azure","1.5.0","","azure-core-test","Core","core","","","","","" "azure-core-tracing-opencensus","com.azure","","1.0.0-preview.4","azure-core-tracing-opencensus","Core","core","NA","","","","" "azure-cosmos","com.microsoft.azure","3.7.5","","azure-cosmos","Cosmos DB","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cosmos/azure-cosmos","","","","","Replaced by: azure-cosmos 4.x" "azure-cosmos-cassandra-extensions","com.microsoft.azure","0.12.1","","azure-cosmos-cassandra-extensions","","NA","NA","NA","","","" @@ -152,7 +153,7 @@ "azure-cosmosdb-spark_2.2.0_2.10","com.microsoft.azure","1.0.0","","azure-cosmosdb-spark_2.2.0_2.10","","NA","NA","NA","","","" "azure-cosmosdb-spark_2.2.0_2.11","com.microsoft.azure","1.1.1","","azure-cosmosdb-spark_2.2.0_2.11","","NA","NA","NA","","","" "azure-cosmosdb-spark_2.3.0_2.11","com.microsoft.azure","1.3.3","","azure-cosmosdb-spark_2.3.0_2.11","","NA","NA","NA","","","" -"azure-cosmosdb-spark_2.4.0_2.11","com.microsoft.azure","3.3.0","","azure-cosmosdb-spark_2.4.0_2.11","","NA","NA","NA","","","" +"azure-cosmosdb-spark_2.4.0_2.11","com.microsoft.azure","3.3.4","","azure-cosmosdb-spark_2.4.0_2.11","","NA","NA","NA","","","" "azure-cosmosdb-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-cosmosdb-spring-boot-starter","Cosmos DB","NA","NA","NA","","","" "azure-cosmos-direct","com.microsoft.azure","","3.0.0-a1","azure-cosmos-direct","","NA","NA","NA","","","" "azure-cosmos-examples","com.microsoft.azure","3.3.1","","azure-cosmos-examples","","NA","NA","NA","","","" @@ -549,13 +550,13 @@ "azure-spring-common","com.microsoft.azure","0.1.7","","azure-spring-common","","NA","NA","NA","","","" "azure-spring-data-2-2-cosmos","com.azure","","3.0.0-beta.1","azure-spring-data-2-2-cosmos","","NA","NA","NA","","","" "azure-spring-data-2-3-cosmos","com.azure","","3.0.0-beta.1","azure-spring-data-2-3-cosmos","","NA","NA","NA","","","" -"azure-spring-data-cosmos","com.azure","","3.0.0-beta.2","azure-spring-data-cosmos","","NA","NA","NA","","","" +"azure-spring-data-cosmos","com.azure","3.0.0","3.0.0-beta.2","azure-spring-data-cosmos","","NA","NA","NA","","","" "azure-spring-data-cosmos-core","com.azure","","3.0.0-beta.1","azure-spring-data-cosmos-core","","NA","NA","NA","","","" "azure-sqldb-spark","com.microsoft.azure","1.0.2","","azure-sqldb-spark","","NA","NA","NA","","","" "azure-storage","com.microsoft.azure","8.6.5","","azure-storage","","NA","https://docs.microsoft.com/java/api/overview/azure/storage?view=azure-java-stable","NA","","","Replaced by: individual service packages 12.x" "azure-storage-android","com.microsoft.azure.android","2.0.0","","azure-storage-android","","NA","NA","NA","","","" "azure-storage-blob","com.microsoft.azure","11.0.1","","azure-storage-blob","Storage","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/microsoft-azure-storage-blob","","NA","","","Replaced by: azure-storage-blob 12.x" -"azure-storage-blob-changefeed","com.azure","","12.0.0-beta.2","azure-storage-blob-changefeed","Storage","storage","","NA","","","" +"azure-storage-blob-changefeed","com.azure","","12.0.0-beta.3","azure-storage-blob-changefeed","Storage","storage","","NA","","","" "azure-storage-blob-nio","com.azure","","12.0.0-beta.2","azure-storage-blob-nio","Storage","storage","","","","","" "azure-storage-file","com.azure","","12.0.0-preview.4","azure-storage-file","Storage","storage","https://docs.microsoft.com/java/api/overview/azure/storage-file-share-readme-pre?view=azure-java-preview","NA","","","Replaced by: azure-storage-file-share" "azure-storage-java","com.microsoft.azure","10","","azure-storage-java","","NA","NA","NA","","","" @@ -577,7 +578,7 @@ "azure-webapp-maven-plugin","com.microsoft.azure","1.11.0","","azure-webapp-maven-plugin","","NA","NA","NA","","","" "bundler-maven-plugin","com.microsoft.azure","0.0.5","","bundler-maven-plugin","","NA","NA","NA","","","" "client-runtime","com.microsoft.azure","1.0.1","","client-runtime","","NA","NA","NA","","","" -"azure-communication-calling","com.azure.android","","1.0.0-beta.1","Communication Calling","Communication","NA","NA","NA","","","" +"azure-communication-calling","com.azure.android","","1.0.0-beta.2","Communication Calling","Communication","NA","NA","NA","","","" "azure-communication-common","com.azure.android","","1.0.0-beta.1","Communication Common","Communication","NA","NA","NA","","","" "digital-twin-device-client-preview","com.microsoft.azure.sdk.iot","1.0.0","","digital-twin-device-client-preview","","NA","NA","NA","","","" "digital-twin-service-client-preview","com.microsoft.azure.sdk.iot","1.0.0","","digital-twin-service-client-preview","","NA","NA","NA","","","" @@ -589,12 +590,12 @@ "gateway-module-base","com.microsoft.azure.gateway","1.0.2","","gateway-module-base","","NA","NA","NA","","","" "gateway-module-simple","com.microsoft.azure.gateway.archetypes","1.0.0","","gateway-module-simple","","NA","NA","NA","","","" "gateway-win32","com.microsoft.azure.gateway","1.0.2","","gateway-win32","","NA","NA","NA","","","" -"iot-deps","com.microsoft.azure.sdk.iot","0.10.0","","iot-deps","","NA","NA","NA","","","" +"iot-deps","com.microsoft.azure.sdk.iot","0.11.0","","iot-deps","","NA","NA","NA","","","" "iot-deps-preview","com.microsoft.azure.sdk.iot","1.1.0","","iot-deps-preview","","NA","NA","NA","","","" "iot-deps-serializer","com.microsoft.azure","0.3.3","","iot-deps-serializer","","NA","NA","NA","","","" "iot-deps-serializer","com.microsoft.azure.sdk.iot.deps","0.7.6","","iot-deps-serializer","","NA","NA","NA","","","" "iot-device-client","com.microsoft.azure","1.1.24","","iot-device-client","","NA","NA","NA","","","" -"iot-device-client","com.microsoft.azure.sdk.iot","1.25.0","","iot-device-client","","NA","NA","NA","","","" +"iot-device-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-device-client","","NA","NA","NA","","","" "iot-device-client-preview","com.microsoft.azure.sdk.iot","1.1.0","","iot-device-client-preview","","NA","NA","NA","","","" "iothub-java-client","com.microsoft.azure.iothub-java-client","","1.0.0-preview.7","iothub-java-client","","NA","NA","NA","","","" "iothub-java-device-client","com.microsoft.azure.iothub-java-client","1.0.16","","iothub-java-device-client","","NA","NA","NA","","","" @@ -605,22 +606,25 @@ "iothub-react_2.12","com.microsoft.azure.iot","0.9.0","","iothub-react_2.12","","NA","NA","NA","","","" "iothub-react_2.12.0-RC1","com.microsoft.azure.iot","0.7.0","","iothub-react_2.12.0-RC1","","NA","NA","NA","","","" "iot-service-client","com.microsoft.azure","1.2.18","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" -"iot-service-client","com.microsoft.azure.sdk.iot","1.25.0","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" +"iot-service-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" "iot-service-client-preview","com.microsoft.azure.sdk.iot","1.1.0","","iot-service-client-preview","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" -"kusto-data","com.microsoft.azure.kusto","2.3.1","","kusto-data","","NA","NA","NA","","","" -"kusto-ingest","com.microsoft.azure.kusto","2.3.1","","kusto-ingest","","NA","NA","NA","","","" +"kusto-data","com.microsoft.azure.kusto","2.3.2","","kusto-data","","NA","NA","NA","","","" +"kusto-ingest","com.microsoft.azure.kusto","2.3.2","","kusto-ingest","","NA","NA","NA","","","" +"kusto-spark_2.4_2.11","com.microsoft.azure.kusto","2.3.0","","kusto-spark_2.4_2.11","","NA","NA","NA","","","" +"kusto-spark_3.0_2.12","com.microsoft.azure.kusto","2.3.0","","kusto-spark_3.0_2.12","","NA","NA","NA","","","" "maven-plugin-lib","com.microsoft.azure","0.1.1","","maven-plugin-lib","","NA","NA","NA","","","" "microsoft-graph-spring-boot-autoconfigure","com.microsoft.azure","0.1.7","","microsoft-graph-spring-boot-autoconfigure","","NA","NA","NA","","","" "microsoft-graph-spring-social-starter","com.microsoft.azure","0.1.7","","microsoft-graph-spring-social-starter","","NA","NA","NA","","","" "msal4j","com.microsoft.azure","1.7.1","","msal4j","","NA","NA","NA","","","" "msal4j-persistence-extension","com.microsoft.azure","1.0.0","","msal4j-persistence-extension","","NA","NA","NA","","","" "native-preview","com.microsoft.azure.servicefabric","1.0.0","","native-preview","","NA","NA","NA","","","" +"opentelemetry-exporters-azuremonitor","com.azure","","1.0.0-beta.1","opentelemetry-exporters-azuremonitor","","NA","NA","NA","","","" "project","com.microsoft.azure.sessionmanager","","1.0.0-beta.1","project","","NA","NA","NA","","","" "proton-j-azure-iot","com.microsoft.azure.iot","0.12.2","","proton-j-azure-iot","","NA","NA","NA","","","" "proton-j-azure-iot-dev","com.microsoft.azure.iot","0.12.3","","proton-j-azure-iot-dev","","NA","NA","NA","","","" -"provisioning-device-client","com.microsoft.azure.sdk.iot.provisioning","1.8.3","","provisioning-device-client","","NA","NA","NA","","","" +"provisioning-device-client","com.microsoft.azure.sdk.iot.provisioning","1.8.4","","provisioning-device-client","","NA","NA","NA","","","" "provisioning-device-client-preview","com.microsoft.azure.sdk.iot.provisioning","1.0.1","","provisioning-device-client-preview","","NA","NA","NA","","","" -"provisioning-service-client","com.microsoft.azure.sdk.iot.provisioning","1.6.2","","provisioning-service-client","","NA","NA","NA","","","" +"provisioning-service-client","com.microsoft.azure.sdk.iot.provisioning","1.7.0","","provisioning-service-client","","NA","NA","NA","","","" "provisioning-service-client-preview","com.microsoft.azure.sdk.iot.provisioning","1.0.1","","provisioning-service-client-preview","","NA","NA","NA","","","" "qpid-proton-j-extensions","com.microsoft.azure","1.2.3","","qpid-proton-j-extensions","","NA","NA","NA","","","" "azure-schemaregistry-kafka-avro","com.microsoft.azure","","1.0.0-beta.4","Schema Registry Kafka Avro","","NA","NA","NA","","","" @@ -633,6 +637,7 @@ "sessionmanager-tomcat","com.microsoft.azure.sessionmanager","","1.0.0-beta.1","sessionmanager-tomcat","","NA","NA","NA","","","" "spark-cdm-connector","com.microsoft.azure","0.17","","spark-cdm-connector","","NA","NA","NA","","","" "spark-kusto-connector","com.microsoft.azure.kusto","2.3.0","","spark-kusto-connector","","NA","NA","NA","","","" +"spark-mssql-connector","com.microsoft.azure","1.0.0","","spark-mssql-connector","","NA","NA","NA","","","" "spark-streaming-eventhubs_2.10","com.microsoft.azure","1.6.3","","spark-streaming-eventhubs_2.10","","NA","NA","NA","","","" "spark-streaming-eventhubs_2.11","com.microsoft.azure","2.1.5","","spark-streaming-eventhubs_2.11","","NA","NA","NA","","","" "spark-streaming-eventhubs_connector_2.10","com.microsoft.azure","1.6.3","","spark-streaming-eventhubs_connector_2.10","","NA","NA","NA","","","" @@ -691,7 +696,7 @@ "spring-social-microsoft-graph","com.microsoft.azure","0.1.7","","spring-social-microsoft-graph","","NA","NA","NA","","","" "spring-starter-azure-cache","com.microsoft.azure","1.2.8","","spring-starter-azure-cache","","NA","NA","NA","","","" "spring-starter-azure-storage","com.microsoft.azure","1.2.8","","spring-starter-azure-storage","","NA","NA","NA","","","" -"azure-storage-internal-avro","com.azure","12.0.0","12.0.0-beta.1","Storage Internal Avro","Storage","storage","NA","NA","","","" +"azure-storage-internal-avro","com.azure","12.0.0","12.0.1-beta.2","Storage Internal Avro","Storage","storage","NA","NA","","","" "system-fabric-preview","com.microsoft.azure.servicefabric","1.0.0","","system-fabric-preview","","NA","NA","NA","","","" "tpm-provider","com.microsoft.azure.sdk.iot.provisioning.security","1.1.2","","tpm-provider","","NA","NA","NA","","","" "tpm-provider-preview","com.microsoft.azure.sdk.iot.provisioning.security","1.0.1","","tpm-provider-preview","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 4d7bb8587b1..37ec7e3e2a6 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -1,31 +1,31 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "@azure/app-configuration","1.1.0","","App Configuration","App Configuration","appconfiguration","","","client","","" -"@azure/search-documents","11.0.3","","Cognitive Search","Search","search","","","client","","Replaces: @azure/search" -"@azure/communication-administration","","1.0.0-beta.1","Communication Administration","Communication","communication","","","client","","" -"@azure/communication-chat","","1.0.0-beta.1","Communication Chat","Communication","communication","","","client","","" -"@azure/communication-common","","1.0.0-beta.1","Communication Common","Communication","communication","","","client","","" -"@azure/communication-sms","","1.0.0-beta.1","Communication Sms","Communication","communication","","","client","","" -"@azure/core-http","1.1.8","","Core","Core","core","","","client","","" +"@azure/search-documents","11.0.3","11.1.0-beta.1","Cognitive Search","Search","search","","","client","","Replaces: @azure/search" +"@azure/communication-administration","","1.0.0-beta.2","Communication Administration","Communication","communication","","","client","","" +"@azure/communication-chat","","1.0.0-beta.2","Communication Chat","Communication","communication","","","client","","" +"@azure/communication-common","","1.0.0-beta.2","Communication Common","Communication","communication","","","client","","" +"@azure/communication-sms","","1.0.0-beta.2","Communication Sms","Communication","communication","","","client","","" +"@azure/core-http","1.1.9","","Core","Core","core","","","client","","" "@azure/cosmos","3.9.2","","Cosmos","Cosmos","cosmosdb","","","client","","" "@azure/eventgrid","2.0.0","3.0.0-beta.1","Event Grid","Event Grid","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventgrid/eventgrid","NA","NA","client","","Will be replaced by: @azure/eventgrid 3.x" "@azure/event-hubs","5.3.0","","Event Hubs","Event Hubs","eventhub","","","client","","" "@azure/eventhubs-checkpointstore-blob","1.0.1","","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhub","","","client","","" "@azure/ai-form-recognizer","3.0.0","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","Replaces: @azure/cognitiveservices-formrecognizer" -"@azure/ai-metrics-advisor","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" -"@azure/identity","1.1.0","1.2.0-beta.1","Identity","Identity","identity","","","client","","" +"@azure/identity","1.1.0","1.2.0-beta.2","Identity","Identity","identity","","","client","","" "@azure/keyvault-admin","","4.0.0-beta.1","Key Vault - Administration","Key Vault","keyvault","","","client","","" "@azure/keyvault-certificates","4.1.0","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","" -"@azure/keyvault-keys","4.1.0","4.2.0-beta.1","Key Vault - Keys","Key Vault","keyvault","","","client","","" +"@azure/keyvault-keys","4.1.0","4.2.0-beta.2","Key Vault - Keys","Key Vault","keyvault","","","client","","" "@azure/keyvault-secrets","4.1.0","4.2.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","" +"@azure/ai-metrics-advisor","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" "@azure/schema-registry","","1.0.0-beta.1","Schema Registry","Schema Registry","schemaregistry","","","client","","" "@azure/schema-registry-avro","","1.0.0-beta.1","Schema Registry Avro Serializer","Schema Registry","schemaregistry","","","client","","" -"@azure/service-bus","1.1.10","7.0.0-preview.6","Service Bus","Service Bus","servicebus","NA","","client","","Will be replaced by: @azure/service-bus 7.x" +"@azure/service-bus","1.1.10","7.0.0-preview.7","Service Bus","Service Bus","servicebus","NA","","client","","Will be replaced by: @azure/service-bus 7.x" "@azure/storage-blob","12.2.1","","Storage - Blobs","Storage","storage","","","client","","" "@azure/storage-file-datalake","12.1.1","","Storage - File Data Lake","Storage","storage","","","client","","" "@azure/storage-file-share","12.2.0","","Storage - File Shares","Storage","storage","","","client","","" "@azure/storage-queue","12.1.0","","Storage - Queues","Storage","storage","","","client","","" -"@azure/data-tables","","1.0.0-beta.1","Tables","Tables","tables","","","client","","" -"@azure/ai-text-analytics","5.0.1","5.1.0-beta.1","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: @azure/cognitiveservices-textanalytics" +"@azure/data-tables","","1.0.0-beta.2","Tables","Tables","tables","","","client","","" +"@azure/ai-text-analytics","5.0.1","5.1.0-beta.2","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: @azure/cognitiveservices-textanalytics" "@autorest/autorest","3.0.6187","","@autorest/autorest","Autorest","https://github.com/Azure/autorest/tree/autorest-3.0.6187/autorest","NA","NA","","","" "@autorest/az","1.5.1","","@autorest/az","Az","https://github.com/Azure/autorest.az/tree/1.4.0","NA","NA","","","" "@autorest/azure-functions-csharp","","0.1.0-preview","@autorest/azure-functions-csharp","","NA","NA","NA","","","" @@ -40,7 +40,7 @@ "@autorest/core","3.0.6320","","@autorest/core","Core","https://github.com/Azure/autorest/tree/master/core","NA","NA","","","" "@autorest/modelerfour","4.1.60","","@autorest/modelerfour","Modelerfour","https://github.com/Azure/autorest.modelerfour","NA","NA","","","" "@autorest/powershell","2.1.400","","@autorest/powershell","Powershell","https://github.com/Azure/autorest.powershell","NA","NA","","","" -"@autorest/python","5.3.4","","@autorest/python","Python","https://github.com/Azure/autorest.python/tree/v5.1.0-preview.7","NA","NA","","","" +"@autorest/python","5.3.5","","@autorest/python","Python","https://github.com/Azure/autorest.python/tree/v5.1.0-preview.7","NA","NA","","","" "@autorest/remodeler","2.1.27","","@autorest/remodeler","Remodeler","https://github.com/Azure/autorest.remodeler","NA","NA","","","" "@autorest/test","0.1.69","","@autorest/test","Test","https://github.com/Azure/autorest.test","NA","NA","","","" "@autorest/test-server","3.0.27","","@autorest/test-server","","NA","NA","NA","","","" @@ -49,7 +49,7 @@ "@azure/amqp-common","","1.0.0-preview.17","@azure/amqp-common","Core","core","NA","NA","","","" "@azure/applicationinsights-query","1.1.0","","@azure/applicationinsights-query","Application Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/applicationinsights-query","NA","","","","" "@azure/arm-advisor","2.0.0","","@azure/arm-advisor","Advisor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/advisor/arm-advisor","https://docs.microsoft.com/javascript/api/overview/azure/advisor?view=azure-node-latest","NA","","","" -"@azure/arm-analysisservices","2.3.0","","@azure/arm-analysisservices","Analysis Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/analysisservices/arm-analysisservices","https://docs.microsoft.com/javascript/api/overview/azure/analysis-services?view=azure-node-latest","","","","" +"@azure/arm-analysisservices","2.3.1","","@azure/arm-analysisservices","Analysis Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/analysisservices/arm-analysisservices","https://docs.microsoft.com/javascript/api/overview/azure/analysis-services?view=azure-node-latest","NA","","","" "@azure/arm-apimanagement","6.0.0","","@azure/arm-apimanagement","Apimanagement","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/apimanagement/arm-apimanagement","NA","NA","","","" "@azure/arm-appconfiguration","1.3.0","","@azure/arm-appconfiguration","Appconfiguration","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/arm-appconfiguration","NA","NA","","","" "@azure/arm-appinsights","2.1.0","","@azure/arm-appinsights","Applicationinsights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/arm-appinsights","NA","","","","" @@ -182,7 +182,7 @@ "@azure/batch","7.0.0","","@azure/batch","Batch","https://github.com/azure/azure-sdk-for-js/tree/master/sdk/batch/batch","NA","","","","" "@azure/cognitiveservices-anomalydetector","2.1.0","","@azure/cognitiveservices-anomalydetector","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-anomalydetector","NA","NA","","","" "@azure/cognitiveservices-autosuggest","2.0.1","","@azure/cognitiveservices-autosuggest","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-autosuggest","NA","NA","","","" -"@azure/cognitiveservices-computervision","7.0.1","","@azure/cognitiveservices-computervision","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-computervision","NA","NA","","","" +"@azure/cognitiveservices-computervision","7.1.0","","@azure/cognitiveservices-computervision","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-computervision","NA","NA","","","" "@azure/cognitiveservices-contentmoderator","5.0.1","","@azure/cognitiveservices-contentmoderator","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-contentmoderator","NA","NA","","","" "@azure/cognitiveservices-customimagesearch","2.0.1","","@azure/cognitiveservices-customimagesearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-customimagesearch","NA","NA","","","" "@azure/cognitiveservices-customsearch","3.0.1","","@azure/cognitiveservices-customsearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/cognitiveservices-customsearch","NA","NA","","","" @@ -507,7 +507,7 @@ "@azure/core-client","","1.0.0-alpha.20200925.1","@azure/core-client","","NA","NA","NA","","","" "@azure/core-https","","1.0.0-alpha.20200925.1","@azure/core-https","","NA","NA","NA","","","" "@azure/core-lro","1.0.2","","@azure/core-lro","Core","core","NA","","","","" -"@azure/core-paging","1.1.2","","@azure/core-paging","Core","core","NA","","","","" +"@azure/core-paging","1.1.3","","@azure/core-paging","Core","core","NA","","","","" "@azure/core-tracing","","1.0.0-preview.9","@azure/core-tracing","Core","core","NA","","","","" "@azure/core-xml","","1.0.0-alpha.20200925.1","@azure/core-xml","","NA","NA","NA","","","" "@azure/cosmos-language-service","0.0.4","","@azure/cosmos-language-service","Cosmos DB","https://github.com/Azure/cosmos-sql-language-service","NA","NA","","","" @@ -567,26 +567,26 @@ "@azure-tools/tasks","3.0.252","","@azure-tools/tasks","Tasks","https://github.com/Azure/perks/tree/master/tasks","NA","NA","","","" "@azure-tools/uri","3.0.254","","@azure-tools/uri","Uri","https://github.com/Azure/perks/tree/master/uri","NA","NA","","","" "autorest","3.0.6247","","autorest","","NA","NA","NA","","","" -"azure-iot-amqp-base","2.4.5","","azure-iot-amqp-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" -"azure-iot-common","1.12.5","","azure-iot-common","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/common","NA","NA","","","" -"azure-iot-device","1.17.1","","azure-iot-device","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device","NA","NA","","","" -"azure-iot-device-amqp","1.13.1","","azure-iot-device-amqp","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/amqp","NA","NA","","","" -"azure-iot-device-http","1.13.1","","azure-iot-device-http","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/http","NA","NA","","","" -"azure-iot-device-mqtt","1.15.1","","azure-iot-device-mqtt","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/mqtt","NA","NA","","","" +"azure-iot-amqp-base","2.4.6","","azure-iot-amqp-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" +"azure-iot-common","1.12.6","","azure-iot-common","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/common","NA","NA","","","" +"azure-iot-device","1.17.2","","azure-iot-device","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device","NA","NA","","","" +"azure-iot-device-amqp","1.13.2","","azure-iot-device-amqp","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/amqp","NA","NA","","","" +"azure-iot-device-http","1.13.2","","azure-iot-device-http","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/http","NA","NA","","","" +"azure-iot-device-mqtt","1.15.2","","azure-iot-device-mqtt","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/device/transport/mqtt","NA","NA","","","" "azure-iot-digitaltwins-device","","1.0.0-preview.2","azure-iot-digitaltwins-device","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" "azure-iot-digitaltwins-model-repository","","1.0.0-preview.1","azure-iot-digitaltwins-model-repository","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" "azure-iot-digitaltwins-service","","1.0.0-pnp-refresh.3","azure-iot-digitaltwins-service","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" -"azure-iot-http-base","1.11.5","","azure-iot-http-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" -"azure-iothub","1.12.5","","azure-iothub","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" -"azure-iot-mqtt-base","1.12.5","","azure-iot-mqtt-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" -"azure-iot-provisioning-device","1.8.5","","azure-iot-provisioning-device","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/device","NA","NA","","","" -"azure-iot-provisioning-device-amqp","1.8.5","","azure-iot-provisioning-device-amqp","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/amqp","NA","NA","","","" -"azure-iot-provisioning-device-http","1.8.5","","azure-iot-provisioning-device-http","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/http","NA","NA","","","" -"azure-iot-provisioning-device-mqtt","1.7.5","","azure-iot-provisioning-device-mqtt","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/device","NA","NA","","","" -"azure-iot-provisioning-service","1.8.5","","azure-iot-provisioning-service","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/mqtt","NA","NA","","","" -"azure-iot-security-symmetric-key","1.7.5","","azure-iot-security-symmetric-key","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/symmetric","NA","NA","","","" -"azure-iot-security-tpm","1.8.5","","azure-iot-security-tpm","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/tpm","NA","NA","","","" -"azure-iot-security-x509","1.7.5","","azure-iot-security-x509","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/x509","NA","NA","","","" +"azure-iot-http-base","1.11.6","","azure-iot-http-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" +"azure-iothub","1.13.0","","azure-iothub","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" +"azure-iot-mqtt-base","1.12.6","","azure-iot-mqtt-base","Iot","https://github.com/Azure/azure-iot-sdk-node","NA","NA","","","" +"azure-iot-provisioning-device","1.8.6","","azure-iot-provisioning-device","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/device","NA","NA","","","" +"azure-iot-provisioning-device-amqp","1.8.6","","azure-iot-provisioning-device-amqp","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/amqp","NA","NA","","","" +"azure-iot-provisioning-device-http","1.8.6","","azure-iot-provisioning-device-http","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/http","NA","NA","","","" +"azure-iot-provisioning-device-mqtt","1.7.6","","azure-iot-provisioning-device-mqtt","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/device","NA","NA","","","" +"azure-iot-provisioning-service","1.8.6","","azure-iot-provisioning-service","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/transport/mqtt","NA","NA","","","" +"azure-iot-security-symmetric-key","1.7.6","","azure-iot-security-symmetric-key","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/symmetric","NA","NA","","","" +"azure-iot-security-tpm","1.8.6","","azure-iot-security-tpm","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/tpm","NA","NA","","","" +"azure-iot-security-x509","1.7.6","","azure-iot-security-x509","Iot","https://github.com/Azure/azure-iot-sdk-node/tree/master/security/x509","NA","NA","","","" "azure-streamanalytics-cicd","2.0.0","","azure-streamanalytics-cicd","","NA","NA","NA","","","" "@azure/communication-signaling","","1.0.0-beta.1","Communication Signaling","Communication","NA","NA","NA","","","" "git-rest-api-sdk","0.3.3","","git-rest-api-sdk","Git Rest Api","https://github.com/azure/git-rest-api","NA","NA","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 127d9c93688..b805a46c3fd 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -1,29 +1,30 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" -"azure-appconfiguration","1.1.0","","App Configuration","App Configuration","appconfiguration","","","client","","" -"azure-search-documents","11.0.0","11.1.0b2","Cognitive Search","Search","search","","","client","","Replaces: azure-search" -"azure-communication-administration","","1.0.0b1","Communication Administration","Communication","communication","","","client","","" -"azure-communication-chat","","1.0.0b1","Communication Chat","Communication","communication","","","client","","" -"azure-communication-sms","","1.0.0b1","Communication Sms","Communication","communication","","","client","","" -"azure-core","1.8.1","","Core","Core","core","","","client","","" -"azure-cosmos","4.1.0","","Cosmos","Cosmos","cosmos","","","client","","" -"azure-eventgrid","1.3.0","2.0.0b2","Event Grid","Event Grid","eventgrid","NA","","client","","Will be replaced by: azure-eventgrid 2.x" +"azure-appconfiguration","1.1.1","","App Configuration","App Configuration","appconfiguration","","","client","","" +"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","client","","" +"azure-search-documents","11.0.0","11.1.0b3","Cognitive Search","Search","search","","","client","","Replaces: azure-search" +"azure-communication-administration","","1.0.0b2","Communication Administration","Communication","communication","","","client","","" +"azure-communication-chat","","1.0.0b2","Communication Chat","Communication","communication","","","client","","" +"azure-communication-sms","","1.0.0b3","Communication Sms","Communication","communication","","","client","","" +"azure-core","1.8.2","","Core","Core","core","","","client","","" +"azure-cosmos","4.2.0","","Cosmos","Cosmos","cosmos","","","client","","" +"azure-eventgrid","1.3.0","2.0.0b3","Event Grid","Event Grid","eventgrid","NA","","client","","Will be replaced by: azure-eventgrid 2.x" "azure-eventhub","5.2.0","","Event Hubs","Event Hubs","eventhub","","","client","","" "azure-eventhub-checkpointstoreblob","1.1.1","","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhub","","","client","","" "azure-eventhub-checkpointstoreblob-aio","1.1.1","","Event Hubs - Azure Blob Storage Checkpoint Store AIO","Event Hubs","eventhub","","","client","","" "azure-ai-formrecognizer","3.0.0","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","Replaces: azure-cognitiveservices-formrecognizer" -"azure-identity","1.4.0","1.5.0b1","Identity","Identity","identity","","","client","","" +"azure-identity","1.4.1","1.5.0b2","Identity","Identity","identity","","","client","","" "azure-keyvault-certificates","4.2.1","","Key Vault - Certificates","Key Vault","keyvault","","","client","","" -"azure-keyvault-keys","4.2.0","","Key Vault - Keys","Key Vault","keyvault","","","client","","" +"azure-keyvault-keys","4.3.0","","Key Vault - Keys","Key Vault","keyvault","","","client","","" "azure-keyvault-secrets","4.2.0","","Key Vault - Secrets","Key Vault","keyvault","","","client","","" -"azure-keyvault-administration","","4.0.0b1","Key Vault Administration","Key Vault","keyvault","","","client","","" +"azure-keyvault-administration","","4.0.0b2","Key Vault Administration","Key Vault","keyvault","","","client","","" "azure-schemaregistry","","1.0.0b1","Schema Registry","Schema Registry","schemaregistry","","","client","","" "azure-schemaregistry-avroserializer","","1.0.0b1","Schema Registry Avro Serializer","Schema Registry","schemaregistry","","","client","","" -"azure-servicebus","0.50.3","7.0.0b6","Service Bus","Service Bus","servicebus","","","client","","Will be replaced by: azure-servicebus 7.x" -"azure-storage-blob","12.5.0","","Storage - Blobs","Storage","storage","","","client","","" -"azure-storage-file-datalake","12.1.2","","Storage - File Data Lake","Storage","storage","","","client","","" -"azure-storage-file-share","12.2.0","","Storage - File Shares","Storage","storage","","","client","","Replaces: azure-storage-file 2.1.0" +"azure-servicebus","0.50.3","7.0.0b7","Service Bus","Service Bus","servicebus","","","client","","Will be replaced by: azure-servicebus 7.x" +"azure-storage-blob","12.5.0","12.6.0b1","Storage - Blobs","Storage","storage","","","client","","" +"azure-storage-file-datalake","12.1.2","12.2.0b1","Storage - File Data Lake","Storage","storage","","","client","","" +"azure-storage-file-share","12.2.0","12.3.0b1","Storage - File Shares","Storage","storage","","","client","","Replaces: azure-storage-file 2.1.0" "azure-storage-queue","12.1.3","","Storage - Queues","Storage","storage","","","client","","" -"azure-data-tables","","12.0.0b1","Tables","Tables","tables","","","client","","" +"azure-data-tables","","12.0.0b2","Tables","Tables","tables","","","client","","" "azure-ai-textanalytics","5.0.0","5.1.0b1","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: azure-cognitiveservices-language-textanalytics" "azure-mgmt-appconfiguration","1.0.1","","Resource Management - App Configuration","App Configuration","appconfiguration","","","mgmt","","" "azure-mgmt-baremetalinfrastructure","","1.0.0b1","Resource Management - Bare Metal Infrastructure","Bare Metal","baremetalinfrastructure","NA","","mgmt","","" @@ -38,7 +39,6 @@ "azure-mgmt-streamanalytics","","1.0.0rc1","Resource Management - Stream Analytics","Stream Analytics","streamanalytics","NA","","mgmt","","" "azure","5.0.0","","azure","","NA","NA","NA","","true","" "azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","NA","","","","Will replace: azure-cognitiveservices-anomalydetector" -"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","client","","" "azure-ai-nspkg","1.0.0","","azure-ai-nspkg","Text Analytics","textanalytics","NA","NA","","","" "azure-applicationinsights","0.1.0","","azure-applicationinsights","Application Insights","https://github.com/Azure/azure-sdk-for-python/tree/azure-applicationinsights_0.1.0/azure-applicationinsights","NA","","","","" "azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" @@ -63,14 +63,15 @@ "azure-cognitiveservices-search-videosearch","2.0.0","","azure-cognitiveservices-search-videosearch","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-search-visualsearch","0.2.0","","azure-cognitiveservices-search-visualsearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/azure-cognitiveservices-search-visualsearch_0.2.0/azure-cognitiveservices-search-visualsearch/","NA","","","","" "azure-cognitiveservices-search-websearch","2.0.0","","azure-cognitiveservices-search-websearch","Cognitive Services","cognitiveservices","NA","","","","" -"azure-cognitiveservices-vision-computervision","0.6.0","","azure-cognitiveservices-vision-computervision","Cognitive Services","cognitiveservices","NA","","","","" +"azure-cognitiveservices-vision-computervision","0.7.0","","azure-cognitiveservices-vision-computervision","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-vision-contentmoderator","1.0.0","","azure-cognitiveservices-vision-contentmoderator","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/azure-cognitiveservices-vision-contentmoderator_1.0.0/azure-cognitiveservices-vision-contentmoderator/","NA","","","","" "azure-cognitiveservices-vision-customvision","3.0.0","","azure-cognitiveservices-vision-customvision","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-vision-face","0.4.1","","azure-cognitiveservices-vision-face","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-vision-nspkg","3.0.1","","azure-cognitiveservices-vision-nspkg","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/azure-cognitiveservices-vision-nspkg_3.0.1/azure-cognitiveservices-vision-nspkg/","NA","NA","","","" "azure-common","1.1.25","","azure-common","Core","core","NA","","","","" +"azure-communication-nspkg","","0.0.0b1","azure-communication-nspkg","","NA","NA","NA","","","" "azure-core-tracing-opencensus","","1.0.0b6","azure-core-tracing-opencensus","Core","core","NA","","","","" -"azure-core-tracing-opentelemetry","","1.0.0b6","azure-core-tracing-opentelemetry","Core","core","NA","","","","" +"azure-core-tracing-opentelemetry","","1.0.0b7","azure-core-tracing-opentelemetry","Core","core","NA","","","","" "azure-data-nspkg","1.0.0","","azure-data-nspkg","","NA","NA","NA","","","" "azure-devtools","1.2.0","","azure-devtools","Devtools","https://github.com/Azure/azure-python-devtools/tree/1.2.0/src/azure_devtools","NA","NA","","","" "azure-graphrbac","0.61.1","","azure-graphrbac","Graph RBAC","graphrbac","https://docs.microsoft.com/python/api/overview/azure/graph-rbac?view=azure-python","","","","" @@ -102,7 +103,7 @@ "azure-mgmt-containerinstance","2.0.0","","azure-mgmt-containerinstance","Container Instance","containerinstance","https://docs.microsoft.com/python/api/overview/azure/containerinstance?view=azure-python","","","","" "azure-mgmt-containerregistry","2.8.0","","azure-mgmt-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-containerregistry_2.8.0/azure-mgmt-containerregistry/","https://docs.microsoft.com/python/api/overview/azure/container-registry?view=azure-python","NA","","","" "azure-mgmt-containerservice","9.4.0","","azure-mgmt-containerservice","Container Service","containerservice","NA","","","","" -"azure-mgmt-core","1.2.0","","azure-mgmt-core","Core","core","NA","","","","" +"azure-mgmt-core","1.2.1","","azure-mgmt-core","Core","core","NA","","","","" "azure-mgmt-cosmosdb","1.0.0","","azure-mgmt-cosmosdb","Cosmos DB","cosmos","https://docs.microsoft.com/python/api/overview/azure/cosmosdb?view=azure-python","","","","" "azure-mgmt-costmanagement","0.2.0","","azure-mgmt-costmanagement","Costmanagement","costmanagement","NA","","","","" "azure-mgmt-customproviders","0.1.0","","azure-mgmt-customproviders","Custom Providers","customproviders","NA","","","","" @@ -169,11 +170,11 @@ "azure-mgmt-resourcegraph","2.0.0","","azure-mgmt-resourcegraph","Resources","resources","NA","","","","" "azure-mgmt-resourcemover","","1.0.1b1","azure-mgmt-resourcemover","","NA","NA","NA","","","" "azure-mgmt-scheduler","2.0.0","","azure-mgmt-scheduler","Scheduler","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-scheduler_2.0.0/azure-mgmt-scheduler/","https://docs.microsoft.com/python/api/overview/azure/scheduler?view=azure-python","NA","","","" -"azure-mgmt-search","2.1.0","","azure-mgmt-search","Search","search","https://docs.microsoft.com/python/api/overview/azure/search?view=azure-python","","","","" +"azure-mgmt-search","3.0.0","","azure-mgmt-search","Search","search","https://docs.microsoft.com/python/api/overview/azure/search?view=azure-python","","","","" "azure-mgmt-security","0.4.1","","azure-mgmt-security","Security","security","NA","","","","" "azure-mgmt-serialconsole","0.1.0","","azure-mgmt-serialconsole","Serial Console","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-serialconsole_0.1.0/azure-mgmt-serialconsole/","NA","","","","" "azure-mgmt-servermanager","2.0.0","","azure-mgmt-servermanager","Server Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servermanager_2.0.0/azure-mgmt-servermanager/","NA","","","","" -"azure-mgmt-servicebus","0.6.0","","azure-mgmt-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servicebus_0.6.0/azure-mgmt-servicebus/","NA","","","","" +"azure-mgmt-servicebus","1.0.0","","azure-mgmt-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servicebus_0.6.0/azure-mgmt-servicebus/","NA","","","","" "azure-mgmt-servicefabric","0.5.0","","azure-mgmt-servicefabric","Service Fabric","servicefabric","NA","","","","" "azure-mgmt-signalr","0.4.0","","azure-mgmt-signalr","Signalr","signalr","NA","","","","" "azure-mgmt-sql","0.21.0","","azure-mgmt-sql","Sql","sql","https://docs.microsoft.com/python/api/overview/azure/sql?view=azure-python","","","","" @@ -205,9 +206,9 @@ "azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","NA","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" "azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","NA","","","","" -"azure-template","0.0.17","0.0.18b3","azure-template","Template","","NA","NA","","true","" +"azure-template","0.0.17","0.1.0b7","azure-template","Template","","NA","NA","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" "tox-monorepo","0.1.2","","tox-monorepo","Tox Monorepo","https://github.com/Azure/azure-sdk-tools/tree/master/packages/python-packages/tox-monorepo","NA","NA","","","" -"uamqp","1.2.10","","uamqp","Uamqp","https://github.com/Azure/azure-uamqp-python/tree/v1.2.10/uamqp","NA","NA","","","" +"uamqp","1.2.12","","uamqp","Uamqp","https://github.com/Azure/azure-uamqp-python/tree/v1.2.10/uamqp","NA","NA","","","" From efe92cacd1f9acbb970884ffc960769f4c31ac9c Mon Sep 17 00:00:00 2001 From: Joel Hendrix Date: Mon, 12 Oct 2020 08:42:50 -0700 Subject: [PATCH 10/87] Updates to Go design guidelines (#1910) * Updates to Go design guidelines Added new dependency. Updated section on optional method parameters. Fixed up comments for pollers. Some other minor tweaks. * fix example --- docs/golang/approved_dependencies.md | 3 +- docs/golang/design.md | 58 +++++++++++++++++++--------- 2 files changed, 40 insertions(+), 21 deletions(-) diff --git a/docs/golang/approved_dependencies.md b/docs/golang/approved_dependencies.md index 0c31a822d30..c39aecda783 100644 --- a/docs/golang/approved_dependencies.md +++ b/docs/golang/approved_dependencies.md @@ -1,4 +1,3 @@ | Library | Version | Usage | |------------|---------|--------------------------------------------------| -| `library` | version | Does something useful | - +| `github.com/pkg/browser` | v0.0.0-20180916011732-0a3d74bf9ce4 | Used for opening URLs in the user's default browser. Used in `azidentity` interactive credential. | diff --git a/docs/golang/design.md b/docs/golang/design.md index b328eb5691f..50c685e9600 100644 --- a/docs/golang/design.md +++ b/docs/golang/design.md @@ -67,7 +67,7 @@ Packages should strive to avoid taking dependencies on packages outside of the s {% include requirement/MUST id="golang-dependencies-exch-types" %} limit exchange types to those provided by the standard library (**NO EXCEPTIONS**). -{% include requirement/MUST id="golang-dependencies-azure-core" %} depend on the `azcore` package for functionality that is common across all client packages. This package includes APIs for HTTP connectivity, global configuration, logging, and credential handling, and more. +{% include requirement/MUST id="golang-dependencies-azure-core" %} depend on the `azcore` package for functionality that is common across all client packages. This package includes APIs for HTTP connectivity, global configuration, logging, credential handling, and more. {% include requirement/MUST id="golang-dependencies-azure-core" %} depend on the `sdk/internal` package for functionality that is common across all client packages that should not be publicly exported. This package includes helpers for creating errors with stack frame information, and more. @@ -196,7 +196,20 @@ When implementing authentication, don't open up the consumer to security holes l {% include requirement/MUST id="golang-api-mandatory-params" %} have every I/O method accept all required parameters after the mandatory `context.Context` object. -{% include requirement/MUST id="golang-api-options-struct" %} define a `` structure for every method with optional parameters. This structure includes fields for all non-mandatory parameters. The structure can have fields added to it over time to simplify versioning. To disambiguate names, use the client type name for a prefix. +{% include requirement/MUST id="golang-api-options-struct" %} define a `` structure for every method. This structure includes fields for all non-mandatory parameters. The structure can have fields added to it over time to simplify versioning. To disambiguate names, use the client type name for a prefix. If the method contains no optional parameters, the `options` struct should have a comment indicating it's a placeholder for future optional parameters. + +```go +// GetWidgetOptions contains the optional parameters for the Widget.Get method. +type GetWidgetOptions struct { + OptionalTag *string + OptionalLength *int +} + +// SetWidgetOptions contains the optional parameters for the Widget.Set method. +type SetWidgetOptions struct { + // placeholder for future optional parameters +} +``` {% include requirement/MUST id="golang-api-options-ptr" %} allow the user to pass a pointer to the structure as the last parameter. If the user passes `nil`, then the method should assume appropriate default values for all the structure’s fields. Note that `nil` and a zero-initialized `` structure are **NOT** required to be semantically equivalent. @@ -206,7 +219,8 @@ When implementing authentication, don't open up the consumer to security holes l // GetWidget retrieves the specified Widget. // ctx - The context used to control the lifetime of the request. // name - The name of the Widget to retrieve. -func (c *WidgetClient) GetWidget(ctx context.Context, name string) (*WidgetResponse, error) { +// options - Any optional parameters. +func (c *WidgetClient) GetWidget(ctx context.Context, name string, options *GetWidgetOptions) (*WidgetResponse, error) { // ... } ``` @@ -250,7 +264,7 @@ type Widget struct { Color WidgetColor } -func (c *WidgetClient) GetWidget(ctx context.Context, name string) (*WidgetResponse, error) { +func (c *WidgetClient) GetWidget(ctx context.Context, name string, options *GetWidgetOptions) (*WidgetResponse, error) { // ... } ``` @@ -258,7 +272,7 @@ func (c *WidgetClient) GetWidget(ctx context.Context, name string) (*WidgetRespo {% include requirement/MUST id="golang-response-examples" %} provide examples on how to access the streamed response for a request, where exposed by the client library. We don’t expect all methods to expose a streamed response. ```go -func (c *WidgetClient) GetBinaryResponse(ctx context.Context, name string) (*http.Response, error) { +func (c *WidgetClient) GetBinaryResponse(ctx context.Context, name string, options GetBinaryResponseOptions) (*http.Response, error) { // ... } @@ -288,6 +302,7 @@ Model structures are types that consumers use to provide required information in {% include requirement/MUST id="golang-pagination-pagers-interface-page" %} expose methods `NextPage()`, `Page()`, and `Err()` on the `Pager` type. ```go +// WidgetPager provides iteration over ListWidgets pages. type WidgetPager interface { // NextPage returns true if the pager advanced to the next page. // Returns false if there are no more pages or an error occurred. @@ -309,7 +324,7 @@ type ListWidgetsResponse struct { {% include requirement/MUST id="golang-pagination-methods" %} use the prefix `List` in the method name for methods that return a Pager. The `List` method creates the Pager but does NOT perform an IO operation. ```go -func (c *WidgetClient) ListWidgets(options *ListWidgetOptions) *WidgetPager { +func (c *WidgetClient) ListWidgets(options *ListWidgetOptions) WidgetPager { // ... } @@ -335,22 +350,28 @@ if pager.Err() != nil { {% include requirement/MUST id="golang-lro-poller-def" %} provide the following methods on a `Poller` type: `Done()`, `ResumeToken()`, `Poll()`, and `FinalResponse()`. ```go +// Poller provides operations for checking the state of a long-running operation. +// An LRO can be in either a non-terminal or terminal state. A non-terminal state +// indicates the LRO is still in progress. A terminal state indicates the LRO has +// completed successfully, failed, or was cancelled. type WidgetPoller interface { - // Done returns true if the LRO has completed. + // Done returns true if the LRO has reached a terminal state. Done() bool - // ResumeToken returns a value representing the poller that can be used to - // resume the LRO. ResumeTokens are unique for the operation. + // ResumeToken returns a value representing the poller that can be used to resume + // the LRO at a later time. ResumeTokens are unique per service operation. ResumeToken() string - // Poll fetches the latest state of the LRO. - // If Poll fails, the WidgetPoller is unmodified and the error is returned. - // If Poll succeeds and the operation has completed with failure, the WidgetPoller - // is updated and the error is returned. - // If Poll succeeds and the operation has completed successfully, the WidgetPoller - // is updated and the Widget is returned. - // If Poll succeeds and the operation has not completed, the WidgetPoller is - // updated and returns the latest HTTP response. + // Poll fetches the latest state of the LRO. It returns an HTTP response or error. + // If the LRO has completed successfully, the poller's state is update and the HTTP + // response is returned. + // If the LRO has completed with failure or was cancelled, the poller's state is + // updated and the error is returned. + // If the LRO has not reached a terminal state, the poller's state is updated and + // the latest HTTP response is returned. + // If Poll fails, the poller's state is unmodified and the error is returned. + // Calling Poll on an LRO that has reached a terminal state will return the final + // HTTP response or error. Poll(context.Context) (*http.Response, error) // FinalResponse performs a final GET to the service and returns the final response @@ -482,7 +503,7 @@ One of the key things we want to support is to allow consumers of the package to // WidgetOperations contains the methods for the Widget group. type WidgetOperations interface { BeginCreate(ctx context.Context, options *BeginCreateOptions) (*WidgetPollerResponse, error) - GetWidget(ctx context.Context, name string) (*WidgetResponse, error) + GetWidget(ctx context.Context, name string, options *GetWidgetOptions) (*WidgetResponse, error) ListWidgets(options *ListWidgetsOptions) (ListWidgetsPager, error) // other methods... } @@ -599,7 +620,6 @@ The HTTP pipeline consists of a HTTP transport that is wrapped by multiple polic {% include requirement/MUST id="golang-network-policies" %} implement the following policies in the HTTP pipeline: - Telemetry -- Unique Request ID - Retry - Authentication - Response downloader From 121253193fb6ec3e38b9d2a981ad9bd43e9198e2 Mon Sep 17 00:00:00 2001 From: Sameeksha Vaity Date: Mon, 12 Oct 2020 10:21:55 -0700 Subject: [PATCH 11/87] Oct 2020 Java release notes (#1915) --- releases/2020-10/index.md | 2 +- releases/2020-10/java.md | 530 +++++++++++++++++++++++++++++++++++++- 2 files changed, 524 insertions(+), 8 deletions(-) diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index 43fc8500f09..3a1936ef522 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -12,7 +12,7 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( ## Release Highlights * Azure Metrics Advisor Client Libraries Beta 1 release -* +* Opentelemetry Exporter Azure Monitor client Beta 1 release * ## Release Notes diff --git a/releases/2020-10/java.md b/releases/2020-10/java.md index c7d01f99b66..b2333900762 100644 --- a/releases/2020-10/java.md +++ b/releases/2020-10/java.md @@ -10,22 +10,300 @@ The Azure SDK team is pleased to announce our October 2020 client library releas #### GA -- _Add packages_ #### Updates -- _Add packages_ +- Azure App Configuration +- Azure Core +- Azure Core Http Netty +- Azure Core Http OkHttp +- Azure Event Hubs +- Azure Identity +- Azure Key Vault Certificates +- Azure Key Vault Keys +- Azure Key Vault Secrets +- Azure Search Documents +- Form Recognizer #### Beta -- _Add packages_ +- Azure Core Experimental +- Azure Core Serializer Apache Avro +- Azure Communication Administration +- Azure Communication Chat +- Azure Communication Common +- Azure Communication Sms +- Azure Digitial Twins +- Azure Identity +- Azure Key Vault Administration +- Azure Key Vault Certificates +- Azure Key Vault Keys +- Azure Key Vault Secrets +- Event Grid +- Azure Metrics Advisor +- Azure Search Documents +- Azure Service Bus +- Azure Storage Blob Batch +- Azure Storage Blob Blob +- Azure Storage Blob Cryptography +- Azure Storage Blob Changefeed +- Azure Storage File Datalake +- Azure Storage File Share +- Azure Storage Queue +- Azure Tables +- Azure Text Analytics +- Opentelemetry exporter Azure monitor ## Installation Instructions To use the GA and beta libraries, refer to the Maven dependency information below, which may be copied into your projects Maven `pom.xml` file as appropriate. If you are using a different build tool, refer to its documentation on how to specify dependencies. ```xml - + + com.azure + azure-ai-textanalytics + 5.1.0-beta.2 + + + + com.azure + azure-ai-metricsadvisor + 1.0.0-beta.1 + + + + com.azure + azure-ai-formrecognizer + 3.0.2 + + + + com.azure + azure-communication-administration + 1.0.0-beta.2 + + + + com.azure + azure-communication-chat + 1.0.0-beta.2 + + + + com.azure + azure-communication-common + 1.0.0-beta.2 + + + + com.azure + azure-communication-sms + 1.0.0-beta.2 + + + + com.azure + azure-core + 1.9.0 + + + + com.azure + azure-core-experimental + 1.0.0-beta.6 + + + + com.azure + azure-core-experimental + 1.0.0-beta.7 + + + + com.azure + azure-core-experimental + 1.0.0-beta.5 + + + + com.azure + azure-core-http-netty + 1.6.2 + + + + com.azure + azure-core-http-okhttp + 1.3.2 + + + + com.azure + azure-core-serializer-avro-apache + 1.0.0-beta.4 + + + + com.azure + azure-core-serializer-json-jackson + 1.0.2 + + + + com.azure + azure-core-test + 1.5.0 + + + + com.azure + azure-core-serializer-json-gson + 1.0.2 + + + + com.azure + azure-data-appconfiguration + 1.1.6 + + + + com.azure + azure-data-tables + 12.0.0-beta.2 + + + + com.azure + azure-digitaltwins-core + 1.0.0-beta.3 + + + + com.azure + azure-identity + 1.2.0-beta.2 + + + + com.azure + azure-messaging-eventgrid + 2.0.0-beta.3 + + + + com.azure + azure-search-documents + 11.2.0-beta.2 + + + + com.azure + azure-search-documents + 11.1.1 + + + + com.azure + azure-security-keyvault-administration + 4.0.0-beta.2 + + + + com.azure + azure-security-keyvault-certificates + 4.2.0-beta.2 + + + + com.azure + azure-security-keyvault-keys + 4.3.0-beta.2 + + + + com.azure + azure-security-keyvault-secrets + 4.3.0-beta.2 + + + + com.azure + azure-storage-blob + 12.9.0-beta.1 + + + + com.azure + azure-storage-blob + 12.9.0-beta.2 + + + + com.azure + azure-storage-blob-batch + 12.7.0-beta.1 + + + + com.azure + azure-storage-blob-changefeed + 12.0.0-beta.3 + + + + com.azure + azure-storage-blob-cryptography + 12.9.0-beta.1 + + + + com.azure + azure-storage-common + 12.9.0-beta.1 + + + + com.azure + azure-storage-common + 12.9.0-beta.2 + + + + com.azure + azure-storage-file-datalake + 12.3.0-beta.1 + + + + com.azure + azure-storage-file-share + 12.7.0-beta.1 + + + + com.azure + azure-storage-internal-avro + 12.0.1-beta.2 + + + + com.azure + azure-storage-internal-avro + 12.0.1-beta.1 + + + + com.azure + azure-storage-queue + 12.7.0-beta.1 + + + + com.azure + opentelemetry-exporters-azuremonitor + 1.0.0-beta.1 + ``` ## Feedback @@ -36,10 +314,248 @@ If you have a bug or feature request for one of the libraries, please post an is Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: -### _Package name_ +### Azure Ai Textanalytics 5.1.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md#510-beta2-2020-10-06) +#### Breaking changes +- Removed property `length` from `CategorizedEntity`, `SentenceSentiment`, `LinkedEntityMatch`, `AspectSentiment`, +`OpinionSentiment`, and `PiiEntity` because the length information can be accessed from the text property itself + using the string's length property. + +### Azure Ai Metrics advisor 1.0.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md#100-beta1-2020-10-07) + +#### New Features: +- Initial preview release of Metrics advisor. +- Two client design: + - `MetricsAdvisorAdministrationClient` to perform creation, updation and deletion of Metrics Advisor resources. + - `MetricsAdvisorClient` helps with querying API's to helps with listing incidents, listing root causes of incidents + and adding feedback to tune your model. +- Authentication with API key supported using `MetricsAdvisorKeyCredential("", "")`. +- Reactive streams support using [Project Reactor](https://projectreactor.io/). + +### Azure Core Test 1.5.0 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-test/CHANGELOG.md#150-2020-10-01) + +#### New Features + +- Enhanced playback recording to use test class name plus test name to identify records. + + +### Azure Core 1.9.0 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core/CHANGELOG.md#190-2020-10-01) + +#### New Features + +- Added `ServiceClientProtocal` to allow the client to indicate which networking protocol it will use. +- Added `HttpPipelinePosition` which allows `HttpPipelinePolicy`s to indicate their position when used in a client builder. +- Added default interface method `HttpPipelinePolicy.getPipelinePosition` that returns `HttpPipelinePosition.PER_RETRY`. + +#### Bug Fixes + +- Fixed a bug where calling `UrlBuilder.parse` could result in an exception. [#15013](https://github.com/Azure/azure-sdk-for-java/issues/15013) +- Changed `ContinuablePagedIterable` implementation to use a custom iterable to prevent additional, unrequested pages from being retrieved. [#15575](https://github.com/Azure/azure-sdk-for-java/issues/15575) + + +### Azure Core Experimental 1.0.0-beta.6 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-experimental/CHANGELOG.md#100-beta6-2020-10-06) + +#### New Features +- Added `BinaryData` abstraction to represent binary data and supports serialization through `ObjectSerializer`. + +### Azure Core Experimental 1.0.0-beta.7 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-experimental/CHANGELOG.md#100-beta7-2020-10-08) + +#### New Features +- Added APIs to `JsonPatchDocument` which accept pre-serialized JSON. + +### Azure Core Experimental 1.0.0-beta.5 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-experimental/CHANGELOG.md#100-beta5-2020-10-01) + +#### New Features +- Added `JsonPatchDocument` to support JSON Patch functionality. + +### Azure Data Tables 12.0.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/tables/azure-data-tables/CHANGELOG.md#1200-beta2-2020-10-06) + +#### New Features + +- Developers can now subclass `TableEntity` and decorate the subclass with properties, rather than adding properties + manually by calling `addProperty()`. +- The `getEntity` methods have gained the `select` query option to allow for more efficient existence checks for a table + entity. + +#### Breaking Changes + +- The non-functional `TableClient.listEntities(options, timeout)` method was removed. + +#### Bug Fixes + +- TableClientBuilder's constructor is now a public API. +- The `TableClient.updateEntity(entity)` method was mistakenly performing an upsert operation rather than an update. +- The `TableAsyncClient.updateEntity(entity)` method always returned an empty result. + +### Azure Digitaltwins Core 1.0.0-beta.3 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/digitaltwins/azure-digitaltwins-core/CHANGELOG.md#100-beta3-2020-10-01) + +#### Bug Fixes +- Fixed issue with pagination APIs that support max-item-count where the item count was not respected from the second page forward. + +### Azure Identity 1.2.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/identity/azure-identity/CHANGELOG.md#120-beta2-2020-10-06) + +#### New Features +- Added the methods `pfxCertificate(InputStream certificate, String clientCertificatePassword)` and `pemCertificate(InputStream certificate)` in `ClientCertificateCredentialBuilder`. +- Added `includeX5c(boolean)` method in `ClientCertificateCredentialBuilder` to enable subject name / issuer based authentication. +- Added a default `challengeConsumer` in `DeviceCodeCredentialBuilder` which prints the device code information to console. The `challengeConsumer` configuration is no longer required in `DeviceCodeCredentialBuilder`. + +### Azure Search Documents 11.2.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/search/azure-search-documents/CHANGELOG.md#1120-beta2-2020-10-06) + +#### New Features + +- Added `SearchFilter` to help aid creation of OData filter expressions. +- Added required parameter `documentKeyRetriever` to `SearchIndexingBufferedSender` to better correlate response documents to sent documents. +- Added `ClientOptions` to all builders to support setting `applicationId` in `User-Agent` string and headers that need to be applied to each request. +- Added support for `HttpPipelinePosition` in client builders to determine when an `HttpPipelinePolicy` will be invoked. + +#### Breaking Changes + +- Made `SearchIdexingBufferedSender` generic typed. +- Removed `IndexingHooks` in favor of individual callbacks. +- Removed the ability to configure `batchSize` on buffered sender and changed the default to 500 instead of 1000. +- Removed `SearchBatchClientBuilder` for options bag `SearchIndexingBufferedSenderOptions`. +- Renamed `SearchBatchClient` and `SearchBatchAsyncClient` to `SearchIndexingBufferedSender` and `SearchIndexingBufferedAsyncSender`. +- Renamed `getSearchBatchClient` to `getSearchIndexingBufferedSender` in `SearchClient`. +- Renamed `onActionRemoved` to `onActionSent`. + +### Azure Security Keyvault Administration 4.0.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md#400-beta2-2020-10-09) + +#### New Features +- Added the new public APIs `getBackupOperation` and `getRestoreOperation` for querying the status of long-running operations in `KeyVaultBackupClient` and `KeyVaultBackupAsyncClient`. +- Added API overloads that allow for passing specific polling intervals for long-running operations: + - `KeyVaultBackupAsyncClient` + - `beginBackup(String, String, Duration)` + - `beginRestore(String, String, String, Duration)` + - `beginSelectiveRestore(String, String, String, String, Duration)` + - `KeyVaultBackupClient` + - `beginBackup(String, String, Duration)` + - `beginRestore(String, String, String, Duration)` + - `beginSelectiveRestore(String, String, String, String, Duration)` +- Added support for `com.azure.core.util.ClientOptions` in client builders. + +### Azure Security Keyvault Certificates 4.2.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md#420-beta2-2020-10-09) + +#### New Features +- Added `KeyVaultCertificateIdentifier`. +- Added API overloads that allow for passing specific polling intervals for long-running operations: + - `CertificateAsyncClient` + - `beginCreateCertificate(String, CertificatePolicy, Boolean, Map, Duration)` + - `getCertificateOperation(String, Duration)` + - `beginDeleteCertificate(String, Duration)` + - `beginRecoverDeletedCertificate(String, Duration)` + - `CertificateClient` + - `beginCreateCertificate(String, CertificatePolicy, Boolean, Map, Duration)` + - `getCertificateOperation(String, Duration)` + - `beginDeleteCertificate(String, Duration)` + - `beginRecoverDeletedCertificate(String, Duration)` +- Added support for `com.azure.core.util.ClientOptions` in client builders. + +### Azure Security Keyvault Keys 4.3.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md#430-beta2-2020-10-09) + +#### New Features +- Added `KeyVaultKeyIdentifier`. +- Added API overloads that allow for passing specific polling intervals for long-running operations: + - `KeyAsyncClient` + - `beginDeleteKey(String, Duration)` + - `beginRecoverDeletedKey(String, Duration)` + - `KeyClient` + - `beginDeleteKey(String, Duration)` + - `beginRecoverDeletedKey(String, Duration)` +- Added support for `com.azure.core.util.ClientOptions` in client builders. + +#### Bug Fixes +- Fixed an issue that prevented the `tags` and `managed` members of `KeyProperties` from getting populated when retrieving a single key using `KeyClient`, `KeyAsyncClient`, `CryptographyClient` and `CryptographyAsyncClient`. + + +### Azure Security Keyvault Secrets 4.3.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md#430-beta2-2020-10-09) + +#### New Features +- Added `KeyVaultSecretIdentifier`. +- Added API overloads that allow for passing specific polling intervals for long-running operations: + - `SecretAsyncClient` + - `beginDeleteSecret(String, Duration)` + - `beginRecoverDeletedSecret(String, Duration)` + - `SecretClient` + - `beginDeleteSecret(String, Duration)` + - `beginRecoverDeletedSecret(String, Duration)` +- Added support for `com.azure.core.util.ClientOptions` in client builders. + +### Azure Storage Blob 12.9.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md#1290-beta1-2020-10-01) +#### New Features +- Added support for the 2020-02-10 service version. +- Added support to specify Arrow Output Serialization when querying a blob. +- Added support to undelete a container. +- Added support to set BlobParallelUploadOptions.computeMd5 so the service can perform an md5 verification. +- Added support to specify block size when using BlobInputStream. + +#### Bug Fixes +- Fixed a bug where users could not download more than 5000MB of data in one shot in the downloadToFile API. +- Fixed a bug where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where Default Azure Credential would not work with Azurite. +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. +- Fixed a bug where BlockBlobOutputStream would not handle certain errors. + +### Azure Storage Blob 12.9.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md#1290-beta2-2020-10-08) +#### New Features +- Added support to specify whether or not a pipeline policy should be added per call or per retry. + + +### Azure Storage Blob Cryptography 12.9.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md#1290-beta1-2020-10-01) +#### New Features +- Added support to set BlobParallelUploadOptions.computeMd5 so the service can perform an md5 verification. +- Added support to specify 'requiresEncryption' on the EncryptedBlobClientBuilder to specify whether or not to enforce that the blob is encrypted on download. + +#### Bug Fixes +- Fixed a bug where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. + +### Azure Storage File Datalake 12.3.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-datalake/CHANGELOG.md#1230-beta1-2020-10-01) +#### New Features +- Added support for the 2020-02-10 service version. +- Added support for setting, modifying, and removing ACLs recursively. +- Added support to schedule file expiration. +- Added support to specify Arrow Output Serialization when querying a file. +- Added support to generate directory SAS and added support to specify additional user ids and correlation ids for user delegation SAS. +- Added support to upload data to a file from an InputStream. +- Added support to specify permissions and umask when uploading a file. + +#### Bug Fixes + +- Fixed a bug where users could not download more than 5000MB of data in one shot in the readToFile API. +- Fixed a bug where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where an empty string would be sent with the x-ms-properties header when metadata was null or empty. +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. + + +### Azure Storage File Share 12.7.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-share/CHANGELOG.md#1270-beta1-2020-10-01) +#### New Features +- Added support for the 2020-02-10 service version. +- Added support to getFileRanges on a previous snapshot by adding the getFileRangesDiff API. +- Added support to set whether or not smb multichannel is enabled. +- Added support to lease shares and snapshot shares. +- Added support to specify a lease id for share operations. + +#### Bug Fixes +- Fixed a bug where getProperties on a file client would throw a HttpResponseException instead of ShareStorageException. +- Fixed a bug where snapshot would be appended to a share snapshot instead of sharesnapshot. +- Fixed a bug that would cause auth failures when building a client by passing an endpoint which had a sas token with protocol set to https,http +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. + +### Azure Storage Queue 12.7.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-queue/CHANGELOG.md#1270-beta1-2020-10-01) +#### New Features +- Added support for the 2020-02-10 service version. + +#### Bug Fixes +- Fixed a bug where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where Default Azure Credential would not work with Azurite. +- Fixed a bug that would cause message text to be erased when only updating the visibility timeout +- Fixed a bug that would cause auth failures when building a client by passing an endpoint which had a sas token with protocol set to https,http +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. + +### Opentelemetry Exporters Azuremonitor 1.0.0-beta.1 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/monitor/opentelemetry-exporters-azuremonitor/CHANGELOG.md#100-beta1-2020-10-06) + +#### New Features +- Initial release. Please see the README and wiki for information on the new design. -- Major changes only! - ## Need help - For reference documentation visit the [Azure SDK for Java documentation](https://azure.github.io/azure-sdk-for-java/). From ac2adf159093222b4d42ee42a0798c76184d8a15 Mon Sep 17 00:00:00 2001 From: vcolin7 Date: Mon, 12 Oct 2020 16:07:45 -0500 Subject: [PATCH 12/87] Mobile release notes for October 2020 (#1911) * Added mobile release notes (partially). * Added mobile release notes for October 2020. * Applied PR feedback. Included out of band release for Azure Core for Android. --- releases/2020-10/android.md | 110 ++++++++++++++++++++++++++++++++++++ releases/2020-10/index.md | 2 +- releases/2020-10/ios.md | 95 +++++++++++++++++++++++++++++++ 3 files changed, 206 insertions(+), 1 deletion(-) create mode 100644 releases/2020-10/android.md create mode 100644 releases/2020-10/ios.md diff --git a/releases/2020-10/android.md b/releases/2020-10/android.md new file mode 100644 index 00000000000..913ea020a97 --- /dev/null +++ b/releases/2020-10/android.md @@ -0,0 +1,110 @@ +--- +title: Azure SDK for Android (October 2020) +layout: post +tags: android azure +sidebar: releases_sidebar +repository: azure/azure-sdk-for-android +--- + +The Azure SDK team is pleased to announce our October 2020 client library releases. + +#### Beta + +- Azure Communication Services Chat +- Azure Communication Services Common +- Azure Core + +## Installation Instructions + +To use the latest GA and beta libraries, refer to the dependency information below, which may be copied into your projects Gradle `build.gradle` or Maven `pom.xml` file as appropriate. If you are using a different build tool, refer to its documentation on how to specify dependencies. + +### Gradle + +#### Java +```gradle +dependencies { + ... + implementation "com.azure.android:azure-communication-chat:1.0.0-beta.2" + implementation "com.azure.android:azure-communication-common:1.0.0-beta.1" + implementation "com.azure.android:azure-core:1.0.0-beta.2" +} +``` + +#### Kotlin + +```gradle +dependencies { + ... + implementation("com.azure.android:azure-communication-chat:1.0.0-beta.2") + implementation("com.azure.android:azure-communication-common:1.0.0-beta.1") + implementation("com.azure.android:azure-core:1.0.0-beta.2") +} +``` + +### Maven + +```xml + + com.azure.android + azure-communication-chat + 1.0.0-beta.2 + + + + com.azure.android + azure-communication-common + 1.0.0-beta.1 + + + + com.azure.android + azure-core + 1.0.0-beta.2 + +``` + +## Feedback + +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-android/issues). + +## Changelog + +Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: + +### Azure Communication Services Chat + +#### 1.0.0-beta.2 ([Changelog](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/communication/azure-communication-chat/CHANGELOG.md#100-beta2-2020-10-06)) + +- Initial Preview release for Azure Communication Services Chat + +### Azure Communication Services Common + +#### 1.0.0-beta.1 ([Changelog](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/communication/azure-communication-common/CHANGELOG.md#100-beta1-2020-09-22)) + +- Initial Preview release for Azure Communication Services Common + +### Azure Core + +#### 1.0.0-beta.2 ([Changelog](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/core/azure-core/CHANGELOG.md#100-beta2-2020-10-05)) + +##### New Features + +- Added `PagedDataCollection`, `PagedDataResponseCollection`, `AsyncPagedDataCollection` and associated types to support pagination APIs. + +#### 1.0.0-beta.1 ([Changelog](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/core/azure-core/CHANGELOG.md#100-beta1-2020-09-17)) + +- Initial Preview release for Azure Core + +## Need help + +- For reference documentation visit the [Azure SDK for Android documentation](https://azure.github.io/azure-sdk-for-android/). +- For tutorials, samples, quick starts and other documentation, visit the [Azure SDK for Android repository](https://github.com/azure/azure-sdk-for-android/). +- File an issue via [Github Issues](https://github.com/Azure/azure-sdk-for-android/issues/new/choose). +- Check [previous questions](https://stackoverflow.com/questions/tagged/azure-android-sdk) or ask new ones on + StackOverflow using the `azure-android-sdk` tag. + +## Latest Releases + +View all the latest versions of Android packages [here][android-latest-releases]. + +{% include refs.md %} diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index 3a1936ef522..a850eca5e02 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -13,7 +13,7 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( * Azure Metrics Advisor Client Libraries Beta 1 release * Opentelemetry Exporter Azure Monitor client Beta 1 release -* +* Azure Communication Services Chat, Azure Communication Services Common and Azure Core Beta 1 releases for Android and iOS. ## Release Notes diff --git a/releases/2020-10/ios.md b/releases/2020-10/ios.md new file mode 100644 index 00000000000..aab6af39651 --- /dev/null +++ b/releases/2020-10/ios.md @@ -0,0 +1,95 @@ +--- +title: Azure SDK for iOS (October 2020) +layout: post +tags: ios azure +sidebar: releases_sidebar +repository: azure/azure-sdk-for-ios +--- + +The Azure SDK team is pleased to announce our October 2020 client library releases. + +#### Beta + +- Azure Communication Services Chat +- Azure Communication Services Common +- Azure Core + +## Installation Instructions + +To install the latest GA and beta libraries, use the [Swift Package Manager](https://swift.org/package-manager/). + +### Xcode + +Follow the instructions in [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app): + +With your project open in Xcode 11 or later, select **File > Swift Packages > Add Package Dependency...** Enter the clone URL of this repository: *https://github.com/Azure/azure-sdk-for-ios.git* and click **Next**. For the version rule, specify the exact version or version range you wish to use with your application and click **Next**. Finally, place a checkmark next to each client library you wish to use with your application, ensure your application target is selected in the **Add to target** dropdown, and click **Finish**. + +### Swift CLI + +Follow the example in [Importing Dependencies](https://swift.org/package-manager/#importing-dependencies): + +Open your project's `Package.swift` file and add a new package dependency to your project's `dependencies` section, specifying the clone URL of the repository and the version specifier you wish to use: + +```swift + dependencies: [ + ... + .package(url: "https://github.com/Azure/azure-sdk-for-ios.git", from: "1.0.0-beta.2") + ], +``` + +Next, add each client library you wish to use in a target to the target's array of `dependencies`: + +```swift + targets: [ + ... + .target( + name: "MyTarget", + dependencies: [ + "AzureCommunication", + "AzureCommunicationChat", + "AzureCore", + ... + ] + ) + ] +``` + +## Feedback + +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-ios/issues). + +## Changelog + +Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: + +### Azure Communication Services Chat + +#### 1.0.0-beta.2 ([Changelog](https://github.com/Azure/azure-sdk-for-ios/blob/master/CHANGELOG.md#100-beta2-2020-10-05)) + +- Initial Preview release for Azure Communication Services Chat + +### Azure Communication Services Common + +#### 1.0.0-beta.1 ([Changelog](https://github.com/Azure/azure-sdk-for-ios/blob/master/CHANGELOG.md#100-beta1-2020-09-21)) + +- Initial Preview release for Azure Communication Services Common + +### Azure Core + +#### 1.0.0-beta.1 ([Changelog](https://github.com/Azure/azure-sdk-for-ios/blob/master/CHANGELOG.md#100-beta1-2020-09-21)) + +- Initial Preview release for Azure Core + +## Need help + +- For reference documentation visit the [Azure SDK for iOS documentation](https://azure.github.io/azure-sdk-for-ios/). +- For tutorials, samples, quick starts and other documentation, visit the [Azure SDK for iOS repository](https://github.com/azure/azure-sdk-for-ios/). +- File an issue via [Github Issues](https://github.com/Azure/azure-sdk-for-ios/issues/new/choose). +- Check [previous questions](https://stackoverflow.com/questions/tagged/azure+ios) or ask new ones on + StackOverflow using the `azure` and `ios` tags. + +## Latest Releases + +View all the latest versions of iOS packages [here][ios-latest-releases]. + +{% include refs.md %} From 63ea73dd4e13026d2b58d9558b292c2fbc41a906 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Mon, 12 Oct 2020 17:11:54 -0700 Subject: [PATCH 13/87] Check all doc links for package index update --- eng/scripts/Update-Release-Versions.ps1 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eng/scripts/Update-Release-Versions.ps1 b/eng/scripts/Update-Release-Versions.ps1 index ba41b0098c9..d8be207797c 100644 --- a/eng/scripts/Update-Release-Versions.ps1 +++ b/eng/scripts/Update-Release-Versions.ps1 @@ -37,6 +37,7 @@ function CheckLink($url) function UpdateDocLinks($lang, $pkg) { + if ($lang -eq "js") { $lang = "javascript" } $version = $pkg.VersionGA if ($version -eq "") { $version = $pkg.VersionPreview } @@ -466,7 +467,12 @@ function Output-Latest-Versions($lang) $otherPackages = $packageList | Where-Object { !$_.Type } $LangFunction = "Update-$lang-Packages" - &$LangFunction $clientPackages + &$LangFunction $clientPackages + + foreach($otherPackage in $otherPackages) + { + UpdateDocLinks $lang $otherPackage + } Write-Host "Writing $packagelistFile" $packageList = $clientPackages + $otherPackages From 55853b8afc89ae35aa87471bc759903a3a23edc5 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Mon, 12 Oct 2020 17:57:10 -0700 Subject: [PATCH 14/87] Add relnotes for Microsoft.Spatial support packages (#1914) --- releases/2020-10/dotnet.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/releases/2020-10/dotnet.md b/releases/2020-10/dotnet.md index e9895183317..3ac5d5a7b69 100644 --- a/releases/2020-10/dotnet.md +++ b/releases/2020-10/dotnet.md @@ -20,6 +20,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas - Event Hubs - Key Vault +- Support packages for Microsoft.Spatial - Tables - Text Analytics @@ -39,6 +40,9 @@ $> dotnet add package Azure.Security.KeyVault.Administration --version 4.0.0-bet $> dotnet add package Azure.Security.KeyVault.Certificates --version 4.2.0-beta.2 $> dotnet add package Azure.Security.KeyVault.Keys --version 4.2.0-beta.2 $> dotnet add package Azure.Security.KeyVault.Secrets --version 4.2.0-beta.2 + +$> dotnet add package Microsoft.Azure.Core.Spatial --version 1.0.0-beta.1 +$> dotnet add package Microsoft.Azure.Core.Spatial.NewtonsoftJson --version 1.0.0-beta.1 ``` ## Feedback @@ -74,6 +78,16 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Bug fixes and performance improvements. +### Support packages for Microsoft.Spatial + +#### Microsoft.Azure.Core.Spatial [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Microsoft.Azure.Core.Spatial/CHANGELOG.md#100-beta1-2020-10-08) + +- Added `MicrosoftSpatialGeoJsonConverter` to serialize `Microsoft.Spatial.GeometryPoint` objects. + +#### Microsoft.Azure.Core.Spatial.NewtonsoftJson [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Microsoft.Azure.Core.Spatial.NewtonsoftJson/CHANGELOG.md#100-beta1-2020-10-08) + +- Added `NewtonsoftJsonMicrosoftSpatialGeoJsonConverter` to serialize `Microsoft.Spatial.GeographyPoint` objects. + ### Text Analytics [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md#510-beta2-2020-10-06) #### Breaking changes From cf3c2cad9519287c867506894cb874d73105709c Mon Sep 17 00:00:00 2001 From: Yijun Xie <48257664+YijunXieMS@users.noreply.github.com> Date: Tue, 13 Oct 2020 09:21:19 -0700 Subject: [PATCH 15/87] Add 2020-10 release notes for Java eventhubs5.3.0 and amqp1.6.0 (#1921) --- releases/2020-10/java.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/releases/2020-10/java.md b/releases/2020-10/java.md index b2333900762..31c62f0282c 100644 --- a/releases/2020-10/java.md +++ b/releases/2020-10/java.md @@ -17,6 +17,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas - Azure Core - Azure Core Http Netty - Azure Core Http OkHttp +- Azure Core Amqp - Azure Event Hubs - Azure Identity - Azure Key Vault Certificates @@ -107,6 +108,12 @@ To use the GA and beta libraries, refer to the Maven dependency information belo 1.9.0 + + com.azure + azure-core-amqp + 1.6.0 + + com.azure azure-core-experimental @@ -191,6 +198,18 @@ To use the GA and beta libraries, refer to the Maven dependency information belo 2.0.0-beta.3 + + com.azure + azure-messaging-eventhubs + 5.3.0 + + + + com.azure + azure-messaging-eventhubs-checkpointstore-blob + 1.3.0 + + com.azure azure-search-documents @@ -351,6 +370,14 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Fixed a bug where calling `UrlBuilder.parse` could result in an exception. [#15013](https://github.com/Azure/azure-sdk-for-java/issues/15013) - Changed `ContinuablePagedIterable` implementation to use a custom iterable to prevent additional, unrequested pages from being retrieved. [#15575](https://github.com/Azure/azure-sdk-for-java/issues/15575) +### Azure Core Amqp 1.6.0 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/release/azure-core-amqp_1.6.0/sdk/core/azure-core-amqp/CHANGELOG.md#160-2020-10-12) + +#### New Features +- Added peer certificate verification options when connecting to an AMQP endpoint. + +#### Breaking Changes +- Removed `BinaryData` type which was used for `AmqpAnnotatedMessage`. + ### Azure Core Experimental 1.0.0-beta.6 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-experimental/CHANGELOG.md#100-beta6-2020-10-06) @@ -398,6 +425,11 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Added `includeX5c(boolean)` method in `ClientCertificateCredentialBuilder` to enable subject name / issuer based authentication. - Added a default `challengeConsumer` in `DeviceCodeCredentialBuilder` which prints the device code information to console. The `challengeConsumer` configuration is no longer required in `DeviceCodeCredentialBuilder`. +### Azure EventHubs 5.3.0 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md#530-2020-10-12) +#### New Features +- Add `clientOptions` to `EventHubClientBuilder` to support for setting user's application id in the user-agent property +of the amqp connection. + ### Azure Search Documents 11.2.0-beta.2 [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/search/azure-search-documents/CHANGELOG.md#1120-beta2-2020-10-06) #### New Features From efb5c02dcb440162e2f9d95db9df201f8a457289 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Tue, 13 Oct 2020 12:16:29 -0700 Subject: [PATCH 16/87] Check GA and Preview links for GHDocs --- eng/scripts/Update-Release-Versions.ps1 | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/eng/scripts/Update-Release-Versions.ps1 b/eng/scripts/Update-Release-Versions.ps1 index d8be207797c..5793f1fdf36 100644 --- a/eng/scripts/Update-Release-Versions.ps1 +++ b/eng/scripts/Update-Release-Versions.ps1 @@ -38,12 +38,10 @@ function CheckLink($url) function UpdateDocLinks($lang, $pkg) { if ($lang -eq "js") { $lang = "javascript" } - $version = $pkg.VersionGA - if ($version -eq "") { $version = $pkg.VersionPreview } $trimmedPackage = $pkg.Package -replace "@?azure[\.\-/]", "" - if ($version -eq $pkg.VersionPreview) { $suffix = "-pre" } + if (!$pkg.VersionGA -and $pkg.VersionPreview) { $suffix = "-pre" } $msdocvalid = CheckLink "https://docs.microsoft.com/${lang}/api/overview/azure/${trimmedPackage}-readme${suffix}/" @@ -59,8 +57,16 @@ function UpdateDocLinks($lang, $pkg) $ghformat = "{0}/{1}" if ($lang -eq "javascript") { $ghformat = "azure-${trimmedPackage}/{1}" } elseif ($lang -eq "dotnet") { $ghformat = "{0}/{1}/api" } - $ghpath = $ghformat -f $pkg.Package, $version - $ghdocvalid = CheckLink "$azuresdkdocs/${lang}/${ghpath}/index.html" + + $ghLinkFormat = "$azuresdkdocs/${lang}/${ghformat}/index.html" + + $ghdocvalid = ($pkg.VersionGA -or $pkg.VersionPreview) + if ($pkg.VersionGA) { + $ghdocvalid = $ghdocvalid -and (CheckLink ($ghLinkFormat -f $pkg.Package, $pkg.VersionGA)) + } + if ($pkg.VersionPreview) { + $ghdocvalid = $ghdocvalid -and (CheckLink ($ghLinkFormat -f $pkg.Package, $pkg.VersionPreview)) + } if ($ghdocvalid) { $pkg.GHDocs = "" From eb97a14b11242bf2f7bfa3b7621abe885e1b99e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Tue, 13 Oct 2020 15:30:24 -0400 Subject: [PATCH 17/87] [JS] October release notes (#1878) --- releases/2020-10/js.md | 126 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 113 insertions(+), 13 deletions(-) diff --git a/releases/2020-10/js.md b/releases/2020-10/js.md index f56c9808cef..5b6ccd3f59e 100644 --- a/releases/2020-10/js.md +++ b/releases/2020-10/js.md @@ -8,24 +8,33 @@ repository: azure/azure-sdk-for-js The Azure SDK team is pleased to make available the October 2020 client library release. -#### GA +#### Beta releases -- _Add packages_ - -#### Updates - -- _Add packages_ - -#### Beta - -- _Add packages_ +- Azure Identity. +- Azure Metrics Advisor. +- Azure Tables. +- Azure Service Bus. +- Azure Search. +- Azure Storage File Share. +- Azure Storage Data Lake. +- Azure Storage Blob. ## Installation Instructions To install the packages, copy and paste the below into a terminal. ```bash -$> npm install @azure/package-name +$> npm install @azure/identity@next +$> npm install @azure/ai-metrics-advisor@next +$> npm install @azure/data-tables@next +$> npm install @azure/service-bus@next +$> npm install @azure/search@next +$> npm install @azure/storage-blob-changefeed@next +$> npm install @azure/storage-queue@next +$> npm install @azure/storage-file-share@next +$> npm install @azure/storage-datalake@next +$> npm install @azure/storage-blob@next + ``` ## Feedback @@ -36,9 +45,100 @@ If you have a bug or feature request for one of the libraries, please post an is Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: -### _Package name_ -- Major changes only! +### Azure Identity + +#### @azure/identity [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/CHANGELOG.md) + +Our authentication library is being released with some minor changes and fixes to the existing authentication methods. + +##### New Features on @azure/identity@1.2.0-beta.2 + +- `DefaultAzureCredential` now by default shows the Device Code message on the console. This can still be overwritten with a custom behavior by specifying a function as the third parameter, `userPromptCallback`. +- Added Active Directory Federation Services authority host support to the node credentials. + +##### Major Fixes on @azure/identity@1.2.0-beta.2 + +- Added support for multiple clouds on `VisualStudioCodeCredential`. + + +### Azure Metrics Advisor + +#### @azure/ai-metrics-advisor [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/metricsadvisor/ai-metrics-advisor/CHANGELOG.md#100-beta1-2020-10-07) + +We're happy to announce an initial preview of a client library that supports the newly announced preview of the Azure Metrics Advisor service. This library has been designed based on the [Azure SDK Design Guidelines for TypeScript]({{ site.baseurl }}{% link docs/typescript/introduction.md %}) to ensure consistency, idiomatic design, and excellent developer experience and productivity. + +##### Features on @azure/ai-metrics-advisor@1.0.0-beta.1 + +- It supports all services APIs, including but not limited to: + - The management of data feeds. + - Configuring anomaly detection and alerting configurations. + - Querying anomaly detection results, for example, incidents, anomalies, alerts, enriched series data, etc. + - Diagnosing incident root causes. + + +### Azure Service Bus + +#### @azure/service-bus@7.0.0-preview.7 [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/servicebus/service-bus/CHANGELOG.md) + +We're releasing a new preview of our Azure Service Bus library. This includes updates to the message locks and the support of browser authentication through AAD credentials. + +##### New Features on @azure/service-bus@7.0.0-preview.7 + +- Message locks can be auto-renewed in all receive methods (`receiver.receiveMessages`, `receiver.subcribe` + and `receiver.getMessageIterator`). This can be configured in options when calling `ServiceBusClient.createReceiver()`. +- `ServiceBusClient` now supports authentication with AAD credentials in the browser (you can use `InteractiveBrowserCredential` from `@azure/identity`). + + +### Azure Tables + +#### @azure/data-tables [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/tables/data-tables/CHANGELOG.md) + +We're releasing a new preview of our Azure Tables library. This update adds support for batch operations. + +##### New Features on @azure/data-tables@1.0.0-beta.2 + +- Implemented support for batch operations. This allows sending multiple create, delete and update operations in a single atomic transaction. + + +### Azure Search + +#### @azure/search [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/search/search-documents/CHANGELOG.md#1110-beta1-2020-10-05) + +We're releasing a new preview of our Azure Search library. This update adds support for batch operations. + +##### New Features on @azure/search@11.1.0-beta.1 + +- Azure Search SDK now supports batching. The document actions (`upload`, `merge`, `mergeupload`, `delete`) could be done in batch format with autoFlush set to true or false. +- Azure Search SDK has been regenerated using the latest swaggers. This enables new properties for IndexParameters. + + +### Azure Storage (Coming Soon) + +Updated Azure Storage Service API version to 2020-02-10. + +#### @azure/storage-blob [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-blob/CHANGELOG.md) + +##### New Features on @azure/storage-blob@12.3.0-beta.1 + +- Added support for Container Soft Delete. Added a new API `BlobServiceClient.undeleteContainer()` to restore a previously deleted blob container. + +#### @azure/storage-file-datalake [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-file-datalake/CHANGELOG.md) + +##### New Features on @azure/storage-file-datalake@12.2.0-beta.1 + +- Added support for directory SAS and delegation SAS v2. Now supports generate SAS on directory level. Also added support for `saoid`, `suoid` and `scid` for delegation SAS. See the user delegation SAS [document](https://docs.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas#specify-a-signed-object-id-for-a-security-principal-preview) for more details. +- Added support for File Set Expiry. Now can call `DataLakeFileClient.setExpiry()` to schedule the deletion of a file. +- Added `DataLakePathClient.setAccessControlRecursive()` to support setting access control recursively. + +#### storage-file-share [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-file-share/CHANGELOG.md) + +##### New Features on @azure/storage-file-share@12.3.0-beta.1 + +- Added support for Share and Share Snapshot Leases. Now can initialize a `ShareLeaseClient` with a `ShareClient` to manage leases for a share or share snapshot. Most operations on share now also support lease conditions. +- Added support for Get File Range Diff. Added `ShareFileClient.getRangeListDiff()` for getting the list of ranges that differ between a previous share snapshot and the file. +- Added support for Set Share Tier. Added `ShareClient.setAccessTier()` for setting the access tier of the share. + ## Latest Releases From 47cd4eef3d7162439b3267b78e1171b99cf1b429 Mon Sep 17 00:00:00 2001 From: Rishab Pohane <44072574+rishabpoh@users.noreply.github.com> Date: Tue, 13 Oct 2020 12:41:56 -0700 Subject: [PATCH 18/87] Adding Storage Library updates (#1912) * Adding storage updates * Adding storage updates * Fixed misc character that were added somehow * misc character removal * Adding storage updates * Adding storage updates * addressed PR comments Co-authored-by: Rishab Pohane --- releases/2020-10/dotnet.md | 50 ++++++++++++++++++++++++++++++++++ releases/2020-10/java.md | 56 ++++++++++++++++++++++++++++++++++++++ releases/2020-10/python.md | 29 ++++++++++++++++++++ 3 files changed, 135 insertions(+) diff --git a/releases/2020-10/dotnet.md b/releases/2020-10/dotnet.md index 3ac5d5a7b69..954627847e6 100644 --- a/releases/2020-10/dotnet.md +++ b/releases/2020-10/dotnet.md @@ -20,6 +20,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas - Event Hubs - Key Vault +- Storage - Support packages for Microsoft.Spatial - Tables - Text Analytics @@ -41,6 +42,13 @@ $> dotnet add package Azure.Security.KeyVault.Certificates --version 4.2.0-beta. $> dotnet add package Azure.Security.KeyVault.Keys --version 4.2.0-beta.2 $> dotnet add package Azure.Security.KeyVault.Secrets --version 4.2.0-beta.2 +$> dotnet add package Azure.Storage.Blobs --version 12.7.0-preview.1 +$> dotnet add package Azure.Storage.Blobs.Batch --version 12.4.0-preview.1 +$> dotnet add package Azure.Storage.Blobs.ChangeFeed --version 12.0.0-preview.5 +$> dotnet add package Azure.Storage.Files.DataLake --version 12.5.0-preview.1 +$> dotnet add package Azure.Storage.Files.Shares --version 12.5.0-preview.1 +$> dotnet add package Azure.Storage.Queues --version 12.5.0-preview.1 + $> dotnet add package Microsoft.Azure.Core.Spatial --version 1.0.0-beta.1 $> dotnet add package Microsoft.Azure.Core.Spatial.NewtonsoftJson --version 1.0.0-beta.1 ``` @@ -74,10 +82,52 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. + ### Key Vault - Bug fixes and performance improvements. + +### Azure Storage Blobs [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs/CHANGELOG.md) + +#### New Features +- Added support for Container Soft Delete. +- Added support for Blob Query Arrow output format. +- Added support for Blob Last Access Time tracking. + +#### Key Bug Fixes +- Fixed bug causing `BlobAccessPolicy.StartsOn` and `.ExpiresOn` to crash the process. +- Fixed bug in where Stream returned from `AppendBlobClient.OpenWrite()`, `BlockBlobClient.OpenWrite()`, and `PageBlobClient.OpenWrite()` did not flush while disposing preventing compatibility with using keyword. +- Fixed bug where Listing Blobs with `BlobTraits.Metadata` would return `BlobItems` with null metadata instead of an empty dictionary if no metadata was present. + +### Azure Storage Files DataLake [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Files.DataLake/CHANGELOG.md) + +#### New Features +- Added support for Directory SAS. +- Added support for File Set Expiry. +- Added `Close` and `RetainUncommitedData` to `DataLakeFileUploadOptions` +- Added seekability to `DataLakeFileClient.OpenRead()` +- Added `DataLakeClientBuilderExtensions` + +#### Key Bug Fixes +- Fixed bug where `DataLakeFileClient.Upload()` could not upload read-only files. +- Fixed bug causing `DataLakeBlobAccessPolicy.StartsOn` and `.ExpiresOn` to crash the process. +- Fixed bug where Stream returned from `DataLakeFileClient.OpenWrite()` did not flush while disposing preventing compatibility with using keyword. +- Fixed bug where `DataLakeDirectoryClient.Rename()` and `DataLakeDirectoryFileClient.Rename()` couldn't handle source paths with special characters. + +### Azure Storage Files Shares [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Files.Shares/CHANGELOG.md) + +#### New Features +- Added support for 4 TB Files +- Added support for SMB Multichannel +- Added support for Share and Share Snapshot Leases +- Added support for Get File Range Diff +- Added support for Set Share Tier + +#### Key Bug Fixes +- Fixed bug causing `ShareAccessPolicy.StartsOn` and `.ExpiresOn` to crash the process. +- Fixed bug where Stream returned from `ShareFileClient.OpenWrite()` did not flush while disposing preventing compatibility with using keyword. + ### Support packages for Microsoft.Spatial #### Microsoft.Azure.Core.Spatial [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Microsoft.Azure.Core.Spatial/CHANGELOG.md#100-beta1-2020-10-08) diff --git a/releases/2020-10/java.md b/releases/2020-10/java.md index 31c62f0282c..09b7bcffd3c 100644 --- a/releases/2020-10/java.md +++ b/releases/2020-10/java.md @@ -28,6 +28,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas #### Beta +- Azure Storage - Azure Core Experimental - Azure Core Serializer Apache Avro - Azure Communication Administration @@ -300,6 +301,12 @@ To use the GA and beta libraries, refer to the Maven dependency information belo 12.7.0-beta.1 + + com.azure + azure-storage-queue + 12.7.0-beta.1 + + com.azure azure-storage-internal-avro @@ -588,6 +595,55 @@ of the amqp connection. #### New Features - Initial release. Please see the README and wiki for information on the new design. +- Major changes only! + +### Azure Storage Blob [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md) + +#### New Features +- Added support to undelete a container. +- Added support to specify Arrow Output Serialization when querying a blob. +- Added support to set `BlobParallelUploadOptions.computeMd5` so the service can perform an md5 verification. +- Added support to specify block size when using `BlobInputStream` + +#### Key Bug Fixes +- Fixed bug where users could not download more than 5000MB of data in one shot in the `downloadToFile` API. +- Fixed but where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where Default Azure Credential would not work with Azurite. +- Fixed a bug where a custom application ID in `HttpLogOptions` would not be added to the User Agent String. +- Fixed a bug where `BlockBlobOutputStream` would not handle certain errors. + +### Azure Storage File DataLake [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-datalake/CHANGELOG.md) + +#### New Features +- Added support for setting, modifying, and removing ACLs recursively. +- Added support to schedule file expiration. +- Added support to specify Arrow Output Serialization when querying a file. +- Added support to generate directory SAS and added support to specify additional user ids and correlation ids for user delegation SAS. +- Added support to upload data to a file from an InputStream. +- Added support to specify permissions and umask when uploading a file. + +#### Key Bug Fixes +- Fixed a bug where users could not download more than 5000MB of data in one shot in the `readToFile` API. +- Fixed a bug where the TokenCredential scope would be incorrect for custom URLs. +- Fixed a bug where an empty string would be sent with the x-ms-properties header when metadata was null or empty. +- Fixed a bug where a custom application id in HttpLogOptions would not be added to the User Agent String. + +### Azure Storage File Share [Changelog](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-share/CHANGELOG.md) + +#### New Features +- Added support for the 2020-02-10 service version. +- Added support to getFileRanges on a previous snapshot by adding the `getFileRangesDiff` API. +- Added support to set whether or not SMB multichannel is enabled. +- Added support to lease shares and snapshot shares. +- Added support to specify a lease id for share operations. + +#### Key Bug Fixes +- Fixed a bug where getProperties on a file client would throw a HttpResponseException instead of ShareStorageException. +- Fixed a bug where snapshot would be appended to a share snapshot instead of sharesnapshot. +- Fixed a bug that would cause authentication failures when building a client by passing an endpoint which had a SAS token with protocol set to https,http +- Fixed a bug where a custom application ID in HttpLogOptions would not be added to the User Agent String. + + ## Need help - For reference documentation visit the [Azure SDK for Java documentation](https://azure.github.io/azure-sdk-for-java/). diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 2526c7a827f..4aebe40bb82 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -20,6 +20,7 @@ The Azure SDK team is pleased to make available the October 2020 client library #### Beta +- Storage - Service Bus - Search - Text Analytics @@ -39,6 +40,10 @@ pip install azure-ai-metricsadvisor --pre pip install azure-identity pip install azure-keyvault-administration pip install azure-keyvault-keys +pip install azure-storage-blob --pre +pip install azure-storage-file-datalake --pre +pip install azure-storage-file-share --pre +pip install azure-storage-queue ``` ## Feedback @@ -99,6 +104,30 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here #### New Features - CryptographyClient can perform decrypt and sign operations locally +### Azure Storage + +#### Blob [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md) + +##### New Features +- Added support for Arrow format (`ArrowType`) output serialization using `quick_query()`. +- Added support for undeleting a container. +- Added support for `LastAccessTime` property on a blob, which could be the last time a blob was written or read. + +#### File DataLake [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/storage/azure-storage-file-datalake/CHANGELOG.md) + +##### New Features +- Added support for recursive set/update/remove Access Control on a path and sub-paths. +- Added support for setting an expiry on files where the file gets deleted once it expires. +- Added support to generate directory SAS and added support to specify additional user ids and correlation ids for user delegation SAS. + +#### File Share [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/storage/azure-storage-file-share/CHANGELOG.md) + +##### New Features +- Added support for enabling SMB Multichannel for the share service. +- Added support for leasing a share. +- Added support for getting the range diff between current file and a snapshot as well as getting the diff between two file snapshots. + + ## Latest Releases View all the latest versions of Python packages [here][python-latest-releases]. From 4e9aee790d491586770e2eb541092b7e2ebd08a0 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 13 Oct 2020 13:45:24 -0700 Subject: [PATCH 19/87] Update package index with latest published versions (#1919) Update package index with latest published versions --- _data/releases/latest/cpp-packages.csv | 2 +- _data/releases/latest/dotnet-packages.csv | 22 +++-- _data/releases/latest/java-packages.csv | 109 +++++++++++----------- _data/releases/latest/js-packages.csv | 27 +++--- _data/releases/latest/python-packages.csv | 70 +++++++------- 5 files changed, 118 insertions(+), 112 deletions(-) diff --git a/_data/releases/latest/cpp-packages.csv b/_data/releases/latest/cpp-packages.csv index c52ef4a2874..38aa00305ca 100644 --- a/_data/releases/latest/cpp-packages.csv +++ b/_data/releases/latest/cpp-packages.csv @@ -1,5 +1,5 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" -"azure-core","","1.0.0-beta.1","Core","Core","core","NA","","client","","" +"azure-core","","1.0.0-beta.2","Core","Core","core","NA","","client","","" "azure-storage-blobs","","1.0.0-beta.2","Storage Blobs","Storage","storage","NA","","client","","" "azure-storage-common","","1.0.0-beta.2","Storage Common","Storage","storage","NA","","client","","" "azure-storage-files-datalake","","1.0.0-beta.2","Storage Files DataLake","Storage","storage","NA","","client","","" diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index a50e8235cf2..59dd6871008 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -42,22 +42,22 @@ "Azure.ResourceManager.Resources","","1.0.0-preview.2","Resource Management - Resources","Resources","resources","","","mgmt","","" "Azure.ResourceManager.Storage","","1.0.0-preview.2","Resource Management - Storage","Storage","storage","","","mgmt","","" "Azure.AI.InkRecognizer","","1.0.0-preview.1","Azure.AI.InkRecognizer","","NA","NA","NA","","true","" -"Azure.AI.MetricsAdvisor","","1.0.0-beta.1","Azure.AI.MetricsAdvisor","","NA","NA","NA","","","" +"Azure.AI.MetricsAdvisor","","1.0.0-beta.1","Azure.AI.MetricsAdvisor","","NA","NA","","","","" "Azure.Analytics.Synapse.AccessControl","","1.0.0-preview.2","Azure.Analytics.Synapse.AccessControl","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Artifacts","","1.0.0-preview.4","Azure.Analytics.Synapse.Artifacts","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Spark","","1.0.0-preview.2","Azure.Analytics.Synapse.Spark","Synapse","synapse","","","","","" -"Azure.AspNetCore.DataProtection.Blobs","","1.0.0-preview.1","Azure.AspNetCore.DataProtection.Blobs","","NA","NA","NA","","true","" -"Azure.AspNetCore.DataProtection.Keys","","1.0.0-preview.1","Azure.AspNetCore.DataProtection.Keys","","NA","NA","NA","","true","" +"Azure.AspNetCore.DataProtection.Blobs","","1.0.0-preview.1","Azure.AspNetCore.DataProtection.Blobs","","NA","NA","","","true","" +"Azure.AspNetCore.DataProtection.Keys","","1.0.0-preview.1","Azure.AspNetCore.DataProtection.Keys","","NA","NA","","","true","" "Azure.Base","","1.0.0-preview.3","Azure.Base","","NA","NA","NA","","true","" "Azure.Batch.FileStaging","8.0.1","","Azure.Batch.FileStaging","","NA","NA","NA","","true","" "Azure.Core.Extensions","","1.0.0-preview.6","Azure.Core.Extensions","","NA","NA","NA","","true","" "Azure.DCAP.Windows","1.2.0","","Azure.DCAP.Windows","","NA","NA","NA","","true","" "Azure.DigitalTwins.Core","","1.0.0-preview.3","Azure.DigitalTwins.Core","Digitaltwins","digitaltwins","","","","","" -"Azure.Extensions.Configuration.Secrets","","1.0.0-preview.1","Azure.Extensions.Configuration.Secrets","","NA","NA","NA","","true","" +"Azure.Extensions.Configuration.Secrets","","1.0.0-preview.1","Azure.Extensions.Configuration.Secrets","","NA","NA","","","true","" "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" "Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.26","Azure.Template","","NA","NA","NA","","true","" +"Azure.Template","","1.0.3-beta.26","Azure.Template","","NA","","","","true","" "Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" @@ -66,7 +66,7 @@ "Hyak.Common.Tracing.Log4Net","1.0.2","","Hyak.Common.Tracing.Log4Net","","NA","NA","NA","","true","" "Microsoft.AutoRest.Common","2.4.48","","Microsoft.AutoRest.Common","AutoRest","https://github.com/Azure/autorest.common","NA","NA","","","" "Microsoft.Azure.ApplicationInsights","","0.9.0-preview","Microsoft.Azure.ApplicationInsights","","NA","NA","NA","","","" -"Microsoft.Azure.ApplicationInsights.Query","","0.9.0-preview.2","Microsoft.Azure.ApplicationInsights.Query","Application Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/applicationinsights/Microsoft.Azure.ApplicationInsights.Query","NA","NA","","","" +"Microsoft.Azure.ApplicationInsights.Query","","0.9.0-preview.2","Microsoft.Azure.ApplicationInsights.Query","Application Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/applicationinsights/Microsoft.Azure.ApplicationInsights.Query","NA","","","","" "Microsoft.Azure.AppService","","0.2.2-alpha","Microsoft.Azure.AppService","","NA","NA","NA","","","" "Microsoft.Azure.AppService.ApiApps.Common","0.9.36","","Microsoft.Azure.AppService.ApiApps.Common","","NA","NA","NA","","","" "Microsoft.Azure.AppService.ApiApps.Service","0.9.64","","Microsoft.Azure.AppService.ApiApps.Service","","NA","NA","NA","","","" @@ -104,7 +104,7 @@ "Microsoft.Azure.CognitiveServices.Search.VideoSearch","2.0.0","","Microsoft.Azure.CognitiveServices.Search.VideoSearch","","NA","NA","NA","","","" "Microsoft.Azure.CognitiveServices.Search.VisualSearch","2.0.0","","Microsoft.Azure.CognitiveServices.Search.VisualSearch","","NA","NA","NA","","","" "Microsoft.Azure.CognitiveServices.Search.WebSearch","2.0.0","","Microsoft.Azure.CognitiveServices.Search.WebSearch","","NA","NA","NA","","","" -"Microsoft.Azure.CognitiveServices.Vision.ComputerVision","","6.0.0-preview.1","Microsoft.Azure.CognitiveServices.Vision.ComputerVision","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Vision.ComputerVision_6.0.0-preview.1/sdk/cognitiveservices/Vision.ComputerVision","NA","","","","" +"Microsoft.Azure.CognitiveServices.Vision.ComputerVision","6.0.0","6.0.0-preview.1","Microsoft.Azure.CognitiveServices.Vision.ComputerVision","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Vision.ComputerVision_6.0.0-preview.1/sdk/cognitiveservices/Vision.ComputerVision","NA","","","","" "Microsoft.Azure.CognitiveServices.Vision.ContentModerator","","2.1.0-preview.1","Microsoft.Azure.CognitiveServices.Vision.ContentModerator","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Vision.ContentModerator_2.1.0-preview.1/sdk/cognitiveservices/Vision.ContentModerator","NA","","","","" "Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction","2.0.0","","Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction_2.0.0/sdk/cognitiveservices/Vision.CustomVision.Prediction","NA","","","","" "Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training","2.0.0","","Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training_2.0.0/sdk/cognitiveservices/Vision.CustomVision.Training","NA","","","","" @@ -410,13 +410,15 @@ "Microsoft.Azure.Connectors.Zendesk","","0.0.1-alpha","Microsoft.Azure.Connectors.Zendesk","","NA","NA","NA","","","" "Microsoft.Azure.Connectors.Zenkraft","","0.0.1-alpha","Microsoft.Azure.Connectors.Zenkraft","","NA","NA","NA","","","" "Microsoft.Azure.ContainerRegistry","","1.0.0-preview.1","Microsoft.Azure.ContainerRegistry","Container Registry","containerregistry","NA","","","","" +"Microsoft.Azure.Core.Spatial","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial","","NA","NA","","","","" +"Microsoft.Azure.Core.Spatial.NewtonsoftJson","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial.NewtonsoftJson","","NA","NA","","","","" "Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb?view=azure-dotnet","NA","","","Will be replaced by: Azure.Cosmos" "Microsoft.Azure.Cosmos.Direct","3.14.0","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" "Microsoft.Azure.Cosmos.Encryption","","1.0.0-preview6","Microsoft.Azure.Cosmos.Encryption","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/encryption/1.0.0-preview4/Microsoft.Azure.Cosmos.Encryption","NA","NA","","","" "Microsoft.Azure.Cosmos.Table","","2.0.0-preview","Microsoft.Azure.Cosmos.Table","","NA","NA","NA","","","" "Microsoft.Azure.CosmosDB.BulkExecutor","","2.4.1-preview","Microsoft.Azure.CosmosDB.BulkExecutor","Cosmos DB","https://github.com/Azure/azure-cosmosdb-bulkexecutor-dotnet-getting-started","NA","NA","","","" "Microsoft.Azure.CosmosDB.Table","2.1.2","","Microsoft.Azure.CosmosDB.Table","","NA","NA","NA","","","Will be replaced by: Azure.Data.Tables" -"Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","","1.0.0-beta.1","Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","Schema Registry - Apache Avro","NA","NA","NA","","","" +"Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","","1.0.0-beta.1","Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","Schema Registry - Apache Avro","NA","","","","","" "Microsoft.Azure.DataLake.Store","","1.2.3-alpha","Microsoft.Azure.DataLake.Store","Data Lake","https://github.com/Azure/azure-data-lake-store-net/tree/1.2.3-alpha","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store?view=azure-dotnet-preview","NA","","","" "Microsoft.Azure.DataLake.USQL.SDK","1.4.200831","","Microsoft.Azure.DataLake.USQL.SDK","","NA","NA","NA","","","" "Microsoft.Azure.DCAP","1.6.0","","Microsoft.Azure.DCAP","DCAP","https://github.com/microsoft/Azure-DCAP-Client/tree/1.6","NA","NA","","","" @@ -624,7 +626,7 @@ "Microsoft.Azure.Search.Common","10.1.0","","Microsoft.Azure.Search.Common","Search","search","NA","","","","" "Microsoft.Azure.Search.Data","10.1.0","","Microsoft.Azure.Search.Data","Search","search","NA","","","","" "Microsoft.Azure.Search.Service","10.1.0","","Microsoft.Azure.Search.Service","Search","search","NA","","","","" -"Microsoft.Azure.ServiceBus","5.0.0","","Microsoft.Azure.ServiceBus","ServiceBus","servicebus","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus?view=azure-dotnet","","","","Will be replaced by: Azure.Messaging.ServiceBus" +"Microsoft.Azure.ServiceBus","5.0.0","","Microsoft.Azure.ServiceBus","ServiceBus","servicebus","","","","","Will be replaced by: Azure.Messaging.ServiceBus" "Microsoft.Azure.ServiceBus.MessageIdPlugin","2.0.0","","Microsoft.Azure.ServiceBus.MessageIdPlugin","","NA","NA","NA","","","" "Microsoft.Azure.Services.AppAuthentication","1.6.0","","Microsoft.Azure.Services.AppAuthentication","","NA","NA","NA","","","" "Microsoft.Azure.SignalR","1.5.1","","Microsoft.Azure.SignalR","SignalR","https://github.com/Azure/azure-signalr/tree/v1.5.0/src/Microsoft.Azure.SignalR","NA","NA","","","" @@ -703,7 +705,7 @@ "Microsoft.AzureStack.Management.Subscriptions.Admin","","0.2.0-preview","Microsoft.AzureStack.Management.Subscriptions.Admin","AzureStack","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/azurestack/Microsoft.AzureStack.Management.Subscriptions.Admin","NA","","","","" "Microsoft.AzureStack.Management.Update.Admin","","0.1.0-preview","Microsoft.AzureStack.Management.Update.Admin","AzureStack","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/azurestack/Microsoft.AzureStack.Management.Update.Admin","NA","","","","" "Microsoft.Extensions.Azure","1.0.0","","Microsoft.Extensions.Azure","Core","core","NA","","","","" -"Microsoft.Extensions.Caching.Cosmos","","1.0.0-preview4","Microsoft.Extensions.Caching.Cosmos","Cosmos DB","https://github.com/Azure/Microsoft.Extensions.Caching.Cosmos/tree/v1.0.0-preview4","NA","NA","","","" +"Microsoft.Extensions.Caching.Cosmos","","1.0.0-preview5","Microsoft.Extensions.Caching.Cosmos","Cosmos DB","https://github.com/Azure/Microsoft.Extensions.Caching.Cosmos/tree/v1.0.0-preview4","NA","NA","","","" "Microsoft.Hadoop.Client","1.5.13","","Microsoft.Hadoop.Client","","NA","NA","NA","","","" "Microsoft.Rest.ClientRuntime","2.3.22","","Microsoft.Rest.ClientRuntime","Rest","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Rest.ClientRuntime_2.3.21/sdk/mgmtcommon/ClientRuntime","NA","NA","","","" "Microsoft.Rest.ClientRuntime.Azure","3.3.19","","Microsoft.Rest.ClientRuntime.Azure","Rest","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mgmtcommon/ClientRuntime.Azure","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 1255b091fd5..98e107a0014 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -7,7 +7,7 @@ "azure-communication-common","com.azure","","1.0.0-beta.2","Communication Common","Communication","communication","","","client","","" "azure-communication-sms","com.azure","","1.0.0-beta.2","Communication Sms","Communication","communication","","","client","","" "azure-core","com.azure","1.9.0","","Core","Core","core","","","client","","" -"azure-core-amqp","com.azure","1.5.1","1.6.0-beta.1","Core - AMQP","Core","core","","","client","","" +"azure-core-amqp","com.azure","1.6.0","","Core - AMQP","Core","core","","","client","","" "azure-core-http-netty","com.azure","1.6.2","","Core - HTTP Netty","Core","core","","","client","","" "azure-core-http-okhttp","com.azure","1.3.2","","Core - HTTP OkHttp","Core","core","","","client","","" "azure-core-experimental","com.azure","","1.0.0-beta.7","Core Experimental","Core","core","","","client","","" @@ -18,14 +18,14 @@ "azure-cosmos","com.azure","4.6.0","","Cosmos","Cosmos","cosmos","","","client","","Replaces: azure-cosmos 3.x" "azure-digitaltwins-core","com.azure","","1.0.0-beta.3","Digital Twins","Digital Twins","digitaltwins","","","client","","" "azure-messaging-eventgrid","com.azure","","2.0.0-beta.3","Event Grid","Event Grid","eventgrid","","","client","","Will replace: azure-eventgrid" -"azure-messaging-eventhubs","com.azure","5.2.0","5.3.0-beta.1","Event Hubs","Event Hubs","eventhubs","","","client","","Replaces: azure-eventhubs" -"azure-messaging-eventhubs-checkpointstore-blob","com.azure","1.2.0","1.3.0-beta.1","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhubs","","","client","","" +"azure-messaging-eventhubs","com.azure","5.3.0","","Event Hubs","Event Hubs","eventhubs","","","client","","Replaces: azure-eventhubs" +"azure-messaging-eventhubs-checkpointstore-blob","com.azure","1.3.0","","Event Hubs - Azure Blob Storage Checkpoint Store","Event Hubs","eventhubs","","","client","","" "azure-ai-formrecognizer","com.azure","3.0.2","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","" "azure-identity","com.azure","1.1.3","1.2.0-beta.2","Identity","Identity","identity","","","client","","" -"azure-security-keyvault-administration","com.azure","","4.0.0-beta.1","Key Vault - Administration","Key Vault","keyvault","","","client","","" -"azure-security-keyvault-certificates","com.azure","4.1.2","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-certificates" -"azure-security-keyvault-keys","com.azure","4.2.2","4.3.0-beta.1","Key Vault - Keys","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-keys" -"azure-security-keyvault-secrets","com.azure","4.2.2","4.3.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" +"azure-security-keyvault-administration","com.azure","","4.0.0-beta.2","Key Vault - Administration","Key Vault","keyvault","","","client","","" +"azure-security-keyvault-certificates","com.azure","4.1.2","4.2.0-beta.2","Key Vault - Certificates","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-certificates" +"azure-security-keyvault-keys","com.azure","4.2.2","4.3.0-beta.2","Key Vault - Keys","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-keys" +"azure-security-keyvault-secrets","com.azure","4.2.2","4.3.0-beta.2","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" "azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" "azure-data-schemaregistry-avro","com.azure","","1.0.0-beta.4","Schema Registry Avro","Data Schemaregistry","schemaregistry","","","client","","" "azure-messaging-servicebus","com.azure","","7.0.0-beta.6","Service Bus","Service Bus","servicebus","","","client","","Will replace: azure-servicebus" @@ -83,8 +83,8 @@ "azure","com.microsoft.azure","1.36.3","","azure","","NA","NA","NA","","","" "azure","com.microsoft.azure.profile_2018_03_01_hybrid","","1.0.0-beta-1","azure","","NA","NA","NA","","","" "azure","com.microsoft.azure.profile_2019_03_01_hybrid","","1.0.0-beta-1","azure","","NA","NA","NA","","","" -"azure-active-directory-b2c-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-active-directory-b2c-spring-boot-starter","Azure Active Directory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-active-directory-b2c","NA","NA","","","" -"azure-active-directory-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-active-directory-spring-boot-starter","Azure Active Directory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-active-directory","NA","NA","","","" +"azure-active-directory-b2c-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-active-directory-b2c-spring-boot-starter","Azure Active Directory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-active-directory-b2c","","NA","","","" +"azure-active-directory-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-active-directory-spring-boot-starter","Azure Active Directory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-active-directory","","NA","","","" "azure-ad-integration-spring-boot-autoconfigure","com.microsoft.azure","0.1.5","","azure-ad-integration-spring-boot-autoconfigure","","NA","NA","NA","","","" "azure-ad-integration-spring-boot-starter","com.microsoft.azure","0.1.8","","azure-ad-integration-spring-boot-starter","","NA","NA","NA","","","" "azure-android-client-authentication","com.microsoft.azure","","1.0.0-beta1","azure-android-client-authentication","","NA","NA","NA","","","" @@ -94,7 +94,7 @@ "azure-arm-parent","com.microsoft.azure","1.3.2","","azure-arm-parent","Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-arm-parent","NA","NA","","","" "azure-authentication-msi-token-provider","com.microsoft.azure.msi_auth_token_provider","Msi Auth Token","1.0.0-Beta-2","azure-authentication-msi-token-provider","","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/authorization/microsoft-azure-authentication-msi-token-provider","NA","NA","","","" "azure-auth-helper","com.microsoft.azure","0.6.0","","azure-auth-helper","","NA","NA","NA","","","" -"azure-batch","com.microsoft.azure","8.0.0","","azure-batch","Batch","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batch/microsoft-azure-batch","https://docs.microsoft.com/java/api/overview/azure/batch?view=azure-java-stable","NA","","","" +"azure-batch","com.microsoft.azure","8.0.0","","azure-batch","Batch","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batch/microsoft-azure-batch","https://docs.microsoft.com/java/api/overview/azure/batch?view=azure-java-stable","","","","" "azure-bom","com.microsoft.azure","","1.0.0.M1","azure-bom","","NA","NA","NA","","","" "azure-client-authentication","com.microsoft.azure","1.7.9","","azure-client-authentication","","NA","NA","NA","","","" "azure-client-authentication","com.microsoft.azure.v2","","2.0.0-java7-beta1","azure-client-authentication","","NA","NA","NA","","","" @@ -115,7 +115,7 @@ "azure-cognitiveservices-faceapi","com.microsoft.azure.cognitiveservices","","1.0.0-beta","azure-cognitiveservices-faceapi","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-faceapi","NA","NA","","","" "azure-cognitiveservices-imagesearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-imagesearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-imagesearch","NA","NA","","","" "azure-cognitiveservices-language","com.microsoft.azure.cognitiveservices","","0.0.1-beta","azure-cognitiveservices-language","","NA","NA","NA","","","" -"azure-cognitiveservices-luis-authoring","com.microsoft.azure.cognitiveservices","","1.0.4-beta","azure-cognitiveservices-luis-authoring","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-luis-authoring","NA","NA","","","" +"azure-cognitiveservices-luis-authoring","com.microsoft.azure.cognitiveservices","","1.0.4-beta","azure-cognitiveservices-luis-authoring","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-luis-authoring","NA","","","","" "azure-cognitiveservices-luis-runtime","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-luis-runtime","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-luis-runtime","NA","NA","","","" "azure-cognitiveservices-newssearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-newssearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-newssearch","NA","NA","","","" "azure-cognitiveservices-parent","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-parent","","NA","NA","NA","","","" @@ -125,9 +125,9 @@ "azure-cognitiveservices-videosearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-videosearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-videosearch","NA","NA","","","" "azure-cognitiveservices-visualsearch","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-visualsearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-visualsearch","NA","NA","","","" "azure-cognitiveservices-websearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-websearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-websearch","NA","NA","","","" -"azure-communication-chat","com.azure.android","","1.0.0-beta.2","azure-communication-chat","","NA","NA","NA","","","" +"azure-communication-chat","com.azure.android","","1.0.0-beta.2","azure-communication-chat","","NA","","","","","" "azure-computervision","com.microsoft.azure.cognitiveservices","","0.0.1-beta","azure-computervision","","NA","NA","NA","","","" -"azure-core","com.azure.android","","1.0.0-beta.2","azure-core","","NA","NA","NA","","","" +"azure-core","com.azure.android","","1.0.0-beta.2","azure-core","","NA","","NA","","","" "azure-core","com.microsoft.azure","0.9.8","","azure-core","","NA","","NA","","","" "azure-core-management","com.azure","","1.0.0-preview.4","azure-core-management","Core","core","","NA","","","" "azure-core-parent","com.azure","","1.0.0-preview.2","azure-core-parent","","NA","NA","NA","","","" @@ -154,14 +154,14 @@ "azure-cosmosdb-spark_2.2.0_2.11","com.microsoft.azure","1.1.1","","azure-cosmosdb-spark_2.2.0_2.11","","NA","NA","NA","","","" "azure-cosmosdb-spark_2.3.0_2.11","com.microsoft.azure","1.3.3","","azure-cosmosdb-spark_2.3.0_2.11","","NA","NA","NA","","","" "azure-cosmosdb-spark_2.4.0_2.11","com.microsoft.azure","3.3.4","","azure-cosmosdb-spark_2.4.0_2.11","","NA","NA","NA","","","" -"azure-cosmosdb-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-cosmosdb-spring-boot-starter","Cosmos DB","NA","NA","NA","","","" +"azure-cosmosdb-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-cosmosdb-spring-boot-starter","Cosmos DB","NA","","NA","","","" "azure-cosmos-direct","com.microsoft.azure","","3.0.0-a1","azure-cosmos-direct","","NA","NA","NA","","","" "azure-cosmos-examples","com.microsoft.azure","3.3.1","","azure-cosmos-examples","","NA","NA","NA","","","" "azure-cosmos-gateway","com.microsoft.azure","","3.0.0-a1","azure-cosmos-gateway","","NA","NA","NA","","","" "azure-cosmos-parent","com.azure","","4.0.0-preview.2","azure-cosmos-parent","","NA","NA","NA","","","" "azure-cosmos-parent","com.microsoft.azure","3.5.0","","azure-cosmos-parent","","NA","NA","NA","","","" "azure-cosmos-serialization","com.azure.data","2.9.6","","azure-cosmos-serialization","","NA","NA","NA","","","" -"azure-data-gremlin-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-data-gremlin-spring-boot-starter","","NA","NA","NA","","","" +"azure-data-gremlin-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-data-gremlin-spring-boot-starter","","NA","","NA","","","" "azure-data-lake-store-sdk","com.microsoft.azure","2.3.8","","azure-data-lake-store-sdk","","NA","https://docs.microsoft.com/java/api/overview/azure/datalake?view=azure-java-stable","NA","","","Replaced by: azure-storage-file-datalake" "azure-data-schemaregistry","com.azure","","1.0.0-beta.4","azure-data-schemaregistry","Data Schemaregistry","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/schemaregistry/azure-data-schemaregistry","","","","","" "azure-data-sdk-parent","com.azure","1.3.0","","azure-data-sdk-parent","Data Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-data-sdk-parent","NA","NA","","","" @@ -173,7 +173,7 @@ "azure-documentdb-spring-boot-starter","com.microsoft.azure","2.0.5","","azure-documentdb-spring-boot-starter","","NA","NA","NA","","","" "azure-elasticdb-tools","com.microsoft.azure","1.0.0","","azure-elasticdb-tools","","NA","NA","NA","","","" "azure-eventgrid","com.microsoft.azure","","1.4.0-beta.1","azure-eventgrid","Event Grid","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventgrid/microsoft-azure-eventgrid","NA","NA","","","Will be replaced by: azure-messaging-eventgrid" -"azure-eventhubs","com.microsoft.azure","3.2.0","","azure-eventhubs","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs","NA","NA","","","Replaced by: azure-messaging-eventhubs" +"azure-eventhubs","com.microsoft.azure","3.2.0","","azure-eventhubs","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs","NA","","","","Replaced by: azure-messaging-eventhubs" "azure-eventhubs-databricks_2.11","com.microsoft.azure","3.4.0","","azure-eventhubs-databricks_2.11","","NA","NA","NA","","","" "azure-eventhubs-eph","com.microsoft.azure","3.2.0","","azure-eventhubs-eph","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-eph","NA","","","","" "azure-eventhubs-extensions","com.microsoft.azure","3.2.0","","azure-eventhubs-extensions","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-extensions","NA","","","","" @@ -202,7 +202,7 @@ "azure-keyvault-parent","com.microsoft.azure","1.2.1","","azure-keyvault-parent","","NA","NA","NA","","","" "azure-keyvault-secrets","com.azure","","4.0.0-preview.4","azure-keyvault-secrets","Key Vault","keyvault","NA","NA","","","Replaced by: azure-security-keyvault-secrets" "azure-keyvault-secrets-spring-boot","com.microsoft.azure","0.1.5","","azure-keyvault-secrets-spring-boot","","NA","NA","NA","","","" -"azure-keyvault-secrets-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-keyvault-secrets-spring-boot-starter","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-keyvault-secrets","NA","NA","","","" +"azure-keyvault-secrets-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-keyvault-secrets-spring-boot-starter","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-keyvault-secrets","","NA","","","" "azure-keyvault-webkey","com.microsoft.azure","1.2.4","","azure-keyvault-webkey","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/keyvault/microsoft-azure-keyvault-webkey","NA","","","","" "azure-loganalytics","com.microsoft.azure","","1.0.0-Preview-1","azure-loganalytics","Loganalytics","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/loganalytics/microsoft-azure-loganalytics","NA","NA","","","" "azure-management","com.microsoft.azure","0.8.0","","azure-management","","NA","NA","NA","","","" @@ -259,7 +259,7 @@ "azure-mgmt-cdn","com.microsoft.azure","1.36.3","","azure-mgmt-cdn","","NA","https://docs.microsoft.com/java/api/overview/azure/cdn?view=azure-java-stable","NA","","","" "azure-mgmt-cdn","com.microsoft.azure.cdn.v2020_04_15","","1.0.0-beta-1","azure-mgmt-cdn","Cdn","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cdn/mgmt-v2020_04_15","NA","NA","","","" "azure-mgmt-cognitiveservices","com.microsoft.azure","","1.10.0-beta","azure-mgmt-cognitiveservices","","NA","NA","NA","","TRUE","" -"azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices.v2017_04_18","1.0.0","1.0.0-beta-4","azure-mgmt-cognitiveservices.v2017_04_18","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/mgmt-v2017_04_18","NA","NA","","","" +"azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices.v2017_04_18","1.0.1","","azure-mgmt-cognitiveservices.v2017_04_18","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/mgmt-v2017_04_18","NA","NA","","","" "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices-2017-04-18","","1.0.0-beta-1","azure-mgmt-cognitiveservices.v2017_04_18","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure","1.36.3","","azure-mgmt-compute","","NA","https://docs.microsoft.com/java/api/overview/azure/virtualmachines?view=azure-java-stable","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2020_06_01","","1.0.0-beta","azure-mgmt-compute","","NA","NA","NA","","","" @@ -304,7 +304,7 @@ "azure-mgmt-customerinsights","com.microsoft.azure","","1.10.0-beta","azure-mgmt-customerinsights","","NA","NA","NA","","TRUE","" "azure-mgmt-databox","com.microsoft.azure.databox.v2019_09_01","","1.0.0-beta","azure-mgmt-databox.v2019_09_01","Databox","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/databox/mgmt-v2019_09_01","NA","NA","","","" "azure-mgmt-databoxedge","com.microsoft.azure.edgegateway.v2019_03_01","","1.0.0-beta","azure-mgmt-databoxedge.v2019_03_01","Databoxedge","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/edgegateway/mgmt-v2019_03_01","NA","NA","","","" -"azure-mgmt-datafactory","com.microsoft.azure.datafactory.v2018_06_01","","1.0.0-beta-4","azure-mgmt-datafactory.v2018_06_01","Datafactory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/datafactory/mgmt-v2018_06_01","NA","NA","","","" +"azure-mgmt-datafactory","com.microsoft.azure.datafactory.v2018_06_01","","1.0.0-beta-5","azure-mgmt-datafactory.v2018_06_01","Datafactory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/datafactory/mgmt-v2018_06_01","NA","NA","","","" "azure-mgmt-datalake-analytics","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-analytics","","NA","https://docs.microsoft.com/java/api/overview/azure/datalakeanalytics?view=azure-java-stable","NA","","","" "azure-mgmt-datalake-store","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-store","","NA","NA","NA","","","" "azure-mgmt-datalake-store-uploader","com.microsoft.azure","","1.0.0-beta1.2","azure-mgmt-datalake-store-uploader","","NA","NA","NA","","TRUE","" @@ -341,6 +341,7 @@ "azure-mgmt-graph-rbac","com.microsoft.azure","1.36.3","","azure-mgmt-graph-rbac","","NA","NA","NA","","","" "azure-mgmt-hanaonazure","com.microsoft.azure.hanaonazure.v2017_11_03_preview","","1.0.0-beta-5","azure-mgmt-hanaonazure.v2017_11_03_preview","Hanaonazure","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hanaonazure/mgmt-v2017_11_03_preview","NA","NA","","","" "azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.6","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight?view=azure-java-stable","NA","","","" +"azure-mgmt-healthcareapis","com.microsoft.azure.healthcareapis.v2020_03_15","","1.0.0-beta","azure-mgmt-healthcareapis","","NA","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2019_12_12","","1.0.0-beta-1","azure-mgmt-hybridcompute","Hybrid Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hybridcompute/mgmt-v2019_12_12","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2020_08_02","","1.0.0-beta","azure-mgmt-hybridcompute","","NA","NA","NA","","","" "azure-mgmt-insights","com.microsoft.azure","","1.10.0-beta","azure-mgmt-insights","","NA","NA","NA","","TRUE","" @@ -354,6 +355,7 @@ "azure-mgmt-keyvault","com.microsoft.azure.keyvault.v2016_10_01","","1.0.0-beta-2","azure-mgmt-keyvault.v2016_10_01","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/keyvault/mgmt-v2015_06_01","NA","NA","","","" "azure-mgmt-kubernetesconfiguration","com.microsoft.azure.kubernetesconfiguration.v2019_11_01_preview","","1.0.0-beta-1","azure-mgmt-kubernetesconfiguration.v2019_11_01_preview","Kubernetes Configuration","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/kubernetesconfiguration/mgmt-v2019_11_01_preview","NA","NA","","","" "azure-mgmt-kusto","com.microsoft.azure.kusto.v2020_06_14","","1.0.0-beta","azure-mgmt-kusto","","NA","NA","NA","","","" +"azure-mgmt-kusto","com.microsoft.azure.kusto.v2020_09_18","","1.0.0-beta","azure-mgmt-kusto","","NA","NA","NA","","","" "azure-mgmt-kusto","com.microsoft.azure.kusto.v2018_09_07_preview","","1.0.0-beta","azure-mgmt-kusto.v2018_09_07_preview","Kusto","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/kusto/mgmt-v2018_09_07_preview","NA","NA","","","" "azure-mgmt-kusto","com.microsoft.azure.kusto.v2019_01_21","","1.0.0-beta","azure-mgmt-kusto.v2019_01_21","","NA","NA","NA","","","" "azure-mgmt-kusto","com.microsoft.azure.kusto.v2019_05_15","","1.0.0-beta","azure-mgmt-kusto.v2019_05_15","Kusto","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/kusto/mgmt-v2019_05_15","NA","NA","","","" @@ -363,7 +365,8 @@ "azure-mgmt-labservices","com.microsoft.azure.labservices.v2018_10_15","","1.0.0-beta","azure-mgmt-labservices.v2018_10_15","Labservices","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/labservices/mgmt-v2018_10_15","NA","NA","","","" "azure-mgmt-locks","com.microsoft.azure","1.36.3","","azure-mgmt-locks","","NA","NA","NA","","","" "azure-mgmt-locks","com.microsoft.azure.locks.v2016_09_01","","1.0.0-beta-3","azure-mgmt-locks.v2016_09_01","Locks","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/locks/mgmt-v2016_09_01","NA","NA","","","" -"azure-mgmt-loganalytics","com.microsoft.azure.loganalytics.v2020_03_01_preview","","1.0.0-beta","azure-mgmt-loganalytics","Loganalytics","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/loganalytics/mgmt-v2020_03_01_preview","NA","NA","","","" +"azure-mgmt-loganalytics","com.microsoft.azure.loganalytics.v2019_08_01_preview","","1.0.0-beta","azure-mgmt-loganalytics","","NA","NA","NA","","","" +"azure-mgmt-loganalytics","com.microsoft.azure.loganalytics.v2020_03_01_preview","","1.0.0-beta-1","azure-mgmt-loganalytics","Loganalytics","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/loganalytics/mgmt-v2020_03_01_preview","NA","NA","","","" "azure-mgmt-loganalytics","com.microsoft.azure.loganalytics.v2020_08_01","","1.0.0-beta","azure-mgmt-loganalytics","","NA","NA","NA","","","" "azure-mgmt-loganalytics","com.microsoft.azure.loganalytics.v2015_03_20","","1.0.0-beta","azure-mgmt-loganalytics.v2015_03_20","Loganalytics","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/loganalytics/mgmt-v2015_03_20","NA","NA","","","" "azure-mgmt-logic","com.microsoft.azure","","1.10.0-beta","azure-mgmt-logic","","NA","NA","NA","","TRUE","" @@ -519,44 +522,44 @@ "azure-profile-parent","com.microsoft.azure.profile_2018_03_01_hybrid","","1.0.0-beta-1","azure-profile-parent","Profile","https://github.com/Azure/azure-sdk-for-java/tree/master/profiles/2018-03-01-hybrid","NA","NA","","","" "azure-profile-parent","com.microsoft.azure.profile_2019_03_01_hybrid","","1.0.0-beta-1","azure-profile-parent","Profile","https://github.com/Azure/azure-sdk-for-java/tree/master/profiles/2019-03-01-hybrid","NA","NA","","","" "azure-relay","com.microsoft.azure","0.0.3","","azure-relay","","NA","NA","NA","","","" -"azure-resourcemanager","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager","","NA","NA","NA","","","" +"azure-resourcemanager","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager","","NA","","","","","" "azure-resourcemanager-parent","com.azure.resourcemanager","","2.0.0-beta.3","azure-resourcemanager-parent","","NA","NA","NA","","","" -"azure-resourcemanager-privatedns","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager-privatedns","","NA","NA","NA","","","" +"azure-resourcemanager-privatedns","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager-privatedns","","NA","","","","","" "azure-sdk-all","com.azure","1.0.0","","azure-sdk-all","","NA","NA","NA","","","" "azure-sdk-bom","com.azure","1.0.1","","azure-sdk-bom","Bom","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/boms/azure-sdk-bom","NA","NA","","","" "azure-sdk-parent","com.azure","1.6.0","","azure-sdk-parent","Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-sdk-parent","NA","NA","","","" "azure-sdk-template","com.azure","1.1.0","1.2.2-beta.1","azure-sdk-template","Template","template","","","","true","" -"azure-sdk-template","com.azure.android","","1.0.0-beta.1","azure-sdk-template","","NA","NA","NA","","","" +"azure-sdk-template","com.azure.android","","1.0.0-beta.1","azure-sdk-template","","NA","","NA","","","" "azure-sdk-template","com.microsoft.azure","1.0.1","","azure-sdk-template","Template","template","","NA","","true","" "azure-sdk-template-bom","com.azure","","1.0.0-beta.5","azure-sdk-template-bom","Bom","","NA","NA","","true","" "azure-search","com.azure","","11.0.0-beta.1","azure-search","Search","search","NA","","","","Replaced by: azure-search-documents" "azure-servicebus","com.microsoft.azure","3.4.0","","azure-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/servicebus/microsoft-azure-servicebus","NA","","","","Will be replaced by: azure-messaging-servicebus" "azure-servicebus-jms","com.microsoft.azure","0.0.5","","azure-servicebus-jms","","NA","NA","NA","","","" -"azure-servicebus-jms-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-servicebus-jms-spring-boot-starter","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-servicebus-jms","NA","NA","","","" +"azure-servicebus-jms-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-servicebus-jms-spring-boot-starter","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-servicebus-jms","","NA","","","" "azure-servicebus-spring-boot-autoconfigure","com.microsoft.azure","0.1.5","","azure-servicebus-spring-boot-autoconfigure","","NA","NA","NA","","","" "azure-servicebus-spring-boot-starter","com.microsoft.azure","2.2.5","","azure-servicebus-spring-boot-starter","","NA","NA","NA","","","" "azure-serviceruntime","com.microsoft.azure","0.9.8","","azure-serviceruntime","","NA","NA","NA","","","" "azure-sfmesh-maven-plugin","com.microsoft.azure","0.1.0","","azure-sfmesh-maven-plugin","","NA","NA","NA","","","" "azure-spark-archetype","com.microsoft.azure","0.1.0","","azure-spark-archetype","","NA","NA","NA","","","" -"azure-spring-boot","com.microsoft.azure","2.3.5","","azure-spring-boot","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot","NA","NA","","","" +"azure-spring-boot","com.microsoft.azure","2.3.5","","azure-spring-boot","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot","","","","","" "azure-spring-boot-bom","com.microsoft.azure","2.3.5","","azure-spring-boot-bom","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/boms/azure-spring-boot-bom","NA","NA","","","" "azure-spring-boot-dependencies","com.microsoft.azure","0.1.2","","azure-spring-boot-dependencies","","NA","NA","NA","","","" -"azure-spring-boot-metrics-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-metrics-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-metrics","NA","NA","","","" +"azure-spring-boot-metrics-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-metrics-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-metrics","","NA","","","" "azure-spring-boot-parent","com.microsoft.azure","2.3.2","","azure-spring-boot-parent","","NA","NA","NA","","","" -"azure-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter","NA","NA","","","" +"azure-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter","","NA","","","" "azure-spring-boot-starter-bom","com.microsoft.azure","0.1.7","","azure-spring-boot-starter-bom","","NA","NA","NA","","","" "azure-spring-boot-starter-parent","com.microsoft.azure","0.1.7","","azure-spring-boot-starter-parent","","NA","NA","NA","","","" "azure-spring-cloud-maven-plugin","com.microsoft.azure","1.3.0","","azure-spring-cloud-maven-plugin","","NA","NA","NA","","","" "azure-spring-common","com.microsoft.azure","0.1.7","","azure-spring-common","","NA","NA","NA","","","" "azure-spring-data-2-2-cosmos","com.azure","","3.0.0-beta.1","azure-spring-data-2-2-cosmos","","NA","NA","NA","","","" "azure-spring-data-2-3-cosmos","com.azure","","3.0.0-beta.1","azure-spring-data-2-3-cosmos","","NA","NA","NA","","","" -"azure-spring-data-cosmos","com.azure","3.0.0","3.0.0-beta.2","azure-spring-data-cosmos","","NA","NA","NA","","","" -"azure-spring-data-cosmos-core","com.azure","","3.0.0-beta.1","azure-spring-data-cosmos-core","","NA","NA","NA","","","" +"azure-spring-data-cosmos","com.azure","3.0.0","3.0.0-beta.2","azure-spring-data-cosmos","","NA","","","","","" +"azure-spring-data-cosmos-core","com.azure","","3.0.0-beta.1","azure-spring-data-cosmos-core","","NA","NA","","","","" "azure-sqldb-spark","com.microsoft.azure","1.0.2","","azure-sqldb-spark","","NA","NA","NA","","","" "azure-storage","com.microsoft.azure","8.6.5","","azure-storage","","NA","https://docs.microsoft.com/java/api/overview/azure/storage?view=azure-java-stable","NA","","","Replaced by: individual service packages 12.x" "azure-storage-android","com.microsoft.azure.android","2.0.0","","azure-storage-android","","NA","NA","NA","","","" "azure-storage-blob","com.microsoft.azure","11.0.1","","azure-storage-blob","Storage","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/microsoft-azure-storage-blob","","NA","","","Replaced by: azure-storage-blob 12.x" -"azure-storage-blob-changefeed","com.azure","","12.0.0-beta.3","azure-storage-blob-changefeed","Storage","storage","","NA","","","" +"azure-storage-blob-changefeed","com.azure","","12.0.0-beta.3","azure-storage-blob-changefeed","Storage","storage","","","","","" "azure-storage-blob-nio","com.azure","","12.0.0-beta.2","azure-storage-blob-nio","Storage","storage","","","","","" "azure-storage-file","com.azure","","12.0.0-preview.4","azure-storage-file","Storage","storage","https://docs.microsoft.com/java/api/overview/azure/storage-file-share-readme-pre?view=azure-java-preview","NA","","","Replaced by: azure-storage-file-share" "azure-storage-java","com.microsoft.azure","10","","azure-storage-java","","NA","NA","NA","","","" @@ -579,7 +582,7 @@ "bundler-maven-plugin","com.microsoft.azure","0.0.5","","bundler-maven-plugin","","NA","NA","NA","","","" "client-runtime","com.microsoft.azure","1.0.1","","client-runtime","","NA","NA","NA","","","" "azure-communication-calling","com.azure.android","","1.0.0-beta.2","Communication Calling","Communication","NA","NA","NA","","","" -"azure-communication-common","com.azure.android","","1.0.0-beta.1","Communication Common","Communication","NA","NA","NA","","","" +"azure-communication-common","com.azure.android","","1.0.0-beta.1","Communication Common","Communication","NA","","","","","" "digital-twin-device-client-preview","com.microsoft.azure.sdk.iot","1.0.0","","digital-twin-device-client-preview","","NA","NA","NA","","","" "digital-twin-service-client-preview","com.microsoft.azure.sdk.iot","1.0.0","","digital-twin-service-client-preview","","NA","NA","NA","","","" "documentdb-bulkexecutor","com.microsoft.azure","2.11.0","","documentdb-bulkexecutor","","NA","NA","NA","","","" @@ -618,7 +621,7 @@ "msal4j","com.microsoft.azure","1.7.1","","msal4j","","NA","NA","NA","","","" "msal4j-persistence-extension","com.microsoft.azure","1.0.0","","msal4j-persistence-extension","","NA","NA","NA","","","" "native-preview","com.microsoft.azure.servicefabric","1.0.0","","native-preview","","NA","NA","NA","","","" -"opentelemetry-exporters-azuremonitor","com.azure","","1.0.0-beta.1","opentelemetry-exporters-azuremonitor","","NA","NA","NA","","","" +"opentelemetry-exporters-azuremonitor","com.azure","","1.0.0-beta.1","opentelemetry-exporters-azuremonitor","","NA","NA","","","","" "project","com.microsoft.azure.sessionmanager","","1.0.0-beta.1","project","","NA","NA","NA","","","" "proton-j-azure-iot","com.microsoft.azure.iot","0.12.2","","proton-j-azure-iot","","NA","NA","NA","","","" "proton-j-azure-iot-dev","com.microsoft.azure.iot","0.12.3","","proton-j-azure-iot-dev","","NA","NA","NA","","","" @@ -648,18 +651,18 @@ "spring-cloud-azure","com.microsoft.azure","1.2.7","","spring-cloud-azure","","NA","NA","NA","","","" "spring-cloud-azure-appconfiguration-config","com.microsoft.azure","1.2.7","","spring-cloud-azure-appconfiguration-config","Spring","NA","NA","NA","","","" "spring-cloud-azure-appconfiguration-config-web","com.microsoft.azure","1.2.7","","spring-cloud-azure-appconfiguration-config-web","App Configuration","NA","NA","NA","","","" -"spring-cloud-azure-autoconfigure","com.microsoft.azure","1.2.8","","spring-cloud-azure-autoconfigure","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-autoconfigure","NA","NA","","","" -"spring-cloud-azure-context","com.microsoft.azure","1.2.8","","spring-cloud-azure-context","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-context","NA","NA","","","" +"spring-cloud-azure-autoconfigure","com.microsoft.azure","1.2.8","","spring-cloud-azure-autoconfigure","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-autoconfigure","","","","","" +"spring-cloud-azure-context","com.microsoft.azure","1.2.8","","spring-cloud-azure-context","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-context","","","","","" "spring-cloud-azure-dependencies","com.microsoft.azure","1.2.7","","spring-cloud-azure-dependencies","","NA","NA","NA","","","" -"spring-cloud-azure-eventhubs-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-eventhubs-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-eventhubs-stream-binder","NA","NA","","","" +"spring-cloud-azure-eventhubs-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-eventhubs-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-eventhubs-stream-binder","","","","","" "spring-cloud-azure-eventhub-stream-binder","com.microsoft.azure","","1.1.0.RC1","spring-cloud-azure-eventhub-stream-binder","","NA","NA","NA","","","" "spring-cloud-azure-feature-management","com.microsoft.azure","1.2.7","","spring-cloud-azure-feature-management","App Configuration","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appconfiguration/azure-spring-cloud-feature-management","NA","NA","","","" "spring-cloud-azure-feature-management-web","com.microsoft.azure","1.2.7","","spring-cloud-azure-feature-management-web","App Configuration","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appconfiguration/azure-spring-cloud-feature-management-web","NA","NA","","","" "spring-cloud-azure-keyvault-config","com.microsoft.azure","1.2.0","","spring-cloud-azure-keyvault-config","","NA","NA","NA","","","" -"spring-cloud-azure-messaging","com.microsoft.azure","1.2.8","","spring-cloud-azure-messaging","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-messaging","NA","NA","","","" -"spring-cloud-azure-servicebus-queue-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-queue-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-queue-stream-binder","NA","NA","","","" -"spring-cloud-azure-servicebus-stream-binder-core","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-stream-binder-core","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-stream-binder-core","NA","NA","","","" -"spring-cloud-azure-servicebus-topic-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-topic-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-topic-stream-binder","NA","NA","","","" +"spring-cloud-azure-messaging","com.microsoft.azure","1.2.8","","spring-cloud-azure-messaging","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-messaging","NA","","","","" +"spring-cloud-azure-servicebus-queue-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-queue-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-queue-stream-binder","","","","","" +"spring-cloud-azure-servicebus-stream-binder-core","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-stream-binder-core","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-stream-binder-core","","","","","" +"spring-cloud-azure-servicebus-topic-stream-binder","com.microsoft.azure","1.2.8","","spring-cloud-azure-servicebus-topic-stream-binder","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-servicebus-topic-stream-binder","","","","","" "spring-cloud-azure-starter-cache","com.microsoft.azure","","1.0.0.M1","spring-cloud-azure-starter-cache","","NA","NA","NA","","","" "spring-cloud-azure-starter-eventhub","com.microsoft.azure","","1.0.0.M2","spring-cloud-azure-starter-eventhub","","NA","NA","NA","","","" "spring-cloud-azure-starters","com.microsoft.azure","1.2.7","","spring-cloud-azure-starters","","NA","NA","NA","","","" @@ -667,35 +670,35 @@ "spring-cloud-azure-starter-sql-sqlserver","com.microsoft.azure","","1.0.0.M1","spring-cloud-azure-starter-sql-sqlserver","","NA","NA","NA","","","" "spring-cloud-azure-starter-storage","com.microsoft.azure","","1.0.0.M1","spring-cloud-azure-starter-storage","","NA","NA","NA","","","" "spring-cloud-azure-starter-storage-queue","com.microsoft.azure","","1.0.0.M2","spring-cloud-azure-starter-storage-queue","","NA","NA","NA","","","" -"spring-cloud-azure-storage","com.microsoft.azure","1.2.8","","spring-cloud-azure-storage","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-storage","NA","NA","","","" +"spring-cloud-azure-storage","com.microsoft.azure","1.2.8","","spring-cloud-azure-storage","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-storage","","","","","" "spring-cloud-azure-stream-binder","com.microsoft.azure","1.2.7","","spring-cloud-azure-stream-binder","","NA","NA","NA","","","" -"spring-cloud-azure-stream-binder-test","com.microsoft.azure","1.2.8","","spring-cloud-azure-stream-binder-test","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-stream-binder-test","NA","NA","","","" -"spring-cloud-azure-telemetry","com.microsoft.azure","1.2.8","","spring-cloud-azure-telemetry","","NA","NA","NA","","","" +"spring-cloud-azure-stream-binder-test","com.microsoft.azure","1.2.8","","spring-cloud-azure-stream-binder-test","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-stream-binder-test","NA","","","","" +"spring-cloud-azure-telemetry","com.microsoft.azure","1.2.8","","spring-cloud-azure-telemetry","","NA","NA","","","","" "spring-cloud-starter-azure-appconfiguration-config","com.microsoft.azure","1.2.7","","spring-cloud-starter-azure-appconfiguration-config","Spring","NA","NA","NA","","","" "spring-cloud-starter-azure-eventhub","com.microsoft.azure","","1.1.0.RC1","spring-cloud-starter-azure-eventhub","","NA","NA","NA","","","" "spring-cloud-starter-azure-eventhub-kafka","com.microsoft.azure","","1.1.0.RC1","spring-cloud-starter-azure-eventhub-kafka","","NA","NA","NA","","","" -"spring-cloud-starter-azure-eventhubs","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-eventhubs","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-eventhubs","NA","NA","","","" -"spring-cloud-starter-azure-eventhubs-kafka","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-eventhubs-kafka","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-eventhubs-kafka","NA","NA","","","" +"spring-cloud-starter-azure-eventhubs","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-eventhubs","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-eventhubs","","NA","","","" +"spring-cloud-starter-azure-eventhubs-kafka","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-eventhubs-kafka","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-eventhubs-kafka","","NA","","","" "spring-cloud-starter-azure-keyvault-config","com.microsoft.azure","1.2.0","","spring-cloud-starter-azure-keyvault-config","","NA","NA","NA","","","" -"spring-cloud-starter-azure-servicebus","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-servicebus","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-servicebus","NA","NA","","","" +"spring-cloud-starter-azure-servicebus","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-servicebus","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-servicebus","","NA","","","" "spring-cloud-starter-azure-spring-cloud-client","com.microsoft.azure","2.3.0","","spring-cloud-starter-azure-spring-cloud-client","","NA","NA","NA","","","" -"spring-cloud-starter-azure-storage-queue","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-storage-queue","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-storage-queue","NA","NA","","","" +"spring-cloud-starter-azure-storage-queue","com.microsoft.azure","1.2.8","","spring-cloud-starter-azure-storage-queue","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-cloud-starter-storage-queue","","NA","","","" "spring-data-azure-cosmosdb-documentdb","com.microsoft.azure","0.1.1","","spring-data-azure-cosmosdb-documentdb","","NA","NA","NA","","","" "spring-data-azure-documentdb","com.microsoft.azure","0.1.7","","spring-data-azure-documentdb","","NA","NA","NA","","","" "spring-data-cosmosdb","com.microsoft.azure","","3.0.0.M1","spring-data-cosmosdb","","NA","NA","NA","","","" "spring-data-documentdb","com.microsoft.azure","2.0.3","","spring-data-documentdb","","NA","NA","NA","","","" "spring-data-gremlin-boot-starter","com.microsoft.azure","2.3.2","","spring-data-gremlin-boot-starter","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-data-gremlin","NA","NA","","","" "spring-integration-azure","com.microsoft.azure","1.2.7","","spring-integration-azure","","NA","NA","NA","","","" -"spring-integration-azure-core","com.microsoft.azure","1.2.8","","spring-integration-azure-core","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-core","NA","NA","","","" -"spring-integration-azure-test","com.microsoft.azure","1.2.8","","spring-integration-azure-test","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-test","NA","NA","","","" +"spring-integration-azure-core","com.microsoft.azure","1.2.8","","spring-integration-azure-core","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-core","NA","","","","" +"spring-integration-azure-test","com.microsoft.azure","1.2.8","","spring-integration-azure-test","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-test","NA","","","","" "spring-integration-eventhub","com.microsoft.azure","","1.1.0.RC1","spring-integration-eventhub","","NA","NA","NA","","","" -"spring-integration-eventhubs","com.microsoft.azure","1.2.8","","spring-integration-eventhubs","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-eventhubs","NA","NA","","","" -"spring-integration-servicebus","com.microsoft.azure","1.2.8","","spring-integration-servicebus","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-servicebus","NA","NA","","","" -"spring-integration-storage-queue","com.microsoft.azure","1.2.8","","spring-integration-storage-queue","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-storage-queue","NA","NA","","","" +"spring-integration-eventhubs","com.microsoft.azure","1.2.8","","spring-integration-eventhubs","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-eventhubs","","","","","" +"spring-integration-servicebus","com.microsoft.azure","1.2.8","","spring-integration-servicebus","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-servicebus","","","","","" +"spring-integration-storage-queue","com.microsoft.azure","1.2.8","","spring-integration-storage-queue","Spring","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-integration-storage-queue","","","","","" "spring-jms-starter-azure-servicebus","com.microsoft.azure","1.2.0","","spring-jms-starter-azure-servicebus","","NA","NA","NA","","","" "spring-social-microsoft-graph","com.microsoft.azure","0.1.7","","spring-social-microsoft-graph","","NA","NA","NA","","","" -"spring-starter-azure-cache","com.microsoft.azure","1.2.8","","spring-starter-azure-cache","","NA","NA","NA","","","" -"spring-starter-azure-storage","com.microsoft.azure","1.2.8","","spring-starter-azure-storage","","NA","NA","NA","","","" +"spring-starter-azure-cache","com.microsoft.azure","1.2.8","","spring-starter-azure-cache","","NA","","NA","","","" +"spring-starter-azure-storage","com.microsoft.azure","1.2.8","","spring-starter-azure-storage","","NA","","NA","","","" "azure-storage-internal-avro","com.azure","12.0.0","12.0.1-beta.2","Storage Internal Avro","Storage","storage","NA","NA","","","" "system-fabric-preview","com.microsoft.azure.servicefabric","1.0.0","","system-fabric-preview","","NA","NA","NA","","","" "tpm-provider","com.microsoft.azure.sdk.iot.provisioning.security","1.1.2","","tpm-provider","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 37ec7e3e2a6..ec9369ec5f8 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -22,12 +22,12 @@ "@azure/service-bus","1.1.10","7.0.0-preview.7","Service Bus","Service Bus","servicebus","NA","","client","","Will be replaced by: @azure/service-bus 7.x" "@azure/storage-blob","12.2.1","","Storage - Blobs","Storage","storage","","","client","","" "@azure/storage-file-datalake","12.1.1","","Storage - File Data Lake","Storage","storage","","","client","","" -"@azure/storage-file-share","12.2.0","","Storage - File Shares","Storage","storage","","","client","","" +"@azure/storage-file-share","12.2.0","12.3.0-beta.1","Storage - File Shares","Storage","storage","","","client","","" "@azure/storage-queue","12.1.0","","Storage - Queues","Storage","storage","","","client","","" "@azure/data-tables","","1.0.0-beta.2","Tables","Tables","tables","","","client","","" "@azure/ai-text-analytics","5.0.1","5.1.0-beta.2","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: @azure/cognitiveservices-textanalytics" "@autorest/autorest","3.0.6187","","@autorest/autorest","Autorest","https://github.com/Azure/autorest/tree/autorest-3.0.6187/autorest","NA","NA","","","" -"@autorest/az","1.5.1","","@autorest/az","Az","https://github.com/Azure/autorest.az/tree/1.4.0","NA","NA","","","" +"@autorest/az","1.6.0","","@autorest/az","Az","https://github.com/Azure/autorest.az/tree/1.4.0","NA","NA","","","" "@autorest/azure-functions-csharp","","0.1.0-preview","@autorest/azure-functions-csharp","","NA","NA","NA","","","" "@autorest/azure-functions-java","","0.0.2-Preview","@autorest/azure-functions-java","","NA","NA","NA","","","" "@autorest/azure-functions-python","","0.1.0-preview","@autorest/azure-functions-python","","NA","NA","NA","","","" @@ -45,7 +45,7 @@ "@autorest/test","0.1.69","","@autorest/test","Test","https://github.com/Azure/autorest.test","NA","NA","","","" "@autorest/test-server","3.0.27","","@autorest/test-server","","NA","NA","NA","","","" "@azure/abort-controller","1.0.1","","@azure/abort-controller","Core","core","NA","","","","" -"@azure/ai-anomaly-detector","","3.0.0-beta.2","@azure/ai-anomaly-detector","","NA","NA","NA","","","Will replace: @azure/cognitiveservices-anomalydetector" +"@azure/ai-anomaly-detector","","3.0.0-beta.2","@azure/ai-anomaly-detector","","NA","","","","","Will replace: @azure/cognitiveservices-anomalydetector" "@azure/amqp-common","","1.0.0-preview.17","@azure/amqp-common","Core","core","NA","NA","","","" "@azure/applicationinsights-query","1.1.0","","@azure/applicationinsights-query","Application Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/applicationinsights-query","NA","","","","" "@azure/arm-advisor","2.0.0","","@azure/arm-advisor","Advisor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/advisor/arm-advisor","https://docs.microsoft.com/javascript/api/overview/azure/advisor?view=azure-node-latest","NA","","","" @@ -61,9 +61,10 @@ "@azure/arm-automation","10.0.0","","@azure/arm-automation","Automation","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/automation/arm-automation","https://docs.microsoft.com/javascript/api/overview/azure/automation?view=azure-node-latest","NA","","","" "@azure/arm-avs","1.0.0","","@azure/arm-avs","Avs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/avs/arm-avs","NA","NA","","","" "@azure/arm-azurestack","2.0.0","","@azure/arm-azurestack","Azurestack","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/azurestack/arm-azurestack","NA","NA","","","" +"@azure/arm-azurestackhci","1.0.0","","@azure/arm-azurestackhci","","NA","NA","NA","","","" "@azure/arm-batch","4.0.0","","@azure/arm-batch","Batch","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batch/arm-batch","NA","","","","" "@azure/arm-batchai","2.1.0","","@azure/arm-batchai","Batchai","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batchai/arm-batchai","https://docs.microsoft.com/javascript/api/overview/azure/batchai?view=azure-node-latest","","","","" -"@azure/arm-billing","2.2.0","","@azure/arm-billing","Billing","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/billing/arm-billing","https://docs.microsoft.com/javascript/api/overview/azure/billing?view=azure-node-latest","","","","" +"@azure/arm-billing","3.0.0","","@azure/arm-billing","Billing","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/billing/arm-billing","https://docs.microsoft.com/javascript/api/overview/azure/billing?view=azure-node-latest","NA","","","" "@azure/arm-botservice","1.0.0","","@azure/arm-botservice","Botservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/botservice/arm-botservice","NA","","","","" "@azure/arm-cdn","5.0.0","","@azure/arm-cdn","Cdn","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cdn/arm-cdn","https://docs.microsoft.com/javascript/api/overview/azure/cdn?view=azure-node-latest","NA","","","" "@azure/arm-cognitiveservices","5.2.0","","@azure/arm-cognitiveservices","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/arm-cognitiveservices","https://docs.microsoft.com/javascript/api/overview/azure/cognitive-services?view=azure-node-latest","NA","","","" @@ -99,12 +100,12 @@ "@azure/arm-hdinsight","0.19.0","","@azure/arm-hdinsight","Hdinsight","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/hdinsight/arm-hdinsight","https://docs.microsoft.com/javascript/api/overview/azure/hdinsight?view=azure-node-latest","NA","","","" "@azure/arm-hybridcompute","2.0.0","","@azure/arm-hybridcompute","","NA","NA","NA","","","" "@azure/arm-iotcentral","3.1.0","","@azure/arm-iotcentral","Iotcentral","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iotcentral/arm-iotcentral","NA","NA","","","" -"@azure/arm-iothub","3.0.0","","@azure/arm-iothub","Iothub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iothub/arm-iothub","https://docs.microsoft.com/javascript/api/overview/azure/iot-hub?view=azure-node-latest","","","","" +"@azure/arm-iothub","4.0.0","","@azure/arm-iothub","Iothub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iothub/arm-iothub","https://docs.microsoft.com/javascript/api/overview/azure/iot-hub?view=azure-node-latest","NA","","","" "@azure/arm-iotspaces","1.1.0","","@azure/arm-iotspaces","Iotspaces","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iotspaces/arm-iotspaces","NA","","","","" "@azure/arm-keyvault","1.2.1","","@azure/arm-keyvault","Key Vault","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/arm-keyvault","NA","","","","" "@azure/arm-keyvault-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-keyvault-profile-2019-03-01-hybrid","Key Vault","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/arm-keyvault-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-kubernetesconfiguration","2.0.0","","@azure/arm-kubernetesconfiguration","Kubernetes Configuration","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/kubernetesconfiguration/arm-kubernetesconfiguration","NA","NA","","","" -"@azure/arm-kusto","5.0.0","","@azure/arm-kusto","Kusto","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/kusto/arm-kusto","NA","NA","","","" +"@azure/arm-kusto","6.0.0","","@azure/arm-kusto","Kusto","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/kusto/arm-kusto","NA","NA","","","" "@azure/arm-labservices","1.0.0","","@azure/arm-labservices","Lab Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/labservices/arm-labservices","NA","","","","" "@azure/arm-links","1.0.2","","@azure/arm-links","Links","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/links/arm-links","NA","","","","" "@azure/arm-locks","1.1.0","","@azure/arm-locks","Locks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/locks/arm-locks","NA","","","","" @@ -167,7 +168,7 @@ "@azure/arm-storsimple1200series","1.1.0","","@azure/arm-storsimple1200series","Storsimple1200series","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storsimple1200series/arm-storsimple1200series","NA","","","","" "@azure/arm-storsimple8000series","1.1.0","","@azure/arm-storsimple8000series","Storsimple8000series","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storsimple8000series/arm-storsimple8000series","NA","","","","" "@azure/arm-streamanalytics","1.1.1","","@azure/arm-streamanalytics","Streamanalytics","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/streamanalytics/arm-streamanalytics","NA","","","","" -"@azure/arm-subscriptions","2.0.0","","@azure/arm-subscriptions","Subscription","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions","NA","","","","" +"@azure/arm-subscriptions","3.0.0","","@azure/arm-subscriptions","Subscription","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions","NA","NA","","","" "@azure/arm-subscriptions-profile-hybrid-2019-03-01","1.0.0","","@azure/arm-subscriptions-profile-hybrid-2019-03-01","Subscription","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/subscription/arm-subscriptions-profile-hybrid-2019-03-01","NA","","","","" "@azure/arm-support","1.0.0","","@azure/arm-support","Support","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/support/arm-support","NA","NA","","","" "@azure/arm-synapse","2.0.0","","@azure/arm-synapse","Synapse","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/synapse/arm-synapse","NA","NA","","","" @@ -507,30 +508,30 @@ "@azure/core-client","","1.0.0-alpha.20200925.1","@azure/core-client","","NA","NA","NA","","","" "@azure/core-https","","1.0.0-alpha.20200925.1","@azure/core-https","","NA","NA","NA","","","" "@azure/core-lro","1.0.2","","@azure/core-lro","Core","core","NA","","","","" -"@azure/core-paging","1.1.3","","@azure/core-paging","Core","core","NA","","","","" -"@azure/core-tracing","","1.0.0-preview.9","@azure/core-tracing","Core","core","NA","","","","" +"@azure/core-paging","1.1.3","","@azure/core-paging","Core","core","","","","","" +"@azure/core-tracing","","1.0.0-preview.9","@azure/core-tracing","Core","core","","","","","" "@azure/core-xml","","1.0.0-alpha.20200925.1","@azure/core-xml","","NA","NA","NA","","","" "@azure/cosmos-language-service","0.0.4","","@azure/cosmos-language-service","Cosmos DB","https://github.com/Azure/cosmos-sql-language-service","NA","NA","","","" "@azure/cosmos-sign","1.0.2","","@azure/cosmos-sign","Cosmos DB","https://github.com/Azure/cosmos-sign/tree/v1.0.2","NA","NA","","","" "@azure/digitaltwins","","1.0.0-alpha.20200903.1","@azure/digitaltwins","","NA","NA","NA","","","" -"@azure/digital-twins","","1.0.0-preview.1","@azure/digital-twins","","NA","NA","NA","","","" +"@azure/digital-twins","","1.0.0-preview.1","@azure/digital-twins","","NA","","","","","" "@azure/eslint-plugin-azure-sdk","2.0.1","","@azure/eslint-plugin-azure-sdk","","NA","NA","NA","","","" "@azure/event-processor-host","2.1.1","","@azure/event-processor-host","Event Hub","eventhub","NA","","","","" "@azure/graph","5.0.1","","@azure/graph","Graphrbac","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/graphrbac/graph","NA","NA","","","" "@azure/loganalytics","0.2.0","","@azure/loganalytics","Operational Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/operationalinsights/loganalytics","NA","","","","" "@azure/logger","1.0.0","","@azure/logger","Core","core","NA","","","","" "@azure/logger-js","1.3.2","","@azure/logger-js","Logger","https://github.com/Azure/logger-js","NA","NA","","","" -"@azure/monitor-opentelemetry-exporter","","1.0.0-preview.5","@azure/monitor-opentelemetry-exporter","Monitor","https://github.com/microsoft/opentelemetry-azure-monitor-js/tree/1.0.0-preview.4/packages/azure-opentelemetry-exporter","NA","NA","","","" +"@azure/monitor-opentelemetry-exporter","","1.0.0-preview.6","@azure/monitor-opentelemetry-exporter","Monitor","https://github.com/microsoft/opentelemetry-azure-monitor-js/tree/1.0.0-preview.4/packages/azure-opentelemetry-exporter","","","","","" "@azure/ms-rest-azure-env","2.0.0","","@azure/ms-rest-azure-env","Msrest","https://github.com/Azure/ms-rest-azure-env","NA","NA","","","" "@azure/ms-rest-azure-js","2.0.1","","@azure/ms-rest-azure-js","Msrest","https://github.com/Azure/ms-rest-azure-js","NA","NA","","","" "@azure/ms-rest-browserauth","1.0.0","","@azure/ms-rest-browserauth","Msrest","https://github.com/Azure/ms-rest-browserauth","NA","NA","","","" -"@azure/ms-rest-js","2.0.8","","@azure/ms-rest-js","Msrest","https://github.com/Azure/ms-rest-js","NA","NA","","","" +"@azure/ms-rest-js","2.1.0","","@azure/ms-rest-js","Msrest","https://github.com/Azure/ms-rest-js","NA","NA","","","" "@azure/ms-rest-nodeauth","3.0.6","","@azure/ms-rest-nodeauth","Msrest","https://github.com/Azure/ms-rest-nodeauth","NA","NA","","","" "@azure/ng-deploy","0.2.3","","@azure/ng-deploy","Ng Deploy","https://github.com/Azure/ng-deploy-azure","NA","NA","","","" "@azure/oad","0.8.2","","@azure/oad","Oad","https://github.com/Azure/openapi-diff","NA","NA","","","" "@azure/openapi-markdown","0.9.2","","@azure/openapi-markdown","Openapi Markdown","https://github.com/Azure/openapi-markdown","NA","NA","","","" "@azure/publish-pipeline-result","0.0.2","","@azure/publish-pipeline-result","","NA","NA","NA","","","" -"@azure/rest-api-specs-scripts","0.13.1","","@azure/rest-api-specs-scripts","Rest Api","https://github.com/Azure/rest-api-specs-scripts","NA","NA","","","" +"@azure/rest-api-specs-scripts","0.13.3","","@azure/rest-api-specs-scripts","Rest Api","https://github.com/Azure/rest-api-specs-scripts","NA","NA","","","" "@azure/search","11.0.0-preview.1","","@azure/search","","NA","NA","","","","Replaced by: @azure/search-documents" "@azure/servicefabric","5.0.0","","@azure/servicefabric","","NA","https://docs.microsoft.com/javascript/api/overview/azure/service-fabric?view=azure-node-latest","NA","","","" "@azure/storage-blob-changefeed","","12.0.0-preview.2","@azure/storage-blob-changefeed","Storage","storage","","","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index b805a46c3fd..11a455635bc 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -31,23 +31,23 @@ "azure-mgmt-communication","","1.0.0b2","Resource Management - Communication Service","Communication","communication","","","mgmt","","" "azure-mgmt-compute","17.0.0","","Resource Management - Compute","Compute","compute","","","mgmt","","" "azure-mgmt-eventhub","8.0.0","","Resource Management - EventHub","EventHub","eventhub","","","mgmt","","" -"azure-mgmt-keyvault","7.0.0","","Resource Management - KeyVault","KeyVault","keyvault","","","mgmt","","" +"azure-mgmt-keyvault","8.0.0","","Resource Management - KeyVault","KeyVault","keyvault","","","mgmt","","" "azure-mgmt-monitor","1.0.1","","Resource Management - Monitor","Monitor","monitor","","","mgmt","","" "azure-mgmt-network","16.0.0","","Resource Management - Network","Network","network","","","mgmt","","" "azure-mgmt-resource","15.0.0","","Resource Management - Resources","Resources","resources","","","mgmt","","" "azure-mgmt-storage","16.0.0","","Resource Management - Storage","Storage","storage","","","mgmt","","" "azure-mgmt-streamanalytics","","1.0.0rc1","Resource Management - Stream Analytics","Stream Analytics","streamanalytics","NA","","mgmt","","" "azure","5.0.0","","azure","","NA","NA","NA","","true","" -"azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","NA","","","","Will replace: azure-cognitiveservices-anomalydetector" +"azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","","","","","Will replace: azure-cognitiveservices-anomalydetector" "azure-ai-nspkg","1.0.0","","azure-ai-nspkg","Text Analytics","textanalytics","NA","NA","","","" "azure-applicationinsights","0.1.0","","azure-applicationinsights","Application Insights","https://github.com/Azure/azure-sdk-for-python/tree/azure-applicationinsights_0.1.0/azure-applicationinsights","NA","","","","" "azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" -"azure-cognitiveservices-anomalydetector","0.3.0","","azure-cognitiveservices-anomalydetector","Cognitive Services","cognitiveservices","NA","","","","Will be replaced by: azure-ai-anomalydetector" +"azure-cognitiveservices-anomalydetector","0.3.0","","azure-cognitiveservices-anomalydetector","Cognitive Services","cognitiveservices","","","","","Will be replaced by: azure-ai-anomalydetector" "azure-cognitiveservices-formrecognizer","0.1.1","","azure-cognitiveservices-formrecognizer","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cognitiveservices/azure-cognitiveservices-formrecognizer","NA","","","","Replaced by: azure-ai-formrecognizer" "azure-cognitiveservices-inkrecognizer","","1.0.0b1","azure-cognitiveservices-inkrecognizer","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-knowledge-nspkg","3.0.0","","azure-cognitiveservices-knowledge-nspkg","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cognitiveservices/azure-cognitiveservices-knowledge-nspkg/","NA","NA","","","" "azure-cognitiveservices-knowledge-qnamaker","0.2.0","","azure-cognitiveservices-knowledge-qnamaker","Cognitive Services","cognitiveservices","NA","","","","" -"azure-cognitiveservices-language-luis","0.7.0","","azure-cognitiveservices-language-luis","Cognitive Services","cognitiveservices","NA","","","","" +"azure-cognitiveservices-language-luis","0.7.0","","azure-cognitiveservices-language-luis","Cognitive Services","cognitiveservices","","","","","" "azure-cognitiveservices-language-nspkg","3.0.1","","azure-cognitiveservices-language-nspkg","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cognitiveservices/azure-cognitiveservices-language-nspkg/","NA","NA","","","" "azure-cognitiveservices-language-spellcheck","2.0.0","","azure-cognitiveservices-language-spellcheck","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-language-textanalytics","0.2.0","","azure-cognitiveservices-language-textanalytics","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cognitiveservices/azure-cognitiveservices-language-textanalytics/","NA","","","","Replaced by: azure-ai-textanalytics" @@ -65,14 +65,14 @@ "azure-cognitiveservices-search-websearch","2.0.0","","azure-cognitiveservices-search-websearch","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-vision-computervision","0.7.0","","azure-cognitiveservices-vision-computervision","Cognitive Services","cognitiveservices","NA","","","","" "azure-cognitiveservices-vision-contentmoderator","1.0.0","","azure-cognitiveservices-vision-contentmoderator","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/azure-cognitiveservices-vision-contentmoderator_1.0.0/azure-cognitiveservices-vision-contentmoderator/","NA","","","","" -"azure-cognitiveservices-vision-customvision","3.0.0","","azure-cognitiveservices-vision-customvision","Cognitive Services","cognitiveservices","NA","","","","" -"azure-cognitiveservices-vision-face","0.4.1","","azure-cognitiveservices-vision-face","Cognitive Services","cognitiveservices","NA","","","","" +"azure-cognitiveservices-vision-customvision","3.0.0","","azure-cognitiveservices-vision-customvision","Cognitive Services","cognitiveservices","","","","","" +"azure-cognitiveservices-vision-face","0.4.1","","azure-cognitiveservices-vision-face","Cognitive Services","cognitiveservices","","","","","" "azure-cognitiveservices-vision-nspkg","3.0.1","","azure-cognitiveservices-vision-nspkg","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/azure-cognitiveservices-vision-nspkg_3.0.1/azure-cognitiveservices-vision-nspkg/","NA","NA","","","" "azure-common","1.1.25","","azure-common","Core","core","NA","","","","" -"azure-communication-nspkg","","0.0.0b1","azure-communication-nspkg","","NA","NA","NA","","","" -"azure-core-tracing-opencensus","","1.0.0b6","azure-core-tracing-opencensus","Core","core","NA","","","","" -"azure-core-tracing-opentelemetry","","1.0.0b7","azure-core-tracing-opentelemetry","Core","core","NA","","","","" -"azure-data-nspkg","1.0.0","","azure-data-nspkg","","NA","NA","NA","","","" +"azure-communication-nspkg","","0.0.0b1","azure-communication-nspkg","","NA","","NA","","","" +"azure-core-tracing-opencensus","","1.0.0b6","azure-core-tracing-opencensus","Core","core","","","","","" +"azure-core-tracing-opentelemetry","","1.0.0b7","azure-core-tracing-opentelemetry","Core","core","","","","","" +"azure-data-nspkg","1.0.0","","azure-data-nspkg","","NA","","NA","","","" "azure-devtools","1.2.0","","azure-devtools","Devtools","https://github.com/Azure/azure-python-devtools/tree/1.2.0/src/azure_devtools","NA","NA","","","" "azure-graphrbac","0.61.1","","azure-graphrbac","Graph RBAC","graphrbac","https://docs.microsoft.com/python/api/overview/azure/graph-rbac?view=azure-python","","","","" "azure-keyvault","4.1.0","","azure-keyvault","Key Vault","keyvault","NA","NA","","","Metapackage containing: azure-keyvault-keys
azure-keyvault-secrets
azure-keyvault-certificates" @@ -86,31 +86,31 @@ "azure-mgmt-appplatform","1.0.0","","azure-mgmt-appplatform","Appplatform","appplatform","NA","","","","" "azure-mgmt-attestation","0.1.0","","azure-mgmt-attestation","Attestation","attestation","NA","","","","" "azure-mgmt-authorization","0.61.0","","azure-mgmt-authorization","Authorization","authorization","https://docs.microsoft.com/python/api/overview/azure/authorization?view=azure-python","","","","" -"azure-mgmt-automanage","","1.0.0b1","azure-mgmt-automanage","","NA","NA","NA","","","" +"azure-mgmt-automanage","","1.0.0b1","azure-mgmt-automanage","","NA","","","","","" "azure-mgmt-automation","0.1.1","","azure-mgmt-automation","Automation","automation","NA","","","","" -"azure-mgmt-avs","0.1.0","","azure-mgmt-avs","","NA","NA","","","","" +"azure-mgmt-avs","0.1.0","","azure-mgmt-avs","","NA","","","","","" "azure-mgmt-azurestack","0.1.0","","azure-mgmt-azurestack","Azurestack","azurestack","NA","","","","" -"azure-mgmt-azurestackhci","","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","NA","","","" +"azure-mgmt-azurestackhci","","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","","","","" "azure-mgmt-batch","9.0.0","","azure-mgmt-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" "azure-mgmt-batchai","2.0.0","","azure-mgmt-batchai","Batchai","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batchai_2.0.0/azure-mgmt-batchai/","https://docs.microsoft.com/python/api/overview/azure/batchai?view=azure-python","NA","","","" "azure-mgmt-billing","0.2.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing?view=azure-python","","","","" "azure-mgmt-botservice","0.2.0","","azure-mgmt-botservice","Botservice","botservice","NA","","","","" -"azure-mgmt-cdn","5.1.0","","azure-mgmt-cdn","CDN","cdn","https://docs.microsoft.com/python/api/overview/azure/cdn?view=azure-python","","","","" -"azure-mgmt-cognitiveservices","6.2.0","","azure-mgmt-cognitiveservices","Cognitive Services","cognitiveservices","NA","","","","" +"azure-mgmt-cdn","5.1.0","","azure-mgmt-cdn","CDN","cdn","","","","","" +"azure-mgmt-cognitiveservices","6.3.0","","azure-mgmt-cognitiveservices","Cognitive Services","cognitiveservices","NA","","","","" "azure-mgmt-commerce","1.0.1","","azure-mgmt-commerce","commerce","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-commerce_1.0.1/azure-mgmt-commerce/","https://docs.microsoft.com/python/api/overview/azure/commerce?view=azure-python","","","","" "azure-mgmt-common","0.20.0","","azure-mgmt-common","","NA","NA","NA","","","" "azure-mgmt-consumption","3.0.0","","azure-mgmt-consumption","Consumption","consumption","https://docs.microsoft.com/python/api/overview/azure/consumption?view=azure-python","","","","" -"azure-mgmt-containerinstance","2.0.0","","azure-mgmt-containerinstance","Container Instance","containerinstance","https://docs.microsoft.com/python/api/overview/azure/containerinstance?view=azure-python","","","","" +"azure-mgmt-containerinstance","2.0.0","","azure-mgmt-containerinstance","Container Instance","containerinstance","","","","","" "azure-mgmt-containerregistry","2.8.0","","azure-mgmt-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-containerregistry_2.8.0/azure-mgmt-containerregistry/","https://docs.microsoft.com/python/api/overview/azure/container-registry?view=azure-python","NA","","","" -"azure-mgmt-containerservice","9.4.0","","azure-mgmt-containerservice","Container Service","containerservice","NA","","","","" -"azure-mgmt-core","1.2.1","","azure-mgmt-core","Core","core","NA","","","","" +"azure-mgmt-containerservice","9.4.0","","azure-mgmt-containerservice","Container Service","containerservice","","","","","" +"azure-mgmt-core","1.2.1","","azure-mgmt-core","Core","core","","","","","" "azure-mgmt-cosmosdb","1.0.0","","azure-mgmt-cosmosdb","Cosmos DB","cosmos","https://docs.microsoft.com/python/api/overview/azure/cosmosdb?view=azure-python","","","","" "azure-mgmt-costmanagement","0.2.0","","azure-mgmt-costmanagement","Costmanagement","costmanagement","NA","","","","" "azure-mgmt-customproviders","0.1.0","","azure-mgmt-customproviders","Custom Providers","customproviders","NA","","","","" "azure-mgmt-databox","0.2.0","","azure-mgmt-databox","Databox","databox","NA","","","","" "azure-mgmt-databoxedge","0.1.0","","azure-mgmt-databoxedge","Databoxedge","databoxedge","NA","","","","" "azure-mgmt-databricks","0.1.0","","azure-mgmt-databricks","Databricks","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-databricks_0.1.0/azure-mgmt-databricks/","NA","","","","" -"azure-mgmt-datafactory","0.13.0","","azure-mgmt-datafactory","Datafactory","datafactory","https://docs.microsoft.com/python/api/overview/azure/datafactory?view=azure-python","","","","" +"azure-mgmt-datafactory","0.13.0","","azure-mgmt-datafactory","Datafactory","datafactory","","","","","" "azure-mgmt-datalake-analytics","0.6.0","","azure-mgmt-datalake-analytics","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-analytics_0.6.0/azure-mgmt-datalake-analytics/","https://docs.microsoft.com/python/api/overview/azure/data-lake-analytics?view=azure-python","","","","" "azure-mgmt-datalake-nspkg","3.0.1","","azure-mgmt-datalake-nspkg","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-nspkg_3.0.1/azure-mgmt-datalake-nspkg/","NA","NA","","","" "azure-mgmt-datalake-store","0.5.0","","azure-mgmt-datalake-store","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-store_0.5.0/azure-mgmt-datalake-store/","https://docs.microsoft.com/python/api/overview/azure/data-lake-store?view=azure-python","","","","" @@ -126,18 +126,18 @@ "azure-mgmt-eventgrid","2.2.0","","azure-mgmt-eventgrid","Event Grid","eventgrid","NA","","","","" "azure-mgmt-frontdoor","0.3.0","","azure-mgmt-frontdoor","Network","network","NA","","","","" "azure-mgmt-hanaonazure","0.14.0","","azure-mgmt-hanaonazure","Hanaon Azure","hanaonazure","NA","","","","" -"azure-mgmt-hdinsight","1.7.0","","azure-mgmt-hdinsight","Hdinsight","hdinsight","https://docs.microsoft.com/python/api/overview/azure/hdinsight?view=azure-python","","","","" +"azure-mgmt-hdinsight","1.7.0","","azure-mgmt-hdinsight","Hdinsight","hdinsight","","","","","" "azure-mgmt-healthcareapis","0.1.0","","azure-mgmt-healthcareapis","Healthcareapis","healthcareapis","NA","","","","" "azure-mgmt-hybridcompute","2.0.0","","azure-mgmt-hybridcompute","HybridCompute","hybridcompute","NA","","","","" "azure-mgmt-hybridkubernetes","0.1.0","","azure-mgmt-hybridkubernetes","Hybrid Kubernetes","hybridkubernetes","NA","","","","" "azure-mgmt-imagebuilder","0.4.0","","azure-mgmt-imagebuilder","Compute","compute","NA","","","","" -"azure-mgmt-iotcentral","3.1.0","","azure-mgmt-iotcentral","IotHub","iothub","NA","","","","" +"azure-mgmt-iotcentral","3.1.0","","azure-mgmt-iotcentral","IotHub","iothub","","","","","" "azure-mgmt-iothub","0.12.0","","azure-mgmt-iothub","IotHub","iothub","https://docs.microsoft.com/python/api/overview/azure/iot?view=azure-python","","","","" "azure-mgmt-iothubprovisioningservices","0.2.0","","azure-mgmt-iothubprovisioningservices","IotHub","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-iothubprovisioningservices_0.2.0/azure-mgmt-iothubprovisioningservices/","NA","","","","" "azure-mgmt-kubernetesconfiguration","0.2.0","","azure-mgmt-kubernetesconfiguration","KubernetesConfiguration","kubernetesconfiguration","NA","","","","" -"azure-mgmt-kusto","0.9.0","","azure-mgmt-kusto","Kusto","kusto","NA","","","","" +"azure-mgmt-kusto","0.9.0","","azure-mgmt-kusto","Kusto","kusto","","","","","" "azure-mgmt-labservices","0.1.1","","azure-mgmt-labservices","Labservices","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-labservices_0.1.1/azure-mgmt-labservices","NA","","","","" -"azure-mgmt-loganalytics","1.0.0","","azure-mgmt-loganalytics","Loganalytics","loganalytics","NA","","","","" +"azure-mgmt-loganalytics","1.0.0","","azure-mgmt-loganalytics","Loganalytics","loganalytics","","","","","" "azure-mgmt-logic","3.0.0","","azure-mgmt-logic","logic","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-logic_3.0.0/azure-mgmt-logic/","https://docs.microsoft.com/python/api/overview/azure/logic-apps?view=azure-python","NA","","","" "azure-mgmt-machinelearningcompute","0.4.1","","azure-mgmt-machinelearningcompute","Machine Learning","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-machinelearningcompute_0.4.1/azure-mgmt-machinelearningcompute/","NA","","","","" "azure-mgmt-machinelearningservices","0.1.0","","azure-mgmt-machinelearningservices","Machine Learning","machinelearning","NA","","","","" @@ -150,7 +150,7 @@ "azure-mgmt-media","2.2.0","","azure-mgmt-media","Media","media","https://docs.microsoft.com/python/api/overview/azure/media-services?view=azure-python","","","","" "azure-mgmt-mixedreality","0.2.0","","azure-mgmt-mixedreality","Mixedreality","mixedreality","https://docs.microsoft.com/python/api/overview/azure/mixed-reality?view=azure-python","","","","" "azure-mgmt-msi","1.0.0","","azure-mgmt-msi","Resources","resources","NA","","","","" -"azure-mgmt-netapp","0.13.0","","azure-mgmt-netapp","Netapp","netapp","NA","","","","" +"azure-mgmt-netapp","0.13.0","","azure-mgmt-netapp","Netapp","netapp","","","","","" "azure-mgmt-notificationhubs","2.1.0","","azure-mgmt-notificationhubs","Notificationhubs","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-notificationhubs_2.1.0/azure-mgmt-notificationhubs/","https://docs.microsoft.com/python/api/overview/azure/notification-hubs?view=azure-python","","","","" "azure-mgmt-nspkg","3.0.2","","azure-mgmt-nspkg","Core","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-nspkg_3.0.2/azure-mgmt-nspkg/","NA","NA","","","" "azure-mgmt-operationsmanagement","0.1.0","","azure-mgmt-operationsmanagement","Operations Management","operationsmanagement","NA","","","","" @@ -164,27 +164,27 @@ "azure-mgmt-recoveryservicesbackup","0.8.0","","azure-mgmt-recoveryservicesbackup","Recovery Services","recoveryservices","https://docs.microsoft.com/python/api/overview/azure/recovery-services-backup?view=azure-python","","","","" "azure-mgmt-redhatopenshift","0.1.0","","azure-mgmt-redhatopenshift","Redhatopenshift","redhatopenshift","NA","","","","" "azure-mgmt-redis","6.0.0","","azure-mgmt-redis","Redis","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-redis_6.0.0/azure-mgmt-redis/","https://docs.microsoft.com/python/api/overview/azure/redis?view=azure-python","","","","" -"azure-mgmt-regionmove","","1.0.0b1","azure-mgmt-regionmove","","NA","NA","NA","","","" +"azure-mgmt-regionmove","","1.0.0b1","azure-mgmt-regionmove","","NA","NA","","","","" "azure-mgmt-relay","0.2.0","","azure-mgmt-relay","Relay","relay","NA","","","","" "azure-mgmt-reservations","0.8.0","","azure-mgmt-reservations","Reservations","reservations","NA","","","","" "azure-mgmt-resourcegraph","2.0.0","","azure-mgmt-resourcegraph","Resources","resources","NA","","","","" -"azure-mgmt-resourcemover","","1.0.1b1","azure-mgmt-resourcemover","","NA","NA","NA","","","" +"azure-mgmt-resourcemover","","1.0.1b1","azure-mgmt-resourcemover","","NA","NA","","","","" "azure-mgmt-scheduler","2.0.0","","azure-mgmt-scheduler","Scheduler","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-scheduler_2.0.0/azure-mgmt-scheduler/","https://docs.microsoft.com/python/api/overview/azure/scheduler?view=azure-python","NA","","","" "azure-mgmt-search","3.0.0","","azure-mgmt-search","Search","search","https://docs.microsoft.com/python/api/overview/azure/search?view=azure-python","","","","" -"azure-mgmt-security","0.4.1","","azure-mgmt-security","Security","security","NA","","","","" +"azure-mgmt-security","0.4.1","","azure-mgmt-security","Security","security","","","","","" "azure-mgmt-serialconsole","0.1.0","","azure-mgmt-serialconsole","Serial Console","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-serialconsole_0.1.0/azure-mgmt-serialconsole/","NA","","","","" "azure-mgmt-servermanager","2.0.0","","azure-mgmt-servermanager","Server Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servermanager_2.0.0/azure-mgmt-servermanager/","NA","","","","" "azure-mgmt-servicebus","1.0.0","","azure-mgmt-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servicebus_0.6.0/azure-mgmt-servicebus/","NA","","","","" "azure-mgmt-servicefabric","0.5.0","","azure-mgmt-servicefabric","Service Fabric","servicefabric","NA","","","","" "azure-mgmt-signalr","0.4.0","","azure-mgmt-signalr","Signalr","signalr","NA","","","","" -"azure-mgmt-sql","0.21.0","","azure-mgmt-sql","Sql","sql","https://docs.microsoft.com/python/api/overview/azure/sql?view=azure-python","","","","" +"azure-mgmt-sql","0.22.0","","azure-mgmt-sql","Sql","sql","","","","","" "azure-mgmt-sqlvirtualmachine","0.5.0","","azure-mgmt-sqlvirtualmachine","Sql","sql","NA","","","","" "azure-mgmt-storagecache","0.3.0","","azure-mgmt-storagecache","Storage","storage","NA","","","","" "azure-mgmt-storageimportexport","0.1.0","","azure-mgmt-storageimportexport","Storage","storage","NA","","","","" "azure-mgmt-storagesync","0.2.0","","azure-mgmt-storagesync","Storage","storage","NA","","","","" -"azure-mgmt-subscription","0.6.0","","azure-mgmt-subscription","Subscription","subscription","NA","","","","" +"azure-mgmt-subscription","0.7.0","","azure-mgmt-subscription","Subscription","subscription","NA","","","","" "azure-mgmt-support","1.0.0","","azure-mgmt-support","Support","support","NA","","","","" -"azure-mgmt-synapse","0.4.0","","azure-mgmt-synapse","Synapse","synapse","NA","","","","" +"azure-mgmt-synapse","0.4.0","","azure-mgmt-synapse","Synapse","synapse","","","","","" "azure-mgmt-timeseriesinsights","0.2.0","","azure-mgmt-timeseriesinsights","Timeseries Insights","timeseriesinsights","NA","","","","" "azure-mgmt-trafficmanager","0.51.0","","azure-mgmt-trafficmanager","Traffic Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-trafficmanager_0.51.0/azure-mgmt-trafficmanager","https://docs.microsoft.com/python/api/overview/azure/traffic-manager?view=azure-python","","","","" "azure-mgmt-vmwarecloudsimple","0.2.0","","azure-mgmt-vmwarecloudsimple","Compute","compute","NA","","","","" @@ -197,16 +197,16 @@ "azure-servicefabric","7.1.0.45","","azure-servicefabric","Service Fabric","servicefabric","NA","","","","" "azure-servicemanagement-legacy","0.20.7","","azure-servicemanagement-legacy","Core","core","NA","NA","","","" "azure-storage","0.37.0","","azure-storage","Storage","https://github.com/Azure/azure-storage-python","NA","NA","","","" -"azure-storage-blob-changefeed","","12.0.0b2","azure-storage-blob-changefeed","Storage","storage","NA","","","","" +"azure-storage-blob-changefeed","","12.0.0b2","azure-storage-blob-changefeed","Storage","storage","","","","","" "azure-storage-common","2.1.0","","azure-storage-common","Storage","https://github.com/Azure/azure-storage-python/tree/v2.1.0-common/azure-storage-common","NA","NA","","","" "azure-storage-file","2.1.0","","azure-storage-file","Storage","https://github.com/Azure/azure-storage-python/tree/v2.1.0-file/azure-storage-file","NA","NA","","","Replaced by: azure-storage-file-share 12.x" "azure-storage-nspkg","3.1.0","","azure-storage-nspkg","Storage","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-nspkg","NA","NA","","","" "azure-synapse","0.1.0","","azure-synapse","Synapse","synapse","NA","","","","" -"azure-synapse-accesscontrol","0.3.0","","azure-synapse-accesscontrol","Synapse","synapse","NA","","","","" -"azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","NA","","","","" +"azure-synapse-accesscontrol","0.3.0","","azure-synapse-accesscontrol","Synapse","synapse","","","","","" +"azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" -"azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","NA","","","","" -"azure-template","0.0.17","0.1.0b7","azure-template","Template","","NA","NA","","true","" +"azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","","","","","" +"azure-template","0.0.17","0.1.0b7","azure-template","Template","","NA","","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" From d048c9cebf686845eec37caf67bcc6a8007e3545 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 13 Oct 2020 14:59:45 -0700 Subject: [PATCH 20/87] Update package index with latest published versions (#1924) Update package index with latest published versions From 40e044894036638f119a882118c362f0072defd9 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Tue, 13 Oct 2020 17:58:28 -0700 Subject: [PATCH 21/87] We dont have quick links anymore (#1923) --- eng/scripts/release-template/android.md | 4 +--- eng/scripts/release-template/c.md | 2 +- eng/scripts/release-template/cpp.md | 2 +- eng/scripts/release-template/dotnet.md | 4 +--- eng/scripts/release-template/ios.md | 4 +--- eng/scripts/release-template/java.md | 4 +--- eng/scripts/release-template/js.md | 4 +--- eng/scripts/release-template/python.md | 4 +--- releases/2020-10/js.md | 5 ----- 9 files changed, 8 insertions(+), 25 deletions(-) diff --git a/eng/scripts/release-template/android.md b/eng/scripts/release-template/android.md index bda489b9deb..7594c82e2ee 100644 --- a/eng/scripts/release-template/android.md +++ b/eng/scripts/release-template/android.md @@ -47,9 +47,7 @@ To use the latest GA and beta libraries, refer to the dependency information bel If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-android/issues). -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/c.md b/eng/scripts/release-template/c.md index 39977afa7f3..4fb05523a3f 100644 --- a/eng/scripts/release-template/c.md +++ b/eng/scripts/release-template/c.md @@ -32,7 +32,7 @@ $> If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-c/issues). -## Changelog +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/cpp.md b/eng/scripts/release-template/cpp.md index 2f675e76de8..236fc750dcb 100644 --- a/eng/scripts/release-template/cpp.md +++ b/eng/scripts/release-template/cpp.md @@ -32,7 +32,7 @@ $> If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-cpp/issues). -## Changelog +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/dotnet.md b/eng/scripts/release-template/dotnet.md index 7eb65747fbd..eee67483fb5 100644 --- a/eng/scripts/release-template/dotnet.md +++ b/eng/scripts/release-template/dotnet.md @@ -32,9 +32,7 @@ $> dotnet install PACKAGE --version whatever If you have a bug or feature request for one of the libraries, please [file an issue in our repo](https://github.com/Azure/azure-sdk-for-net/issues/new/choose). -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/ios.md b/eng/scripts/release-template/ios.md index 86ef736f1aa..aff45b0897c 100644 --- a/eng/scripts/release-template/ios.md +++ b/eng/scripts/release-template/ios.md @@ -50,9 +50,7 @@ Next, add each client library you wish to use in a target to the target's array If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-ios/issues). -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/java.md b/eng/scripts/release-template/java.md index 89a7914b650..cd6f8c7844d 100644 --- a/eng/scripts/release-template/java.md +++ b/eng/scripts/release-template/java.md @@ -32,9 +32,7 @@ To use the GA and beta libraries, refer to the Maven dependency information belo If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-java/issues). -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/js.md b/eng/scripts/release-template/js.md index bada5784e55..8e44febbd78 100644 --- a/eng/scripts/release-template/js.md +++ b/eng/scripts/release-template/js.md @@ -32,9 +32,7 @@ $> npm install @azure/package-name If you have a bug or feature request for one of the libraries, please post an issue at the [azure-sdk-for-js repository](https://github.com/azure/azure-sdk-for-js/issues) -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/eng/scripts/release-template/python.md b/eng/scripts/release-template/python.md index b6707970a0e..ea172f6b14b 100644 --- a/eng/scripts/release-template/python.md +++ b/eng/scripts/release-template/python.md @@ -32,9 +32,7 @@ $> pip install azure-packagename If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-python/issues). -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +## Release highlights ### _Package name_ diff --git a/releases/2020-10/js.md b/releases/2020-10/js.md index 5b6ccd3f59e..1b067a780b7 100644 --- a/releases/2020-10/js.md +++ b/releases/2020-10/js.md @@ -41,11 +41,6 @@ $> npm install @azure/storage-blob@next If you have a bug or feature request for one of the libraries, please post an issue at the [azure-sdk-for-js repository](https://github.com/azure/azure-sdk-for-js/issues) -## Changelog - -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: - - ### Azure Identity #### @azure/identity [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/CHANGELOG.md) From a6005e3ed75303b114d54a4c93dadcc6fb89c316 Mon Sep 17 00:00:00 2001 From: Lin Jian Date: Wed, 14 Oct 2020 14:51:23 +0800 Subject: [PATCH 22/87] remove coming soon (#1925) --- releases/2020-10/js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/2020-10/js.md b/releases/2020-10/js.md index 1b067a780b7..aba1e0d38a0 100644 --- a/releases/2020-10/js.md +++ b/releases/2020-10/js.md @@ -108,7 +108,7 @@ We're releasing a new preview of our Azure Search library. This update adds supp - Azure Search SDK has been regenerated using the latest swaggers. This enables new properties for IndexParameters. -### Azure Storage (Coming Soon) +### Azure Storage Updated Azure Storage Service API version to 2020-02-10. From 3f223b961e031bc0df24a825ee7e25afa629beb0 Mon Sep 17 00:00:00 2001 From: Rick Winter Date: Wed, 14 Oct 2020 10:34:39 -0700 Subject: [PATCH 23/87] Update C and C++ release notes (#1926) * Update C and C++ release notes * Fix repo casing in template --- _includes/refs.md | 2 ++ eng/scripts/release-template/c.md | 4 +-- eng/scripts/release-template/cpp.md | 4 +-- releases/2020-10/c.md | 32 +++++++++++++++--------- releases/2020-10/cpp.md | 38 ++++++++++++++++++----------- 5 files changed, 51 insertions(+), 29 deletions(-) diff --git a/_includes/refs.md b/_includes/refs.md index 67e3e557644..b74141a1b86 100644 --- a/_includes/refs.md +++ b/_includes/refs.md @@ -23,6 +23,8 @@ [java-latest-releases]: {{ site.baseurl }}{% link releases/latest/java.md %} [js-latest-releases]: {{ site.baseurl }}{% link releases/latest/js.md %} [python-latest-releases]: {{ site.baseurl }}{% link releases/latest/python.md %} +[cpp-latest-releases]: {{ site.baseurl }}{% link releases/latest/c.md %} +[c-latest-releases]: {{ site.baseurl }}{% link releases/latest/cpp.md %} [README-EXAMPLE]: https://github.com/Azure/azure-sdk/blob/master/docs/policies/README-EXAMPLE.md [README-TEMPLATE]: https://github.com/Azure/azure-sdk/blob/master/docs/policies/README-TEMPLATE.md diff --git a/eng/scripts/release-template/c.md b/eng/scripts/release-template/c.md index 4fb05523a3f..6bacd339668 100644 --- a/eng/scripts/release-template/c.md +++ b/eng/scripts/release-template/c.md @@ -3,7 +3,7 @@ title: Azure SDK for Embedded C (%%MMMM yyyy%%) layout: post tags: c sidebar: releases_sidebar -repository: azure/azure-sdk-for-c +repository: Azure/azure-sdk-for-c --- The Azure SDK team is pleased to make available the %%MMMM yyyy%% client library release. @@ -30,7 +30,7 @@ $> ## Feedback -If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-c/issues). +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/Azure/azure-sdk-for-c/issues). ## Release highlights diff --git a/eng/scripts/release-template/cpp.md b/eng/scripts/release-template/cpp.md index 236fc750dcb..fa564a64548 100644 --- a/eng/scripts/release-template/cpp.md +++ b/eng/scripts/release-template/cpp.md @@ -3,7 +3,7 @@ title: Azure SDK for C++ (%%MMMM yyyy%%) layout: post tags: C++ cpp sidebar: releases_sidebar -repository: azure/azure-sdk-for-cpp +repository: Azure/azure-sdk-for-cpp --- The Azure SDK team is pleased to make available the %%MMMM yyyy%% client library release. @@ -30,7 +30,7 @@ $> ## Feedback -If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-cpp/issues). +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/Azure/azure-sdk-for-cpp/issues). ## Release highlights diff --git a/releases/2020-10/c.md b/releases/2020-10/c.md index 88ee61238a4..054894c5ad5 100644 --- a/releases/2020-10/c.md +++ b/releases/2020-10/c.md @@ -10,35 +10,45 @@ The Azure SDK team is pleased to make available the October 2020 client library #### GA -- _Add packages_ +- Azure Core +- Azure IoT #### Updates -- _Add packages_ - -#### Beta - -- _Add packages_ +- Azure Core ## Installation Instructions To install any of our packages, copy and paste the following commands into a terminal: ```bash -$> +git clone https://github.com/Azure/azure-sdk-for-c + +git checkout ``` ## Feedback -If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-c/issues). +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/Azure/azure-sdk-for-c/issues). ## Changelog -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-c/blob/master/CHANGELOG.md) + +#### New Features + +- Added an az_log_classification_filter_fn callback function type along with a setter az_log_set_classification_filter_callback(), allowing the caller to filter log messages. + +#### Bug Fixes + +- Fix bounds check while processing incomplete JSON string containing escaped characters to avoid out-of-range access. +- Fix Windows to use /MT when building the CRT and static libraries. +- Fail gracefully on invalid/incomplete HTTP response processing by avoiding reading from size 0 span. -### _Package name_ +#### Other Changes and Improvements -- Major changes only! +- Add precondition check to validate clients are initialized before passed in to public APIs. +- Add high-level and simplified az_core.h and az_iot.h files for simpler include experience for customers. ## Latest Releases diff --git a/releases/2020-10/cpp.md b/releases/2020-10/cpp.md index b2279382f19..e2132b8abea 100644 --- a/releases/2020-10/cpp.md +++ b/releases/2020-10/cpp.md @@ -8,37 +8,47 @@ repository: azure/azure-sdk-for-cpp The Azure SDK team is pleased to make available the October 2020 client library release. -#### GA - -- _Add packages_ - -#### Updates - -- _Add packages_ - #### Beta -- _Add packages_ +- Azure Core +- Azure Storage Blobs +- Azure Storage Files DataLake +- Azure Storage Files Shares ## Installation Instructions To install any of our packages, copy and paste the following commands into a terminal: ```bash -$> +git clone https://github.com/Azure/azure-sdk-for-cpp + +git checkout ``` ## Feedback -If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-cpp/issues). +If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/Azure/azure-sdk-for-cpp/issues). ## Changelog -Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: +### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-c/blob/master/CHANGELOG.md) + +#### New Features + +#### Bug Fixes + +- Fixed a case where path was not properly encoded +- Switched to select() in libcurl for polling operations + +### Azure Storage Blobs [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/storage/azure-storage-blobs/CHANGELOG.md#100-beta2-2020-09-09) + +### Azure Storage Files DataLake [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/storage/azure-storage-files-datalake/CHANGELOG.md#100-beta2-2020-09-09) + +#### New Features -### _Package name_ +- Support for SetExpiry -- Major changes only! +### Azure Storage Files Shares [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/storage/azure-storage-files-shares/CHANGELOG.md#100-beta2-2020-09-09) ## Latest Releases From 484089feb63b57df5481f1615b2af74f0c80e420 Mon Sep 17 00:00:00 2001 From: Cala Zubair <60439897+czubair@users.noreply.github.com> Date: Wed, 14 Oct 2020 11:20:16 -0700 Subject: [PATCH 24/87] Update index.md removed Embedded C (#1922) * Update index.md * Update index.md * Apply suggestions from code review * Update index.md Co-authored-by: Jon Gallant <2163001+jongio@users.noreply.github.com> --- releases/2020-10/index.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index a850eca5e02..80e57774c47 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -11,9 +11,11 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( ## Release Highlights -* Azure Metrics Advisor Client Libraries Beta 1 release -* Opentelemetry Exporter Azure Monitor client Beta 1 release -* Azure Communication Services Chat, Azure Communication Services Common and Azure Core Beta 1 releases for Android and iOS. +* Azure Metrics Advisor Client Libraries Beta 1 release. Read more in this blog post: [Detect anomalies in your data with Metrics Advisor](https://devblogs.microsoft.com/azure-sdk/metrics-advisor-anomaly-detection/) +* OpenTelemetry Exporter Azure Monitor client Beta 1 release +* Azure Core Beta 1 release for Android and iOS +* Azure Communication Services Chat and Azure Communication Services Common Beta 1 releases for Android and iOS +* Azure C++ Beta for Core and Storage. Read more in this blog post: [Introducing the new Azure SDK for C++ Beta](https://devblogs.microsoft.com/azure-sdk/cppintro/) ## Release Notes From 320dff48c56f299f80b3d5f34340e8c069d55896 Mon Sep 17 00:00:00 2001 From: vcolin7 Date: Wed, 14 Oct 2020 14:35:20 -0500 Subject: [PATCH 25/87] Added links for Android and iOS in the October release notes index. (#1929) --- releases/2020-10/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index 80e57774c47..ee6627dce3d 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -26,3 +26,5 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( * [Python release notes](python.md) * [C++ release notes](cpp.md) * [Embedded C release notes](c.md) +* [Android release notes](android.md) +* [iOS C release notes](ios.md) From 40593945edbf22bbd14b4cdf33dcd863ed587f79 Mon Sep 17 00:00:00 2001 From: vcolin7 Date: Wed, 14 Oct 2020 15:47:43 -0500 Subject: [PATCH 26/87] Fixed type for iOS link in October Release notes. (#1930) --- releases/2020-10/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/2020-10/index.md b/releases/2020-10/index.md index ee6627dce3d..02d0386325d 100644 --- a/releases/2020-10/index.md +++ b/releases/2020-10/index.md @@ -27,4 +27,4 @@ You can find links to packages, code, and docs on our [Azure SDK Releases page]( * [C++ release notes](cpp.md) * [Embedded C release notes](c.md) * [Android release notes](android.md) -* [iOS C release notes](ios.md) +* [iOS release notes](ios.md) From 84c9d12e36f7a870b138d68466d6f28bc7fcb1c4 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 14 Oct 2020 14:46:13 -0700 Subject: [PATCH 27/87] Update package index with latest published versions (#1931) Update package index with latest published versions --- _data/releases/latest/dotnet-packages.csv | 10 +++++----- _data/releases/latest/java-packages.csv | 8 +++++--- _data/releases/latest/js-packages.csv | 8 ++++---- _data/releases/latest/python-packages.csv | 4 ++-- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 59dd6871008..3b5b8660637 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -42,7 +42,7 @@ "Azure.ResourceManager.Resources","","1.0.0-preview.2","Resource Management - Resources","Resources","resources","","","mgmt","","" "Azure.ResourceManager.Storage","","1.0.0-preview.2","Resource Management - Storage","Storage","storage","","","mgmt","","" "Azure.AI.InkRecognizer","","1.0.0-preview.1","Azure.AI.InkRecognizer","","NA","NA","NA","","true","" -"Azure.AI.MetricsAdvisor","","1.0.0-beta.1","Azure.AI.MetricsAdvisor","","NA","NA","","","","" +"Azure.AI.MetricsAdvisor","","1.0.0-beta.1","Azure.AI.MetricsAdvisor","","NA","","","","","" "Azure.Analytics.Synapse.AccessControl","","1.0.0-preview.2","Azure.Analytics.Synapse.AccessControl","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Artifacts","","1.0.0-preview.4","Azure.Analytics.Synapse.Artifacts","Synapse","synapse","","","","","" "Azure.Analytics.Synapse.Spark","","1.0.0-preview.2","Azure.Analytics.Synapse.Spark","Synapse","synapse","","","","","" @@ -57,7 +57,7 @@ "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" "Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.26","Azure.Template","","NA","","","","true","" +"Azure.Template","","1.0.3-beta.29","Azure.Template","","NA","","","","true","" "Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" @@ -71,7 +71,7 @@ "Microsoft.Azure.AppService.ApiApps.Common","0.9.36","","Microsoft.Azure.AppService.ApiApps.Common","","NA","NA","NA","","","" "Microsoft.Azure.AppService.ApiApps.Service","0.9.64","","Microsoft.Azure.AppService.ApiApps.Service","","NA","NA","NA","","","" "Microsoft.Azure.Attestation","","0.10.0-preview","Microsoft.Azure.Attestation","Attestation","attestation","NA","","","","" -"Microsoft.Azure.Batch","14.0.0","","Microsoft.Azure.Batch","Batch","batch","https://docs.microsoft.com/dotnet/api/overview/azure/batch?view=azure-dotnet","","","","" +"Microsoft.Azure.Batch","14.0.0","","Microsoft.Azure.Batch","Batch","batch","","","","","" "Microsoft.Azure.Batch.Apps.Cryptography","1.1.1.4","","Microsoft.Azure.Batch.Apps.Cryptography","","NA","NA","NA","","","" "Microsoft.Azure.Batch.Conventions.Files","3.5.1","","Microsoft.Azure.Batch.Conventions.Files","Batch","batch","NA","","","","" "Microsoft.Azure.Batch.FileStaging","8.3.0","","Microsoft.Azure.Batch.FileStaging","Batch","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/batch/Microsoft.Azure.Batch.FileStaging","NA","","","","" @@ -410,8 +410,8 @@ "Microsoft.Azure.Connectors.Zendesk","","0.0.1-alpha","Microsoft.Azure.Connectors.Zendesk","","NA","NA","NA","","","" "Microsoft.Azure.Connectors.Zenkraft","","0.0.1-alpha","Microsoft.Azure.Connectors.Zenkraft","","NA","NA","NA","","","" "Microsoft.Azure.ContainerRegistry","","1.0.0-preview.1","Microsoft.Azure.ContainerRegistry","Container Registry","containerregistry","NA","","","","" -"Microsoft.Azure.Core.Spatial","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial","","NA","NA","","","","" -"Microsoft.Azure.Core.Spatial.NewtonsoftJson","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial.NewtonsoftJson","","NA","NA","","","","" +"Microsoft.Azure.Core.Spatial","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial","","NA","","","","","" +"Microsoft.Azure.Core.Spatial.NewtonsoftJson","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial.NewtonsoftJson","","NA","","","","","" "Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb?view=azure-dotnet","NA","","","Will be replaced by: Azure.Cosmos" "Microsoft.Azure.Cosmos.Direct","3.14.0","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" "Microsoft.Azure.Cosmos.Encryption","","1.0.0-preview6","Microsoft.Azure.Cosmos.Encryption","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/encryption/1.0.0-preview4/Microsoft.Azure.Cosmos.Encryption","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 98e107a0014..4b6c6c5d324 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -26,7 +26,7 @@ "azure-security-keyvault-certificates","com.azure","4.1.2","4.2.0-beta.2","Key Vault - Certificates","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-certificates" "azure-security-keyvault-keys","com.azure","4.2.2","4.3.0-beta.2","Key Vault - Keys","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-keys" "azure-security-keyvault-secrets","com.azure","4.2.2","4.3.0-beta.2","Key Vault - Secrets","Key Vault","keyvault","","","client","","Replaces: azure-keyvault-secrets" -"azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" +"azure-ai-metricsadvisor","com.azure","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","","","client","","" "azure-data-schemaregistry-avro","com.azure","","1.0.0-beta.4","Schema Registry Avro","Data Schemaregistry","schemaregistry","","","client","","" "azure-messaging-servicebus","com.azure","","7.0.0-beta.6","Service Bus","Service Bus","servicebus","","","client","","Will replace: azure-servicebus" "azure-storage-blob","com.azure","12.8.0","12.9.0-beta.2","Storage - Blobs","Storage","storage","","","client","","Replaces: azure-storage-blob 11.x" @@ -248,6 +248,7 @@ "azure-mgmt-avs","com.microsoft.azure.avs.v2019_08_09_preview","","1.0.0-beta","azure-mgmt-avs","Avs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/avs/mgmt-v2019_08_09_preview","NA","NA","","","" "azure-mgmt-avs","com.microsoft.azure.avs.v2020_03_20","","1.0.0-beta","azure-mgmt-avs","Avs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/avs/mgmt-v2020_03_20","NA","NA","","","" "azure-mgmt-azurestack","com.microsoft.azure.azurestack.v2017_06_01","","1.0.0-beta-1","azure-mgmt-azurestack.v2017_06_01","Azure Stack","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/azurestack/mgmt-v2017_06_01","NA","NA","","","" +"azure-mgmt-azurestackhci","com.microsoft.azure.azurestackhci.v2020_10_01","","1.0.0-beta","azure-mgmt-azurestackhci","","NA","NA","NA","","","" "azure-mgmt-batch","com.microsoft.azure","1.36.3","","azure-mgmt-batch","","NA","NA","NA","","","" "azure-mgmt-batchai","com.microsoft.azure","1.36.3","","azure-mgmt-batchai","","NA","NA","NA","","","" "azure-mgmt-batchai","com.microsoft.azure.batchai.v2017_09_01_preview","","1.0.0-beta","azure-mgmt-batchai.v2017_09_01_preview","Batchai","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batchai/mgmt-v2017_09_01_preview","NA","NA","","","" @@ -317,7 +318,7 @@ "azure-mgmt-devtestlab","com.microsoft.azure","","1.10.0-beta","azure-mgmt-devtestlab","","NA","NA","NA","","TRUE","" "azure-mgmt-devtestlabs","com.microsoft.azure.devtestlabs.v2018_09_15","","1.0.0-beta","azure-mgmt-devtestlabs.v2018_09_15","Devtestlabs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/devtestlabs/mgmt-v2018_09_15","NA","NA","","","" "azure-mgmt-digitaltwins","com.microsoft.azure.digitaltwins.v2020_03_01_preview","","1.0.0-beta","azure-mgmt-digitaltwins","Digitaltwins","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/digitaltwins/mgmt-v2020_03_01_preview","NA","NA","","","" -"azure-mgmt-digitaltwins","com.microsoft.azure.digitaltwins.v2020_10_31","","1.0.0-beta","azure-mgmt-digitaltwins","","NA","NA","NA","","","" +"azure-mgmt-digitaltwins","com.microsoft.azure.digitaltwins.v2020_10_31","","1.0.0-beta-1","azure-mgmt-digitaltwins","","NA","NA","NA","","","" "azure-mgmt-dns","com.microsoft.azure","1.36.3","","azure-mgmt-dns","","NA","https://docs.microsoft.com/java/api/overview/azure/dns?view=azure-java-stable","NA","","","" "azure-mgmt-dns","com.microsoft.azure.dns.v2016_04_01","","1.0.0-beta-2","azure-mgmt-dns.v2016_04_01","Dns","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/dns/mgmt-v2016_04_01","NA","NA","","","" "azure-mgmt-documentdb","com.microsoft.azure","1.1.2","","azure-mgmt-documentdb","","NA","NA","NA","","TRUE","" @@ -379,6 +380,7 @@ "azure-mgmt-mariadb","com.microsoft.azure.mariadb.v2020_01_01","","1.0.0-beta","azure-mgmt-mariadb","","NA","NA","NA","","","" "azure-mgmt-mariadb","com.microsoft.azure.mariadb.v2018_06_01","","1.0.0-beta-1","azure-mgmt-mariadb.v2018_06_01","Mariadb","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/mariadb/mgmt-v2018_06_01","NA","NA","","","" "azure-mgmt-marketplaceordering","com.microsoft.azure.marketplaceordering.v2015_06_01","","1.0.0-beta","azure-mgmt-marketplaceordering.v2015_06_01","Market Placeordering","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/marketplaceordering/mgmt-v2015_06_01","NA","NA","","","" +"azure-mgmt-media","com.microsoft.azure.mediaservices.v2020_05_01","","1.0.0-beta","azure-mgmt-media","","NA","NA","NA","","","" "azure-mgmt-media","com.microsoft.azure.mediaservices.v2015_10_01","","1.0.0-beta-1","azure-mgmt-media.v2015_10_01","Media","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/mediaservices/mgmt-v2015_10_01","NA","NA","","","" "azure-mgmt-media","com.microsoft.azure.media-2018-03-30-preview","","1.0.0-beta-1","azure-mgmt-media.v2018_03_30","","NA","NA","NA","","","" "azure-mgmt-media","com.microsoft.azure.mediaservices.v2018_03_30_preview","","1.0.0-beta-3","azure-mgmt-media.v2018_03_30_preview","Media","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/mediaservices/mgmt-v2018_03_30_preview","NA","NA","","","" @@ -621,7 +623,7 @@ "msal4j","com.microsoft.azure","1.7.1","","msal4j","","NA","NA","NA","","","" "msal4j-persistence-extension","com.microsoft.azure","1.0.0","","msal4j-persistence-extension","","NA","NA","NA","","","" "native-preview","com.microsoft.azure.servicefabric","1.0.0","","native-preview","","NA","NA","NA","","","" -"opentelemetry-exporters-azuremonitor","com.azure","","1.0.0-beta.1","opentelemetry-exporters-azuremonitor","","NA","NA","","","","" +"opentelemetry-exporters-azuremonitor","com.azure","","1.0.0-beta.1","opentelemetry-exporters-azuremonitor","","NA","","","","","" "project","com.microsoft.azure.sessionmanager","","1.0.0-beta.1","project","","NA","NA","NA","","","" "proton-j-azure-iot","com.microsoft.azure.iot","0.12.2","","proton-j-azure-iot","","NA","NA","NA","","","" "proton-j-azure-iot-dev","com.microsoft.azure.iot","0.12.3","","proton-j-azure-iot-dev","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index ec9369ec5f8..0927a2f8cea 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -16,12 +16,12 @@ "@azure/keyvault-certificates","4.1.0","4.2.0-beta.1","Key Vault - Certificates","Key Vault","keyvault","","","client","","" "@azure/keyvault-keys","4.1.0","4.2.0-beta.2","Key Vault - Keys","Key Vault","keyvault","","","client","","" "@azure/keyvault-secrets","4.1.0","4.2.0-beta.1","Key Vault - Secrets","Key Vault","keyvault","","","client","","" -"@azure/ai-metrics-advisor","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","NA","","client","","" +"@azure/ai-metrics-advisor","","1.0.0-beta.1","Metrics Advisor","Metrics Advisor","metricsadvisor","","","client","","" "@azure/schema-registry","","1.0.0-beta.1","Schema Registry","Schema Registry","schemaregistry","","","client","","" "@azure/schema-registry-avro","","1.0.0-beta.1","Schema Registry Avro Serializer","Schema Registry","schemaregistry","","","client","","" "@azure/service-bus","1.1.10","7.0.0-preview.7","Service Bus","Service Bus","servicebus","NA","","client","","Will be replaced by: @azure/service-bus 7.x" "@azure/storage-blob","12.2.1","","Storage - Blobs","Storage","storage","","","client","","" -"@azure/storage-file-datalake","12.1.1","","Storage - File Data Lake","Storage","storage","","","client","","" +"@azure/storage-file-datalake","12.1.1","12.2.0-beta.1","Storage - File Data Lake","Storage","storage","","","client","","" "@azure/storage-file-share","12.2.0","12.3.0-beta.1","Storage - File Shares","Storage","storage","","","client","","" "@azure/storage-queue","12.1.0","","Storage - Queues","Storage","storage","","","client","","" "@azure/data-tables","","1.0.0-beta.2","Tables","Tables","tables","","","client","","" @@ -65,7 +65,7 @@ "@azure/arm-batch","4.0.0","","@azure/arm-batch","Batch","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batch/arm-batch","NA","","","","" "@azure/arm-batchai","2.1.0","","@azure/arm-batchai","Batchai","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batchai/arm-batchai","https://docs.microsoft.com/javascript/api/overview/azure/batchai?view=azure-node-latest","","","","" "@azure/arm-billing","3.0.0","","@azure/arm-billing","Billing","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/billing/arm-billing","https://docs.microsoft.com/javascript/api/overview/azure/billing?view=azure-node-latest","NA","","","" -"@azure/arm-botservice","1.0.0","","@azure/arm-botservice","Botservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/botservice/arm-botservice","NA","","","","" +"@azure/arm-botservice","2.0.0","","@azure/arm-botservice","Botservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/botservice/arm-botservice","NA","NA","","","" "@azure/arm-cdn","5.0.0","","@azure/arm-cdn","Cdn","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cdn/arm-cdn","https://docs.microsoft.com/javascript/api/overview/azure/cdn?view=azure-node-latest","NA","","","" "@azure/arm-cognitiveservices","5.2.0","","@azure/arm-cognitiveservices","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/arm-cognitiveservices","https://docs.microsoft.com/javascript/api/overview/azure/cognitive-services?view=azure-node-latest","NA","","","" "@azure/arm-commerce","2.1.1","","@azure/arm-commerce","Commerce","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/commerce/arm-commerce","https://docs.microsoft.com/javascript/api/overview/azure/commerce?view=azure-node-latest","","","","" @@ -110,7 +110,7 @@ "@azure/arm-links","1.0.2","","@azure/arm-links","Links","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/links/arm-links","NA","","","","" "@azure/arm-locks","1.1.0","","@azure/arm-locks","Locks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/locks/arm-locks","NA","","","","" "@azure/arm-locks-profile-hybrid-2019-03-01","1.0.0","","@azure/arm-locks-profile-hybrid-2019-03-01","Locks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/locks/arm-locks-profile-hybrid-2019-03-01","NA","","","","" -"@azure/arm-logic","6.0.2","","@azure/arm-logic","Logic","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic","https://docs.microsoft.com/javascript/api/overview/azure/logic-apps?view=azure-node-latest","NA","","","" +"@azure/arm-logic","7.0.0","","@azure/arm-logic","Logic","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic","https://docs.microsoft.com/javascript/api/overview/azure/logic-apps?view=azure-node-latest","NA","","","" "@azure/arm-machinelearningcompute","1.1.0","","@azure/arm-machinelearningcompute","Machine Learning Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningcompute/arm-machinelearningcompute","NA","","","","" "@azure/arm-machinelearningexperimentation","1.1.0","","@azure/arm-machinelearningexperimentation","Machine Learning Experimentation","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningexperimentation/arm-machinelearningexperimentation","NA","","","","" "@azure/arm-machinelearningservices","3.0.0","","@azure/arm-machinelearningservices","Machine Learning Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningservices/arm-machinelearningservices","NA","","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 11a455635bc..223ce456a71 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -1,6 +1,6 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-appconfiguration","1.1.1","","App Configuration","App Configuration","appconfiguration","","","client","","" -"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","NA","","client","","" +"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","","","client","","" "azure-search-documents","11.0.0","11.1.0b3","Cognitive Search","Search","search","","","client","","Replaces: azure-search" "azure-communication-administration","","1.0.0b2","Communication Administration","Communication","communication","","","client","","" "azure-communication-chat","","1.0.0b2","Communication Chat","Communication","communication","","","client","","" @@ -206,7 +206,7 @@ "azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" "azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","","","","","" -"azure-template","0.0.17","0.1.0b7","azure-template","Template","","NA","","","true","" +"azure-template","0.0.17","0.1.0b10","azure-template","Template","","NA","","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" From 4389a811b29ab8b0671d95bf2a0e92a4f149e5bd Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Thu, 15 Oct 2020 14:42:04 -0700 Subject: [PATCH 28/87] Update package index with latest published versions (#1936) Update package index with latest published versions --- _data/releases/latest/cpp-packages.csv | 8 ++++---- _data/releases/latest/dotnet-packages.csv | 7 ++++--- _data/releases/latest/java-packages.csv | 4 ++-- _data/releases/latest/js-packages.csv | 4 ++-- _data/releases/latest/python-packages.csv | 5 +++-- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/_data/releases/latest/cpp-packages.csv b/_data/releases/latest/cpp-packages.csv index 38aa00305ca..ae1f37d297d 100644 --- a/_data/releases/latest/cpp-packages.csv +++ b/_data/releases/latest/cpp-packages.csv @@ -1,6 +1,6 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-core","","1.0.0-beta.2","Core","Core","core","NA","","client","","" -"azure-storage-blobs","","1.0.0-beta.2","Storage Blobs","Storage","storage","NA","","client","","" -"azure-storage-common","","1.0.0-beta.2","Storage Common","Storage","storage","NA","","client","","" -"azure-storage-files-datalake","","1.0.0-beta.2","Storage Files DataLake","Storage","storage","NA","","client","","" -"azure-storage-files-shares","","1.0.0-beta.2","Storage Files Shares","Storage","storage","NA","","client","","" +"azure-storage-blobs","","1.0.0-beta.3","Storage Blobs","Storage","storage","NA","","client","","" +"azure-storage-common","","1.0.0-beta.3","Storage Common","Storage","storage","NA","","client","","" +"azure-storage-files-datalake","","1.0.0-beta.3","Storage Files DataLake","Storage","storage","NA","","client","","" +"azure-storage-files-shares","","1.0.0-beta.3","Storage Files Shares","Storage","storage","NA","","client","","" diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 3b5b8660637..5b4b471467a 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -57,7 +57,7 @@ "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" "Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.29","Azure.Template","","NA","","","","true","" +"Azure.Template","","1.0.3-beta.30","Azure.Template","","NA","","","","true","" "Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" @@ -78,7 +78,7 @@ "Microsoft.Azure.CognitiveServices.AnomalyDetector","1.0.0","1.0.0-preview.1","Microsoft.Azure.CognitiveServices.AnomalyDetector","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.AnomalyDetector_1.0.0-preview.1/sdk/cognitiveservices/AnomalyDetector","NA","","","","Will be replaced by: Azure.AI.AnomalyDetector" "Microsoft.Azure.CognitiveServices.ContentModerator","2.0.0","","Microsoft.Azure.CognitiveServices.ContentModerator","","NA","NA","NA","","","" "Microsoft.Azure.CognitiveServices.FormRecognizer","","0.8.0-preview","Microsoft.Azure.CognitiveServices.FormRecognizer","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/cognitiveservices/FormRecognizer","NA","NA","","","Replaced by: Azure.AI.FormRecognizer" -"Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","2.0.1","","Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker_2.0.1/sdk/cognitiveservices/Knowledge.QnAMaker","NA","","","","" +"Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","2.0.1","2.1.0-preview.1","Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker_2.0.1/sdk/cognitiveservices/Knowledge.QnAMaker","NA","","","","" "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring","","3.2.0-preview.3","Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring_3.2.0-preview.3/sdk/cognitiveservices/Language.LUIS.Authoring","NA","NA","","","" "Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime","","3.1.0-preview.1","Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime_3.1.0-preview.1/sdk/cognitiveservices/Language.LUIS.Runtime","NA","","","","" "Microsoft.Azure.CognitiveServices.Language.SpellCheck","","4.1.0-preview.1","Microsoft.Azure.CognitiveServices.Language.SpellCheck","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.SpellCheck_4.1.0-preview.1/sdk/cognitiveservices/Language.SpellCheck","NA","","","","" @@ -539,7 +539,7 @@ "Microsoft.Azure.Management.Media","","2.1.0-preview","Microsoft.Azure.Management.Media","Media Services","mediaservices","NA","NA","","","" "Microsoft.Azure.Management.Migrate.ResourceMover","","1.0.0-preview","Microsoft.Azure.Management.Migrate.ResourceMover","","NA","NA","NA","","","" "Microsoft.Azure.Management.MixedReality","1.0.0","","Microsoft.Azure.Management.MixedReality","MixedReality","mixedreality","https://docs.microsoft.com/dotnet/api/overview/azure/mixed-reality?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.Monitor","","0.25.2-preview","Microsoft.Azure.Management.Monitor","Monitor","monitor","NA","NA","","","" +"Microsoft.Azure.Management.Monitor","","0.25.3-preview","Microsoft.Azure.Management.Monitor","Monitor","monitor","NA","NA","","","" "Microsoft.Azure.Management.Monitor.Fluent","1.34.0","","Microsoft.Azure.Management.Monitor.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/monitor?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.Msi.Fluent","1.34.0","","Microsoft.Azure.Management.Msi.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.MySQL","","0.1.0-preview","Microsoft.Azure.Management.MySQL","","NA","NA","NA","","","" @@ -618,6 +618,7 @@ "Microsoft.Azure.Management.TrafficManager","2.5.3","","Microsoft.Azure.Management.TrafficManager","Traffic Manager","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/trafficmanager/Microsoft.Azure.Management.TrafficManager","NA","","","","" "Microsoft.Azure.Management.TrafficManager.Fluent","1.34.0","","Microsoft.Azure.Management.TrafficManager.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/traffic-manager?view=azure-dotnet","NA","","","" "Microsoft.Azure.Management.WebSites","3.1.0","","Microsoft.Azure.Management.WebSites","WebSites","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/websites/Microsoft.Azure.Management.WebSites","NA","NA","","","" +"Microsoft.Azure.Management.WorkloadMonitor","","0.9.2-preview","Microsoft.Azure.Management.WorkloadMonitor","","NA","NA","NA","","","" "Microsoft.Azure.Media.LiveVideoAnalytics.Edge","","1.0.4-preview.1","Microsoft.Azure.Media.LiveVideoAnalytics.Edge","Media Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mediaservices/Microsoft.Azure.Media.LiveVideoAnalytics.Edge","NA","","","","" "Microsoft.Azure.Mobile.Server.CrossDomain","2.0.3","","Microsoft.Azure.Mobile.Server.CrossDomain","","NA","NA","NA","","","" "Microsoft.Azure.OperationalInsights","","0.10.0-preview","Microsoft.Azure.OperationalInsights","Operational Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/operationalinsights/Microsoft.Azure.OperationalInsights","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 4b6c6c5d324..93756115f87 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -248,7 +248,7 @@ "azure-mgmt-avs","com.microsoft.azure.avs.v2019_08_09_preview","","1.0.0-beta","azure-mgmt-avs","Avs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/avs/mgmt-v2019_08_09_preview","NA","NA","","","" "azure-mgmt-avs","com.microsoft.azure.avs.v2020_03_20","","1.0.0-beta","azure-mgmt-avs","Avs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/avs/mgmt-v2020_03_20","NA","NA","","","" "azure-mgmt-azurestack","com.microsoft.azure.azurestack.v2017_06_01","","1.0.0-beta-1","azure-mgmt-azurestack.v2017_06_01","Azure Stack","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/azurestack/mgmt-v2017_06_01","NA","NA","","","" -"azure-mgmt-azurestackhci","com.microsoft.azure.azurestackhci.v2020_10_01","","1.0.0-beta","azure-mgmt-azurestackhci","","NA","NA","NA","","","" +"azure-mgmt-azurestackhci","com.microsoft.azure.azurestackhci.v2020_10_01","1.0.0","1.0.0-beta","azure-mgmt-azurestackhci","","NA","NA","NA","","","" "azure-mgmt-batch","com.microsoft.azure","1.36.3","","azure-mgmt-batch","","NA","NA","NA","","","" "azure-mgmt-batchai","com.microsoft.azure","1.36.3","","azure-mgmt-batchai","","NA","NA","NA","","","" "azure-mgmt-batchai","com.microsoft.azure.batchai.v2017_09_01_preview","","1.0.0-beta","azure-mgmt-batchai.v2017_09_01_preview","Batchai","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batchai/mgmt-v2017_09_01_preview","NA","NA","","","" @@ -341,7 +341,7 @@ "azure-mgmt-features","com.microsoft.azure.features.v2015_12_01","","1.0.0-beta-1","azure-mgmt-features.v2015_12_01","Features","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/features/mgmt-v2015_12_01","NA","NA","","","" "azure-mgmt-graph-rbac","com.microsoft.azure","1.36.3","","azure-mgmt-graph-rbac","","NA","NA","NA","","","" "azure-mgmt-hanaonazure","com.microsoft.azure.hanaonazure.v2017_11_03_preview","","1.0.0-beta-5","azure-mgmt-hanaonazure.v2017_11_03_preview","Hanaonazure","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hanaonazure/mgmt-v2017_11_03_preview","NA","NA","","","" -"azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.6","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight?view=azure-java-stable","NA","","","" +"azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.7","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight?view=azure-java-stable","NA","","","" "azure-mgmt-healthcareapis","com.microsoft.azure.healthcareapis.v2020_03_15","","1.0.0-beta","azure-mgmt-healthcareapis","","NA","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2019_12_12","","1.0.0-beta-1","azure-mgmt-hybridcompute","Hybrid Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hybridcompute/mgmt-v2019_12_12","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2020_08_02","","1.0.0-beta","azure-mgmt-hybridcompute","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 0927a2f8cea..927369731c1 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -20,7 +20,7 @@ "@azure/schema-registry","","1.0.0-beta.1","Schema Registry","Schema Registry","schemaregistry","","","client","","" "@azure/schema-registry-avro","","1.0.0-beta.1","Schema Registry Avro Serializer","Schema Registry","schemaregistry","","","client","","" "@azure/service-bus","1.1.10","7.0.0-preview.7","Service Bus","Service Bus","servicebus","NA","","client","","Will be replaced by: @azure/service-bus 7.x" -"@azure/storage-blob","12.2.1","","Storage - Blobs","Storage","storage","","","client","","" +"@azure/storage-blob","12.2.1","12.3.0-beta.1","Storage - Blobs","Storage","storage","","","client","","" "@azure/storage-file-datalake","12.1.1","12.2.0-beta.1","Storage - File Data Lake","Storage","storage","","","client","","" "@azure/storage-file-share","12.2.0","12.3.0-beta.1","Storage - File Shares","Storage","storage","","","client","","" "@azure/storage-queue","12.1.0","","Storage - Queues","Storage","storage","","","client","","" @@ -39,7 +39,7 @@ "@autorest/compare","0.3.1","","@autorest/compare","Compare","https://github.com/Azure/autorest.compare","NA","NA","","","" "@autorest/core","3.0.6320","","@autorest/core","Core","https://github.com/Azure/autorest/tree/master/core","NA","NA","","","" "@autorest/modelerfour","4.1.60","","@autorest/modelerfour","Modelerfour","https://github.com/Azure/autorest.modelerfour","NA","NA","","","" -"@autorest/powershell","2.1.400","","@autorest/powershell","Powershell","https://github.com/Azure/autorest.powershell","NA","NA","","","" +"@autorest/powershell","2.1.401","","@autorest/powershell","Powershell","https://github.com/Azure/autorest.powershell","NA","NA","","","" "@autorest/python","5.3.5","","@autorest/python","Python","https://github.com/Azure/autorest.python/tree/v5.1.0-preview.7","NA","NA","","","" "@autorest/remodeler","2.1.27","","@autorest/remodeler","Remodeler","https://github.com/Azure/autorest.remodeler","NA","NA","","","" "@autorest/test","0.1.69","","@autorest/test","Test","https://github.com/Azure/autorest.test","NA","NA","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 223ce456a71..a642f8b1086 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -90,7 +90,7 @@ "azure-mgmt-automation","0.1.1","","azure-mgmt-automation","Automation","automation","NA","","","","" "azure-mgmt-avs","0.1.0","","azure-mgmt-avs","","NA","","","","","" "azure-mgmt-azurestack","0.1.0","","azure-mgmt-azurestack","Azurestack","azurestack","NA","","","","" -"azure-mgmt-azurestackhci","","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","","","","" +"azure-mgmt-azurestackhci","1.0.0","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","","","","" "azure-mgmt-batch","9.0.0","","azure-mgmt-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" "azure-mgmt-batchai","2.0.0","","azure-mgmt-batchai","Batchai","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batchai_2.0.0/azure-mgmt-batchai/","https://docs.microsoft.com/python/api/overview/azure/batchai?view=azure-python","NA","","","" "azure-mgmt-billing","0.2.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing?view=azure-python","","","","" @@ -110,6 +110,7 @@ "azure-mgmt-databox","0.2.0","","azure-mgmt-databox","Databox","databox","NA","","","","" "azure-mgmt-databoxedge","0.1.0","","azure-mgmt-databoxedge","Databoxedge","databoxedge","NA","","","","" "azure-mgmt-databricks","0.1.0","","azure-mgmt-databricks","Databricks","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-databricks_0.1.0/azure-mgmt-databricks/","NA","","","","" +"azure-mgmt-datadog","","1.0.0b1","azure-mgmt-datadog","","NA","NA","","","","" "azure-mgmt-datafactory","0.13.0","","azure-mgmt-datafactory","Datafactory","datafactory","","","","","" "azure-mgmt-datalake-analytics","0.6.0","","azure-mgmt-datalake-analytics","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-analytics_0.6.0/azure-mgmt-datalake-analytics/","https://docs.microsoft.com/python/api/overview/azure/data-lake-analytics?view=azure-python","","","","" "azure-mgmt-datalake-nspkg","3.0.1","","azure-mgmt-datalake-nspkg","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-nspkg_3.0.1/azure-mgmt-datalake-nspkg/","NA","NA","","","" @@ -206,7 +207,7 @@ "azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" "azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","","","","","" -"azure-template","0.0.17","0.1.0b10","azure-template","Template","","NA","","","true","" +"azure-template","0.0.17","0.1.0b11","azure-template","Template","","NA","","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" From 7e366d26eb62c539f94a83b07bdf91447b4587d0 Mon Sep 17 00:00:00 2001 From: kinelski Date: Fri, 16 Oct 2020 11:22:19 -0700 Subject: [PATCH 29/87] [.NET] Added remaining October release notes (#1928) --- releases/2020-10/dotnet.md | 127 +++++++++++++++++++++++++++++-------- 1 file changed, 100 insertions(+), 27 deletions(-) diff --git a/releases/2020-10/dotnet.md b/releases/2020-10/dotnet.md index 954627847e6..4be588e17e1 100644 --- a/releases/2020-10/dotnet.md +++ b/releases/2020-10/dotnet.md @@ -18,8 +18,14 @@ The Azure SDK team is pleased to announce our October 2020 client library releas #### Beta +- Event Grid - Event Hubs +- Identity - Key Vault +- Metrics Advisor +- Monitor +- Search Documents +- Service Bus - Storage - Support packages for Microsoft.Spatial - Tables @@ -30,13 +36,23 @@ The Azure SDK team is pleased to announce our October 2020 client library releas To install any of our packages, please search for them via `Manage NuGet Packages...` in Visual Studio (with `Include prerelease` checked) or copy these commands into your terminal: ```bash +$> dotnet add package Azure.AI.MetricsAdvisor --version 1.0.0-beta.1 + $> dotnet add package Azure.AI.TextAnalytics --version 5.1.0-beta.2 $> dotnet add package Azure.Data.Tables --version 3.0.0-beta.2 +$> dotnet add package Azure.Identity --version 1.3.0-beta.2 + +$> dotnet add package Azure.Messaging.EventGrid --version 4.0.0-beta.3 + $> dotnet add package Azure.Messaging.EventHubs --version 5.3.0-beta.3 $> dotnet add package Azure.Messaging.EventHubs.Processor --version 5.3.0-beta.3 +$> dotnet add package Azure.Messaging.ServiceBus --version 7.0.0-preview.8 + +$> dotnet add package Azure.Search.Documents --version 11.2.0-beta.1 + $> dotnet add package Azure.Security.KeyVault.Administration --version 4.0.0-beta.2 $> dotnet add package Azure.Security.KeyVault.Certificates --version 4.2.0-beta.2 $> dotnet add package Azure.Security.KeyVault.Keys --version 4.2.0-beta.2 @@ -51,6 +67,8 @@ $> dotnet add package Azure.Storage.Queues --version 12.5.0-preview.1 $> dotnet add package Microsoft.Azure.Core.Spatial --version 1.0.0-beta.1 $> dotnet add package Microsoft.Azure.Core.Spatial.NewtonsoftJson --version 1.0.0-beta.1 + +$> dotnet add package OpenTelemetry.Exporter.AzureMonitor --version 1.0.0-beta.1 ``` ## Feedback @@ -61,33 +79,6 @@ If you have a bug or feature request for one of the libraries, please [file an i Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: -### Azure.Data.Tables [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/tables/Azure.Data.Tables/CHANGELOG.md#300-beta2-2020-10-06) - -#### New Features - -- Implemented batch operations. -- `TableClient`'s `GetEntity` method now exposes the `select` query option to allow for more efficient existence checks for a table entity. - -### Event Hubs [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md) - -#### New Features - -- `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. - -- The `EventHubProducerClient` now offers the ability to opt-into idempotent publishing, reducing the potential for duplication when a publishing operation encounters timeouts or other transient failures. - -### Event Hubs Processor [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md) - -#### New Features - -- `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. - - -### Key Vault - -- Bug fixes and performance improvements. - - ### Azure Storage Blobs [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs/CHANGELOG.md) #### New Features @@ -128,6 +119,82 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Fixed bug causing `ShareAccessPolicy.StartsOn` and `.ExpiresOn` to crash the process. - Fixed bug where Stream returned from `ShareFileClient.OpenWrite()` did not flush while disposing preventing compatibility with using keyword. +### Core Experimental [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Azure.Core.Experimental/CHANGELOG.md#010-preview6-2020-10-06) + +#### Breaking Changes +- `BinaryData`: Change return type of `FromObjectAsync` from `Task` to `ValueTask`. + +### Event Grid [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md#400-beta3-2020-10-06) + +#### New Features +- Added TraceParent/TraceState into CloudEvent extension attributes. +- Added KeyVaultAccessPolicyChangedEventData system event. + +#### Breaking Changes +- Renamed Azure Communication Services system events. +- Renamed EventGridPublisherClientOptions DataSerializer property to Serializer. + +#### Key Bug Fixes +- Fixed a bug where we were not parsing the Topic when parsing into EventGridEvents. + +### Event Hubs [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md) + +#### New Features +- `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. +- The `EventHubProducerClient` now offers the ability to opt-into idempotent publishing, reducing the potential for duplication when a publishing operation encounters timeouts or other transient failures. + +### Event Hubs Processor [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md) + +#### New Features +- `EventData` has been integrated with the new Schema Registry service, via use of the `SchemaRegistryAvroObjectSerializer` with the `BodyAsBinaryData` member. + +### Key Vault +- Bug fixes and performance improvements. + +### Identity [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/CHANGELOG.md#130-beta2-2020-10-07) + +#### New Features +- Update `DeviceCodeCredential` to output device code information and authentication instructions in the console, in the case no `deviceCodeCallback` is specified. +- Added `DeviceCodeCallback` to `DeviceCodeCredentialOptions`. +- Added default constructor to `DeviceCodeCredential`. + +#### Breaking Changes +- Replaced `DeviceCodeCredential` constructor overload taking `deviceCodeCallback` and `DeviceCodeCredentialOptions` with constructor taking only `DeviceCodeCredentialOptions`. + +### Metrics Advisor [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md#100-beta1-2020-10-08) + +- This is the first beta of the `Azure.AI.MetricsAdvisor` client library. + +### Monitor [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/monitor/OpenTelemetry.Exporter.AzureMonitor/CHANGELOG.md#100-beta1-2020-10-07) + +- Initial release of Azure Monitor Exporter for [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet) + +### Search Documents [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/search/Azure.Search.Documents/CHANGELOG.md#1120-beta1-2020-10-09) + +#### New Features +- Add `SearchIndexingBufferedSender` to make indexing lots of documents fast and easy. +- Add support to `FieldBuilder` to define search fields for `Microsoft.Spatial` types without an explicit assembly dependency. +- Add support to `SearchFilter` to encode geometric types from `Microsoft.Spatial` without an explicit assembly dependency. +- Add `IndexingParameters.IndexingParametersConfiguration` property to define well-known properties supported by Azure Cognitive Search. + +#### Key Bug Fixes +- Support deserializing null values during deserialization of skills ([#15108](https://github.com/Azure/azure-sdk-for-net/issues/15108)). +- Fixed issues preventing mocking clients or initializing all models. + +### Service Bus [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md#700-preview8-2020-10-06) + +#### New Features +- Added `AcceptSessionAsync` that accepts a specific session based on session ID. + +#### Breaking Changes +- Renamed `ViaQueueOrTopicName` to `TransactionQueueOrTopicName`. +- Renamed `ViaPartitionKey` to `TransactionPartitionKey`. +- Renamed `ViaEntityPath` to `TransactionEntityPath`. +- Renamed `Proxy` to `WebProxy`. +- Made `MaxReceiveWaitTime` in `ServiceBusProcessorOptions` and `ServiceBusSessionProcessorOptions` internal. +- Renamed `CreateSessionReceiverAsync` to `AcceptNextSessionAsync`. +- Removed `SessionId` from `ServiceBusClientOptions` in favor of `AcceptSessionAsync`. + ### Support packages for Microsoft.Spatial #### Microsoft.Azure.Core.Spatial [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Microsoft.Azure.Core.Spatial/CHANGELOG.md#100-beta1-2020-10-08) @@ -138,6 +205,12 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here - Added `NewtonsoftJsonMicrosoftSpatialGeoJsonConverter` to serialize `Microsoft.Spatial.GeographyPoint` objects. +### Tables [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/tables/Azure.Data.Tables/CHANGELOG.md#300-beta2-2020-10-06) + +#### New Features +- Implemented batch operations. +- `TableClient`'s `GetEntity` method now exposes the `select` query option to allow for more efficient existence checks for a table entity. + ### Text Analytics [Changelog](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md#510-beta2-2020-10-06) #### Breaking changes From a5dfed7147fed8dba2f85e673e4037885308d5ac Mon Sep 17 00:00:00 2001 From: Xiang Yan Date: Fri, 16 Oct 2020 13:34:34 -0700 Subject: [PATCH 30/87] update display name for metrics advisor (#1941) --- _data/releases/latest/python-packages.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index a642f8b1086..9b9f841a38c 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -1,6 +1,6 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-appconfiguration","1.1.1","","App Configuration","App Configuration","appconfiguration","","","client","","" -"azure-ai-metricsadvisor","","1.0.0b1","azure-ai-metricsadvisor","Metrics Advisor","metricsadvisor","","","client","","" +"azure-ai-metricsadvisor","","1.0.0b1","Metrics Advisor","Metrics Advisor","metricsadvisor","","","client","","" "azure-search-documents","11.0.0","11.1.0b3","Cognitive Search","Search","search","","","client","","Replaces: azure-search" "azure-communication-administration","","1.0.0b2","Communication Administration","Communication","communication","","","client","","" "azure-communication-chat","","1.0.0b2","Communication Chat","Communication","communication","","","client","","" From 01ab1070a0e612ade9e3ce8f15248d83aa131cdb Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 16 Oct 2020 14:32:45 -0700 Subject: [PATCH 31/87] Update package index with latest published versions (#1943) Update package index with latest published versions --- _data/releases/latest/cpp-packages.csv | 6 +++--- _data/releases/latest/dotnet-packages.csv | 8 ++++---- _data/releases/latest/java-packages.csv | 17 ++++++++++------- _data/releases/latest/js-packages.csv | 2 +- _data/releases/latest/python-packages.csv | 2 +- 5 files changed, 19 insertions(+), 16 deletions(-) diff --git a/_data/releases/latest/cpp-packages.csv b/_data/releases/latest/cpp-packages.csv index ae1f37d297d..9b1d70f0d5b 100644 --- a/_data/releases/latest/cpp-packages.csv +++ b/_data/releases/latest/cpp-packages.csv @@ -1,6 +1,6 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-core","","1.0.0-beta.2","Core","Core","core","NA","","client","","" -"azure-storage-blobs","","1.0.0-beta.3","Storage Blobs","Storage","storage","NA","","client","","" +"azure-storage-blobs","","1.0.0-beta.4","Storage Blobs","Storage","storage","NA","","client","","" "azure-storage-common","","1.0.0-beta.3","Storage Common","Storage","storage","NA","","client","","" -"azure-storage-files-datalake","","1.0.0-beta.3","Storage Files DataLake","Storage","storage","NA","","client","","" -"azure-storage-files-shares","","1.0.0-beta.3","Storage Files Shares","Storage","storage","NA","","client","","" +"azure-storage-files-datalake","","1.0.0-beta.4","Storage Files DataLake","Storage","storage","NA","","client","","" +"azure-storage-files-shares","","1.0.0-beta.4","Storage Files Shares","Storage","storage","NA","","client","","" diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 5b4b471467a..02de0808017 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -15,7 +15,7 @@ "Azure.Messaging.EventHubs","5.2.0","5.3.0-beta.3","Event Hubs","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs" "Azure.Messaging.EventHubs.Processor","5.2.0","5.3.0-beta.3","Event Hubs - Event Processor","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs.Processor" "Azure.AI.FormRecognizer","3.0.0","","Form Recognizer","Form Recognizer","formrecognizer","","","client","","Replaces: Microsoft.Azure.CognitiveServices.FormRecognizer" -"Azure.Identity","1.2.3","1.3.0-beta.2","Identity","Identity","identity","","","client","","" +"Azure.Identity","1.2.3","1.4.0-beta.1","Identity","Identity","identity","","","client","","" "Azure.Security.KeyVault.Administration","","4.0.0-beta.2","Key Vault - Administration","Key Vault","keyvault","","","client","","" "Azure.Security.KeyVault.Certificates","4.1.0","4.2.0-beta.2","KeyVault - Certificates","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" "Azure.Security.KeyVault.Keys","4.1.0","4.2.0-beta.2","KeyVault - Keys","Key Vault","keyvault","","","client","","Replaces: Microsoft.Azure.KeyVault" @@ -57,7 +57,7 @@ "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" "Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.30","Azure.Template","","NA","","","","true","" +"Azure.Template","","1.0.3-beta.34","Azure.Template","","NA","","","","true","" "Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" @@ -66,7 +66,7 @@ "Hyak.Common.Tracing.Log4Net","1.0.2","","Hyak.Common.Tracing.Log4Net","","NA","NA","NA","","true","" "Microsoft.AutoRest.Common","2.4.48","","Microsoft.AutoRest.Common","AutoRest","https://github.com/Azure/autorest.common","NA","NA","","","" "Microsoft.Azure.ApplicationInsights","","0.9.0-preview","Microsoft.Azure.ApplicationInsights","","NA","NA","NA","","","" -"Microsoft.Azure.ApplicationInsights.Query","","0.9.0-preview.2","Microsoft.Azure.ApplicationInsights.Query","Application Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/applicationinsights/Microsoft.Azure.ApplicationInsights.Query","NA","","","","" +"Microsoft.Azure.ApplicationInsights.Query","1.0.0","","Microsoft.Azure.ApplicationInsights.Query","Application Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/applicationinsights/Microsoft.Azure.ApplicationInsights.Query","NA","","","","" "Microsoft.Azure.AppService","","0.2.2-alpha","Microsoft.Azure.AppService","","NA","NA","NA","","","" "Microsoft.Azure.AppService.ApiApps.Common","0.9.36","","Microsoft.Azure.AppService.ApiApps.Common","","NA","NA","NA","","","" "Microsoft.Azure.AppService.ApiApps.Service","0.9.64","","Microsoft.Azure.AppService.ApiApps.Service","","NA","NA","NA","","","" @@ -621,7 +621,7 @@ "Microsoft.Azure.Management.WorkloadMonitor","","0.9.2-preview","Microsoft.Azure.Management.WorkloadMonitor","","NA","NA","NA","","","" "Microsoft.Azure.Media.LiveVideoAnalytics.Edge","","1.0.4-preview.1","Microsoft.Azure.Media.LiveVideoAnalytics.Edge","Media Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mediaservices/Microsoft.Azure.Media.LiveVideoAnalytics.Edge","NA","","","","" "Microsoft.Azure.Mobile.Server.CrossDomain","2.0.3","","Microsoft.Azure.Mobile.Server.CrossDomain","","NA","NA","NA","","","" -"Microsoft.Azure.OperationalInsights","","0.10.0-preview","Microsoft.Azure.OperationalInsights","Operational Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/operationalinsights/Microsoft.Azure.OperationalInsights","NA","NA","","","" +"Microsoft.Azure.OperationalInsights","1.0.0","","Microsoft.Azure.OperationalInsights","Operational Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/operationalinsights/Microsoft.Azure.OperationalInsights","NA","","","","" "Microsoft.Azure.Relay","2.0.1","","Microsoft.Azure.Relay","Relay","https://github.com/Azure/azure-relay-dotnet/tree/2.0.1","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus-relay?view=azure-dotnet","NA","","","" "Microsoft.Azure.Search","10.1.0","","Microsoft.Azure.Search","Search","search","NA","","","","Replaced by: Azure.Search.Documents" "Microsoft.Azure.Search.Common","10.1.0","","Microsoft.Azure.Search.Common","Search","search","NA","","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 93756115f87..77fa5a45be4 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -103,7 +103,7 @@ "azure-client-sdk-parent","com.azure","1.7.0","","azure-client-sdk-parent","","NA","NA","NA","","","" "azure-cloud-foundry-service","com.microsoft.azure","0.1.7","","azure-cloud-foundry-service","","NA","NA","NA","","","" "azure-cognitiveservices-autosuggest","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-autosuggest","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-autosuggest","NA","NA","","","" -"azure-cognitiveservices-computervision","com.microsoft.azure.cognitiveservices","","1.0.4-beta","azure-cognitiveservices-computervision","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-computervision","NA","NA","","","" +"azure-cognitiveservices-computervision","com.microsoft.azure.cognitiveservices","","1.0.5-beta","azure-cognitiveservices-computervision","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-computervision","NA","","","","" "azure-cognitiveservices-contentmoderator","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-contentmoderator","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-contentmoderator","NA","NA","","","" "azure-cognitiveservices-customimagesearch","com.microsoft.azure.cognitiveservices","","1.0.2-beta","azure-cognitiveservices-customimagesearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-customimagesearch","NA","NA","","","" "azure-cognitiveservices-customsearch","com.microsoft.azure.cognitiveservices","1.0.2","","azure-cognitiveservices-customsearch","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/ms-azure-cs-customsearch","NA","NA","","","" @@ -173,10 +173,10 @@ "azure-documentdb-spring-boot-starter","com.microsoft.azure","2.0.5","","azure-documentdb-spring-boot-starter","","NA","NA","NA","","","" "azure-elasticdb-tools","com.microsoft.azure","1.0.0","","azure-elasticdb-tools","","NA","NA","NA","","","" "azure-eventgrid","com.microsoft.azure","","1.4.0-beta.1","azure-eventgrid","Event Grid","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventgrid/microsoft-azure-eventgrid","NA","NA","","","Will be replaced by: azure-messaging-eventgrid" -"azure-eventhubs","com.microsoft.azure","3.2.0","","azure-eventhubs","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs","NA","","","","Replaced by: azure-messaging-eventhubs" +"azure-eventhubs","com.microsoft.azure","3.2.1","","azure-eventhubs","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs","NA","","","","Replaced by: azure-messaging-eventhubs" "azure-eventhubs-databricks_2.11","com.microsoft.azure","3.4.0","","azure-eventhubs-databricks_2.11","","NA","NA","NA","","","" -"azure-eventhubs-eph","com.microsoft.azure","3.2.0","","azure-eventhubs-eph","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-eph","NA","","","","" -"azure-eventhubs-extensions","com.microsoft.azure","3.2.0","","azure-eventhubs-extensions","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-extensions","NA","","","","" +"azure-eventhubs-eph","com.microsoft.azure","3.2.1","","azure-eventhubs-eph","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-eph","NA","","","","" +"azure-eventhubs-extensions","com.microsoft.azure","3.2.1","","azure-eventhubs-extensions","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/microsoft-azure-eventhubs-extensions","NA","","","","" "azure-eventhubs-reactive_2.12","com.microsoft.azure","0.5.0","","azure-eventhubs-reactive_2.12","","NA","NA","NA","","","" "azure-event-hubs-reactive_2.12","com.microsoft.azure","0.1.0","","azure-event-hubs-reactive_2.12","","NA","NA","NA","","","" "azure-eventhubs-spark_2.11","com.microsoft.azure","2.3.17","","azure-eventhubs-spark_2.11","","NA","NA","NA","","","" @@ -262,6 +262,7 @@ "azure-mgmt-cognitiveservices","com.microsoft.azure","","1.10.0-beta","azure-mgmt-cognitiveservices","","NA","NA","NA","","TRUE","" "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices.v2017_04_18","1.0.1","","azure-mgmt-cognitiveservices.v2017_04_18","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/mgmt-v2017_04_18","NA","NA","","","" "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices-2017-04-18","","1.0.0-beta-1","azure-mgmt-cognitiveservices.v2017_04_18","","NA","NA","NA","","","" +"azure-mgmt-commerce","com.microsoft.azure.commerce.v2015_06_01_preview","","1.0.0-beta","azure-mgmt-commerce","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure","1.36.3","","azure-mgmt-compute","","NA","https://docs.microsoft.com/java/api/overview/azure/virtualmachines?view=azure-java-stable","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2020_06_01","","1.0.0-beta","azure-mgmt-compute","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2017_03_30","","1.0.0-beta-2","azure-mgmt-compute.v2017_03_30","Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/compute/mgmt-v2017_03_30","NA","NA","","","" @@ -353,6 +354,7 @@ "azure-mgmt-iothub","com.microsoft.azure.iothub.v2018_12_01_preview","","1.0.0-beta","azure-mgmt-iothub.v2018_12_01_preview","Iot Hub","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iothub/mgmt-v2018_12_01_preview","NA","NA","","","" "azure-mgmt-iothub","com.microsoft.azure.iothub.v2019_03_22_preview","","1.0.0-beta","azure-mgmt-iothub.v2019_03_22_preview","Iot Hub","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iothub/mgmt-v2019_03_22_preview","NA","NA","","","" "azure-mgmt-keyvault","com.microsoft.azure","1.36.3","","azure-mgmt-keyvault","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/keyvault/microsoft-azure-keyvault","NA","NA","","","" +"azure-mgmt-keyvault","com.microsoft.azure.keyvault.v2019_09_01","","1.0.0-beta","azure-mgmt-keyvault","","NA","NA","NA","","","" "azure-mgmt-keyvault","com.microsoft.azure.keyvault.v2016_10_01","","1.0.0-beta-2","azure-mgmt-keyvault.v2016_10_01","Key Vault","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/keyvault/mgmt-v2015_06_01","NA","NA","","","" "azure-mgmt-kubernetesconfiguration","com.microsoft.azure.kubernetesconfiguration.v2019_11_01_preview","","1.0.0-beta-1","azure-mgmt-kubernetesconfiguration.v2019_11_01_preview","Kubernetes Configuration","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/kubernetesconfiguration/mgmt-v2019_11_01_preview","NA","NA","","","" "azure-mgmt-kusto","com.microsoft.azure.kusto.v2020_06_14","","1.0.0-beta","azure-mgmt-kusto","","NA","NA","NA","","","" @@ -414,6 +416,7 @@ "azure-mgmt-netapp","com.microsoft.azure.netapp.v2019_10_01","","1.0.0-beta","azure-mgmt-netapp.v2019_10_01","Net App","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/netapp/mgmt-v2019_10_01","NA","NA","","","" "azure-mgmt-netapp","com.microsoft.azure.netapp.v2019_11_01","","1.0.0-beta-2","azure-mgmt-netapp.v2019_11_01","Net App","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/netapp/mgmt-v2019_11_01","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure","1.36.3","","azure-mgmt-network","","NA","https://docs.microsoft.com/java/api/overview/azure/network?view=azure-java-stable","NA","","","" +"azure-mgmt-network","com.microsoft.azure.network.v2018_11_01","","1.0.0-beta","azure-mgmt-network","","NA","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2020_05_01","","1.0.0-beta-1","azure-mgmt-network","Network","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/network/mgmt-v2020_05_01","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2020_06_01","","1.0.0-beta-1","azure-mgmt-network","Network","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/network/mgmt-v2020_06_01","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2017_10_01","","1.0.0-beta-2","azure-mgmt-network.v2017_10_01","Network","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/network/mgmt-v2017_10_01","NA","NA","","","" @@ -601,7 +604,7 @@ "iot-deps-serializer","com.microsoft.azure.sdk.iot.deps","0.7.6","","iot-deps-serializer","","NA","NA","NA","","","" "iot-device-client","com.microsoft.azure","1.1.24","","iot-device-client","","NA","NA","NA","","","" "iot-device-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-device-client","","NA","NA","NA","","","" -"iot-device-client-preview","com.microsoft.azure.sdk.iot","1.1.0","","iot-device-client-preview","","NA","NA","NA","","","" +"iot-device-client-preview","com.microsoft.azure.sdk.iot","1.2.0","","iot-device-client-preview","","NA","NA","NA","","","" "iothub-java-client","com.microsoft.azure.iothub-java-client","","1.0.0-preview.7","iothub-java-client","","NA","NA","NA","","","" "iothub-java-device-client","com.microsoft.azure.iothub-java-client","1.0.16","","iothub-java-device-client","","NA","NA","NA","","","" "iothub-java-device-client-dev","com.microsoft.azure.iothub-java-client","1.0.9","","iothub-java-device-client-dev","","NA","NA","NA","","","" @@ -612,7 +615,7 @@ "iothub-react_2.12.0-RC1","com.microsoft.azure.iot","0.7.0","","iothub-react_2.12.0-RC1","","NA","NA","NA","","","" "iot-service-client","com.microsoft.azure","1.2.18","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" "iot-service-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" -"iot-service-client-preview","com.microsoft.azure.sdk.iot","1.1.0","","iot-service-client-preview","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" +"iot-service-client-preview","com.microsoft.azure.sdk.iot","1.2.0","","iot-service-client-preview","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" "kusto-data","com.microsoft.azure.kusto","2.3.2","","kusto-data","","NA","NA","NA","","","" "kusto-ingest","com.microsoft.azure.kusto","2.3.2","","kusto-ingest","","NA","NA","NA","","","" "kusto-spark_2.4_2.11","com.microsoft.azure.kusto","2.3.0","","kusto-spark_2.4_2.11","","NA","NA","NA","","","" @@ -630,7 +633,7 @@ "provisioning-device-client","com.microsoft.azure.sdk.iot.provisioning","1.8.4","","provisioning-device-client","","NA","NA","NA","","","" "provisioning-device-client-preview","com.microsoft.azure.sdk.iot.provisioning","1.0.1","","provisioning-device-client-preview","","NA","NA","NA","","","" "provisioning-service-client","com.microsoft.azure.sdk.iot.provisioning","1.7.0","","provisioning-service-client","","NA","NA","NA","","","" -"provisioning-service-client-preview","com.microsoft.azure.sdk.iot.provisioning","1.0.1","","provisioning-service-client-preview","","NA","NA","NA","","","" +"provisioning-service-client-preview","com.microsoft.azure.sdk.iot.provisioning","1.1.0","","provisioning-service-client-preview","","NA","NA","NA","","","" "qpid-proton-j-extensions","com.microsoft.azure","1.2.3","","qpid-proton-j-extensions","","NA","NA","NA","","","" "azure-schemaregistry-kafka-avro","com.microsoft.azure","","1.0.0-beta.4","Schema Registry Kafka Avro","","NA","NA","NA","","","" "security-provider","com.microsoft.azure.sdk.iot.provisioning.security","1.3.0","","security-provider","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 927369731c1..7fd7b94e0c6 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -524,7 +524,7 @@ "@azure/monitor-opentelemetry-exporter","","1.0.0-preview.6","@azure/monitor-opentelemetry-exporter","Monitor","https://github.com/microsoft/opentelemetry-azure-monitor-js/tree/1.0.0-preview.4/packages/azure-opentelemetry-exporter","","","","","" "@azure/ms-rest-azure-env","2.0.0","","@azure/ms-rest-azure-env","Msrest","https://github.com/Azure/ms-rest-azure-env","NA","NA","","","" "@azure/ms-rest-azure-js","2.0.1","","@azure/ms-rest-azure-js","Msrest","https://github.com/Azure/ms-rest-azure-js","NA","NA","","","" -"@azure/ms-rest-browserauth","1.0.0","","@azure/ms-rest-browserauth","Msrest","https://github.com/Azure/ms-rest-browserauth","NA","NA","","","" +"@azure/ms-rest-browserauth","1.0.1","","@azure/ms-rest-browserauth","Msrest","https://github.com/Azure/ms-rest-browserauth","NA","NA","","","" "@azure/ms-rest-js","2.1.0","","@azure/ms-rest-js","Msrest","https://github.com/Azure/ms-rest-js","NA","NA","","","" "@azure/ms-rest-nodeauth","3.0.6","","@azure/ms-rest-nodeauth","Msrest","https://github.com/Azure/ms-rest-nodeauth","NA","NA","","","" "@azure/ng-deploy","0.2.3","","@azure/ng-deploy","Ng Deploy","https://github.com/Azure/ng-deploy-azure","NA","NA","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 9b9f841a38c..95b9b8e01b4 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -207,7 +207,7 @@ "azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" "azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","","","","","" -"azure-template","0.0.17","0.1.0b11","azure-template","Template","","NA","","","true","" +"azure-template","0.0.17","0.1.0b15","azure-template","Template","","NA","","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" From 41bcee45e3f6b3e167a278367cf1546cb30d146f Mon Sep 17 00:00:00 2001 From: Rick Winter Date: Fri, 16 Oct 2020 15:10:30 -0700 Subject: [PATCH 32/87] Add links to the C and C++ documentation (#1927) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34f20f576a4..4b8bc7fa897 100755 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ The Azure SDK delivers a platform for developers to leverage the wide variety of | Android |[Design Guidelines for Android] (Draft) | |[azure-sdk-for-android Repository]| Coming Soon | | C# /.NET |[Design Guidelines for .NET] |[.NET Packages] |[azure-sdk-for-net Repository] | [.NET Documentation] | | Go |[Design Guidelines for Go] (Draft) | |[azure-sdk-for-go Repository] | [Go Documentation] | -| C |[Design Guidelines for C99] (Draft) | |[azure-sdk-for-c Repository] | Coming Soon | -| C++ |[Design Guidelines for C++] (Draft) | |[azure-sdk-for-cpp Repository] | Coming Soon | +| C |[Design Guidelines for C99] (Draft) | |[azure-sdk-for-c Repository] | [C Documentation] | +| C++ |[Design Guidelines for C++] (Draft) | |[azure-sdk-for-cpp Repository] | [C++ Documentation] | | iOS |[Design Guidelines for iOS] (Draft) | |[azure-sdk-for-ios Repository] | Coming Soon | | Java |[Design Guidelines for Java] |[Java Packages] |[azure-sdk-for-java Repository] | [Java Documentation] | | JavaScript |[Design Guidelines for TypeScript] |[JavaScript Packages] |[azure-sdk-for-js Repository] | [JavaScript Documentation] | @@ -78,6 +78,8 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio [Java Documentation]: http://aka.ms/java-docs [JavaScript Documentation]: http://aka.ms/js-docs [Python Documentation]: https://aka.ms/python-docs +[C Documentation]: https://aka.ms/c-docs +[C++ Documentation]: https://aka.ms/cpp-docs [.NET Packages]: https://azure.github.io/azure-sdk/releases/latest/dotnet.html [Java Packages]: https://azure.github.io/azure-sdk/releases/latest/java.html From e00226963178f74b7db05c78431566e2059193ba Mon Sep 17 00:00:00 2001 From: Sima Zhu <48036328+sima-zhu@users.noreply.github.com> Date: Fri, 16 Oct 2020 15:16:01 -0700 Subject: [PATCH 33/87] Add guidance to use lower case for our anchor tags in links (#1938) --- docs/policies/README-TEMPLATE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/policies/README-TEMPLATE.md b/docs/policies/README-TEMPLATE.md index e9fd80d49a5..9229f763aab 100644 --- a/docs/policies/README-TEMPLATE.md +++ b/docs/policies/README-TEMPLATE.md @@ -36,6 +36,8 @@ Use the guidelines in each section of this template to ensure consistency and re * **DO NOT** use version numbers in the links as the version numbers will often be missed when releasing new versions thus point to the wrong thing or not exist at all. Instead avoid linking directly to versioned information. If you still need a link you should first try to link to a page that contains all the versions so someone can choose or link to the latest which may be out of sync with the content but should usually remain valid. +* **DO NOT** use upper case in the anchor tag links like `#Samples`. Using upper case in anchor tag links will not work when we convert them to html as they are usually case sensitive. For this reason the guidance is to use lower case for any anchor tags we have in all our MD files in the repo as this will help ensure that links work in other contexts. For example use `https://github.com/Azure/azure-sdk-for-java#client-new-releases` instead of `https://github.com/Azure/azure-sdk-for-java#Client-New-Releases` + * **DO** think about the longevity of your links and be sure to pick links we believe will remain stable and around for a long time. So no temporary links or links that point to moving targets like a repository branch which may not contain the files in the same locations over time. ## Getting started From 5d61901053ef04d7ba8b626fd28e766a0587d739 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Mon, 19 Oct 2020 14:11:36 -0700 Subject: [PATCH 34/87] Review view from doc links (#1944) Fixes https://github.com/Azure/azure-sdk/issues/1869 --- _data/releases/latest/dotnet-packages.csv | 80 +++++++++++------------ _data/releases/latest/java-packages.csv | 36 +++++----- _data/releases/latest/js-packages.csv | 80 +++++++++++------------ _data/releases/latest/python-packages.csv | 54 +++++++-------- _data/sidebars/dotnet_sidebar.yml | 2 +- _includes/releases/pkgrow.md | 10 +-- _includes/releases/variables/android.md | 1 - _includes/releases/variables/c.md | 1 - _includes/releases/variables/cpp.md | 1 - _includes/releases/variables/dotnet.md | 1 - _includes/releases/variables/ios.md | 1 - _includes/releases/variables/java.md | 1 - _includes/releases/variables/js.md | 1 - _includes/releases/variables/python.md | 1 - docs/clang/design.md | 2 +- docs/clang/implementation.md | 4 +- docs/cpp/design.md | 2 +- docs/cpp/implementation.md | 4 +- docs/policies/README-TEMPLATE.md | 2 +- releases/2020-09/dotnet.md | 4 +- 20 files changed, 140 insertions(+), 148 deletions(-) diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 02de0808017..408e86ae82b 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -10,7 +10,7 @@ "Azure.Communication.Common","","1.0.0-beta.2","Communication Common","Communication","communication","","","client","","" "Azure.Communication.Sms","","1.0.0-beta.2","Communication Sms","Communication","communication","","","client","","" "Azure.Core","1.5.1","","Core","Core","core","","","client","","" -"Azure.Cosmos","","4.0.0-preview3","Cosmos","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/4.0.0-preview3","https://docs.microsoft.com/dotnet/api/azure.cosmos?view=azure-dotnet-preview","NA","client","","Will Replace: Microsoft.Azure.Cosmos" +"Azure.Cosmos","","4.0.0-preview3","Cosmos","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/4.0.0-preview3","https://docs.microsoft.com/dotnet/api/azure.cosmos","NA","client","","Will Replace: Microsoft.Azure.Cosmos" "Azure.Messaging.EventGrid","","4.0.0-beta.3","Event Grid","Event Grid","eventgrid","","","client","","Will replace: Microsoft.Azure.EventGrid" "Azure.Messaging.EventHubs","5.2.0","5.3.0-beta.3","Event Hubs","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs" "Azure.Messaging.EventHubs.Processor","5.2.0","5.3.0-beta.3","Event Hubs - Event Processor","Event Hubs","eventhub","","","client","","Replaces: Microsoft.Azure.EventHubs.Processor" @@ -412,21 +412,21 @@ "Microsoft.Azure.ContainerRegistry","","1.0.0-preview.1","Microsoft.Azure.ContainerRegistry","Container Registry","containerregistry","NA","","","","" "Microsoft.Azure.Core.Spatial","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial","","NA","","","","","" "Microsoft.Azure.Core.Spatial.NewtonsoftJson","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial.NewtonsoftJson","","NA","","","","","" -"Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb?view=azure-dotnet","NA","","","Will be replaced by: Azure.Cosmos" +"Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb","NA","","","Will be replaced by: Azure.Cosmos" "Microsoft.Azure.Cosmos.Direct","3.14.0","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" "Microsoft.Azure.Cosmos.Encryption","","1.0.0-preview6","Microsoft.Azure.Cosmos.Encryption","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/encryption/1.0.0-preview4/Microsoft.Azure.Cosmos.Encryption","NA","NA","","","" "Microsoft.Azure.Cosmos.Table","","2.0.0-preview","Microsoft.Azure.Cosmos.Table","","NA","NA","NA","","","" "Microsoft.Azure.CosmosDB.BulkExecutor","","2.4.1-preview","Microsoft.Azure.CosmosDB.BulkExecutor","Cosmos DB","https://github.com/Azure/azure-cosmosdb-bulkexecutor-dotnet-getting-started","NA","NA","","","" "Microsoft.Azure.CosmosDB.Table","2.1.2","","Microsoft.Azure.CosmosDB.Table","","NA","NA","NA","","","Will be replaced by: Azure.Data.Tables" "Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","","1.0.0-beta.1","Microsoft.Azure.Data.SchemaRegistry.ApacheAvro","Schema Registry - Apache Avro","NA","","","","","" -"Microsoft.Azure.DataLake.Store","","1.2.3-alpha","Microsoft.Azure.DataLake.Store","Data Lake","https://github.com/Azure/azure-data-lake-store-net/tree/1.2.3-alpha","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.DataLake.Store","","1.2.3-alpha","Microsoft.Azure.DataLake.Store","Data Lake","https://github.com/Azure/azure-data-lake-store-net/tree/1.2.3-alpha","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store","NA","","","" "Microsoft.Azure.DataLake.USQL.SDK","1.4.200831","","Microsoft.Azure.DataLake.USQL.SDK","","NA","NA","NA","","","" "Microsoft.Azure.DCAP","1.6.0","","Microsoft.Azure.DCAP","DCAP","https://github.com/microsoft/Azure-DCAP-Client/tree/1.6","NA","NA","","","" "Microsoft.Azure.DocumentDB","2.12.0","","Microsoft.Azure.DocumentDB","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" "Microsoft.Azure.DocumentDB.ChangeFeedProcessor","2.3.2","","Microsoft.Azure.DocumentDB.ChangeFeedProcessor","Cosmos","https://github.com/Azure/azure-documentdb-changefeedprocessor-dotnet/tree/master","NA","NA","","","" "Microsoft.Azure.DocumentDB.Core","2.12.0","","Microsoft.Azure.DocumentDB.Core","Cosmos","https://github.com/Azure/azure-cosmos-dotnet-v2","NA","NA","","","" -"Microsoft.Azure.EventGrid","3.2.0","","Microsoft.Azure.EventGrid","Event Grid","eventgrid","https://docs.microsoft.com/dotnet/api/overview/azure/eventgrid?view=azure-dotnet","NA","","","Will be replaced by: Azure.Messaging.EventGrid" -"Microsoft.Azure.EventHubs","4.3.0","","Microsoft.Azure.EventHubs","Event Hub","eventhub","https://docs.microsoft.com/dotnet/api/overview/azure/event-hubs?view=azure-dotnet","","","","Replaced by: Azure.Messaging.EventHubs" +"Microsoft.Azure.EventGrid","3.2.0","","Microsoft.Azure.EventGrid","Event Grid","eventgrid","https://docs.microsoft.com/dotnet/api/overview/azure/eventgrid","NA","","","Will be replaced by: Azure.Messaging.EventGrid" +"Microsoft.Azure.EventHubs","4.3.0","","Microsoft.Azure.EventHubs","Event Hub","eventhub","https://docs.microsoft.com/dotnet/api/overview/azure/event-hubs","","","","Replaced by: Azure.Messaging.EventHubs" "Microsoft.Azure.EventHubs.Processor","4.3.0","","Microsoft.Azure.EventHubs.Processor","Event Hub","eventhub","NA","","","","Replaced by: Azure.Messaging.EventHubs.Processor" "Microsoft.Azure.EventHubs.ServiceFabricProcessor","0.5.4","","Microsoft.Azure.EventHubs.ServiceFabricProcessor","Event Hub","eventhub","NA","NA","","","" "Microsoft.Azure.Functions.Extensions","1.1.0","1.1.0-preview1","Microsoft.Azure.Functions.Extensions","Function","https://github.com/Azure/azure-functions-dotnet-extensions","NA","NA","","","" @@ -449,32 +449,32 @@ "Microsoft.Azure.Management.ApiManagement","","6.0.0-preview","Microsoft.Azure.Management.ApiManagement","Api Management","apimanagement","NA","NA","","","" "Microsoft.Azure.Management.ApplicationInsights","","0.3.0-preview","Microsoft.Azure.Management.ApplicationInsights","Application Insights","applicationinsights","NA","NA","","","" "Microsoft.Azure.Management.AppPlatform","1.0.0","","Microsoft.Azure.Management.AppPlatform","AppPlatform","appplatform","NA","NA","","","" -"Microsoft.Azure.Management.AppService.Fluent","1.34.0","","Microsoft.Azure.Management.AppService.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/appservice?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.AppService.Fluent","1.34.0","","Microsoft.Azure.Management.AppService.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/appservice","NA","","","" "Microsoft.Azure.Management.Attestation","","0.12.0-preview","Microsoft.Azure.Management.Attestation","Attestation","attestation","NA","NA","","","" "Microsoft.Azure.Management.Authorization","","2.12.0-preview","Microsoft.Azure.Management.Authorization","Authorization","authorization","NA","NA","","","" "Microsoft.Azure.Management.Automanage","","0.1.0-preview","Microsoft.Azure.Management.Automanage","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Automation","","3.8.1-preview","Microsoft.Azure.Management.Automation","Automation","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/automation/Microsoft.Azure.Management.Automation","https://docs.microsoft.com/dotnet/api/overview/azure/automation?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.Automation","","3.8.1-preview","Microsoft.Azure.Management.Automation","Automation","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/automation/Microsoft.Azure.Management.Automation","https://docs.microsoft.com/dotnet/api/overview/azure/automation","NA","","","" "Microsoft.Azure.Management.Avs","","1.0.0-preview.1","Microsoft.Azure.Management.Avs","Avs","avs","NA","NA","","","" "Microsoft.Azure.Management.AzureStackHCI","","1.0.0-preview.1","Microsoft.Azure.Management.AzureStackHCI","Azure StackHCI","azurestackhci","NA","NA","","","" "Microsoft.Azure.Management.BackupServices","","1.0.5-preview","Microsoft.Azure.Management.BackupServices","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Batch","12.0.0","","Microsoft.Azure.Management.Batch","Batch","batch","https://docs.microsoft.com/dotnet/api/overview/azure/batch?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Batch","12.0.0","","Microsoft.Azure.Management.Batch","Batch","batch","https://docs.microsoft.com/dotnet/api/overview/azure/batch","NA","","","" "Microsoft.Azure.Management.Batch.Fluent","1.26.1","","Microsoft.Azure.Management.Batch.Fluent","","NA","NA","NA","","","" -"Microsoft.Azure.Management.BatchAI","2.0.0","","Microsoft.Azure.Management.BatchAI","BatchAI","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/batchai/Microsoft.Azure.Management.BatchAI","https://docs.microsoft.com/dotnet/api/overview/azure/batchai?view=azure-dotnet","","","","" +"Microsoft.Azure.Management.BatchAI","2.0.0","","Microsoft.Azure.Management.BatchAI","BatchAI","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/batchai/Microsoft.Azure.Management.BatchAI","https://docs.microsoft.com/dotnet/api/overview/azure/batchai","","","","" "Microsoft.Azure.Management.BatchAI.Fluent","1.34.0","","Microsoft.Azure.Management.BatchAI.Fluent","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Billing","4.1.0","","Microsoft.Azure.Management.Billing","Billing","billing","https://docs.microsoft.com/dotnet/api/overview/azure/billing?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Billing","4.1.0","","Microsoft.Azure.Management.Billing","Billing","billing","https://docs.microsoft.com/dotnet/api/overview/azure/billing","NA","","","" "Microsoft.Azure.Management.Billing.Fluent","","1.9.1-beta","Microsoft.Azure.Management.Billing.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.Blueprint","","0.20.7-preview","Microsoft.Azure.Management.Blueprint","Blueprint","blueprint","NA","NA","","","" "Microsoft.Azure.Management.BotService","","0.9.3-preview","Microsoft.Azure.Management.BotService","BotService","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/botservice/Microsoft.Azure.Management.BotService","NA","","","","" "Microsoft.Azure.Management.Cdn","","5.0.0-preview","Microsoft.Azure.Management.Cdn","Cdn","cdn","NA","NA","","","" -"Microsoft.Azure.Management.Cdn.Fluent","1.34.0","","Microsoft.Azure.Management.Cdn.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/cdn?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Cdn.Fluent","1.34.0","","Microsoft.Azure.Management.Cdn.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/cdn","NA","","","" "Microsoft.Azure.Management.CognitiveServices","","7.4.0-preview","Microsoft.Azure.Management.CognitiveServices","Cognitive Services","cognitiveservices","NA","NA","","","" "Microsoft.Azure.Management.CognitiveServices.Fluent","","1.9.1-beta","Microsoft.Azure.Management.CognitiveServices.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.Compute","39.0.0","","Microsoft.Azure.Management.Compute","Compute","compute","NA","NA","","","" -"Microsoft.Azure.Management.Compute.Fluent","1.34.0","","Microsoft.Azure.Management.Compute.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtualmachines?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Compute.Fluent","1.34.0","","Microsoft.Azure.Management.Compute.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtualmachines","NA","","","" "Microsoft.Azure.Management.Consumption","3.0.2","","Microsoft.Azure.Management.Consumption","Consumption","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/consumption/Microsoft.Azure.Management.Consumption","NA","","","","" "Microsoft.Azure.Management.Consumption.Fluent","","1.9.1-beta","Microsoft.Azure.Management.Consumption.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.ContainerInstance","3.0.0","","Microsoft.Azure.Management.ContainerInstance","ContainerInstance","containerinstance","NA","NA","","","" -"Microsoft.Azure.Management.ContainerInstance.Fluent","1.34.0","","Microsoft.Azure.Management.ContainerInstance.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/containerinstance?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.ContainerInstance.Fluent","1.34.0","","Microsoft.Azure.Management.ContainerInstance.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/containerinstance","NA","","","" "Microsoft.Azure.Management.ContainerRegistry","","5.0.0-preview.5","Microsoft.Azure.Management.ContainerRegistry","ContainerRegistry","containerregistry","NA","NA","","","" "Microsoft.Azure.Management.ContainerRegistry.Fluent","1.34.0","","Microsoft.Azure.Management.ContainerRegistry.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.ContainerService","1.1.0","","Microsoft.Azure.Management.ContainerService","ContainerService","containerservice","NA","NA","","","" @@ -485,31 +485,31 @@ "Microsoft.Azure.Management.CustomerInsights.Fluent","","1.9.1-beta","Microsoft.Azure.Management.CustomerInsights.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.DataBox","1.2.0","","Microsoft.Azure.Management.DataBox","DataBox","databox","NA","NA","","","" "Microsoft.Azure.Management.DataBoxEdge","1.0.0","","Microsoft.Azure.Management.DataBoxEdge","DataBoxEdge","databoxedge","NA","NA","","","" -"Microsoft.Azure.Management.DataFactories","4.13.3","","Microsoft.Azure.Management.DataFactories","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.DataFactory","4.12.0","","Microsoft.Azure.Management.DataFactory","DataFactory","datafactory","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.DataLake.Analytics","","3.5.3-preview","Microsoft.Azure.Management.DataLake.Analytics","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-analytics?view=azure-dotnet-preview","","","","" -"Microsoft.Azure.Management.DataLake.Store","","2.4.2-preview","Microsoft.Azure.Management.DataLake.Store","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.DataFactories","4.13.3","","Microsoft.Azure.Management.DataFactories","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory","NA","","","" +"Microsoft.Azure.Management.DataFactory","4.12.0","","Microsoft.Azure.Management.DataFactory","DataFactory","datafactory","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory","NA","","","" +"Microsoft.Azure.Management.DataLake.Analytics","","3.5.3-preview","Microsoft.Azure.Management.DataLake.Analytics","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-analytics","","","","" +"Microsoft.Azure.Management.DataLake.Store","","2.4.2-preview","Microsoft.Azure.Management.DataLake.Store","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-store","NA","","","" "Microsoft.Azure.Management.DataLake.StoreUploader","","1.0.1-preview","Microsoft.Azure.Management.DataLake.StoreUploader","","NA","NA","NA","","","" "Microsoft.Azure.Management.DataMigration","","0.10.0-preview","Microsoft.Azure.Management.DataMigration","DataMigration","datamigration","NA","","","","" -"Microsoft.Azure.Management.DataShare","1.0.1","","Microsoft.Azure.Management.DataShare","DataShare","datashare","https://docs.microsoft.com/dotnet/api/overview/azure/datashare?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.DataShare","1.0.1","","Microsoft.Azure.Management.DataShare","DataShare","datashare","https://docs.microsoft.com/dotnet/api/overview/azure/datashare","NA","","","" "Microsoft.Azure.Management.DeploymentManager","","0.9.1-preview","Microsoft.Azure.Management.DeploymentManager","DeploymentManager","deploymentmanager","NA","NA","","","" "Microsoft.Azure.Management.DeviceProvisioningServices","1.0.0","","Microsoft.Azure.Management.DeviceProvisioningServices","Device Provisioning Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/deviceprovisioningservices/Microsoft.Azure.Management.DeviceProvisioningServices","NA","","","","" "Microsoft.Azure.Management.Devices.Fluent","","1.9.1-beta","Microsoft.Azure.Management.Devices.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.DevSpaces","","0.10.0-preview","Microsoft.Azure.Management.DevSpaces","DevSpaces","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/devspaces/Microsoft.Azure.Management.DevSpaces","NA","NA","","","" "Microsoft.Azure.Management.DevTestLabs","3.0.0","","Microsoft.Azure.Management.DevTestLabs","DevTestLabs","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/devtestlabs/Microsoft.Azure.Management.DevTestLabs","NA","","","","" "Microsoft.Azure.Management.DigitalTwins","","1.0.0-preview.1","Microsoft.Azure.Management.DigitalTwins","DigitalTwins","digitaltwins","NA","NA","","","" -"Microsoft.Azure.Management.Dns","3.0.1","","Microsoft.Azure.Management.Dns","Dns","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/dns/Microsoft.Azure.Management.Dns","https://docs.microsoft.com/dotnet/api/overview/azure/dns?view=azure-dotnet","","","","" +"Microsoft.Azure.Management.Dns","3.0.1","","Microsoft.Azure.Management.Dns","Dns","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/dns/Microsoft.Azure.Management.Dns","https://docs.microsoft.com/dotnet/api/overview/azure/dns","","","","" "Microsoft.Azure.Management.Dns.Fluent","1.34.0","","Microsoft.Azure.Management.Dns.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.EdgeGateway","","0.8.1-preview","Microsoft.Azure.Management.EdgeGateway","EdgeGateway","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/edgegateway/Microsoft.Azure.Management.EdgeGateway","NA","","","","" -"Microsoft.Azure.Management.EventGrid","6.0.0","","Microsoft.Azure.Management.EventGrid","EventGrid","eventgrid","https://docs.microsoft.com/dotnet/api/overview/azure/eventgrid?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.EventHub","","2.8.0-preview","Microsoft.Azure.Management.EventHub","EventHub","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Microsoft.Azure.Management.EventHub","https://docs.microsoft.com/dotnet/api/overview/azure/event-hubs?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.EventGrid","6.0.0","","Microsoft.Azure.Management.EventGrid","EventGrid","eventgrid","https://docs.microsoft.com/dotnet/api/overview/azure/eventgrid","NA","","","" +"Microsoft.Azure.Management.EventHub","","2.8.0-preview","Microsoft.Azure.Management.EventHub","EventHub","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Microsoft.Azure.Management.EventHub","https://docs.microsoft.com/dotnet/api/overview/azure/event-hubs","NA","","","" "Microsoft.Azure.Management.EventHub.Fluent","1.34.0","","Microsoft.Azure.Management.EventHub.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.Fluent","1.34.0","","Microsoft.Azure.Management.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.FrontDoor","3.0.0","","Microsoft.Azure.Management.FrontDoor","FrontDoor","frontdoor","NA","NA","","","" "Microsoft.Azure.Management.Graph.RBAC.Fluent","1.34.0","","Microsoft.Azure.Management.Graph.RBAC.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.GuestConfiguration","1.4.0","","Microsoft.Azure.Management.GuestConfiguration","GuestConfiguration","guestconfiguration","NA","NA","","","" -"Microsoft.Azure.Management.HDInsight","5.6.0","","Microsoft.Azure.Management.HDInsight","HDInsight","hdinsight","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.HDInsight.Job","2.0.7","","Microsoft.Azure.Management.HDInsight.Job","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.HDInsight","5.6.0","","Microsoft.Azure.Management.HDInsight","HDInsight","hdinsight","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight","NA","","","" +"Microsoft.Azure.Management.HDInsight.Job","2.0.7","","Microsoft.Azure.Management.HDInsight.Job","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight","NA","","","" "Microsoft.Azure.Management.HealthcareApis","2.0.0","","Microsoft.Azure.Management.HealthcareApis","Healthcare Apis","healthcareapis","NA","NA","","","" "Microsoft.Azure.Management.HybridCompute","","0.1.0-preview.2","Microsoft.Azure.Management.HybridCompute","Hybrid Compute","hybridcompute","NA","NA","","","" "Microsoft.Azure.Management.HybridData","1.0.1","","Microsoft.Azure.Management.HybridData","Hybrid Data","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.Management.HybridData_1.0.1/sdk/hybriddatamanager/Microsoft.Azure.Management.HybridDataManager","NA","NA","","","" @@ -538,15 +538,15 @@ "Microsoft.Azure.Management.MarketplaceOrdering","1.0.1","","Microsoft.Azure.Management.MarketplaceOrdering","MarketplaceOrdering","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/marketplaceordering/Microsoft.Azure.Management.MarketplaceOrdering","NA","","","","" "Microsoft.Azure.Management.Media","","2.1.0-preview","Microsoft.Azure.Management.Media","Media Services","mediaservices","NA","NA","","","" "Microsoft.Azure.Management.Migrate.ResourceMover","","1.0.0-preview","Microsoft.Azure.Management.Migrate.ResourceMover","","NA","NA","NA","","","" -"Microsoft.Azure.Management.MixedReality","1.0.0","","Microsoft.Azure.Management.MixedReality","MixedReality","mixedreality","https://docs.microsoft.com/dotnet/api/overview/azure/mixed-reality?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.MixedReality","1.0.0","","Microsoft.Azure.Management.MixedReality","MixedReality","mixedreality","https://docs.microsoft.com/dotnet/api/overview/azure/mixed-reality","NA","","","" "Microsoft.Azure.Management.Monitor","","0.25.3-preview","Microsoft.Azure.Management.Monitor","Monitor","monitor","NA","NA","","","" -"Microsoft.Azure.Management.Monitor.Fluent","1.34.0","","Microsoft.Azure.Management.Monitor.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/monitor?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Monitor.Fluent","1.34.0","","Microsoft.Azure.Management.Monitor.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/monitor","NA","","","" "Microsoft.Azure.Management.Msi.Fluent","1.34.0","","Microsoft.Azure.Management.Msi.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.MySQL","","0.1.0-preview","Microsoft.Azure.Management.MySQL","","NA","NA","NA","","","" "Microsoft.Azure.Management.NetApp","1.7.0","","Microsoft.Azure.Management.NetApp","NetApp","netapp","NA","NA","","","" "Microsoft.Azure.Management.Network","20.1.1","","Microsoft.Azure.Management.Network","Network","network","NA","NA","","","" -"Microsoft.Azure.Management.Network.Fluent","1.34.0","","Microsoft.Azure.Management.Network.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtual-network?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.NotificationHubs","","2.3.3-preview","Microsoft.Azure.Management.NotificationHubs","NotificationHubs","notificationhubs","https://docs.microsoft.com/dotnet/api/overview/azure/notification-hubs?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.Network.Fluent","1.34.0","","Microsoft.Azure.Management.Network.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/virtual-network","NA","","","" +"Microsoft.Azure.Management.NotificationHubs","","2.3.3-preview","Microsoft.Azure.Management.NotificationHubs","NotificationHubs","notificationhubs","https://docs.microsoft.com/dotnet/api/overview/azure/notification-hubs","NA","","","" "Microsoft.Azure.Management.NotificationHubs.Fluent","","1.9.1-beta","Microsoft.Azure.Management.NotificationHubs.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.OperationalInsights","","0.21.0-preview","Microsoft.Azure.Management.OperationalInsights","Operational Insights","operationalinsights","NA","NA","","","" "Microsoft.Azure.Management.Peering","2.1.0","","Microsoft.Azure.Management.Peering","Peering","peering","NA","NA","","","" @@ -575,19 +575,19 @@ "Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Storage","","0.9.0-preview","Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Storage","","NA","NA","NA","","","" "Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Subscription","","0.9.0-preview","Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Subscription","","NA","NA","NA","","","" "Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Websites","","0.9.0-preview","Microsoft.Azure.Management.Profiles.hybrid_2019_03_01.Websites","","NA","NA","NA","","","" -"Microsoft.Azure.Management.RecoveryServices","","4.3.0-preview","Microsoft.Azure.Management.RecoveryServices","Recovery Services","recoveryservices","https://docs.microsoft.com/dotnet/api/overview/azure/recovery-services?view=azure-dotnet-preview","NA","","","" -"Microsoft.Azure.Management.RecoveryServices.Backup","","4.1.2-preview","Microsoft.Azure.Management.RecoveryServices.Backup","RecoveryServices Backup","recoveryservices-backup","https://docs.microsoft.com/dotnet/api/overview/azure/recovery-services?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.RecoveryServices","","4.3.0-preview","Microsoft.Azure.Management.RecoveryServices","Recovery Services","recoveryservices","https://docs.microsoft.com/dotnet/api/overview/azure/recovery-services","NA","","","" +"Microsoft.Azure.Management.RecoveryServices.Backup","","4.1.2-preview","Microsoft.Azure.Management.RecoveryServices.Backup","RecoveryServices Backup","recoveryservices-backup","https://docs.microsoft.com/dotnet/api/overview/azure/recovery-services","NA","","","" "Microsoft.Azure.Management.RecoveryServices.SiteRecovery","","2.1.0-preview","Microsoft.Azure.Management.RecoveryServices.SiteRecovery","RecoveryServices SiteRecovery","recoveryservices-siterecovery","NA","NA","","","" "Microsoft.Azure.Management.RecoveryServicesVaultUpgrade","","1.0.0-preview","Microsoft.Azure.Management.RecoveryServicesVaultUpgrade","","NA","NA","NA","","","" "Microsoft.Azure.Management.Redis","","6.0.0-preview.2","Microsoft.Azure.Management.Redis","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Redis.Fluent","1.34.0","","Microsoft.Azure.Management.Redis.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/redis-cache?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Redis.Fluent","1.34.0","","Microsoft.Azure.Management.Redis.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/redis-cache","NA","","","" "Microsoft.Azure.Management.Relay","2.0.2","","Microsoft.Azure.Management.Relay","Relay","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/relay/Microsoft.Azure.Management.Relay","NA","","","","" "Microsoft.Azure.Management.Relay.Fluent","","1.9.1-beta","Microsoft.Azure.Management.Relay.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.RemoteApp","1.0.9","","Microsoft.Azure.Management.RemoteApp","","NA","NA","NA","","","" "Microsoft.Azure.Management.Reservations","","1.13.0-preview","Microsoft.Azure.Management.Reservations","Reservations","reservations","NA","NA","","","" "Microsoft.Azure.Management.ResourceGraph","2.0.0","","Microsoft.Azure.Management.ResourceGraph","ResourceGraph","resourcegraph","NA","","","","" "Microsoft.Azure.Management.ResourceManager","","3.10.0-preview","Microsoft.Azure.Management.ResourceManager","","NA","NA","NA","","","" -"Microsoft.Azure.Management.ResourceManager.Fluent","1.34.0","","Microsoft.Azure.Management.ResourceManager.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/resource-manager?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.ResourceManager.Fluent","1.34.0","","Microsoft.Azure.Management.ResourceManager.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/resource-manager","NA","","","" "Microsoft.Azure.Management.Resources","","2.20.1-preview","Microsoft.Azure.Management.Resources","","NA","NA","NA","","","" "Microsoft.Azure.Management.SampleProjectPublish","","0.9.0-Preview","Microsoft.Azure.Management.SampleProjectPublish","","NA","NA","NA","","","" "Microsoft.Azure.Management.Scheduler","2.2.0","","Microsoft.Azure.Management.Scheduler","Scheduler","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/scheduler/Microsoft.Azure.Management.Scheduler","NA","","","","" @@ -597,32 +597,32 @@ "Microsoft.Azure.Management.SecurityCenter","2.1.0","","Microsoft.Azure.Management.SecurityCenter","Security Center","securitycenter","NA","NA","","","" "Microsoft.Azure.Management.ServerManagement","1.1.0","","Microsoft.Azure.Management.ServerManagement","ServerManagement","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/servermanagement/Microsoft.Azure.Management.ServerManagement","NA","","","","" "Microsoft.Azure.Management.ServiceBus","2.1.0","","Microsoft.Azure.Management.ServiceBus","ServiceBus","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/servicebus/Microsoft.Azure.Management.ServiceBus","NA","","","","" -"Microsoft.Azure.Management.ServiceBus.Fluent","1.34.0","","Microsoft.Azure.Management.ServiceBus.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus?view=azure-dotnet","NA","","","" -"Microsoft.Azure.Management.ServiceFabric","1.3.0","","Microsoft.Azure.Management.ServiceFabric","Service Fabric","servicefabric","https://docs.microsoft.com/dotnet/api/overview/azure/service-fabric?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.ServiceBus.Fluent","1.34.0","","Microsoft.Azure.Management.ServiceBus.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus","NA","","","" +"Microsoft.Azure.Management.ServiceFabric","1.3.0","","Microsoft.Azure.Management.ServiceFabric","Service Fabric","servicefabric","https://docs.microsoft.com/dotnet/api/overview/azure/service-fabric","NA","","","" "Microsoft.Azure.Management.ServiceFabric.Fluent","","1.9.1-beta","Microsoft.Azure.Management.ServiceFabric.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.SignalR","1.1.0","","Microsoft.Azure.Management.SignalR","SignalR","signalr","NA","NA","","","" "Microsoft.Azure.Management.SiteRecovery","","2.0.2-preview","Microsoft.Azure.Management.SiteRecovery","","NA","NA","NA","","","" "Microsoft.Azure.Management.Sql","","1.45.0-preview","Microsoft.Azure.Management.Sql","","NA","NA","NA","","","" -"Microsoft.Azure.Management.Sql.Fluent","1.34.0","","Microsoft.Azure.Management.Sql.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/sql?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.Sql.Fluent","1.34.0","","Microsoft.Azure.Management.Sql.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/sql","NA","","","" "Microsoft.Azure.Management.SqlVirtualMachine","1.0.0","","Microsoft.Azure.Management.SqlVirtualMachine","Sql VirtualMachine","sqlvirtualmachine","NA","","","","" "Microsoft.Azure.Management.Storage","17.2.0","","Microsoft.Azure.Management.Storage","Storage","storage","NA","NA","","","" "Microsoft.Azure.Management.Storage.Fluent","1.34.0","","Microsoft.Azure.Management.Storage.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.StorageCache","1.1.0","","Microsoft.Azure.Management.StorageCache","Storage Cache","storagecache","NA","NA","","","" "Microsoft.Azure.Management.StorageSync","5.0.1","","Microsoft.Azure.Management.StorageSync","Storage Sync","storagesync","NA","NA","","","" -"Microsoft.Azure.Management.StorSimple.Fluent","","1.9.1-beta","Microsoft.Azure.Management.StorSimple.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/storsimple?view=azure-dotnet-preview","NA","","","" +"Microsoft.Azure.Management.StorSimple.Fluent","","1.9.1-beta","Microsoft.Azure.Management.StorSimple.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/storsimple","NA","","","" "Microsoft.Azure.Management.Storsimple8000series","1.0.0","","Microsoft.Azure.Management.Storsimple8000series","Storsimple8000series","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storsimple8000series/Microsoft.Azure.Management.StorSimple8000Series","NA","NA","","","" -"Microsoft.Azure.Management.StreamAnalytics","2.1.0","3.0.0-preview","Microsoft.Azure.Management.StreamAnalytics","StreamAnalytics","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/streamanalytics/Microsoft.Azure.Management.StreamAnalytics","https://docs.microsoft.com/dotnet/api/overview/azure/stream-analytics?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.StreamAnalytics","2.1.0","3.0.0-preview","Microsoft.Azure.Management.StreamAnalytics","StreamAnalytics","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/streamanalytics/Microsoft.Azure.Management.StreamAnalytics","https://docs.microsoft.com/dotnet/api/overview/azure/stream-analytics","NA","","","" "Microsoft.Azure.Management.Subscription","1.1.5","","Microsoft.Azure.Management.Subscription","Subscription","subscription","NA","NA","","","" "Microsoft.Azure.Management.Support","1.0.1","","Microsoft.Azure.Management.Support","Support","support","NA","NA","","","" "Microsoft.Azure.Management.Synapse","","1.0.0-preview.3","Microsoft.Azure.Management.Synapse","Synapse","synapse","NA","NA","","","" "Microsoft.Azure.Management.TrafficManager","2.5.3","","Microsoft.Azure.Management.TrafficManager","Traffic Manager","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/trafficmanager/Microsoft.Azure.Management.TrafficManager","NA","","","","" -"Microsoft.Azure.Management.TrafficManager.Fluent","1.34.0","","Microsoft.Azure.Management.TrafficManager.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/traffic-manager?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Management.TrafficManager.Fluent","1.34.0","","Microsoft.Azure.Management.TrafficManager.Fluent","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/traffic-manager","NA","","","" "Microsoft.Azure.Management.WebSites","3.1.0","","Microsoft.Azure.Management.WebSites","WebSites","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/websites/Microsoft.Azure.Management.WebSites","NA","NA","","","" "Microsoft.Azure.Management.WorkloadMonitor","","0.9.2-preview","Microsoft.Azure.Management.WorkloadMonitor","","NA","NA","NA","","","" "Microsoft.Azure.Media.LiveVideoAnalytics.Edge","","1.0.4-preview.1","Microsoft.Azure.Media.LiveVideoAnalytics.Edge","Media Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/mediaservices/Microsoft.Azure.Media.LiveVideoAnalytics.Edge","NA","","","","" "Microsoft.Azure.Mobile.Server.CrossDomain","2.0.3","","Microsoft.Azure.Mobile.Server.CrossDomain","","NA","NA","NA","","","" "Microsoft.Azure.OperationalInsights","1.0.0","","Microsoft.Azure.OperationalInsights","Operational Insights","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/operationalinsights/Microsoft.Azure.OperationalInsights","NA","","","","" -"Microsoft.Azure.Relay","2.0.1","","Microsoft.Azure.Relay","Relay","https://github.com/Azure/azure-relay-dotnet/tree/2.0.1","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus-relay?view=azure-dotnet","NA","","","" +"Microsoft.Azure.Relay","2.0.1","","Microsoft.Azure.Relay","Relay","https://github.com/Azure/azure-relay-dotnet/tree/2.0.1","https://docs.microsoft.com/dotnet/api/overview/azure/service-bus-relay","NA","","","" "Microsoft.Azure.Search","10.1.0","","Microsoft.Azure.Search","Search","search","NA","","","","Replaced by: Azure.Search.Documents" "Microsoft.Azure.Search.Common","10.1.0","","Microsoft.Azure.Search.Common","Search","search","NA","","","","" "Microsoft.Azure.Search.Data","10.1.0","","Microsoft.Azure.Search.Data","Search","search","NA","","","","" @@ -658,7 +658,7 @@ "Microsoft.Azure.WebJobs.Extensions.AuthTokens","","1.0.0-beta6","Microsoft.Azure.WebJobs.Extensions.AuthTokens","WebJob","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.CosmosDB","3.0.7","","Microsoft.Azure.WebJobs.Extensions.CosmosDB","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions/tree/cosmos-v3.0.7/src/WebJobs.Extensions.CosmosDB","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.DocumentDB","1.3.0","","Microsoft.Azure.WebJobs.Extensions.DocumentDB","WebJobs","https://github.com/Azure/azure-webjobs-sdk-extensions","NA","NA","","","" -"Microsoft.Azure.WebJobs.Extensions.DurableTask","2.3.0","","Microsoft.Azure.WebJobs.Extensions.DurableTask","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/v2.2.2/src/WebJobs.Extensions.DurableTask","https://docs.microsoft.com/dotnet/api/overview/azure/functions?view=azure-dotnet","NA","","","" +"Microsoft.Azure.WebJobs.Extensions.DurableTask","2.3.0","","Microsoft.Azure.WebJobs.Extensions.DurableTask","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/v2.2.2/src/WebJobs.Extensions.DurableTask","https://docs.microsoft.com/dotnet/api/overview/azure/functions","NA","","","" "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","0.3.2","","Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers","WebJobs","https://github.com/Azure/azure-functions-durable-extension/tree/Analyzer-v0.3.0/src/WebJobs.Extensions.DurableTask.Analyzers","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.EdgeHub","1.0.7","","Microsoft.Azure.WebJobs.Extensions.EdgeHub","WebJobs","https://github.com/Azure/iotedge/tree/1.0.7/edge-hub","NA","NA","","","" "Microsoft.Azure.WebJobs.Extensions.EventGrid","2.1.0","","Microsoft.Azure.WebJobs.Extensions.EventGrid","WebJobs","https://github.com/Azure/azure-functions-eventgrid-extension/tree/v2.1.0/src/EventGridExtension","NA","NA","","","" @@ -750,7 +750,7 @@ "wastorage.v120","4.0.0","","wastorage.v120","","NA","NA","NA","","","" "wastorage.v140","4.0.0","","wastorage.v140","","NA","NA","NA","","","" "WindowsAzure.Caching","1.7.0","","WindowsAzure.Caching","","NA","NA","NA","","","" -"windowsazure.mediaservices","4.2.0","","windowsazure.mediaservices","MediaServices","https://github.com/Azure/azure-sdk-for-media-services","https://docs.microsoft.com/dotnet/api/overview/azure/media-services?view=azure-dotnet","NA","","","" +"windowsazure.mediaservices","4.2.0","","windowsazure.mediaservices","MediaServices","https://github.com/Azure/azure-sdk-for-media-services","https://docs.microsoft.com/dotnet/api/overview/azure/media-services","NA","","","" "WindowsAzure.MobileServices","1.3.2","","WindowsAzure.MobileServices","","NA","NA","NA","","","" "WindowsAzure.MobileServices.Backend","1.0.478","","WindowsAzure.MobileServices.Backend","","NA","NA","NA","","","" "WindowsAzure.MobileServices.Backend.Entity","1.0.478","","WindowsAzure.MobileServices.Backend.Entity","","NA","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 77fa5a45be4..05060376607 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -59,7 +59,7 @@ "azure-resourcemanager-storage","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Storage","Storage","resourcemanager","","","mgmt","","" "azure-resourcemanager-trafficmanager","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Traffic Manager","Traffic Manager","resourcemanager","","","mgmt","","" "actors-preview","com.microsoft.azure.servicefabric","1.0.0","","actors-preview","","NA","NA","NA","","","" -"adal4j","com.microsoft.azure","1.6.6","","adal4j","","NA","https://docs.microsoft.com/java/api/overview/azure/activedirectory?view=azure-java-stable","NA","","","" +"adal4j","com.microsoft.azure","1.6.6","","adal4j","","NA","https://docs.microsoft.com/java/api/overview/azure/activedirectory","NA","","","" "apache-spark-archetype","com.microsoft.azure","0.1.0","","apache-spark-archetype","","NA","NA","NA","","","" "api-annotations","com.microsoft.azure","0.0.2","","api-annotations","","NA","NA","NA","","","" "applicationinsights-agent","com.microsoft.azure","2.6.2","2.6.2-BETA.2","applicationinsights-agent","","NA","NA","NA","","","" @@ -94,7 +94,7 @@ "azure-arm-parent","com.microsoft.azure","1.3.2","","azure-arm-parent","Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-arm-parent","NA","NA","","","" "azure-authentication-msi-token-provider","com.microsoft.azure.msi_auth_token_provider","Msi Auth Token","1.0.0-Beta-2","azure-authentication-msi-token-provider","","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/authorization/microsoft-azure-authentication-msi-token-provider","NA","NA","","","" "azure-auth-helper","com.microsoft.azure","0.6.0","","azure-auth-helper","","NA","NA","NA","","","" -"azure-batch","com.microsoft.azure","8.0.0","","azure-batch","Batch","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batch/microsoft-azure-batch","https://docs.microsoft.com/java/api/overview/azure/batch?view=azure-java-stable","","","","" +"azure-batch","com.microsoft.azure","8.0.0","","azure-batch","Batch","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/batch/microsoft-azure-batch","https://docs.microsoft.com/java/api/overview/azure/batch","","","","" "azure-bom","com.microsoft.azure","","1.0.0.M1","azure-bom","","NA","NA","NA","","","" "azure-client-authentication","com.microsoft.azure","1.7.9","","azure-client-authentication","","NA","NA","NA","","","" "azure-client-authentication","com.microsoft.azure.v2","","2.0.0-java7-beta1","azure-client-authentication","","NA","NA","NA","","","" @@ -162,11 +162,11 @@ "azure-cosmos-parent","com.microsoft.azure","3.5.0","","azure-cosmos-parent","","NA","NA","NA","","","" "azure-cosmos-serialization","com.azure.data","2.9.6","","azure-cosmos-serialization","","NA","NA","NA","","","" "azure-data-gremlin-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-data-gremlin-spring-boot-starter","","NA","","NA","","","" -"azure-data-lake-store-sdk","com.microsoft.azure","2.3.8","","azure-data-lake-store-sdk","","NA","https://docs.microsoft.com/java/api/overview/azure/datalake?view=azure-java-stable","NA","","","Replaced by: azure-storage-file-datalake" +"azure-data-lake-store-sdk","com.microsoft.azure","2.3.8","","azure-data-lake-store-sdk","","NA","https://docs.microsoft.com/java/api/overview/azure/datalake","NA","","","Replaced by: azure-storage-file-datalake" "azure-data-schemaregistry","com.azure","","1.0.0-beta.4","azure-data-schemaregistry","Data Schemaregistry","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/schemaregistry/azure-data-schemaregistry","","","","","" "azure-data-sdk-parent","com.azure","1.3.0","","azure-data-sdk-parent","Data Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-data-sdk-parent","NA","NA","","","" "azure-dependencies-bom","com.microsoft.azure","2.3.0","","azure-dependencies-bom","","NA","NA","NA","","","" -"azure-documentdb","com.microsoft.azure","2.6.0","","azure-documentdb","","NA","https://docs.microsoft.com/java/api/overview/azure/cosmosdb?view=azure-java-stable","NA","","","" +"azure-documentdb","com.microsoft.azure","2.6.0","","azure-documentdb","","NA","https://docs.microsoft.com/java/api/overview/azure/cosmosdb","NA","","","" "azure-documentdb-hadoop","com.microsoft.azure","1.2.0","","azure-documentdb-hadoop","","NA","NA","NA","","","" "azure-documentdb-rx","com.microsoft.azure","","0.9.0-rc2","azure-documentdb-rx","","NA","NA","NA","","","" "azure-documentdb-spring-boot-autoconfigure","com.microsoft.azure","0.1.7","","azure-documentdb-spring-boot-autoconfigure","","NA","NA","NA","","","" @@ -233,7 +233,7 @@ "azure-mgmt-appconfiguration","com.microsoft.azure.appconfiguration.v2019_11_01_preview","","1.0.0-beta","azure-mgmt-appconfiguration.v2019_11_01_preview","App Configuration","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appconfiguration/mgmt-v2019_11_01_preview","NA","NA","","","" "azure-mgmt-appplatform","com.microsoft.azure.appplatform.v2020_07_01","","1.0.0-beta","azure-mgmt-appplatform","App Platform","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appplatform/mgmt-v2020_07_01","NA","NA","","","" "azure-mgmt-appplatform","com.microsoft.azure.appplatform.v2019_05_01_preview","","1.0.0-beta-2","azure-mgmt-appplatform.v2019_05_01_preview","App Platform","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appplatform/mgmt-v2019_05_01_preview","NA","NA","","","" -"azure-mgmt-appservice","com.microsoft.azure","1.36.3","","azure-mgmt-appservice","","NA","https://docs.microsoft.com/java/api/overview/azure/appservice?view=azure-java-stable","NA","","","" +"azure-mgmt-appservice","com.microsoft.azure","1.36.3","","azure-mgmt-appservice","","NA","https://docs.microsoft.com/java/api/overview/azure/appservice","NA","","","" "azure-mgmt-appservice","com.microsoft.azure.appservice.v2019_08_01","","1.0.0-beta","azure-mgmt-appservice","","NA","NA","NA","","","" "azure-mgmt-appservice","com.microsoft.azure.appservice.v2016_03_01","","1.0.0-beta-2","azure-mgmt-appservice.v2016_03_01","App Service","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appservice/mgmt-v2016_03_01","NA","NA","","","" "azure-mgmt-appservice","com.microsoft.azure.appservice.v2016_08_01","","1.0.0-beta-1","azure-mgmt-appservice.v2016_08_01","App Service","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/appservice/mgmt-v2016_08_01","NA","NA","","","" @@ -257,13 +257,13 @@ "azure-mgmt-batchai","com.microsoft.azure.batchai-2018-05-01","","1.0.0-beta-1","azure-mgmt-batchai.v2018_05_01","","NA","NA","NA","","","" "azure-mgmt-billing","com.microsoft.azure","","1.10.0-beta","azure-mgmt-billing","","NA","NA","NA","","TRUE","" "azure-mgmt-billing","com.microsoft.azure.subscription.v2019_10_01_preview","","1.0.0-beta","azure-mgmt-billing.v2019_10_01_preview","Billing","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/subscription/mgmt-v2019_10_01_preview","NA","NA","","","" -"azure-mgmt-cdn","com.microsoft.azure","1.36.3","","azure-mgmt-cdn","","NA","https://docs.microsoft.com/java/api/overview/azure/cdn?view=azure-java-stable","NA","","","" +"azure-mgmt-cdn","com.microsoft.azure","1.36.3","","azure-mgmt-cdn","","NA","https://docs.microsoft.com/java/api/overview/azure/cdn","NA","","","" "azure-mgmt-cdn","com.microsoft.azure.cdn.v2020_04_15","","1.0.0-beta-1","azure-mgmt-cdn","Cdn","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cdn/mgmt-v2020_04_15","NA","NA","","","" "azure-mgmt-cognitiveservices","com.microsoft.azure","","1.10.0-beta","azure-mgmt-cognitiveservices","","NA","NA","NA","","TRUE","" "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices.v2017_04_18","1.0.1","","azure-mgmt-cognitiveservices.v2017_04_18","Cognitive Services","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cognitiveservices/mgmt-v2017_04_18","NA","NA","","","" "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices-2017-04-18","","1.0.0-beta-1","azure-mgmt-cognitiveservices.v2017_04_18","","NA","NA","NA","","","" "azure-mgmt-commerce","com.microsoft.azure.commerce.v2015_06_01_preview","","1.0.0-beta","azure-mgmt-commerce","","NA","NA","NA","","","" -"azure-mgmt-compute","com.microsoft.azure","1.36.3","","azure-mgmt-compute","","NA","https://docs.microsoft.com/java/api/overview/azure/virtualmachines?view=azure-java-stable","NA","","","" +"azure-mgmt-compute","com.microsoft.azure","1.36.3","","azure-mgmt-compute","","NA","https://docs.microsoft.com/java/api/overview/azure/virtualmachines","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2020_06_01","","1.0.0-beta","azure-mgmt-compute","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2017_03_30","","1.0.0-beta-2","azure-mgmt-compute.v2017_03_30","Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/compute/mgmt-v2017_03_30","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2017_12_01","","1.0.0-beta-1","azure-mgmt-compute.v2017_12_01","Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/compute/mgmt-v2017_12_01","NA","NA","","","" @@ -307,7 +307,7 @@ "azure-mgmt-databox","com.microsoft.azure.databox.v2019_09_01","","1.0.0-beta","azure-mgmt-databox.v2019_09_01","Databox","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/databox/mgmt-v2019_09_01","NA","NA","","","" "azure-mgmt-databoxedge","com.microsoft.azure.edgegateway.v2019_03_01","","1.0.0-beta","azure-mgmt-databoxedge.v2019_03_01","Databoxedge","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/edgegateway/mgmt-v2019_03_01","NA","NA","","","" "azure-mgmt-datafactory","com.microsoft.azure.datafactory.v2018_06_01","","1.0.0-beta-5","azure-mgmt-datafactory.v2018_06_01","Datafactory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/datafactory/mgmt-v2018_06_01","NA","NA","","","" -"azure-mgmt-datalake-analytics","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-analytics","","NA","https://docs.microsoft.com/java/api/overview/azure/datalakeanalytics?view=azure-java-stable","NA","","","" +"azure-mgmt-datalake-analytics","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-analytics","","NA","https://docs.microsoft.com/java/api/overview/azure/datalakeanalytics","NA","","","" "azure-mgmt-datalake-store","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-store","","NA","NA","NA","","","" "azure-mgmt-datalake-store-uploader","com.microsoft.azure","","1.0.0-beta1.2","azure-mgmt-datalake-store-uploader","","NA","NA","NA","","TRUE","" "azure-mgmt-datamigration","com.microsoft.azure.azuredatabasemigrationservice.v2018_07_15_preview","","1.0.0-beta","azure-mgmt-datamigration.v2018_07_15_preview","","NA","NA","NA","","","" @@ -320,7 +320,7 @@ "azure-mgmt-devtestlabs","com.microsoft.azure.devtestlabs.v2018_09_15","","1.0.0-beta","azure-mgmt-devtestlabs.v2018_09_15","Devtestlabs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/devtestlabs/mgmt-v2018_09_15","NA","NA","","","" "azure-mgmt-digitaltwins","com.microsoft.azure.digitaltwins.v2020_03_01_preview","","1.0.0-beta","azure-mgmt-digitaltwins","Digitaltwins","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/digitaltwins/mgmt-v2020_03_01_preview","NA","NA","","","" "azure-mgmt-digitaltwins","com.microsoft.azure.digitaltwins.v2020_10_31","","1.0.0-beta-1","azure-mgmt-digitaltwins","","NA","NA","NA","","","" -"azure-mgmt-dns","com.microsoft.azure","1.36.3","","azure-mgmt-dns","","NA","https://docs.microsoft.com/java/api/overview/azure/dns?view=azure-java-stable","NA","","","" +"azure-mgmt-dns","com.microsoft.azure","1.36.3","","azure-mgmt-dns","","NA","https://docs.microsoft.com/java/api/overview/azure/dns","NA","","","" "azure-mgmt-dns","com.microsoft.azure.dns.v2016_04_01","","1.0.0-beta-2","azure-mgmt-dns.v2016_04_01","Dns","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/dns/mgmt-v2016_04_01","NA","NA","","","" "azure-mgmt-documentdb","com.microsoft.azure","1.1.2","","azure-mgmt-documentdb","","NA","NA","NA","","TRUE","" "azure-mgmt-documentdb","com.microsoft.azure.cosmosdb.v2015_04_08","","1.0.0-beta","azure-mgmt-documentdb.v2015_04_08","","NA","NA","NA","","","" @@ -342,7 +342,7 @@ "azure-mgmt-features","com.microsoft.azure.features.v2015_12_01","","1.0.0-beta-1","azure-mgmt-features.v2015_12_01","Features","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/features/mgmt-v2015_12_01","NA","NA","","","" "azure-mgmt-graph-rbac","com.microsoft.azure","1.36.3","","azure-mgmt-graph-rbac","","NA","NA","NA","","","" "azure-mgmt-hanaonazure","com.microsoft.azure.hanaonazure.v2017_11_03_preview","","1.0.0-beta-5","azure-mgmt-hanaonazure.v2017_11_03_preview","Hanaonazure","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hanaonazure/mgmt-v2017_11_03_preview","NA","NA","","","" -"azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.7","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight?view=azure-java-stable","NA","","","" +"azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.7","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight","NA","","","" "azure-mgmt-healthcareapis","com.microsoft.azure.healthcareapis.v2020_03_15","","1.0.0-beta","azure-mgmt-healthcareapis","","NA","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2019_12_12","","1.0.0-beta-1","azure-mgmt-hybridcompute","Hybrid Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hybridcompute/mgmt-v2019_12_12","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2020_08_02","","1.0.0-beta","azure-mgmt-hybridcompute","","NA","NA","NA","","","" @@ -415,7 +415,7 @@ "azure-mgmt-netapp","com.microsoft.azure.netapp.v2019_08_01","","1.0.0-beta","azure-mgmt-netapp.v2019_08_01","Net App","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/netapp/mgmt-v2019_08_01","NA","NA","","","" "azure-mgmt-netapp","com.microsoft.azure.netapp.v2019_10_01","","1.0.0-beta","azure-mgmt-netapp.v2019_10_01","Net App","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/netapp/mgmt-v2019_10_01","NA","NA","","","" "azure-mgmt-netapp","com.microsoft.azure.netapp.v2019_11_01","","1.0.0-beta-2","azure-mgmt-netapp.v2019_11_01","Net App","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/netapp/mgmt-v2019_11_01","NA","NA","","","" -"azure-mgmt-network","com.microsoft.azure","1.36.3","","azure-mgmt-network","","NA","https://docs.microsoft.com/java/api/overview/azure/network?view=azure-java-stable","NA","","","" +"azure-mgmt-network","com.microsoft.azure","1.36.3","","azure-mgmt-network","","NA","https://docs.microsoft.com/java/api/overview/azure/network","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2018_11_01","","1.0.0-beta","azure-mgmt-network","","NA","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2020_05_01","","1.0.0-beta-1","azure-mgmt-network","Network","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/network/mgmt-v2020_05_01","NA","NA","","","" "azure-mgmt-network","com.microsoft.azure.network.v2020_06_01","","1.0.0-beta-1","azure-mgmt-network","Network","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/network/mgmt-v2020_06_01","NA","NA","","","" @@ -469,7 +469,7 @@ "azure-mgmt-resourcegraph","com.microsoft.azure.resourcegraph.v2019_04_01","","1.0.0-beta-1","azure-mgmt-resourcegraph.v2019_04_01","Resourcegraph","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resourcegraph/mgmt-v2019_04_01","NA","NA","","","" "azure-mgmt-resourcehealth","com.microsoft.azure.resourcehealth.v2015_01_01","","1.0.0-beta","azure-mgmt-resourcehealth.v2015_01_01","Resourcehealth","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resourcehealth/mgmt-v2015_01_01","NA","NA","","","" "azure-mgmt-resourcehealth","com.microsoft.azure.resourcehealth.v2017_07_01","","1.0.0-beta","azure-mgmt-resourcehealth.v2017_07_01","Resourcehealth","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resourcehealth/mgmt-v2017_07_01","NA","NA","","","" -"azure-mgmt-resources","com.microsoft.azure","1.36.3","","azure-mgmt-resources","","NA","https://docs.microsoft.com/java/api/overview/azure/resources?view=azure-java-stable","NA","","","" +"azure-mgmt-resources","com.microsoft.azure","1.36.3","","azure-mgmt-resources","","NA","https://docs.microsoft.com/java/api/overview/azure/resources","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2020_06_01","","1.0.0-beta","azure-mgmt-resources","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2016_06_01","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2016_09_01","","1.0.0-beta","azure-mgmt-resources.v2016_09_01","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2016_09_01","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2018_02_01","","1.0.0-beta-1","azure-mgmt-resources.v2018_02_01","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2018_02_01","NA","NA","","","" @@ -517,7 +517,7 @@ "azure-mgmt-support","com.microsoft.azure.support.v2020_04_01","1.0.0","","azure-mgmt-support.v2020_04_01","Support","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/support/mgmt-v2020_04_01","NA","NA","","","" "azure-mgmt-synapse","com.microsoft.azure.synapse.v2019_06_01_preview","","1.0.0-beta-3","azure-mgmt-synapse.v2019_06_01_preview","Synapse","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/synapse/mgmt-v2019_06_01_preview","NA","NA","","","" "azure-mgmt-timeseriesinsights","com.microsoft.azure.timeseriesinsights.v2017_11_15","","1.0.0-beta","azure-mgmt-timeseriesinsights.v2017_11_15","Timeseries Insights","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/timeseriesinsights/mgmt-v2017_11_15","NA","NA","","","" -"azure-mgmt-trafficmanager","com.microsoft.azure","1.36.3","","azure-mgmt-trafficmanager","","NA","https://docs.microsoft.com/java/api/overview/azure/trafficmanager?view=azure-java-stable","NA","","","" +"azure-mgmt-trafficmanager","com.microsoft.azure","1.36.3","","azure-mgmt-trafficmanager","","NA","https://docs.microsoft.com/java/api/overview/azure/trafficmanager","NA","","","" "azure-mgmt-traffic-manager","com.microsoft.azure","0.9.8","","azure-mgmt-traffic-manager","","NA","NA","NA","","TRUE","" "azure-mgmt-utility","com.microsoft.azure","0.9.8","","azure-mgmt-utility","","NA","NA","NA","","TRUE","" "azure-mgmt-vmwarecloudsimple","com.microsoft.azure.vmwarecloudsimple.v2019_04_01","","1.0.0-beta","azure-mgmt-vmwarecloudsimple.v2019_04_01","Vmware Cloudsimple","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/vmwarecloudsimple/mgmt-v2019_04_01","NA","NA","","","" @@ -561,12 +561,12 @@ "azure-spring-data-cosmos","com.azure","3.0.0","3.0.0-beta.2","azure-spring-data-cosmos","","NA","","","","","" "azure-spring-data-cosmos-core","com.azure","","3.0.0-beta.1","azure-spring-data-cosmos-core","","NA","NA","","","","" "azure-sqldb-spark","com.microsoft.azure","1.0.2","","azure-sqldb-spark","","NA","NA","NA","","","" -"azure-storage","com.microsoft.azure","8.6.5","","azure-storage","","NA","https://docs.microsoft.com/java/api/overview/azure/storage?view=azure-java-stable","NA","","","Replaced by: individual service packages 12.x" +"azure-storage","com.microsoft.azure","8.6.5","","azure-storage","","NA","https://docs.microsoft.com/java/api/overview/azure/storage","NA","","","Replaced by: individual service packages 12.x" "azure-storage-android","com.microsoft.azure.android","2.0.0","","azure-storage-android","","NA","NA","NA","","","" "azure-storage-blob","com.microsoft.azure","11.0.1","","azure-storage-blob","Storage","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/microsoft-azure-storage-blob","","NA","","","Replaced by: azure-storage-blob 12.x" "azure-storage-blob-changefeed","com.azure","","12.0.0-beta.3","azure-storage-blob-changefeed","Storage","storage","","","","","" "azure-storage-blob-nio","com.azure","","12.0.0-beta.2","azure-storage-blob-nio","Storage","storage","","","","","" -"azure-storage-file","com.azure","","12.0.0-preview.4","azure-storage-file","Storage","storage","https://docs.microsoft.com/java/api/overview/azure/storage-file-share-readme-pre?view=azure-java-preview","NA","","","Replaced by: azure-storage-file-share" +"azure-storage-file","com.azure","","12.0.0-preview.4","azure-storage-file","Storage","storage","https://docs.microsoft.com/java/api/overview/azure/storage-file-share-readme-pre","NA","","","Replaced by: azure-storage-file-share" "azure-storage-java","com.microsoft.azure","10","","azure-storage-java","","NA","NA","NA","","","" "azure-storage-queue","com.microsoft.azure","","10.0.1-Preview","azure-storage-queue","","NA","","NA","","","Replaced by: azure-storage-queue 12.x" "azure-storage-queue-cryptography","com.azure","","12.0.0-preview.4","azure-storage-queue-cryptography","","NA","NA","NA","","","" @@ -613,9 +613,9 @@ "iothub-react_2.11","com.microsoft.azure.iot","0.9.0","","iothub-react_2.11","","NA","NA","NA","","","" "iothub-react_2.12","com.microsoft.azure.iot","0.9.0","","iothub-react_2.12","","NA","NA","NA","","","" "iothub-react_2.12.0-RC1","com.microsoft.azure.iot","0.7.0","","iothub-react_2.12.0-RC1","","NA","NA","NA","","","" -"iot-service-client","com.microsoft.azure","1.2.18","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" -"iot-service-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" -"iot-service-client-preview","com.microsoft.azure.sdk.iot","1.2.0","","iot-service-client-preview","","NA","https://docs.microsoft.com/java/api/overview/azure/iot?view=azure-java-stable","NA","","","" +"iot-service-client","com.microsoft.azure","1.2.18","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot","NA","","","" +"iot-service-client","com.microsoft.azure.sdk.iot","1.26.0","","iot-service-client","","NA","https://docs.microsoft.com/java/api/overview/azure/iot","NA","","","" +"iot-service-client-preview","com.microsoft.azure.sdk.iot","1.2.0","","iot-service-client-preview","","NA","https://docs.microsoft.com/java/api/overview/azure/iot","NA","","","" "kusto-data","com.microsoft.azure.kusto","2.3.2","","kusto-data","","NA","NA","NA","","","" "kusto-ingest","com.microsoft.azure.kusto","2.3.2","","kusto-ingest","","NA","NA","NA","","","" "kusto-spark_2.4_2.11","com.microsoft.azure.kusto","2.3.0","","kusto-spark_2.4_2.11","","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 7fd7b94e0c6..5974464a7bb 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -48,35 +48,35 @@ "@azure/ai-anomaly-detector","","3.0.0-beta.2","@azure/ai-anomaly-detector","","NA","","","","","Will replace: @azure/cognitiveservices-anomalydetector" "@azure/amqp-common","","1.0.0-preview.17","@azure/amqp-common","Core","core","NA","NA","","","" "@azure/applicationinsights-query","1.1.0","","@azure/applicationinsights-query","Application Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/applicationinsights-query","NA","","","","" -"@azure/arm-advisor","2.0.0","","@azure/arm-advisor","Advisor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/advisor/arm-advisor","https://docs.microsoft.com/javascript/api/overview/azure/advisor?view=azure-node-latest","NA","","","" -"@azure/arm-analysisservices","2.3.1","","@azure/arm-analysisservices","Analysis Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/analysisservices/arm-analysisservices","https://docs.microsoft.com/javascript/api/overview/azure/analysis-services?view=azure-node-latest","NA","","","" +"@azure/arm-advisor","2.0.0","","@azure/arm-advisor","Advisor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/advisor/arm-advisor","https://docs.microsoft.com/javascript/api/overview/azure/advisor","NA","","","" +"@azure/arm-analysisservices","2.3.1","","@azure/arm-analysisservices","Analysis Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/analysisservices/arm-analysisservices","https://docs.microsoft.com/javascript/api/overview/azure/analysis-services","NA","","","" "@azure/arm-apimanagement","6.0.0","","@azure/arm-apimanagement","Apimanagement","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/apimanagement/arm-apimanagement","NA","NA","","","" "@azure/arm-appconfiguration","1.3.0","","@azure/arm-appconfiguration","Appconfiguration","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/arm-appconfiguration","NA","NA","","","" "@azure/arm-appinsights","2.1.0","","@azure/arm-appinsights","Applicationinsights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/applicationinsights/arm-appinsights","NA","","","","" "@azure/arm-appplatform","1.0.0","","@azure/arm-appplatform","","NA","NA","NA","","","" -"@azure/arm-appservice","6.1.0","","@azure/arm-appservice","Appservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appservice/arm-appservice","https://docs.microsoft.com/javascript/api/overview/azure/appservice?view=azure-node-latest","NA","","","" +"@azure/arm-appservice","6.1.0","","@azure/arm-appservice","Appservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appservice/arm-appservice","https://docs.microsoft.com/javascript/api/overview/azure/appservice","NA","","","" "@azure/arm-appservice-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-appservice-profile-2019-03-01-hybrid","Appservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appservice/arm-appservice-profile-2019-03-01-hybrid","NA","","","","" -"@azure/arm-authorization","8.3.3","","@azure/arm-authorization","Authorization","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/authorization/arm-authorization","https://docs.microsoft.com/javascript/api/overview/azure/authorization?view=azure-node-latest","NA","","","" +"@azure/arm-authorization","8.3.3","","@azure/arm-authorization","Authorization","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/authorization/arm-authorization","https://docs.microsoft.com/javascript/api/overview/azure/authorization","NA","","","" "@azure/arm-authorization-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-authorization-profile-2019-03-01-hybrid","Authorization","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/authorization/arm-authorization-profile-2019-03-01-hybrid","NA","","","","" -"@azure/arm-automation","10.0.0","","@azure/arm-automation","Automation","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/automation/arm-automation","https://docs.microsoft.com/javascript/api/overview/azure/automation?view=azure-node-latest","NA","","","" +"@azure/arm-automation","10.0.0","","@azure/arm-automation","Automation","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/automation/arm-automation","https://docs.microsoft.com/javascript/api/overview/azure/automation","NA","","","" "@azure/arm-avs","1.0.0","","@azure/arm-avs","Avs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/avs/arm-avs","NA","NA","","","" "@azure/arm-azurestack","2.0.0","","@azure/arm-azurestack","Azurestack","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/azurestack/arm-azurestack","NA","NA","","","" "@azure/arm-azurestackhci","1.0.0","","@azure/arm-azurestackhci","","NA","NA","NA","","","" "@azure/arm-batch","4.0.0","","@azure/arm-batch","Batch","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batch/arm-batch","NA","","","","" -"@azure/arm-batchai","2.1.0","","@azure/arm-batchai","Batchai","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batchai/arm-batchai","https://docs.microsoft.com/javascript/api/overview/azure/batchai?view=azure-node-latest","","","","" -"@azure/arm-billing","3.0.0","","@azure/arm-billing","Billing","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/billing/arm-billing","https://docs.microsoft.com/javascript/api/overview/azure/billing?view=azure-node-latest","NA","","","" +"@azure/arm-batchai","2.1.0","","@azure/arm-batchai","Batchai","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/batchai/arm-batchai","https://docs.microsoft.com/javascript/api/overview/azure/batchai","","","","" +"@azure/arm-billing","3.0.0","","@azure/arm-billing","Billing","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/billing/arm-billing","https://docs.microsoft.com/javascript/api/overview/azure/billing","NA","","","" "@azure/arm-botservice","2.0.0","","@azure/arm-botservice","Botservice","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/botservice/arm-botservice","NA","NA","","","" -"@azure/arm-cdn","5.0.0","","@azure/arm-cdn","Cdn","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cdn/arm-cdn","https://docs.microsoft.com/javascript/api/overview/azure/cdn?view=azure-node-latest","NA","","","" -"@azure/arm-cognitiveservices","5.2.0","","@azure/arm-cognitiveservices","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/arm-cognitiveservices","https://docs.microsoft.com/javascript/api/overview/azure/cognitive-services?view=azure-node-latest","NA","","","" -"@azure/arm-commerce","2.1.1","","@azure/arm-commerce","Commerce","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/commerce/arm-commerce","https://docs.microsoft.com/javascript/api/overview/azure/commerce?view=azure-node-latest","","","","" +"@azure/arm-cdn","5.0.0","","@azure/arm-cdn","Cdn","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cdn/arm-cdn","https://docs.microsoft.com/javascript/api/overview/azure/cdn","NA","","","" +"@azure/arm-cognitiveservices","5.2.0","","@azure/arm-cognitiveservices","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/arm-cognitiveservices","https://docs.microsoft.com/javascript/api/overview/azure/cognitive-services","NA","","","" +"@azure/arm-commerce","2.1.1","","@azure/arm-commerce","Commerce","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/commerce/arm-commerce","https://docs.microsoft.com/javascript/api/overview/azure/commerce","","","","" "@azure/arm-commitmentplans","1.2.0","","@azure/arm-commitmentplans","Machine Learning","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearning/arm-commitmentplans","NA","","","","" -"@azure/arm-compute","15.0.0","","@azure/arm-compute","Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/compute/arm-compute","https://docs.microsoft.com/javascript/api/overview/azure/virtualmachines?view=azure-node-latest","NA","","","" +"@azure/arm-compute","15.0.0","","@azure/arm-compute","Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/compute/arm-compute","https://docs.microsoft.com/javascript/api/overview/azure/virtualmachines","NA","","","" "@azure/arm-compute-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-compute-profile-2019-03-01-hybrid","Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/compute/arm-compute-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-consumption","6.3.0","","@azure/arm-consumption","Consumption","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/consumption/arm-consumption","NA","","","","" "@azure/arm-containerinstance","6.0.0","","@azure/arm-containerinstance","Container Instance","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerinstance/arm-containerinstance","NA","NA","","","" -"@azure/arm-containerregistry","8.0.0","","@azure/arm-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerregistry/arm-containerregistry","https://docs.microsoft.com/javascript/api/overview/azure/container-registry?view=azure-node-latest","NA","","","" -"@azure/arm-containerservice","11.2.0","","@azure/arm-containerservice","Container Service","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerservice/arm-containerservice","https://docs.microsoft.com/javascript/api/overview/azure/container-service?view=azure-node-latest","NA","","","" -"@azure/arm-cosmosdb","9.1.0","","@azure/arm-cosmosdb","Cosmos DB","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cosmosdb/arm-cosmosdb","https://docs.microsoft.com/javascript/api/overview/azure/cosmos-db?view=azure-node-latest","NA","","","" +"@azure/arm-containerregistry","8.0.0","","@azure/arm-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerregistry/arm-containerregistry","https://docs.microsoft.com/javascript/api/overview/azure/container-registry","NA","","","" +"@azure/arm-containerservice","11.2.0","","@azure/arm-containerservice","Container Service","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerservice/arm-containerservice","https://docs.microsoft.com/javascript/api/overview/azure/container-service","NA","","","" +"@azure/arm-cosmosdb","9.1.0","","@azure/arm-cosmosdb","Cosmos DB","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cosmosdb/arm-cosmosdb","https://docs.microsoft.com/javascript/api/overview/azure/cosmos-db","NA","","","" "@azure/arm-customerinsights","3.1.0","","@azure/arm-customerinsights","Customer Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/customer-insights/arm-customerinsights","NA","","","","" "@azure/arm-databox","4.0.0","","@azure/arm-databox","Databox","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/databox/arm-databox","NA","NA","","","" "@azure/arm-databricks","1.1.0","","@azure/arm-databricks","Databricks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/databricks/arm-databricks","NA","","","","" @@ -86,21 +86,21 @@ "@azure/arm-deploymentmanager","3.0.0","","@azure/arm-deploymentmanager","Deployment Manager","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/deploymentmanager/arm-deploymentmanager","NA","NA","","","" "@azure/arm-deviceprovisioningservices","2.1.0","","@azure/arm-deviceprovisioningservices","Device Provisioning Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/deviceprovisioningservices/arm-deviceprovisioningservices","NA","","","","" "@azure/arm-devspaces","1.1.0","","@azure/arm-devspaces","Devspaces","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/devspaces/arm-devspaces","NA","","","","" -"@azure/arm-devtestlabs","3.2.0","","@azure/arm-devtestlabs","Devtestlabs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/devtestlabs/arm-devtestlabs","https://docs.microsoft.com/javascript/api/overview/azure/devtest-labs?view=azure-node-latest","","","","" +"@azure/arm-devtestlabs","3.2.0","","@azure/arm-devtestlabs","Devtestlabs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/devtestlabs/arm-devtestlabs","https://docs.microsoft.com/javascript/api/overview/azure/devtest-labs","","","","" "@azure/arm-digitaltwins","0.1.0","","@azure/arm-digitaltwins","Digitaltwins","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/digitaltwins/arm-digitaltwins","NA","NA","","","" -"@azure/arm-dns","4.0.0","","@azure/arm-dns","Dns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/dns/arm-dns","https://docs.microsoft.com/javascript/api/overview/azure/dns?view=azure-node-latest","NA","","","" +"@azure/arm-dns","4.0.0","","@azure/arm-dns","Dns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/dns/arm-dns","https://docs.microsoft.com/javascript/api/overview/azure/dns","NA","","","" "@azure/arm-dns-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-dns-profile-2019-03-01-hybrid","Dns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/dns/arm-dns-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-domainservices","3.1.0","","@azure/arm-domainservices","Domain Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/domainservices/arm-domainservices","NA","","","","" "@azure/arm-edgegateway","2.0.1","","@azure/arm-edgegateway","Edgegateway","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/edgegateway/arm-edgegateway","NA","","","","" -"@azure/arm-eventgrid","9.0.0","","@azure/arm-eventgrid","Event GGrid","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventgrid/arm-eventgrid","https://docs.microsoft.com/javascript/api/overview/azure/eventgrid?view=azure-node-latest","NA","","","" -"@azure/arm-eventhub","3.2.0","","@azure/arm-eventhub","Event Hub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/arm-eventhub","https://docs.microsoft.com/javascript/api/overview/azure/event-hub?view=azure-node-latest","","","","" +"@azure/arm-eventgrid","9.0.0","","@azure/arm-eventgrid","Event GGrid","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventgrid/arm-eventgrid","https://docs.microsoft.com/javascript/api/overview/azure/eventgrid","NA","","","" +"@azure/arm-eventhub","3.2.0","","@azure/arm-eventhub","Event Hub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/arm-eventhub","https://docs.microsoft.com/javascript/api/overview/azure/event-hub","","","","" "@azure/arm-features","1.0.3","","@azure/arm-features","Features","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/features/arm-features","NA","","","","" "@azure/arm-frontdoor","4.0.0","","@azure/arm-frontdoor","Frontdoor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/frontdoor/arm-frontdoor","NA","NA","","","" "@azure/arm-hanaonazure","3.0.0","","@azure/arm-hanaonazure","Hanaon Azure","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/hanaonazure/arm-hanaonazure","NA","NA","","","" -"@azure/arm-hdinsight","0.19.0","","@azure/arm-hdinsight","Hdinsight","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/hdinsight/arm-hdinsight","https://docs.microsoft.com/javascript/api/overview/azure/hdinsight?view=azure-node-latest","NA","","","" +"@azure/arm-hdinsight","0.19.0","","@azure/arm-hdinsight","Hdinsight","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/hdinsight/arm-hdinsight","https://docs.microsoft.com/javascript/api/overview/azure/hdinsight","NA","","","" "@azure/arm-hybridcompute","2.0.0","","@azure/arm-hybridcompute","","NA","NA","NA","","","" "@azure/arm-iotcentral","3.1.0","","@azure/arm-iotcentral","Iotcentral","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iotcentral/arm-iotcentral","NA","NA","","","" -"@azure/arm-iothub","4.0.0","","@azure/arm-iothub","Iothub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iothub/arm-iothub","https://docs.microsoft.com/javascript/api/overview/azure/iot-hub?view=azure-node-latest","NA","","","" +"@azure/arm-iothub","4.0.0","","@azure/arm-iothub","Iothub","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iothub/arm-iothub","https://docs.microsoft.com/javascript/api/overview/azure/iot-hub","NA","","","" "@azure/arm-iotspaces","1.1.0","","@azure/arm-iotspaces","Iotspaces","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/iotspaces/arm-iotspaces","NA","","","","" "@azure/arm-keyvault","1.2.1","","@azure/arm-keyvault","Key Vault","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/arm-keyvault","NA","","","","" "@azure/arm-keyvault-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-keyvault-profile-2019-03-01-hybrid","Key Vault","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/arm-keyvault-profile-2019-03-01-hybrid","NA","","","","" @@ -110,7 +110,7 @@ "@azure/arm-links","1.0.2","","@azure/arm-links","Links","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/links/arm-links","NA","","","","" "@azure/arm-locks","1.1.0","","@azure/arm-locks","Locks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/locks/arm-locks","NA","","","","" "@azure/arm-locks-profile-hybrid-2019-03-01","1.0.0","","@azure/arm-locks-profile-hybrid-2019-03-01","Locks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/locks/arm-locks-profile-hybrid-2019-03-01","NA","","","","" -"@azure/arm-logic","7.0.0","","@azure/arm-logic","Logic","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic","https://docs.microsoft.com/javascript/api/overview/azure/logic-apps?view=azure-node-latest","NA","","","" +"@azure/arm-logic","7.0.0","","@azure/arm-logic","Logic","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic","https://docs.microsoft.com/javascript/api/overview/azure/logic-apps","NA","","","" "@azure/arm-machinelearningcompute","1.1.0","","@azure/arm-machinelearningcompute","Machine Learning Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningcompute/arm-machinelearningcompute","NA","","","","" "@azure/arm-machinelearningexperimentation","1.1.0","","@azure/arm-machinelearningexperimentation","Machine Learning Experimentation","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningexperimentation/arm-machinelearningexperimentation","NA","","","","" "@azure/arm-machinelearningservices","3.0.0","","@azure/arm-machinelearningservices","Machine Learning Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearningservices/arm-machinelearningservices","NA","","","","" @@ -120,18 +120,18 @@ "@azure/arm-maps","1.1.0","","@azure/arm-maps","Maps","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/maps/arm-maps","NA","","","","" "@azure/arm-mariadb","1.4.0","","@azure/arm-mariadb","Mariadb","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mariadb/arm-mariadb","NA","","","","" "@azure/arm-marketplaceordering","2.0.0","","@azure/arm-marketplaceordering","Market Placeordering","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/marketplaceordering/arm-marketplaceordering","NA","NA","","","" -"@azure/arm-mediaservices","7.2.0","","@azure/arm-mediaservices","Media Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mediaservices/arm-mediaservices","https://docs.microsoft.com/javascript/api/overview/azure/media-services?view=azure-node-latest","NA","","","" +"@azure/arm-mediaservices","7.2.0","","@azure/arm-mediaservices","Media Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mediaservices/arm-mediaservices","https://docs.microsoft.com/javascript/api/overview/azure/media-services","NA","","","" "@azure/arm-migrate","1.1.0","","@azure/arm-migrate","Migrate","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/migrate/arm-migrate","NA","","","","" -"@azure/arm-mixedreality","2.0.0","","@azure/arm-mixedreality","Mixedreality","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mixedreality/arm-mixedreality","https://docs.microsoft.com/javascript/api/overview/azure/mixed-reality?view=azure-node-latest","NA","","","" -"@azure/arm-monitor","6.0.0","","@azure/arm-monitor","Monitor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/monitor/arm-monitor","https://docs.microsoft.com/javascript/api/overview/azure/monitor?view=azure-node-latest","","","","" +"@azure/arm-mixedreality","2.0.0","","@azure/arm-mixedreality","Mixedreality","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mixedreality/arm-mixedreality","https://docs.microsoft.com/javascript/api/overview/azure/mixed-reality","NA","","","" +"@azure/arm-monitor","6.0.0","","@azure/arm-monitor","Monitor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/monitor/arm-monitor","https://docs.microsoft.com/javascript/api/overview/azure/monitor","","","","" "@azure/arm-monitor-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-monitor-profile-2019-03-01-hybrid","Monitor","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/monitor/arm-monitor-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-msi","1.1.0","","@azure/arm-msi","Msi","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/msi/arm-msi","NA","","","","" -"@azure/arm-mysql","3.3.0","","@azure/arm-mysql","Mysql","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mysql/arm-mysql","https://docs.microsoft.com/javascript/api/overview/azure/mysql?view=azure-node-latest","","","","" +"@azure/arm-mysql","3.3.0","","@azure/arm-mysql","Mysql","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/mysql/arm-mysql","https://docs.microsoft.com/javascript/api/overview/azure/mysql","","","","" "@azure/arm-netapp","12.0.0","","@azure/arm-netapp","Netapp","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/netapp/arm-netapp","NA","NA","","","" -"@azure/arm-network","23.0.0","","@azure/arm-network","Network","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/network/arm-network","https://docs.microsoft.com/javascript/api/overview/azure/virtual-network?view=azure-node-latest","NA","","","" +"@azure/arm-network","23.0.0","","@azure/arm-network","Network","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/network/arm-network","https://docs.microsoft.com/javascript/api/overview/azure/virtual-network","NA","","","" "@azure/arm-network-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-network-profile-2019-03-01-hybrid","Network","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/network/arm-network-profile-2019-03-01-hybrid","NA","","","","" -"@azure/arm-notificationhubs","1.2.0","","@azure/arm-notificationhubs","Notificationhubs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/notificationhubs/arm-notificationhubs","https://docs.microsoft.com/javascript/api/overview/azure/notification-hubs?view=azure-node-latest","","","","" -"@azure/arm-operationalinsights","4.0.0","","@azure/arm-operationalinsights","Operationalinsights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/operationalinsights/arm-operationalinsights","https://docs.microsoft.com/javascript/api/overview/azure/operational-insights?view=azure-node-latest","NA","","","" +"@azure/arm-notificationhubs","1.2.0","","@azure/arm-notificationhubs","Notificationhubs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/notificationhubs/arm-notificationhubs","https://docs.microsoft.com/javascript/api/overview/azure/notification-hubs","","","","" +"@azure/arm-operationalinsights","4.0.0","","@azure/arm-operationalinsights","Operationalinsights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/operationalinsights/arm-operationalinsights","https://docs.microsoft.com/javascript/api/overview/azure/operational-insights","NA","","","" "@azure/arm-operations","2.1.0","","@azure/arm-operations","Operations Management","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/operationsmanagement/arm-operations","NA","","","","" "@azure/arm-peering","1.0.0","","@azure/arm-peering","Peering","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/peering/arm-peering","NA","","","","" "@azure/arm-policy","3.1.0","","@azure/arm-policy","Policy","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/policy/arm-policy","NA","NA","","","" @@ -139,26 +139,26 @@ "@azure/arm-policy-profile-hybrid-2019-03-01","1.0.0","","@azure/arm-policy-profile-hybrid-2019-03-01","Policy","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/policy/arm-policy-profile-hybrid-2019-03-01","NA","","","","" "@azure/arm-postgresql","4.4.0","","@azure/arm-postgresql","Postgresql","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/postgresql/arm-postgresql","NA","","","","" "@azure/arm-powerbidedicated","2.0.0","","@azure/arm-powerbidedicated","Powerbidedicated","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/powerbidedicated/arm-powerbidedicated","NA","NA","","","" -"@azure/arm-powerbiembedded","1.2.0","","@azure/arm-powerbiembedded","Powerbiembedded","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/powerbiembedded/arm-powerbiembedded","https://docs.microsoft.com/javascript/api/overview/azure/powerbi-embedded?view=azure-node-latest","","","","" +"@azure/arm-powerbiembedded","1.2.0","","@azure/arm-powerbiembedded","Powerbiembedded","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/powerbiembedded/arm-powerbiembedded","https://docs.microsoft.com/javascript/api/overview/azure/powerbi-embedded","","","","" "@azure/arm-privatedns","2.0.0","","@azure/arm-privatedns","Privatedns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/privatedns/arm-privatedns","NA","NA","","","" -"@azure/arm-recoveryservices","4.0.0","","@azure/arm-recoveryservices","Recoveryservices","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/recoveryservices/arm-recoveryservices","https://docs.microsoft.com/javascript/api/overview/azure/site-recovery?view=azure-node-latest","NA","","","" -"@azure/arm-recoveryservicesbackup","6.1.0","","@azure/arm-recoveryservicesbackup","Recoveryservicesbackup","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/recoveryservicesbackup/arm-recoveryservicesbackup","https://docs.microsoft.com/javascript/api/overview/azure/backup?view=azure-node-latest","NA","","","" +"@azure/arm-recoveryservices","4.0.0","","@azure/arm-recoveryservices","Recoveryservices","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/recoveryservices/arm-recoveryservices","https://docs.microsoft.com/javascript/api/overview/azure/site-recovery","NA","","","" +"@azure/arm-recoveryservicesbackup","6.1.0","","@azure/arm-recoveryservicesbackup","Recoveryservicesbackup","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/recoveryservicesbackup/arm-recoveryservicesbackup","https://docs.microsoft.com/javascript/api/overview/azure/backup","NA","","","" "@azure/arm-recoveryservices-siterecovery","3.2.0","","@azure/arm-recoveryservices-siterecovery","Servicessite Recovery","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/recoveryservicessiterecovery/arm-recoveryservices-siterecovery","NA","","","","" -"@azure/arm-rediscache","4.0.0","","@azure/arm-rediscache","Redis","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/redis/arm-rediscache","https://docs.microsoft.com/javascript/api/overview/azure/redis-cache?view=azure-node-latest","NA","","","" -"@azure/arm-relay","2.1.0","","@azure/arm-relay","Relay","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/relay/arm-relay","https://docs.microsoft.com/javascript/api/overview/azure/relay?view=azure-node-latest","","","","" +"@azure/arm-rediscache","4.0.0","","@azure/arm-rediscache","Redis","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/redis/arm-rediscache","https://docs.microsoft.com/javascript/api/overview/azure/redis-cache","NA","","","" +"@azure/arm-relay","2.1.0","","@azure/arm-relay","Relay","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/relay/arm-relay","https://docs.microsoft.com/javascript/api/overview/azure/relay","","","","" "@azure/arm-reservations","5.1.0","","@azure/arm-reservations","Reservations","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/reservations/arm-reservations","NA","NA","","","" "@azure/arm-resourcegraph","2.0.0","","@azure/arm-resourcegraph","Resourcegraph","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resourcegraph/arm-resourcegraph","NA","","","","" "@azure/arm-resourcehealth","1.1.0","","@azure/arm-resourcehealth","Resourcehealth","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resourcehealth/arm-resourcehealth","NA","","","","" -"@azure/arm-resources","4.0.0","","@azure/arm-resources","Resources","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources","https://docs.microsoft.com/javascript/api/overview/azure/resources?view=azure-node-latest","NA","","","" +"@azure/arm-resources","4.0.0","","@azure/arm-resources","Resources","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources","https://docs.microsoft.com/javascript/api/overview/azure/resources","NA","","","" "@azure/arm-resources-profile-hybrid-2019-03-01","1.0.0","","@azure/arm-resources-profile-hybrid-2019-03-01","Resources","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/resources/arm-resources-profile-hybrid-2019-03-01","NA","","","","" -"@azure/arm-search","1.3.0","","@azure/arm-search","Search","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/search/arm-search","https://docs.microsoft.com/javascript/api/overview/azure/search?view=azure-node-latest","","","","" +"@azure/arm-search","1.3.0","","@azure/arm-search","Search","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/search/arm-search","https://docs.microsoft.com/javascript/api/overview/azure/search","","","","" "@azure/arm-security","2.0.0","","@azure/arm-security","Security","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/security/arm-security","NA","NA","","","" "@azure/arm-serialconsole","1.0.0","","@azure/arm-serialconsole","Serialconsole","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/serialconsole/arm-serialconsole","NA","","","","" -"@azure/arm-servicebus","4.0.0","","@azure/arm-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/servicebus/arm-servicebus","https://docs.microsoft.com/javascript/api/overview/azure/service-bus?view=azure-node-latest","NA","","","" +"@azure/arm-servicebus","4.0.0","","@azure/arm-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/servicebus/arm-servicebus","https://docs.microsoft.com/javascript/api/overview/azure/service-bus","NA","","","" "@azure/arm-servicefabricmesh","2.1.0","","@azure/arm-servicefabricmesh","Service Fabricmesh","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/servicefabricmesh/arm-servicefabricmesh","NA","","","","" -"@azure/arm-servicemap","2.2.0","","@azure/arm-servicemap","Service Map","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/service-map/arm-servicemap","https://docs.microsoft.com/javascript/api/overview/azure/service-map?view=azure-node-latest","","","","" +"@azure/arm-servicemap","2.2.0","","@azure/arm-servicemap","Service Map","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/service-map/arm-servicemap","https://docs.microsoft.com/javascript/api/overview/azure/service-map","","","","" "@azure/arm-signalr","3.0.0","","@azure/arm-signalr","Signalr","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/signalr/arm-signalr","NA","NA","","","" -"@azure/arm-sql","7.0.2","","@azure/arm-sql","Sql","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/sql/arm-sql","https://docs.microsoft.com/javascript/api/overview/azure/sql?view=azure-node-latest","NA","","","" +"@azure/arm-sql","7.0.2","","@azure/arm-sql","Sql","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/sql/arm-sql","https://docs.microsoft.com/javascript/api/overview/azure/sql","NA","","","" "@azure/arm-sqlvirtualmachine","4.0.0","","@azure/arm-sqlvirtualmachine","Sqlvirtualmachine","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/sqlvirtualmachine/arm-sqlvirtualmachine","NA","NA","","","" "@azure/arm-storage","15.1.0","","@azure/arm-storage","Storage","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/arm-storage","NA","NA","","","" "@azure/arm-storagecache","2.0.0","","@azure/arm-storagecache","Storage","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storagecache/arm-storagecache","NA","NA","","","" @@ -173,7 +173,7 @@ "@azure/arm-support","1.0.0","","@azure/arm-support","Support","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/support/arm-support","NA","NA","","","" "@azure/arm-synapse","2.0.0","","@azure/arm-synapse","Synapse","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/synapse/arm-synapse","NA","NA","","","" "@azure/arm-timeseriesinsights","1.2.1","","@azure/arm-timeseriesinsights","Timeseries Insights","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/timeseriesinsights/arm-timeseriesinsights","NA","NA","","","" -"@azure/arm-trafficmanager","5.0.0","","@azure/arm-trafficmanager","Traffic Manager","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/trafficmanager/arm-trafficmanager","https://docs.microsoft.com/javascript/api/overview/azure/traffic-manager?view=azure-node-latest","NA","","","" +"@azure/arm-trafficmanager","5.0.0","","@azure/arm-trafficmanager","Traffic Manager","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/trafficmanager/arm-trafficmanager","https://docs.microsoft.com/javascript/api/overview/azure/traffic-manager","NA","","","" "@azure/arm-visualstudio","2.2.0","","@azure/arm-visualstudio","Visual Studio","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/visualstudio/arm-visualstudio","NA","","","","" "@azure/arm-vmwarecloudsimple","1.0.0","","@azure/arm-vmwarecloudsimple","Vmware Cloudsimple","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/vmwarecloudsimple/arm-vmwarecloudsimple","NA","","","","" "@azure/arm-webservices","0.1.1","","@azure/arm-webservices","Machine Learning","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearning/arm-webservices","NA","","","","" @@ -533,7 +533,7 @@ "@azure/publish-pipeline-result","0.0.2","","@azure/publish-pipeline-result","","NA","NA","NA","","","" "@azure/rest-api-specs-scripts","0.13.3","","@azure/rest-api-specs-scripts","Rest Api","https://github.com/Azure/rest-api-specs-scripts","NA","NA","","","" "@azure/search","11.0.0-preview.1","","@azure/search","","NA","NA","","","","Replaced by: @azure/search-documents" -"@azure/servicefabric","5.0.0","","@azure/servicefabric","","NA","https://docs.microsoft.com/javascript/api/overview/azure/service-fabric?view=azure-node-latest","NA","","","" +"@azure/servicefabric","5.0.0","","@azure/servicefabric","","NA","https://docs.microsoft.com/javascript/api/overview/azure/service-fabric","NA","","","" "@azure/storage-blob-changefeed","","12.0.0-preview.2","@azure/storage-blob-changefeed","Storage","storage","","","","","" "@azure/storage-datalake","0.2.0","","@azure/storage-datalake","storage","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-datalake","NA","","","","Replaced by: @azure/storage-file-datalake" "@azure/storage-file","10.3.0","","@azure/storage-file","","NA","NA","NA","","","Replaced by: @azure/storage-file-share" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 95b9b8e01b4..5cec50ab860 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -41,7 +41,7 @@ "azure-ai-anomalydetector","","3.0.0b2","azure-ai-anomalydetector","Anomaly Detector","anomalydetector","","","","","Will replace: azure-cognitiveservices-anomalydetector" "azure-ai-nspkg","1.0.0","","azure-ai-nspkg","Text Analytics","textanalytics","NA","NA","","","" "azure-applicationinsights","0.1.0","","azure-applicationinsights","Application Insights","https://github.com/Azure/azure-sdk-for-python/tree/azure-applicationinsights_0.1.0/azure-applicationinsights","NA","","","","" -"azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" +"azure-batch","9.0.0","","azure-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch","","","","" "azure-cognitiveservices-anomalydetector","0.3.0","","azure-cognitiveservices-anomalydetector","Cognitive Services","cognitiveservices","","","","","Will be replaced by: azure-ai-anomalydetector" "azure-cognitiveservices-formrecognizer","0.1.1","","azure-cognitiveservices-formrecognizer","Cognitive Services","https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cognitiveservices/azure-cognitiveservices-formrecognizer","NA","","","","Replaced by: azure-ai-formrecognizer" "azure-cognitiveservices-inkrecognizer","","1.0.0b1","azure-cognitiveservices-inkrecognizer","Cognitive Services","cognitiveservices","NA","","","","" @@ -74,7 +74,7 @@ "azure-core-tracing-opentelemetry","","1.0.0b7","azure-core-tracing-opentelemetry","Core","core","","","","","" "azure-data-nspkg","1.0.0","","azure-data-nspkg","","NA","","NA","","","" "azure-devtools","1.2.0","","azure-devtools","Devtools","https://github.com/Azure/azure-python-devtools/tree/1.2.0/src/azure_devtools","NA","NA","","","" -"azure-graphrbac","0.61.1","","azure-graphrbac","Graph RBAC","graphrbac","https://docs.microsoft.com/python/api/overview/azure/graph-rbac?view=azure-python","","","","" +"azure-graphrbac","0.61.1","","azure-graphrbac","Graph RBAC","graphrbac","https://docs.microsoft.com/python/api/overview/azure/graph-rbac","","","","" "azure-keyvault","4.1.0","","azure-keyvault","Key Vault","keyvault","NA","NA","","","Metapackage containing: azure-keyvault-keys
azure-keyvault-secrets
azure-keyvault-certificates" "azure-keyvault-nspkg","1.0.0","","azure-keyvault-nspkg","Key Vault","keyvault","NA","NA","","","" "azure-loganalytics","0.1.0","","azure-loganalytics","Loganalytics","https://github.com/Azure/azure-sdk-for-python/tree/azure-loganalytics_0.1.0/azure-loganalytics/","NA","","","","" @@ -85,26 +85,26 @@ "azure-mgmt-applicationinsights","0.3.0","","azure-mgmt-applicationinsights","Application Insights","applicationinsights","NA","","","","" "azure-mgmt-appplatform","1.0.0","","azure-mgmt-appplatform","Appplatform","appplatform","NA","","","","" "azure-mgmt-attestation","0.1.0","","azure-mgmt-attestation","Attestation","attestation","NA","","","","" -"azure-mgmt-authorization","0.61.0","","azure-mgmt-authorization","Authorization","authorization","https://docs.microsoft.com/python/api/overview/azure/authorization?view=azure-python","","","","" +"azure-mgmt-authorization","0.61.0","","azure-mgmt-authorization","Authorization","authorization","https://docs.microsoft.com/python/api/overview/azure/authorization","","","","" "azure-mgmt-automanage","","1.0.0b1","azure-mgmt-automanage","","NA","","","","","" "azure-mgmt-automation","0.1.1","","azure-mgmt-automation","Automation","automation","NA","","","","" "azure-mgmt-avs","0.1.0","","azure-mgmt-avs","","NA","","","","","" "azure-mgmt-azurestack","0.1.0","","azure-mgmt-azurestack","Azurestack","azurestack","NA","","","","" "azure-mgmt-azurestackhci","1.0.0","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","","","","" -"azure-mgmt-batch","9.0.0","","azure-mgmt-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch?view=azure-python","","","","" -"azure-mgmt-batchai","2.0.0","","azure-mgmt-batchai","Batchai","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batchai_2.0.0/azure-mgmt-batchai/","https://docs.microsoft.com/python/api/overview/azure/batchai?view=azure-python","NA","","","" -"azure-mgmt-billing","0.2.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing?view=azure-python","","","","" +"azure-mgmt-batch","9.0.0","","azure-mgmt-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch","","","","" +"azure-mgmt-batchai","2.0.0","","azure-mgmt-batchai","Batchai","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batchai_2.0.0/azure-mgmt-batchai/","https://docs.microsoft.com/python/api/overview/azure/batchai","NA","","","" +"azure-mgmt-billing","0.2.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing","","","","" "azure-mgmt-botservice","0.2.0","","azure-mgmt-botservice","Botservice","botservice","NA","","","","" "azure-mgmt-cdn","5.1.0","","azure-mgmt-cdn","CDN","cdn","","","","","" "azure-mgmt-cognitiveservices","6.3.0","","azure-mgmt-cognitiveservices","Cognitive Services","cognitiveservices","NA","","","","" -"azure-mgmt-commerce","1.0.1","","azure-mgmt-commerce","commerce","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-commerce_1.0.1/azure-mgmt-commerce/","https://docs.microsoft.com/python/api/overview/azure/commerce?view=azure-python","","","","" +"azure-mgmt-commerce","1.0.1","","azure-mgmt-commerce","commerce","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-commerce_1.0.1/azure-mgmt-commerce/","https://docs.microsoft.com/python/api/overview/azure/commerce","","","","" "azure-mgmt-common","0.20.0","","azure-mgmt-common","","NA","NA","NA","","","" -"azure-mgmt-consumption","3.0.0","","azure-mgmt-consumption","Consumption","consumption","https://docs.microsoft.com/python/api/overview/azure/consumption?view=azure-python","","","","" +"azure-mgmt-consumption","3.0.0","","azure-mgmt-consumption","Consumption","consumption","https://docs.microsoft.com/python/api/overview/azure/consumption","","","","" "azure-mgmt-containerinstance","2.0.0","","azure-mgmt-containerinstance","Container Instance","containerinstance","","","","","" -"azure-mgmt-containerregistry","2.8.0","","azure-mgmt-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-containerregistry_2.8.0/azure-mgmt-containerregistry/","https://docs.microsoft.com/python/api/overview/azure/container-registry?view=azure-python","NA","","","" +"azure-mgmt-containerregistry","2.8.0","","azure-mgmt-containerregistry","Container Registry","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-containerregistry_2.8.0/azure-mgmt-containerregistry/","https://docs.microsoft.com/python/api/overview/azure/container-registry","NA","","","" "azure-mgmt-containerservice","9.4.0","","azure-mgmt-containerservice","Container Service","containerservice","","","","","" "azure-mgmt-core","1.2.1","","azure-mgmt-core","Core","core","","","","","" -"azure-mgmt-cosmosdb","1.0.0","","azure-mgmt-cosmosdb","Cosmos DB","cosmos","https://docs.microsoft.com/python/api/overview/azure/cosmosdb?view=azure-python","","","","" +"azure-mgmt-cosmosdb","1.0.0","","azure-mgmt-cosmosdb","Cosmos DB","cosmos","https://docs.microsoft.com/python/api/overview/azure/cosmosdb","","","","" "azure-mgmt-costmanagement","0.2.0","","azure-mgmt-costmanagement","Costmanagement","costmanagement","NA","","","","" "azure-mgmt-customproviders","0.1.0","","azure-mgmt-customproviders","Custom Providers","customproviders","NA","","","","" "azure-mgmt-databox","0.2.0","","azure-mgmt-databox","Databox","databox","NA","","","","" @@ -112,16 +112,16 @@ "azure-mgmt-databricks","0.1.0","","azure-mgmt-databricks","Databricks","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-databricks_0.1.0/azure-mgmt-databricks/","NA","","","","" "azure-mgmt-datadog","","1.0.0b1","azure-mgmt-datadog","","NA","NA","","","","" "azure-mgmt-datafactory","0.13.0","","azure-mgmt-datafactory","Datafactory","datafactory","","","","","" -"azure-mgmt-datalake-analytics","0.6.0","","azure-mgmt-datalake-analytics","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-analytics_0.6.0/azure-mgmt-datalake-analytics/","https://docs.microsoft.com/python/api/overview/azure/data-lake-analytics?view=azure-python","","","","" +"azure-mgmt-datalake-analytics","0.6.0","","azure-mgmt-datalake-analytics","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-analytics_0.6.0/azure-mgmt-datalake-analytics/","https://docs.microsoft.com/python/api/overview/azure/data-lake-analytics","","","","" "azure-mgmt-datalake-nspkg","3.0.1","","azure-mgmt-datalake-nspkg","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-nspkg_3.0.1/azure-mgmt-datalake-nspkg/","NA","NA","","","" -"azure-mgmt-datalake-store","0.5.0","","azure-mgmt-datalake-store","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-store_0.5.0/azure-mgmt-datalake-store/","https://docs.microsoft.com/python/api/overview/azure/data-lake-store?view=azure-python","","","","" +"azure-mgmt-datalake-store","0.5.0","","azure-mgmt-datalake-store","Data Lake","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datalake-store_0.5.0/azure-mgmt-datalake-store/","https://docs.microsoft.com/python/api/overview/azure/data-lake-store","","","","" "azure-mgmt-datamigration","4.0.0","","azure-mgmt-datamigration","Datamigration","datamigration","NA","","","","" "azure-mgmt-datashare","0.2.0","","azure-mgmt-datashare","Datashare","datashare","NA","","","","" "azure-mgmt-deploymentmanager","0.2.0","","azure-mgmt-deploymentmanager","Deployment Manager","deploymentmanager","NA","","","","" "azure-mgmt-devspaces","0.2.0","","azure-mgmt-devspaces","Aks","aks","NA","","","","" -"azure-mgmt-devtestlabs","4.0.0","","azure-mgmt-devtestlabs","Devtestlabs","devtestlabs","https://docs.microsoft.com/python/api/overview/azure/devtest-labs?view=azure-python","","","","" +"azure-mgmt-devtestlabs","4.0.0","","azure-mgmt-devtestlabs","Devtestlabs","devtestlabs","https://docs.microsoft.com/python/api/overview/azure/devtest-labs","","","","" "azure-mgmt-digitaltwins","0.1.0","","azure-mgmt-digitaltwins","Digital Twins","digitaltwins","NA","","","","" -"azure-mgmt-dns","3.0.0","","azure-mgmt-dns","Network","network","https://docs.microsoft.com/python/api/overview/azure/dns?view=azure-python","","","","" +"azure-mgmt-dns","3.0.0","","azure-mgmt-dns","Network","network","https://docs.microsoft.com/python/api/overview/azure/dns","","","","" "azure-mgmt-documentdb","0.1.3","","azure-mgmt-documentdb","cosmos DB","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-documentdb_0.1.3/azure-mgmt-documentdb/","NA","NA","","","" "azure-mgmt-edgegateway","0.1.0","","azure-mgmt-edgegateway","Edgegateway","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-edgegateway_0.1.0/azure-mgmt-edgegateway/","NA","","","","" "azure-mgmt-eventgrid","2.2.0","","azure-mgmt-eventgrid","Event Grid","eventgrid","NA","","","","" @@ -133,13 +133,13 @@ "azure-mgmt-hybridkubernetes","0.1.0","","azure-mgmt-hybridkubernetes","Hybrid Kubernetes","hybridkubernetes","NA","","","","" "azure-mgmt-imagebuilder","0.4.0","","azure-mgmt-imagebuilder","Compute","compute","NA","","","","" "azure-mgmt-iotcentral","3.1.0","","azure-mgmt-iotcentral","IotHub","iothub","","","","","" -"azure-mgmt-iothub","0.12.0","","azure-mgmt-iothub","IotHub","iothub","https://docs.microsoft.com/python/api/overview/azure/iot?view=azure-python","","","","" +"azure-mgmt-iothub","0.12.0","","azure-mgmt-iothub","IotHub","iothub","https://docs.microsoft.com/python/api/overview/azure/iot","","","","" "azure-mgmt-iothubprovisioningservices","0.2.0","","azure-mgmt-iothubprovisioningservices","IotHub","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-iothubprovisioningservices_0.2.0/azure-mgmt-iothubprovisioningservices/","NA","","","","" "azure-mgmt-kubernetesconfiguration","0.2.0","","azure-mgmt-kubernetesconfiguration","KubernetesConfiguration","kubernetesconfiguration","NA","","","","" "azure-mgmt-kusto","0.9.0","","azure-mgmt-kusto","Kusto","kusto","","","","","" "azure-mgmt-labservices","0.1.1","","azure-mgmt-labservices","Labservices","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-labservices_0.1.1/azure-mgmt-labservices","NA","","","","" "azure-mgmt-loganalytics","1.0.0","","azure-mgmt-loganalytics","Loganalytics","loganalytics","","","","","" -"azure-mgmt-logic","3.0.0","","azure-mgmt-logic","logic","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-logic_3.0.0/azure-mgmt-logic/","https://docs.microsoft.com/python/api/overview/azure/logic-apps?view=azure-python","NA","","","" +"azure-mgmt-logic","3.0.0","","azure-mgmt-logic","logic","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-logic_3.0.0/azure-mgmt-logic/","https://docs.microsoft.com/python/api/overview/azure/logic-apps","NA","","","" "azure-mgmt-machinelearningcompute","0.4.1","","azure-mgmt-machinelearningcompute","Machine Learning","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-machinelearningcompute_0.4.1/azure-mgmt-machinelearningcompute/","NA","","","","" "azure-mgmt-machinelearningservices","0.1.0","","azure-mgmt-machinelearningservices","Machine Learning","machinelearning","NA","","","","" "azure-mgmt-maintenance","0.1.0","","azure-mgmt-maintenance","Maintenance","maintenance","NA","","","","" @@ -148,30 +148,30 @@ "azure-mgmt-managementpartner","0.1.1","","azure-mgmt-managementpartner","Management Partner","managementpartner","NA","","","","" "azure-mgmt-maps","0.1.0","","azure-mgmt-maps","Maps","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-maps_0.1.0/azure-mgmt-maps/","NA","","","","" "azure-mgmt-marketplaceordering","0.2.1","","azure-mgmt-marketplaceordering","Marketplaceordering","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-marketplaceordering_0.2.1/azure-mgmt-marketplaceordering/","NA","","","","" -"azure-mgmt-media","2.2.0","","azure-mgmt-media","Media","media","https://docs.microsoft.com/python/api/overview/azure/media-services?view=azure-python","","","","" -"azure-mgmt-mixedreality","0.2.0","","azure-mgmt-mixedreality","Mixedreality","mixedreality","https://docs.microsoft.com/python/api/overview/azure/mixed-reality?view=azure-python","","","","" +"azure-mgmt-media","2.2.0","","azure-mgmt-media","Media","media","https://docs.microsoft.com/python/api/overview/azure/media-services","","","","" +"azure-mgmt-mixedreality","0.2.0","","azure-mgmt-mixedreality","Mixedreality","mixedreality","https://docs.microsoft.com/python/api/overview/azure/mixed-reality","","","","" "azure-mgmt-msi","1.0.0","","azure-mgmt-msi","Resources","resources","NA","","","","" "azure-mgmt-netapp","0.13.0","","azure-mgmt-netapp","Netapp","netapp","","","","","" -"azure-mgmt-notificationhubs","2.1.0","","azure-mgmt-notificationhubs","Notificationhubs","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-notificationhubs_2.1.0/azure-mgmt-notificationhubs/","https://docs.microsoft.com/python/api/overview/azure/notification-hubs?view=azure-python","","","","" +"azure-mgmt-notificationhubs","2.1.0","","azure-mgmt-notificationhubs","Notificationhubs","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-notificationhubs_2.1.0/azure-mgmt-notificationhubs/","https://docs.microsoft.com/python/api/overview/azure/notification-hubs","","","","" "azure-mgmt-nspkg","3.0.2","","azure-mgmt-nspkg","Core","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-nspkg_3.0.2/azure-mgmt-nspkg/","NA","NA","","","" "azure-mgmt-operationsmanagement","0.1.0","","azure-mgmt-operationsmanagement","Operations Management","operationsmanagement","NA","","","","" "azure-mgmt-peering","0.2.0","","azure-mgmt-peering","Peering","peering","NA","","","","" "azure-mgmt-policyinsights","0.5.0","","azure-mgmt-policyinsights","Policy Insights","policyinsights","NA","","","","" "azure-mgmt-powerbidedicated","0.1.0","","azure-mgmt-powerbidedicated","Powerbidedicated","powerbidedicated","NA","","","","" -"azure-mgmt-powerbiembedded","2.0.0","","azure-mgmt-powerbiembedded","Powerbiembedded","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-powerbiembedded_2.0.0/azure-mgmt-powerbiembedded/","https://docs.microsoft.com/python/api/overview/azure/power-bi?view=azure-python","","","","" +"azure-mgmt-powerbiembedded","2.0.0","","azure-mgmt-powerbiembedded","Powerbiembedded","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-powerbiembedded_2.0.0/azure-mgmt-powerbiembedded/","https://docs.microsoft.com/python/api/overview/azure/power-bi","","","","" "azure-mgmt-privatedns","0.1.0","","azure-mgmt-privatedns","Network","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-privatedns_0.1.0/azure-mgmt-privatedns/","NA","","","","" -"azure-mgmt-rdbms","2.2.0","","azure-mgmt-rdbms","Rdbms","rdbms","https://docs.microsoft.com/python/api/overview/azure/postgresql-mysql?view=azure-python","","","","" +"azure-mgmt-rdbms","2.2.0","","azure-mgmt-rdbms","Rdbms","rdbms","https://docs.microsoft.com/python/api/overview/azure/postgresql-mysql","","","","" "azure-mgmt-recoveryservices","0.5.0","","azure-mgmt-recoveryservices","Recovery Services","recoveryservices","NA","","","","" -"azure-mgmt-recoveryservicesbackup","0.8.0","","azure-mgmt-recoveryservicesbackup","Recovery Services","recoveryservices","https://docs.microsoft.com/python/api/overview/azure/recovery-services-backup?view=azure-python","","","","" +"azure-mgmt-recoveryservicesbackup","0.8.0","","azure-mgmt-recoveryservicesbackup","Recovery Services","recoveryservices","https://docs.microsoft.com/python/api/overview/azure/recovery-services-backup","","","","" "azure-mgmt-redhatopenshift","0.1.0","","azure-mgmt-redhatopenshift","Redhatopenshift","redhatopenshift","NA","","","","" -"azure-mgmt-redis","6.0.0","","azure-mgmt-redis","Redis","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-redis_6.0.0/azure-mgmt-redis/","https://docs.microsoft.com/python/api/overview/azure/redis?view=azure-python","","","","" +"azure-mgmt-redis","6.0.0","","azure-mgmt-redis","Redis","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-redis_6.0.0/azure-mgmt-redis/","https://docs.microsoft.com/python/api/overview/azure/redis","","","","" "azure-mgmt-regionmove","","1.0.0b1","azure-mgmt-regionmove","","NA","NA","","","","" "azure-mgmt-relay","0.2.0","","azure-mgmt-relay","Relay","relay","NA","","","","" "azure-mgmt-reservations","0.8.0","","azure-mgmt-reservations","Reservations","reservations","NA","","","","" "azure-mgmt-resourcegraph","2.0.0","","azure-mgmt-resourcegraph","Resources","resources","NA","","","","" "azure-mgmt-resourcemover","","1.0.1b1","azure-mgmt-resourcemover","","NA","NA","","","","" -"azure-mgmt-scheduler","2.0.0","","azure-mgmt-scheduler","Scheduler","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-scheduler_2.0.0/azure-mgmt-scheduler/","https://docs.microsoft.com/python/api/overview/azure/scheduler?view=azure-python","NA","","","" -"azure-mgmt-search","3.0.0","","azure-mgmt-search","Search","search","https://docs.microsoft.com/python/api/overview/azure/search?view=azure-python","","","","" +"azure-mgmt-scheduler","2.0.0","","azure-mgmt-scheduler","Scheduler","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-scheduler_2.0.0/azure-mgmt-scheduler/","https://docs.microsoft.com/python/api/overview/azure/scheduler","NA","","","" +"azure-mgmt-search","3.0.0","","azure-mgmt-search","Search","search","https://docs.microsoft.com/python/api/overview/azure/search","","","","" "azure-mgmt-security","0.4.1","","azure-mgmt-security","Security","security","","","","","" "azure-mgmt-serialconsole","0.1.0","","azure-mgmt-serialconsole","Serial Console","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-serialconsole_0.1.0/azure-mgmt-serialconsole/","NA","","","","" "azure-mgmt-servermanager","2.0.0","","azure-mgmt-servermanager","Server Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-servermanager_2.0.0/azure-mgmt-servermanager/","NA","","","","" @@ -187,9 +187,9 @@ "azure-mgmt-support","1.0.0","","azure-mgmt-support","Support","support","NA","","","","" "azure-mgmt-synapse","0.4.0","","azure-mgmt-synapse","Synapse","synapse","","","","","" "azure-mgmt-timeseriesinsights","0.2.0","","azure-mgmt-timeseriesinsights","Timeseries Insights","timeseriesinsights","NA","","","","" -"azure-mgmt-trafficmanager","0.51.0","","azure-mgmt-trafficmanager","Traffic Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-trafficmanager_0.51.0/azure-mgmt-trafficmanager","https://docs.microsoft.com/python/api/overview/azure/traffic-manager?view=azure-python","","","","" +"azure-mgmt-trafficmanager","0.51.0","","azure-mgmt-trafficmanager","Traffic Manager","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-trafficmanager_0.51.0/azure-mgmt-trafficmanager","https://docs.microsoft.com/python/api/overview/azure/traffic-manager","","","","" "azure-mgmt-vmwarecloudsimple","0.2.0","","azure-mgmt-vmwarecloudsimple","Compute","compute","NA","","","","" -"azure-mgmt-web","0.48.0","","azure-mgmt-web","App Service","appservice","https://docs.microsoft.com/python/api/overview/azure/webapps?view=azure-python","","","","" +"azure-mgmt-web","0.48.0","","azure-mgmt-web","App Service","appservice","https://docs.microsoft.com/python/api/overview/azure/webapps","","","","" "azureml-sdk","1.2.0","","azureml-sdk","","NA","NA","NA","","","" "azure-monitor","0.3.1","","azure-monitor","Monitor","https://github.com/Azure/azure-sdk-for-python/tree/azure-monitor_0.3.1/azure-monitor/","NA","NA","","","" "azure-nspkg","3.0.2","","azure-nspkg","core","https://github.com/Azure/azure-sdk-for-python/tree/azure-nspkg_3.0.2/azure-nspkg/","NA","NA","","","" diff --git a/_data/sidebars/dotnet_sidebar.yml b/_data/sidebars/dotnet_sidebar.yml index 0b0b36fe391..a9f265255f6 100644 --- a/_data/sidebars/dotnet_sidebar.yml +++ b/_data/sidebars/dotnet_sidebar.yml @@ -6,7 +6,7 @@ entries: - title: API Documentation folderitems: - title: Microsoft.Azure.Cosmos - external_url: https://docs.microsoft.com/dotnet/api/microsoft.azure.cosmos?view=azure-dotnet-preview + external_url: https://docs.microsoft.com/dotnet/api/microsoft.azure.cosmos - title: Azure.Messaging.EventHubs external_url: https://azure.github.io/azure-sdk-for-net/eventhub.html#azuremessagingeventhubs - title: Azure.Security.KeyVault.Keys diff --git a/_includes/releases/pkgrow.md b/_includes/releases/pkgrow.md index e6cb5306c34..d265720459c 100644 --- a/_includes/releases/pkgrow.md +++ b/_includes/releases/pkgrow.md @@ -19,6 +19,9 @@ {% assign msdocs_url = item.MSDocs %} {% if item.MSDocs == "" %} {% assign msdocs_url = msdocs_url_template | replace: 'item.Package', item.Package | replace: 'item.TrimmedPackage', trimmedPackage %} + {% if item.VersionGA == "" and item.VersionPreview != "" %} + {% assign msdocs_url = msdocs_url | append: '-pre' %} + {% endif %} {% endif %} {% if item.VersionGA != "" %} @@ -27,11 +30,8 @@ {% endif %} {% if item.VersionGA == "" and item.VersionPreview != "" %} - {% if item.MSDocs != "NA" %} - {% assign pre_suffix = '-pre' | append: msdocs_preview_moniker_suffix %} - {% assign url = msdocs_url | replace: 'item.Version', item.VersionPreview | append: pre_suffix %} - {% include releases/pkgbadge.md label="msdocs" preview="true" url=url version=item.VersionPreview %} - {% endif %} + {% assign url = msdocs_url | replace: 'item.Version', item.VersionPreview %} + {% include releases/pkgbadge.md label="msdocs" preview="true" url=url version=item.VersionPreview %} {% endif %} diff --git a/_includes/releases/variables/android.md b/_includes/releases/variables/android.md index f186c4ca583..1eda170069e 100644 --- a/_includes/releases/variables/android.md +++ b/_includes/releases/variables/android.md @@ -1,6 +1,5 @@ {% assign package_label = "maven" %} {% assign package_trim = "azure-" %} - {% assign package_url_template = "https://search.maven.org/artifact/item.GroupId/item.Package/item.Version/aar" %} diff --git a/_includes/releases/variables/c.md b/_includes/releases/variables/c.md index 913613cf57a..959ae7edb19 100644 --- a/_includes/releases/variables/c.md +++ b/_includes/releases/variables/c.md @@ -1,5 +1,4 @@ {% assign package_label = "zip" %} - {% assign package_url_template = "https://github.com/Azure/azure-sdk-for-c/archive/item.Version.zip" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/c/item.Package/item.Version/index.html" %} diff --git a/_includes/releases/variables/cpp.md b/_includes/releases/variables/cpp.md index f4ea87af487..2becb5ee7bf 100644 --- a/_includes/releases/variables/cpp.md +++ b/_includes/releases/variables/cpp.md @@ -1,5 +1,4 @@ {% assign package_label = "zip" %} - {% assign package_url_template = "https://github.com/Azure/azure-sdk-for-cpp/archive/item.Package_item.Version.zip" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/cpp/item.Package/item.Version/index.html" %} diff --git a/_includes/releases/variables/dotnet.md b/_includes/releases/variables/dotnet.md index 5efeef05e6e..f6deb7d26f1 100644 --- a/_includes/releases/variables/dotnet.md +++ b/_includes/releases/variables/dotnet.md @@ -1,6 +1,5 @@ {% assign package_label = "nuget" %} {% assign package_trim = "Azure." %} -{% assign msdocs_preview_moniker_suffix = "?view=azure-dotnet-preview" %} {% assign package_url_template = "https://www.nuget.org/packages/item.Package/item.Version" %} {% assign msdocs_url_template = "https://docs.microsoft.com/dotnet/api/overview/azure/item.TrimmedPackage-readme" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/dotnet/item.Package/item.Version/api/index.html" %} diff --git a/_includes/releases/variables/ios.md b/_includes/releases/variables/ios.md index fcf1c268fe9..e3b12060c16 100644 --- a/_includes/releases/variables/ios.md +++ b/_includes/releases/variables/ios.md @@ -1,6 +1,5 @@ {% assign package_label = "spm" %} {% assign package_trim = "Azure" %} - {% assign package_url_template = "https://github.com/Azure/azure-sdk-for-ios/tree/item.Version/sdk/item.RepoPath/item.Package" %} diff --git a/_includes/releases/variables/java.md b/_includes/releases/variables/java.md index 04f2e90fbcd..f2c8e2c8ea2 100644 --- a/_includes/releases/variables/java.md +++ b/_includes/releases/variables/java.md @@ -1,6 +1,5 @@ {% assign package_label = "maven" %} {% assign package_trim = "azure-" %} -{% assign msdocs_preview_moniker_suffix = "?view=azure-java-preview" %} {% assign package_url_template = "https://search.maven.org/artifact/item.GroupId/item.Package/item.Version/jar/" %} {% assign msdocs_url_template = "https://docs.microsoft.com/java/api/overview/azure/item.TrimmedPackage-readme" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/java/item.Package/item.Version/index.html" %} diff --git a/_includes/releases/variables/js.md b/_includes/releases/variables/js.md index 6c52d8f4ab5..caa343996ae 100644 --- a/_includes/releases/variables/js.md +++ b/_includes/releases/variables/js.md @@ -1,6 +1,5 @@ {% assign package_label = "npm" %} {% assign package_trim = "@azure/" %} -{% assign msdocs_preview_moniker_suffix = "?view=azure-node-preview" %} {% assign package_url_template = "https://www.npmjs.com/package/item.Package/v/item.Version" %} {% assign msdocs_url_template = "https://docs.microsoft.com/javascript/api/overview/azure/item.TrimmedPackage-readme" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-item.TrimmedPackage/item.Version/index.html" %} diff --git a/_includes/releases/variables/python.md b/_includes/releases/variables/python.md index 04789e809f9..fed921f41b0 100644 --- a/_includes/releases/variables/python.md +++ b/_includes/releases/variables/python.md @@ -1,6 +1,5 @@ {% assign package_label = "pypi" %} {% assign package_trim = "azure-" %} -{% assign msdocs_preview_moniker_suffix = "?view=azure-python-preview" %} {% assign package_url_template = "https://pypi.org/project/item.Package/item.Version" %} {% assign msdocs_url_template = "https://docs.microsoft.com/python/api/overview/azure/item.TrimmedPackage-readme" %} {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/python/item.Package/item.Version/index.html" %} diff --git a/docs/clang/design.md b/docs/clang/design.md index 254f8c7e4e8..ebd67447fe9 100644 --- a/docs/clang/design.md +++ b/docs/clang/design.md @@ -635,7 +635,7 @@ do so using user-overridable functions. ## Secure functions -{% include requirement/SHOULDNOT id="clang-no-ms-secure-functions" %} use [Microsoft security enhanced versions of CRT functions](https://docs.microsoft.com/cpp/c-runtime-library/security-enhanced-versions-of-crt-functions?view=vs-2019) to implement APIs that need to be portable across many platforms. Such code is not portable and is not C99 compatible. Adding that code to your API will complicate the implementation with little to no gain from the security side. See [arguments against]( http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1967.htm). +{% include requirement/SHOULDNOT id="clang-no-ms-secure-functions" %} use [Microsoft security enhanced versions of CRT functions](https://docs.microsoft.com/cpp/c-runtime-library/security-enhanced-versions-of-crt-functions) to implement APIs that need to be portable across many platforms. Such code is not portable and is not C99 compatible. Adding that code to your API will complicate the implementation with little to no gain from the security side. See [arguments against]( http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1967.htm). > TODO: Verify with the security team, and what are the alternatives? diff --git a/docs/clang/implementation.md b/docs/clang/implementation.md index 4b4be800a64..d62e66f8586 100644 --- a/docs/clang/implementation.md +++ b/docs/clang/implementation.md @@ -34,7 +34,7 @@ sidebar: clang_sidebar {% include requirement/SHOULDNOT id="clang-cpp-extensions" %} use compiler extensions. Examples of extensions to avoid include: -* [MSVC compiler extensions](https://docs.microsoft.com/cpp/build/reference/microsoft-extensions-to-c-and-cpp?view=vs-2019) +* [MSVC compiler extensions](https://docs.microsoft.com/cpp/build/reference/microsoft-extensions-to-c-and-cpp) * [Clang language extensions](https://clang.llvm.org/docs/LanguageExtensions.html) * [GNU C compiler extensions](https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html) @@ -414,7 +414,7 @@ We use a common build and test pipeline to provide for automatic distribution of {% include requirement/MUST id="clang-tooling-cmake" %} use [CMake](https://CMake.org/) v3.7 for your project build system. Version 3.7 is the minimum version installed on the Azure Pipelines Microsoft hosted agents -(https://docs.microsoft.com/azure/devops/pipelines/agents/hosted?view=azure-devops) +(https://docs.microsoft.com/azure/devops/pipelines/agents/hosted) {% include requirement/MUST id="clang-tooling-cmake-targets" %} include the following standard targets: diff --git a/docs/cpp/design.md b/docs/cpp/design.md index 2e7723872cc..ebedd4c23c1 100644 --- a/docs/cpp/design.md +++ b/docs/cpp/design.md @@ -448,7 +448,7 @@ The following integer rules are listed in rough priority order. Integer size sel ### Secure functions -{% include requirement/SHOULDNOT id="cpp-design-logical-no-ms-secure-functions" %} use [Microsoft security enhanced versions of CRT functions](https://docs.microsoft.com/cpp/c-runtime-library/security-enhanced-versions-of-crt-functions?view=vs-2019) to implement APIs that need to be portable across many platforms. Such code is not portable and is not compatible with either the C or C++ Standards. See [arguments against]( http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1967.htm). +{% include requirement/SHOULDNOT id="cpp-design-logical-no-ms-secure-functions" %} use [Microsoft security enhanced versions of CRT functions](https://docs.microsoft.com/cpp/c-runtime-library/security-enhanced-versions-of-crt-functions) to implement APIs that need to be portable across many platforms. Such code is not portable and is not compatible with either the C or C++ Standards. See [arguments against]( http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1967.htm). > TODO: Verify with the security team, and what are the alternatives? diff --git a/docs/cpp/implementation.md b/docs/cpp/implementation.md index b0b08604aaa..907d56a1ff2 100644 --- a/docs/cpp/implementation.md +++ b/docs/cpp/implementation.md @@ -44,7 +44,7 @@ sidebar: cpp_sidebar {% include requirement/SHOULDNOT id="cpp-cpp-extensions" %} use compiler extensions. Examples of extensions to avoid include: -* [MSVC compiler extensions](https://docs.microsoft.com/cpp/build/reference/microsoft-extensions-to-c-and-cpp?view=vs-2019) +* [MSVC compiler extensions](https://docs.microsoft.com/cpp/build/reference/microsoft-extensions-to-c-and-cpp) * [clang language extensions](https://clang.llvm.org/docs/LanguageExtensions.html) * [GNU C compiler extensions](https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html) @@ -239,7 +239,7 @@ We use a common build and test pipeline to provide for automatic distribution of {% include requirement/MUST id="cpp-tooling-cmake" %} use [CMake](https://CMake.org/) v3.7 for your project build system. Version 3.7 is the minimum version installed on the Azure Pipelines Microsoft hosted agents -(https://docs.microsoft.com/azure/devops/pipelines/agents/hosted?view=azure-devops) +(https://docs.microsoft.com/azure/devops/pipelines/agents/hosted) {% include requirement/MUST id="cpp-tooling-cmake-targets" %} include the following standard targets: diff --git a/docs/policies/README-TEMPLATE.md b/docs/policies/README-TEMPLATE.md index 9229f763aab..a0e92171bcc 100644 --- a/docs/policies/README-TEMPLATE.md +++ b/docs/policies/README-TEMPLATE.md @@ -15,7 +15,7 @@ Use the guidelines in each section of this template to ensure consistency and re * Include this set of links targeting your product's content at the bottom of the introduction, making any adjustments as necessary (for example, NuGet instead of PyPi): - [Package (PyPi)](https://pypi.org/project/azure-cosmos/) - - [API reference documentation](https://docs.microsoft.com/python/api/overview/azure/cosmos-readme?view=azure-python) + - [API reference documentation](https://docs.microsoft.com/python/api/overview/azure/cosmos-readme) - [Product documentation](https://docs.microsoft.com/azure/cosmos-db/) - [Source code](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/cosmos/azure-cosmos) - [ChangeLog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/cosmos/azure-cosmos/CHANGELOG.md) diff --git a/releases/2020-09/dotnet.md b/releases/2020-09/dotnet.md index 13689eee744..ae4c15fdbd5 100644 --- a/releases/2020-09/dotnet.md +++ b/releases/2020-09/dotnet.md @@ -190,7 +190,7 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here #### New Features -- The `EventProcessor` now supports a configurable strategy for load balancing, allowing control over whether it claims ownership of partitions in a balanced manner _(default)_ or more aggressively. The strategy may be set in the `EventProcessorOptions` when creating the processor. More details about strategies can be found in the associated [documentation](https://docs.microsoft.com/dotnet/api/azure.messaging.eventhubs.processor.loadbalancingstrategy?view=azure-dotnet). +- The `EventProcessor` now supports a configurable strategy for load balancing, allowing control over whether it claims ownership of partitions in a balanced manner _(default)_ or more aggressively. The strategy may be set in the `EventProcessorOptions` when creating the processor. More details about strategies can be found in the associated [documentation](https://docs.microsoft.com/dotnet/api/azure.messaging.eventhubs.processor.loadbalancingstrategy). - The `EventHubConsumerClient` now allows for performance tuning by setting the `PrefetchCount` and `CacheEventCount` values in its associated options. @@ -198,7 +198,7 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here #### New Features -- The `EventProcessorClient` now supports a configurable strategy for load balancing, allowing control over whether it claims ownership of partitions in a balanced manner _(default)_ or more aggressively. The strategy may be set in the `EventProcessorClientOptions` when creating the processor. More details about strategies can be found in the associated [documentation](https://docs.microsoft.com/dotnet/api/azure.messaging.eventhubs.processor.loadbalancingstrategy?view=azure-dotnet). +- The `EventProcessorClient` now supports a configurable strategy for load balancing, allowing control over whether it claims ownership of partitions in a balanced manner _(default)_ or more aggressively. The strategy may be set in the `EventProcessorClientOptions` when creating the processor. More details about strategies can be found in the associated [documentation](https://docs.microsoft.com/dotnet/api/azure.messaging.eventhubs.processor.loadbalancingstrategy). - The `EventProcessorClient` now allows for performance tuning by setting the `PrefetchCount` and `CacheEventCount` values in its associated options. From 7e6a40832d77cabe6297b6f84ee86c6603393453 Mon Sep 17 00:00:00 2001 From: Rick Winter Date: Tue, 20 Oct 2020 09:54:46 -0700 Subject: [PATCH 35/87] Add release version notes for C++ (#1946) --- docs/policies/releases.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/policies/releases.md b/docs/policies/releases.md index 17f63ff7c7f..dd58535269b 100644 --- a/docs/policies/releases.md +++ b/docs/policies/releases.md @@ -256,6 +256,20 @@ Beta packages are published directly to the Maven central registry. Alpha packag **Floating GA dependencies:** Use the exact version number to specify the lowest version of the package which contains the features upon which you depend. +#### C++ + +C++ releases the source code of the package via releases on github. It currently does not ship packages to any package managers. + +A C++ release includes a Tag and Release (e.g. [azure-core_1.0.0-beta.1](https://github.com/Azure/azure-sdk-for-cpp/releases/tag/azure-core_1.0.0-beta.1)) on GitHub and documentation as GitHub Pages (e.g. [azure-core_1.0.0-beta.1](https://azuresdkdocs.blob.core.windows.net/$web/cpp/azure-core/1.0.0-beta.1/index.html)). + +#### Incrementing after release (C++) + +**Preview release:** `1.0.0-beta.1` -> `1.0.0-beta.2` + +**GA Release:** `1.1.0` -> `1.2.0-beta.1` + +**GA Hotfix Release:** `1.0.0` -> `1.0.1` + #### Embedded C C99 releases the source code of the repository in a single unit of source code. It does not ship packages to any package managers. Because the C repo ships from the `master` branch, code going into the `master` branch must be in a completed state and ready to ship. From c8a22d0855032609acc27ae977b0b053229e5ae5 Mon Sep 17 00:00:00 2001 From: zhihaoguo <806258199@qq.com> Date: Wed, 21 Oct 2020 12:57:14 +0800 Subject: [PATCH 36/87] Add release version notes for java (#16503) (#1956) Add release version notes for java (#1956) --- releases/2020-08/java.md | 2 +- releases/2020-09/java.md | 2 +- releases/2020-10/java.md | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/releases/2020-08/java.md b/releases/2020-08/java.md index 3afeba257ea..425b675cb90 100644 --- a/releases/2020-08/java.md +++ b/releases/2020-08/java.md @@ -191,11 +191,11 @@ To use Azure Spring Boot starters, refer to the Maven dependency information bel azure-spring-boot-metrics-starter 2.3.3 + com.microsoft.azure azure-servicebus-jms-spring-boot-starter 2.3.3
- ``` ## Feedback diff --git a/releases/2020-09/java.md b/releases/2020-09/java.md index 843e8c39568..6aae5f0a77c 100644 --- a/releases/2020-09/java.md +++ b/releases/2020-09/java.md @@ -371,11 +371,11 @@ To use Azure Spring Boot starters, refer to the Maven dependency information bel azure-spring-boot-metrics-starter 2.3.5 + com.microsoft.azure azure-servicebus-jms-spring-boot-starter 2.3.5 - ``` ## Feedback diff --git a/releases/2020-10/java.md b/releases/2020-10/java.md index 09b7bcffd3c..7aebbf83402 100644 --- a/releases/2020-10/java.md +++ b/releases/2020-10/java.md @@ -55,6 +55,7 @@ The Azure SDK team is pleased to announce our October 2020 client library releas - Azure Tables - Azure Text Analytics - Opentelemetry exporter Azure monitor +- Azure Spring Boot ## Installation Instructions @@ -332,6 +333,14 @@ To use the GA and beta libraries, refer to the Maven dependency information belo ``` +To use Azure Spring Boot starters, refer to the Maven dependency information below, which may be copied into your projects Maven `pom.xml` file as appropriate. +```xml + + com.microsoft.azure + azure-servicebus-jms-spring-boot-starter + 2.3.6-beta.1 + +``` ## Feedback If you have a bug or feature request for one of the libraries, please post an issue to [GitHub](https://github.com/azure/azure-sdk-for-java/issues). @@ -643,6 +652,11 @@ of the amqp connection. - Fixed a bug that would cause authentication failures when building a client by passing an endpoint which had a SAS token with protocol set to https,http - Fixed a bug where a custom application ID in HttpLogOptions would not be added to the User Agent String. +### Azure Spring Boot ([Changelog](https://github.com/Azure/azure-sdk-for-java/blob/feature/spring-jms-servicebus/sdk/spring/azure-spring-boot/CHANGELOG.md#236-beta1-2020-10-14)) + +#### New Features +- upgrade jms underlying library with azure-servicebus-jms. + ## Need help From 0cd54f07c99a9534036f8a1a376bba7064f0b1b1 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Wed, 21 Oct 2020 15:00:35 -0700 Subject: [PATCH 37/87] Add note about immutable release tags (#1950) cc @ahsonkhan @RickWinter --- docs/policies/repobranching.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/policies/repobranching.md b/docs/policies/repobranching.md index 471784e3490..353570f3805 100644 --- a/docs/policies/repobranching.md +++ b/docs/policies/repobranching.md @@ -119,6 +119,8 @@ For each package we release there will be a unique git tag created that contains Format of the tag should be `_` +**_Note:_** Our release tags should be considered immutable. Avoid updating or deleting them after they are pushed. If you need to update or delete one for some exceptional case, please contact the engineering system team to discuss options. + ## Release branches There are potentially 3 different types of release branches in the order of preference: From a15b6f4ccda7c439bd9a9d7ae25382b42f4c8e95 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Thu, 22 Oct 2020 08:35:29 -0700 Subject: [PATCH 38/87] Update package index with latest published versions (#1947) --- _data/releases/latest/dotnet-packages.csv | 13 ++--- _data/releases/latest/java-packages.csv | 65 +++++++++++++---------- _data/releases/latest/js-packages.csv | 17 +++--- _data/releases/latest/python-packages.csv | 8 +-- 4 files changed, 57 insertions(+), 46 deletions(-) diff --git a/_data/releases/latest/dotnet-packages.csv b/_data/releases/latest/dotnet-packages.csv index 408e86ae82b..d270961a32f 100644 --- a/_data/releases/latest/dotnet-packages.csv +++ b/_data/releases/latest/dotnet-packages.csv @@ -57,7 +57,7 @@ "Azure.Storage.Blobs.Batching","","12.0.0-preview.4","Azure.Storage.Blobs.Batching","","NA","NA","NA","","true","" "Azure.Storage.Blobs.ChangeFeed","","12.0.0-preview.5","Azure.Storage.Blobs.ChangeFeed","Storage","storage","","","","","" "Azure.Storage.Files","","12.0.0-preview.4","Azure.Storage.Files","","NA","NA","NA","","true","" -"Azure.Template","","1.0.3-beta.34","Azure.Template","","NA","","","","true","" +"Azure.Template","","1.0.3-beta.44","Azure.Template","","NA","","","","true","" "Azure.Core.Experimental","","0.1.0-preview.6","Core Experimental","","NA","","","","","" "Microsoft.Azure.Core.NewtonsoftJson","","1.0.0-preview.1","Core NewtonsoftJson","","NA","","","","","" "dotnet-Perks.CodeGen","2.0.1","","dotnet-Perks.CodeGen","","NA","NA","NA","","true","" @@ -78,7 +78,7 @@ "Microsoft.Azure.CognitiveServices.AnomalyDetector","1.0.0","1.0.0-preview.1","Microsoft.Azure.CognitiveServices.AnomalyDetector","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.AnomalyDetector_1.0.0-preview.1/sdk/cognitiveservices/AnomalyDetector","NA","","","","Will be replaced by: Azure.AI.AnomalyDetector" "Microsoft.Azure.CognitiveServices.ContentModerator","2.0.0","","Microsoft.Azure.CognitiveServices.ContentModerator","","NA","NA","NA","","","" "Microsoft.Azure.CognitiveServices.FormRecognizer","","0.8.0-preview","Microsoft.Azure.CognitiveServices.FormRecognizer","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/cognitiveservices/FormRecognizer","NA","NA","","","Replaced by: Azure.AI.FormRecognizer" -"Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","2.0.1","2.1.0-preview.1","Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker_2.0.1/sdk/cognitiveservices/Knowledge.QnAMaker","NA","","","","" +"Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","2.0.1","3.0.0-preview.1","Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker_2.0.1/sdk/cognitiveservices/Knowledge.QnAMaker","NA","","","","" "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring","","3.2.0-preview.3","Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring_3.2.0-preview.3/sdk/cognitiveservices/Language.LUIS.Authoring","NA","NA","","","" "Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime","","3.1.0-preview.1","Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime_3.1.0-preview.1/sdk/cognitiveservices/Language.LUIS.Runtime","NA","","","","" "Microsoft.Azure.CognitiveServices.Language.SpellCheck","","4.1.0-preview.1","Microsoft.Azure.CognitiveServices.Language.SpellCheck","Cognitive Services","https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.Language.SpellCheck_4.1.0-preview.1/sdk/cognitiveservices/Language.SpellCheck","NA","","","","" @@ -413,7 +413,7 @@ "Microsoft.Azure.Core.Spatial","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial","","NA","","","","","" "Microsoft.Azure.Core.Spatial.NewtonsoftJson","","1.0.0-beta.1","Microsoft.Azure.Core.Spatial.NewtonsoftJson","","NA","","","","","" "Microsoft.Azure.Cosmos","3.14.0","","Microsoft.Azure.Cosmos","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/3.12.0/Microsoft.Azure.Cosmos","https://docs.microsoft.com/dotnet/api/overview/azure/cosmosdb","NA","","","Will be replaced by: Azure.Cosmos" -"Microsoft.Azure.Cosmos.Direct","3.14.0","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" +"Microsoft.Azure.Cosmos.Direct","3.14.2","","Microsoft.Azure.Cosmos.Direct","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3","NA","NA","","","" "Microsoft.Azure.Cosmos.Encryption","","1.0.0-preview6","Microsoft.Azure.Cosmos.Encryption","Cosmos DB","https://github.com/Azure/azure-cosmos-dotnet-v3/tree/releases/encryption/1.0.0-preview4/Microsoft.Azure.Cosmos.Encryption","NA","NA","","","" "Microsoft.Azure.Cosmos.Table","","2.0.0-preview","Microsoft.Azure.Cosmos.Table","","NA","NA","NA","","","" "Microsoft.Azure.CosmosDB.BulkExecutor","","2.4.1-preview","Microsoft.Azure.CosmosDB.BulkExecutor","Cosmos DB","https://github.com/Azure/azure-cosmosdb-bulkexecutor-dotnet-getting-started","NA","NA","","","" @@ -485,6 +485,7 @@ "Microsoft.Azure.Management.CustomerInsights.Fluent","","1.9.1-beta","Microsoft.Azure.Management.CustomerInsights.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.DataBox","1.2.0","","Microsoft.Azure.Management.DataBox","DataBox","databox","NA","NA","","","" "Microsoft.Azure.Management.DataBoxEdge","1.0.0","","Microsoft.Azure.Management.DataBoxEdge","DataBoxEdge","databoxedge","NA","NA","","","" +"Microsoft.Azure.Management.Datadog","0.1.0","","Microsoft.Azure.Management.Datadog","","NA","NA","NA","","","" "Microsoft.Azure.Management.DataFactories","4.13.3","","Microsoft.Azure.Management.DataFactories","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory","NA","","","" "Microsoft.Azure.Management.DataFactory","4.12.0","","Microsoft.Azure.Management.DataFactory","DataFactory","datafactory","https://docs.microsoft.com/dotnet/api/overview/azure/data-factory","NA","","","" "Microsoft.Azure.Management.DataLake.Analytics","","3.5.3-preview","Microsoft.Azure.Management.DataLake.Analytics","DataLake","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics","https://docs.microsoft.com/dotnet/api/overview/azure/data-lake-analytics","","","","" @@ -497,7 +498,7 @@ "Microsoft.Azure.Management.Devices.Fluent","","1.9.1-beta","Microsoft.Azure.Management.Devices.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.DevSpaces","","0.10.0-preview","Microsoft.Azure.Management.DevSpaces","DevSpaces","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/devspaces/Microsoft.Azure.Management.DevSpaces","NA","NA","","","" "Microsoft.Azure.Management.DevTestLabs","3.0.0","","Microsoft.Azure.Management.DevTestLabs","DevTestLabs","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/devtestlabs/Microsoft.Azure.Management.DevTestLabs","NA","","","","" -"Microsoft.Azure.Management.DigitalTwins","","1.0.0-preview.1","Microsoft.Azure.Management.DigitalTwins","DigitalTwins","digitaltwins","NA","NA","","","" +"Microsoft.Azure.Management.DigitalTwins","1.0.0","1.0.0-preview.1","Microsoft.Azure.Management.DigitalTwins","DigitalTwins","digitaltwins","NA","NA","","","" "Microsoft.Azure.Management.Dns","3.0.1","","Microsoft.Azure.Management.Dns","Dns","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/dns/Microsoft.Azure.Management.Dns","https://docs.microsoft.com/dotnet/api/overview/azure/dns","","","","" "Microsoft.Azure.Management.Dns.Fluent","1.34.0","","Microsoft.Azure.Management.Dns.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.EdgeGateway","","0.8.1-preview","Microsoft.Azure.Management.EdgeGateway","EdgeGateway","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/edgegateway/Microsoft.Azure.Management.EdgeGateway","NA","","","","" @@ -508,7 +509,7 @@ "Microsoft.Azure.Management.FrontDoor","3.0.0","","Microsoft.Azure.Management.FrontDoor","FrontDoor","frontdoor","NA","NA","","","" "Microsoft.Azure.Management.Graph.RBAC.Fluent","1.34.0","","Microsoft.Azure.Management.Graph.RBAC.Fluent","","NA","NA","NA","","","" "Microsoft.Azure.Management.GuestConfiguration","1.4.0","","Microsoft.Azure.Management.GuestConfiguration","GuestConfiguration","guestconfiguration","NA","NA","","","" -"Microsoft.Azure.Management.HDInsight","5.6.0","","Microsoft.Azure.Management.HDInsight","HDInsight","hdinsight","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight","NA","","","" +"Microsoft.Azure.Management.HDInsight","6.0.0","","Microsoft.Azure.Management.HDInsight","HDInsight","hdinsight","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight","NA","","","" "Microsoft.Azure.Management.HDInsight.Job","2.0.7","","Microsoft.Azure.Management.HDInsight.Job","","NA","https://docs.microsoft.com/dotnet/api/overview/azure/hdinsight","NA","","","" "Microsoft.Azure.Management.HealthcareApis","2.0.0","","Microsoft.Azure.Management.HealthcareApis","Healthcare Apis","healthcareapis","NA","NA","","","" "Microsoft.Azure.Management.HybridCompute","","0.1.0-preview.2","Microsoft.Azure.Management.HybridCompute","Hybrid Compute","hybridcompute","NA","NA","","","" @@ -536,7 +537,7 @@ "Microsoft.Azure.Management.Maps","1.0.2","","Microsoft.Azure.Management.Maps","Maps","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/maps/Microsoft.Azure.Management.Maps","NA","","","","" "Microsoft.Azure.Management.Marketplace","1.1.0","","Microsoft.Azure.Management.Marketplace","Marketplace","marketplace","NA","NA","","","" "Microsoft.Azure.Management.MarketplaceOrdering","1.0.1","","Microsoft.Azure.Management.MarketplaceOrdering","MarketplaceOrdering","https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/marketplaceordering/Microsoft.Azure.Management.MarketplaceOrdering","NA","","","","" -"Microsoft.Azure.Management.Media","","2.1.0-preview","Microsoft.Azure.Management.Media","Media Services","mediaservices","NA","NA","","","" +"Microsoft.Azure.Management.Media","3.0.0","","Microsoft.Azure.Management.Media","Media Services","mediaservices","NA","NA","","","" "Microsoft.Azure.Management.Migrate.ResourceMover","","1.0.0-preview","Microsoft.Azure.Management.Migrate.ResourceMover","","NA","NA","NA","","","" "Microsoft.Azure.Management.MixedReality","1.0.0","","Microsoft.Azure.Management.MixedReality","MixedReality","mixedreality","https://docs.microsoft.com/dotnet/api/overview/azure/mixed-reality","NA","","","" "Microsoft.Azure.Management.Monitor","","0.25.3-preview","Microsoft.Azure.Management.Monitor","Monitor","monitor","NA","NA","","","" diff --git a/_data/releases/latest/java-packages.csv b/_data/releases/latest/java-packages.csv index 05060376607..038a08ff87b 100644 --- a/_data/releases/latest/java-packages.csv +++ b/_data/releases/latest/java-packages.csv @@ -15,7 +15,7 @@ "azure-core-serializer-avro-jackson","com.azure","","1.0.0-beta.1","Core Serializer Apache Jackson","Core","core","","","client","","" "azure-core-serializer-json-gson","com.azure","1.0.2","","Core Serializer GSON JSON","Core","core","","","client","","" "azure-core-serializer-json-jackson","com.azure","1.0.2","","Core Serializer Jackson JSON","Core","core","","","client","","" -"azure-cosmos","com.azure","4.6.0","","Cosmos","Cosmos","cosmos","","","client","","Replaces: azure-cosmos 3.x" +"azure-cosmos","com.azure","4.7.0","","Cosmos","Cosmos","cosmos","","","client","","Replaces: azure-cosmos 3.x" "azure-digitaltwins-core","com.azure","","1.0.0-beta.3","Digital Twins","Digital Twins","digitaltwins","","","client","","" "azure-messaging-eventgrid","com.azure","","2.0.0-beta.3","Event Grid","Event Grid","eventgrid","","","client","","Will replace: azure-eventgrid" "azure-messaging-eventhubs","com.azure","5.3.0","","Event Hubs","Event Hubs","eventhubs","","","client","","Replaces: azure-eventhubs" @@ -39,25 +39,25 @@ "azure-data-tables","com.azure","","12.0.0-beta.2","Tables","Tables","tables","","","client","","" "azure-ai-textanalytics","com.azure","5.0.0","5.1.0-beta.2","Text Analytics","Text Analytics","textanalytics","","","client","","Replaces: azure-cognitiveservices-textanalytics" "azure-core-tracing-opentelemetry","com.azure","","1.0.0-beta.6","Tracing","Core","core","","","client","","" -"azure-resourcemanager-appservice","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - App Service","App Service","resourcemanager","","","mgmt","","" -"azure-resourcemanager-authorization","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Authorization","Authorization","resourcemanager","","","mgmt","","" -"azure-resourcemanager-compute","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Compute","Compute","resourcemanager","","","mgmt","","" -"azure-resourcemanager-containerinstance","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Container Instance","Container Instance","resourcemanager","","","mgmt","","" -"azure-resourcemanager-containerregistry","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Container Registry","Container Registry","resourcemanager","","","mgmt","","" -"azure-resourcemanager-containerservice","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Container Service","Container Service","resourcemanager","","","mgmt","","" -"azure-resourcemanager-cosmos","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Cosmos","Cosmos","resourcemanager","","","mgmt","","" -"azure-resourcemanager-dns","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - DNS","DNS","resourcemanager","","","mgmt","","" -"azure-resourcemanager-eventhubs","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Event Hubs","Event Hubs","resourcemanager","","","mgmt","","" -"azure-resourcemanager-keyvault","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Key Vault","Key Vault","resourcemanager","","","mgmt","","" -"azure-resourcemanager-msi","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Managed Service Identity","Managed Service Identity","resourcemanager","","","mgmt","","" -"azure-resourcemanager-monitor","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Monitor","Monitor","resourcemanager","","","mgmt","","" -"azure-resourcemanager-network","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Network","Network","resourcemanager","","","mgmt","","" -"azure-resourcemanager-redis","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Redis","Redis","resourcemanager","","","mgmt","","" -"azure-resourcemanager-resources","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Resources","Resources","resourcemanager","","","mgmt","","" -"azure-resourcemanager-appplatform","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Spring Cloud","Spring Cloud","resourcemanager","","","mgmt","","" -"azure-resourcemanager-sql","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - SQL","SQL","resourcemanager","","","mgmt","","" -"azure-resourcemanager-storage","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Storage","Storage","resourcemanager","","","mgmt","","" -"azure-resourcemanager-trafficmanager","com.azure.resourcemanager","","2.0.0-beta.4","Resource Management - Traffic Manager","Traffic Manager","resourcemanager","","","mgmt","","" +"azure-resourcemanager-appservice","com.azure.resourcemanager","2.0.0","","Resource Management - App Service","App Service","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-authorization","com.azure.resourcemanager","2.0.0","","Resource Management - Authorization","Authorization","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-compute","com.azure.resourcemanager","2.0.0","","Resource Management - Compute","Compute","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-containerinstance","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Container Instance","Container Instance","resourcemanager","","","mgmt","","" +"azure-resourcemanager-containerregistry","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Container Registry","Container Registry","resourcemanager","","","mgmt","","" +"azure-resourcemanager-containerservice","com.azure.resourcemanager","2.0.0","","Resource Management - Container Service","Container Service","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-cosmos","com.azure.resourcemanager","2.0.0","","Resource Management - Cosmos","Cosmos","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-dns","com.azure.resourcemanager","2.0.0","","Resource Management - DNS","DNS","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-eventhubs","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Event Hubs","Event Hubs","resourcemanager","","","mgmt","","" +"azure-resourcemanager-keyvault","com.azure.resourcemanager","2.0.0","","Resource Management - Key Vault","Key Vault","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-msi","com.azure.resourcemanager","2.0.0","","Resource Management - Managed Service Identity","Managed Service Identity","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-monitor","com.azure.resourcemanager","2.0.0","","Resource Management - Monitor","Monitor","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-network","com.azure.resourcemanager","2.0.0","","Resource Management - Network","Network","resourcemanager","","","mgmt","","" +"azure-resourcemanager-redis","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Redis","Redis","resourcemanager","","","mgmt","","" +"azure-resourcemanager-resources","com.azure.resourcemanager","2.0.0","","Resource Management - Resources","Resources","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-appplatform","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Spring Cloud","Spring Cloud","resourcemanager","","","mgmt","","" +"azure-resourcemanager-sql","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - SQL","SQL","resourcemanager","","","mgmt","","" +"azure-resourcemanager-storage","com.azure.resourcemanager","2.0.0","","Resource Management - Storage","Storage","resourcemanager","NA","","mgmt","","" +"azure-resourcemanager-trafficmanager","com.azure.resourcemanager","","2.0.0-beta.5","Resource Management - Traffic Manager","Traffic Manager","resourcemanager","","","mgmt","","" "actors-preview","com.microsoft.azure.servicefabric","1.0.0","","actors-preview","","NA","NA","NA","","","" "adal4j","com.microsoft.azure","1.6.6","","adal4j","","NA","https://docs.microsoft.com/java/api/overview/azure/activedirectory","NA","","","" "apache-spark-archetype","com.microsoft.azure","0.1.0","","apache-spark-archetype","","NA","NA","NA","","","" @@ -216,7 +216,7 @@ "azure-maven-plugin","com.microsoft.azure","0.2.0","","azure-maven-plugin","","NA","NA","NA","","","" "azure-maven-plugin-common","com.microsoft.azure","0.2.0","","azure-maven-plugin-common","","NA","NA","NA","","","" "azure-maven-plugin-lib","com.microsoft.azure","1.4.0","","azure-maven-plugin-lib","","NA","NA","NA","","","" -"azure-maven-plugins-pom","com.microsoft.azure","1.0.4","","azure-maven-plugins-pom","","NA","NA","NA","","","" +"azure-maven-plugins-pom","com.microsoft.azure","1.0.5","","azure-maven-plugins-pom","","NA","NA","NA","","","" "azure-media","com.microsoft.azure","0.9.8","","azure-media","Media","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/mediaservices/microsoft-azure-media","NA","NA","","","" "azure-mediaservices-spring-boot-autoconfigure","com.microsoft.azure","0.1.5","","azure-mediaservices-spring-boot-autoconfigure","","NA","NA","NA","","","" "azure-mediaservices-spring-boot-starter","com.microsoft.azure","2.2.5","","azure-mediaservices-spring-boot-starter","","NA","NA","NA","","","" @@ -264,6 +264,7 @@ "azure-mgmt-cognitiveservices","com.microsoft.azure.cognitiveservices-2017-04-18","","1.0.0-beta-1","azure-mgmt-cognitiveservices.v2017_04_18","","NA","NA","NA","","","" "azure-mgmt-commerce","com.microsoft.azure.commerce.v2015_06_01_preview","","1.0.0-beta","azure-mgmt-commerce","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure","1.36.3","","azure-mgmt-compute","","NA","https://docs.microsoft.com/java/api/overview/azure/virtualmachines","NA","","","" +"azure-mgmt-compute","com.microsoft.azure.compute.v2019_07_01","","1.0.0-beta","azure-mgmt-compute","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2020_06_01","","1.0.0-beta","azure-mgmt-compute","","NA","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2017_03_30","","1.0.0-beta-2","azure-mgmt-compute.v2017_03_30","Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/compute/mgmt-v2017_03_30","NA","NA","","","" "azure-mgmt-compute","com.microsoft.azure.compute.v2017_12_01","","1.0.0-beta-1","azure-mgmt-compute.v2017_12_01","Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/compute/mgmt-v2017_12_01","NA","NA","","","" @@ -305,6 +306,7 @@ "azure-mgmt-costmanagement","com.microsoft.azure.costmanagement.v2019_11_01","","1.0.0-beta","azure-mgmt-costmanagement.v2019_11_01","Cost Management","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/costmanagement/mgmt-v2019_11_01","NA","NA","","","" "azure-mgmt-customerinsights","com.microsoft.azure","","1.10.0-beta","azure-mgmt-customerinsights","","NA","NA","NA","","TRUE","" "azure-mgmt-databox","com.microsoft.azure.databox.v2019_09_01","","1.0.0-beta","azure-mgmt-databox.v2019_09_01","Databox","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/databox/mgmt-v2019_09_01","NA","NA","","","" +"azure-mgmt-databoxedge","com.microsoft.azure.databoxedge.v2019_08_01","","1.0.0-beta","azure-mgmt-databoxedge","","NA","NA","NA","","","" "azure-mgmt-databoxedge","com.microsoft.azure.edgegateway.v2019_03_01","","1.0.0-beta","azure-mgmt-databoxedge.v2019_03_01","Databoxedge","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/edgegateway/mgmt-v2019_03_01","NA","NA","","","" "azure-mgmt-datafactory","com.microsoft.azure.datafactory.v2018_06_01","","1.0.0-beta-5","azure-mgmt-datafactory.v2018_06_01","Datafactory","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/datafactory/mgmt-v2018_06_01","NA","NA","","","" "azure-mgmt-datalake-analytics","com.microsoft.azure","1.22.0","","azure-mgmt-datalake-analytics","","NA","https://docs.microsoft.com/java/api/overview/azure/datalakeanalytics","NA","","","" @@ -338,17 +340,19 @@ "azure-mgmt-eventhub","com.microsoft.azure.eventhub.v2017_04_01","","1.0.0-beta","azure-mgmt-eventhub.v2017_04_01","","NA","NA","NA","","","" "azure-mgmt-eventhubs","com.microsoft.azure.eventhubs.v2015_08_01","","1.0.0-beta","azure-mgmt-eventhubs.v2015_08_01","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/mgmt-v2015_08_01","NA","NA","","","" "azure-mgmt-eventhubs","com.microsoft.azure.eventhubs.v2017_04_01","","1.0.0-beta","azure-mgmt-eventhubs.v2017_04_01","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/mgmt-v2017_04_01","NA","NA","","","" -"azure-mgmt-eventhubs","com.microsoft.azure.eventhubs.v2018_01_01_preview","","1.0.0-beta","azure-mgmt-eventhubs.v2018_01_01_preview","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/mgmt-v2018_01_01_preview","NA","NA","","","" +"azure-mgmt-eventhubs","com.microsoft.azure.eventhubs.v2018_01_01_preview","","1.0.0-beta-1","azure-mgmt-eventhubs.v2018_01_01_preview","Event Hubs","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/mgmt-v2018_01_01_preview","NA","NA","","","" "azure-mgmt-features","com.microsoft.azure.features.v2015_12_01","","1.0.0-beta-1","azure-mgmt-features.v2015_12_01","Features","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/features/mgmt-v2015_12_01","NA","NA","","","" "azure-mgmt-graph-rbac","com.microsoft.azure","1.36.3","","azure-mgmt-graph-rbac","","NA","NA","NA","","","" "azure-mgmt-hanaonazure","com.microsoft.azure.hanaonazure.v2017_11_03_preview","","1.0.0-beta-5","azure-mgmt-hanaonazure.v2017_11_03_preview","Hanaonazure","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hanaonazure/mgmt-v2017_11_03_preview","NA","NA","","","" "azure-mgmt-hdinsight","com.microsoft.azure.hdinsight.v2018_06_01_preview","1.3.7","","azure-mgmt-hdinsight.v2018_06_01_preview","HDinsight","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hdinsight/mgmt-v2018_06_01_preview","https://docs.microsoft.com/java/api/overview/azure/hdinsight","NA","","","" "azure-mgmt-healthcareapis","com.microsoft.azure.healthcareapis.v2020_03_15","","1.0.0-beta","azure-mgmt-healthcareapis","","NA","NA","NA","","","" +"azure-mgmt-healthcareapis","com.microsoft.azure.healthcareapis.v2020_03_30","","1.0.0-beta","azure-mgmt-healthcareapis","","NA","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2019_12_12","","1.0.0-beta-1","azure-mgmt-hybridcompute","Hybrid Compute","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/hybridcompute/mgmt-v2019_12_12","NA","NA","","","" "azure-mgmt-hybridcompute","com.microsoft.azure.hybridcompute.v2020_08_02","","1.0.0-beta","azure-mgmt-hybridcompute","","NA","NA","NA","","","" "azure-mgmt-insights","com.microsoft.azure","","1.10.0-beta","azure-mgmt-insights","","NA","NA","NA","","TRUE","" "azure-mgmt-insights","com.microsoft.azure.applicationinsights.v2015_05_01","","1.0.0-beta","azure-mgmt-insights.v2015_05_01","Insights","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/applicationinsights/mgmt-v2015_05_01","NA","NA","","","" "azure-mgmt-iotcentral","com.microsoft.azure.iotcentral.v2018_09_01","1.0.2","","azure-mgmt-iotcentral.v2018_09_01","Iotcentral","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iotcentral/mgmt-v2018_09_01","NA","NA","","","" +"azure-mgmt-iothub","com.microsoft.azure.iothub.v2019_07_01_preview","","1.0.0-beta","azure-mgmt-iothub","","NA","NA","NA","","","" "azure-mgmt-iothub","com.microsoft.azure.devices-2018-04-01","","1.0.0-beta-1","azure-mgmt-iothub.v2018_04_01","Iot Hub","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iothub/mgmt-v2018_04_01","NA","NA","","","" "azure-mgmt-iothub","com.microsoft.azure.iothub.v2018_04_01","","1.0.0-beta","azure-mgmt-iothub.v2018_04_01","Iot Hub","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iothub/mgmt-v2018_04_01","NA","NA","","","" "azure-mgmt-iothub","com.microsoft.azure.iothub.v2018_12_01_preview","","1.0.0-beta","azure-mgmt-iothub.v2018_12_01_preview","Iot Hub","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/iothub/mgmt-v2018_12_01_preview","NA","NA","","","" @@ -470,6 +474,7 @@ "azure-mgmt-resourcehealth","com.microsoft.azure.resourcehealth.v2015_01_01","","1.0.0-beta","azure-mgmt-resourcehealth.v2015_01_01","Resourcehealth","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resourcehealth/mgmt-v2015_01_01","NA","NA","","","" "azure-mgmt-resourcehealth","com.microsoft.azure.resourcehealth.v2017_07_01","","1.0.0-beta","azure-mgmt-resourcehealth.v2017_07_01","Resourcehealth","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resourcehealth/mgmt-v2017_07_01","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure","1.36.3","","azure-mgmt-resources","","NA","https://docs.microsoft.com/java/api/overview/azure/resources","NA","","","" +"azure-mgmt-resources","com.microsoft.azure.resources.v2019_10_01","","1.0.0-beta","azure-mgmt-resources","","NA","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2020_06_01","","1.0.0-beta","azure-mgmt-resources","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2016_06_01","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2016_09_01","","1.0.0-beta","azure-mgmt-resources.v2016_09_01","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2016_09_01","NA","NA","","","" "azure-mgmt-resources","com.microsoft.azure.resources.v2018_02_01","","1.0.0-beta-1","azure-mgmt-resources.v2018_02_01","Resources","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/resources/mgmt-v2018_02_01","NA","NA","","","" @@ -527,9 +532,11 @@ "azure-profile-parent","com.microsoft.azure.profile_2018_03_01_hybrid","","1.0.0-beta-1","azure-profile-parent","Profile","https://github.com/Azure/azure-sdk-for-java/tree/master/profiles/2018-03-01-hybrid","NA","NA","","","" "azure-profile-parent","com.microsoft.azure.profile_2019_03_01_hybrid","","1.0.0-beta-1","azure-profile-parent","Profile","https://github.com/Azure/azure-sdk-for-java/tree/master/profiles/2019-03-01-hybrid","NA","NA","","","" "azure-relay","com.microsoft.azure","0.0.3","","azure-relay","","NA","NA","NA","","","" -"azure-resourcemanager","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager","","NA","","","","","" +"azure-resourcemanager","com.azure.resourcemanager","2.0.0","2.0.0-beta.4","azure-resourcemanager","","NA","","","","","" +"azure-resourcemanager-cdn","com.azure.resourcemanager","","2.0.0-beta.5","azure-resourcemanager-cdn","","NA","NA","","","","" "azure-resourcemanager-parent","com.azure.resourcemanager","","2.0.0-beta.3","azure-resourcemanager-parent","","NA","NA","NA","","","" -"azure-resourcemanager-privatedns","com.azure.resourcemanager","","2.0.0-beta.4","azure-resourcemanager-privatedns","","NA","","","","","" +"azure-resourcemanager-privatedns","com.azure.resourcemanager","","2.0.0-beta.5","azure-resourcemanager-privatedns","","NA","","","","","" +"azure-resourcemanager-servicebus","com.azure.resourcemanager","","2.0.0-beta.5","azure-resourcemanager-servicebus","","NA","","","","","" "azure-sdk-all","com.azure","1.0.0","","azure-sdk-all","","NA","NA","NA","","","" "azure-sdk-bom","com.azure","1.0.1","","azure-sdk-bom","Bom","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/boms/azure-sdk-bom","NA","NA","","","" "azure-sdk-parent","com.azure","1.6.0","","azure-sdk-parent","Parent","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/parents/azure-sdk-parent","NA","NA","","","" @@ -538,21 +545,23 @@ "azure-sdk-template","com.microsoft.azure","1.0.1","","azure-sdk-template","Template","template","","NA","","true","" "azure-sdk-template-bom","com.azure","","1.0.0-beta.5","azure-sdk-template-bom","Bom","","NA","NA","","true","" "azure-search","com.azure","","11.0.0-beta.1","azure-search","Search","search","NA","","","","Replaced by: azure-search-documents" +"azure-security-keyvault-jca","com.azure","","1.0.0-beta.1","azure-security-keyvault-jca","","NA","NA","","","","" "azure-servicebus","com.microsoft.azure","3.4.0","","azure-servicebus","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/servicebus/microsoft-azure-servicebus","NA","","","","Will be replaced by: azure-messaging-servicebus" "azure-servicebus-jms","com.microsoft.azure","0.0.5","","azure-servicebus-jms","","NA","NA","NA","","","" -"azure-servicebus-jms-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-servicebus-jms-spring-boot-starter","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-servicebus-jms","","NA","","","" +"azure-servicebus-jms-spring-boot-starter","com.microsoft.azure","2.3.5","2.3.6-beta.1","azure-servicebus-jms-spring-boot-starter","Service Bus","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-servicebus-jms","","NA","","","" "azure-servicebus-spring-boot-autoconfigure","com.microsoft.azure","0.1.5","","azure-servicebus-spring-boot-autoconfigure","","NA","NA","NA","","","" "azure-servicebus-spring-boot-starter","com.microsoft.azure","2.2.5","","azure-servicebus-spring-boot-starter","","NA","NA","NA","","","" "azure-serviceruntime","com.microsoft.azure","0.9.8","","azure-serviceruntime","","NA","NA","NA","","","" "azure-sfmesh-maven-plugin","com.microsoft.azure","0.1.0","","azure-sfmesh-maven-plugin","","NA","NA","NA","","","" "azure-spark-archetype","com.microsoft.azure","0.1.0","","azure-spark-archetype","","NA","NA","NA","","","" -"azure-spring-boot","com.microsoft.azure","2.3.5","","azure-spring-boot","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot","","","","","" +"azure-spring-boot","com.microsoft.azure","2.3.5","2.3.6-beta.1","azure-spring-boot","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot","","","","","" "azure-spring-boot-bom","com.microsoft.azure","2.3.5","","azure-spring-boot-bom","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/boms/azure-spring-boot-bom","NA","NA","","","" "azure-spring-boot-dependencies","com.microsoft.azure","0.1.2","","azure-spring-boot-dependencies","","NA","NA","NA","","","" "azure-spring-boot-metrics-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-metrics-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter-metrics","","NA","","","" "azure-spring-boot-parent","com.microsoft.azure","2.3.2","","azure-spring-boot-parent","","NA","NA","NA","","","" "azure-spring-boot-starter","com.microsoft.azure","2.3.5","","azure-spring-boot-starter","Spring Boot","https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring/azure-spring-boot-starter","","NA","","","" "azure-spring-boot-starter-bom","com.microsoft.azure","0.1.7","","azure-spring-boot-starter-bom","","NA","NA","NA","","","" +"azure-spring-boot-starter-keyvault-certificates","com.azure.spring","","3.0.0-beta.1","azure-spring-boot-starter-keyvault-certificates","","NA","NA","NA","","","" "azure-spring-boot-starter-parent","com.microsoft.azure","0.1.7","","azure-spring-boot-starter-parent","","NA","NA","NA","","","" "azure-spring-cloud-maven-plugin","com.microsoft.azure","1.3.0","","azure-spring-cloud-maven-plugin","","NA","NA","NA","","","" "azure-spring-common","com.microsoft.azure","0.1.7","","azure-spring-common","","NA","NA","NA","","","" @@ -581,9 +590,9 @@ "azure-svc-mgmt-sql","com.microsoft.azure","0.9.8","","azure-svc-mgmt-sql","","NA","NA","NA","","TRUE","" "azure-svc-mgmt-storage","com.microsoft.azure","0.9.8","","azure-svc-mgmt-storage","","NA","NA","NA","","TRUE","" "azure-svc-mgmt-websites","com.microsoft.azure","0.9.8","","azure-svc-mgmt-websites","","NA","NA","NA","","TRUE","" -"azure-tools-common","com.microsoft.azure","0.8.0","","azure-tools-common","","NA","NA","NA","","","" +"azure-tools-common","com.microsoft.azure","0.9.0","","azure-tools-common","","NA","NA","NA","","","" "azure-tracing-util","com.microsoft.azure","0.9.8","","azure-tracing-util","","NA","NA","NA","","","" -"azure-webapp-maven-plugin","com.microsoft.azure","1.11.0","","azure-webapp-maven-plugin","","NA","NA","NA","","","" +"azure-webapp-maven-plugin","com.microsoft.azure","1.12.0","","azure-webapp-maven-plugin","","NA","NA","NA","","","" "bundler-maven-plugin","com.microsoft.azure","0.0.5","","bundler-maven-plugin","","NA","NA","NA","","","" "client-runtime","com.microsoft.azure","1.0.1","","client-runtime","","NA","NA","NA","","","" "azure-communication-calling","com.azure.android","","1.0.0-beta.2","Communication Calling","Communication","NA","NA","NA","","","" diff --git a/_data/releases/latest/js-packages.csv b/_data/releases/latest/js-packages.csv index 5974464a7bb..87036f16445 100644 --- a/_data/releases/latest/js-packages.csv +++ b/_data/releases/latest/js-packages.csv @@ -35,12 +35,12 @@ "@autorest/azureresourceschema","3.0.92","","@autorest/azureresourceschema","Azure Resource Schema","https://github.com/Azure/autorest.azureresourceschema","NA","NA","","","" "@autorest/cli","0.1.889","","@autorest/cli","Cli","https://github.com/Azure/autorest.cli","NA","NA","","","" "@autorest/cli.common","1.0.14","","@autorest/cli.common","Cli Common","https://github.com/Azure/autorest.clicommon","NA","NA","","","" -"@autorest/clicommon","0.5.2","","@autorest/clicommon","Cli Common","https://github.com/Azure/autorest.clicommon/tree/0.4.12","NA","NA","","","" +"@autorest/clicommon","0.5.4","","@autorest/clicommon","Cli Common","https://github.com/Azure/autorest.clicommon/tree/0.4.12","NA","NA","","","" "@autorest/compare","0.3.1","","@autorest/compare","Compare","https://github.com/Azure/autorest.compare","NA","NA","","","" "@autorest/core","3.0.6320","","@autorest/core","Core","https://github.com/Azure/autorest/tree/master/core","NA","NA","","","" "@autorest/modelerfour","4.1.60","","@autorest/modelerfour","Modelerfour","https://github.com/Azure/autorest.modelerfour","NA","NA","","","" -"@autorest/powershell","2.1.401","","@autorest/powershell","Powershell","https://github.com/Azure/autorest.powershell","NA","NA","","","" -"@autorest/python","5.3.5","","@autorest/python","Python","https://github.com/Azure/autorest.python/tree/v5.1.0-preview.7","NA","NA","","","" +"@autorest/powershell","3.0.403","","@autorest/powershell","Powershell","https://github.com/Azure/autorest.powershell","NA","NA","","","" +"@autorest/python","5.4.0","","@autorest/python","Python","https://github.com/Azure/autorest.python/tree/v5.1.0-preview.7","NA","NA","","","" "@autorest/remodeler","2.1.27","","@autorest/remodeler","Remodeler","https://github.com/Azure/autorest.remodeler","NA","NA","","","" "@autorest/test","0.1.69","","@autorest/test","Test","https://github.com/Azure/autorest.test","NA","NA","","","" "@autorest/test-server","3.0.27","","@autorest/test-server","","NA","NA","NA","","","" @@ -70,6 +70,7 @@ "@azure/arm-cognitiveservices","5.2.0","","@azure/arm-cognitiveservices","Cognitive Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cognitiveservices/arm-cognitiveservices","https://docs.microsoft.com/javascript/api/overview/azure/cognitive-services","NA","","","" "@azure/arm-commerce","2.1.1","","@azure/arm-commerce","Commerce","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/commerce/arm-commerce","https://docs.microsoft.com/javascript/api/overview/azure/commerce","","","","" "@azure/arm-commitmentplans","1.2.0","","@azure/arm-commitmentplans","Machine Learning","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/machinelearning/arm-commitmentplans","NA","","","","" +"@azure/arm-communication","1.0.0","","@azure/arm-communication","","NA","NA","NA","","","" "@azure/arm-compute","15.0.0","","@azure/arm-compute","Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/compute/arm-compute","https://docs.microsoft.com/javascript/api/overview/azure/virtualmachines","NA","","","" "@azure/arm-compute-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-compute-profile-2019-03-01-hybrid","Compute","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/compute/arm-compute-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-consumption","6.3.0","","@azure/arm-consumption","Consumption","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/consumption/arm-consumption","NA","","","","" @@ -81,13 +82,13 @@ "@azure/arm-databox","4.0.0","","@azure/arm-databox","Databox","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/databox/arm-databox","NA","NA","","","" "@azure/arm-databricks","1.1.0","","@azure/arm-databricks","Databricks","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/databricks/arm-databricks","NA","","","","" "@azure/arm-datacatalog","1.1.0","","@azure/arm-datacatalog","Datacatalog","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/datacatalog/arm-datacatalog","NA","","","","" -"@azure/arm-datafactory","7.3.0","","@azure/arm-datafactory","Datafactory","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/datafactory/arm-datafactory","NA","NA","","","" +"@azure/arm-datafactory","7.4.0","","@azure/arm-datafactory","Datafactory","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/datafactory/arm-datafactory","NA","NA","","","" "@azure/arm-datamigration","2.0.0","","@azure/arm-datamigration","Datamigration","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/datamigration/arm-datamigration","NA","","","","" "@azure/arm-deploymentmanager","3.0.0","","@azure/arm-deploymentmanager","Deployment Manager","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/deploymentmanager/arm-deploymentmanager","NA","NA","","","" "@azure/arm-deviceprovisioningservices","2.1.0","","@azure/arm-deviceprovisioningservices","Device Provisioning Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/deviceprovisioningservices/arm-deviceprovisioningservices","NA","","","","" "@azure/arm-devspaces","1.1.0","","@azure/arm-devspaces","Devspaces","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/devspaces/arm-devspaces","NA","","","","" "@azure/arm-devtestlabs","3.2.0","","@azure/arm-devtestlabs","Devtestlabs","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/devtestlabs/arm-devtestlabs","https://docs.microsoft.com/javascript/api/overview/azure/devtest-labs","","","","" -"@azure/arm-digitaltwins","0.1.0","","@azure/arm-digitaltwins","Digitaltwins","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/digitaltwins/arm-digitaltwins","NA","NA","","","" +"@azure/arm-digitaltwins","1.0.0","","@azure/arm-digitaltwins","Digitaltwins","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/digitaltwins/arm-digitaltwins","NA","NA","","","" "@azure/arm-dns","4.0.0","","@azure/arm-dns","Dns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/dns/arm-dns","https://docs.microsoft.com/javascript/api/overview/azure/dns","NA","","","" "@azure/arm-dns-profile-2019-03-01-hybrid","1.0.0","","@azure/arm-dns-profile-2019-03-01-hybrid","Dns","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/dns/arm-dns-profile-2019-03-01-hybrid","NA","","","","" "@azure/arm-domainservices","3.1.0","","@azure/arm-domainservices","Domain Services","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/domainservices/arm-domainservices","NA","","","","" @@ -530,14 +531,14 @@ "@azure/ng-deploy","0.2.3","","@azure/ng-deploy","Ng Deploy","https://github.com/Azure/ng-deploy-azure","NA","NA","","","" "@azure/oad","0.8.2","","@azure/oad","Oad","https://github.com/Azure/openapi-diff","NA","NA","","","" "@azure/openapi-markdown","0.9.2","","@azure/openapi-markdown","Openapi Markdown","https://github.com/Azure/openapi-markdown","NA","NA","","","" -"@azure/publish-pipeline-result","0.0.2","","@azure/publish-pipeline-result","","NA","NA","NA","","","" -"@azure/rest-api-specs-scripts","0.13.3","","@azure/rest-api-specs-scripts","Rest Api","https://github.com/Azure/rest-api-specs-scripts","NA","NA","","","" +"@azure/publish-pipeline-result","0.1.2","","@azure/publish-pipeline-result","","NA","NA","NA","","","" +"@azure/rest-api-specs-scripts","0.13.4","","@azure/rest-api-specs-scripts","Rest Api","https://github.com/Azure/rest-api-specs-scripts","NA","NA","","","" "@azure/search","11.0.0-preview.1","","@azure/search","","NA","NA","","","","Replaced by: @azure/search-documents" "@azure/servicefabric","5.0.0","","@azure/servicefabric","","NA","https://docs.microsoft.com/javascript/api/overview/azure/service-fabric","NA","","","" "@azure/storage-blob-changefeed","","12.0.0-preview.2","@azure/storage-blob-changefeed","Storage","storage","","","","","" "@azure/storage-datalake","0.2.0","","@azure/storage-datalake","storage","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-datalake","NA","","","","Replaced by: @azure/storage-file-datalake" "@azure/storage-file","10.3.0","","@azure/storage-file","","NA","NA","NA","","","Replaced by: @azure/storage-file-share" -"@azure/swagger-validation-common","0.0.7","","@azure/swagger-validation-common","","NA","NA","NA","","","" +"@azure/swagger-validation-common","0.1.2","","@azure/swagger-validation-common","","NA","NA","NA","","","" "@azure/synapse","","1.0.0-preview.1","@azure/synapse","Synapse","https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/synapse/synapse","NA","NA","","","" "@azure/template","","0.2.0-preview.4","@azure/template","Template","","NA","NA","","true","" "@azure-tools/adl","0.1.229","","@azure-tools/adl","ADL","https://github.com/Azure/adl/tree/master/adl","NA","NA","","","" diff --git a/_data/releases/latest/python-packages.csv b/_data/releases/latest/python-packages.csv index 5cec50ab860..404a1d37061 100644 --- a/_data/releases/latest/python-packages.csv +++ b/_data/releases/latest/python-packages.csv @@ -1,6 +1,5 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","Hide","Notes" "azure-appconfiguration","1.1.1","","App Configuration","App Configuration","appconfiguration","","","client","","" -"azure-ai-metricsadvisor","","1.0.0b1","Metrics Advisor","Metrics Advisor","metricsadvisor","","","client","","" "azure-search-documents","11.0.0","11.1.0b3","Cognitive Search","Search","search","","","client","","Replaces: azure-search" "azure-communication-administration","","1.0.0b2","Communication Administration","Communication","communication","","","client","","" "azure-communication-chat","","1.0.0b2","Communication Chat","Communication","communication","","","client","","" @@ -17,6 +16,7 @@ "azure-keyvault-keys","4.3.0","","Key Vault - Keys","Key Vault","keyvault","","","client","","" "azure-keyvault-secrets","4.2.0","","Key Vault - Secrets","Key Vault","keyvault","","","client","","" "azure-keyvault-administration","","4.0.0b2","Key Vault Administration","Key Vault","keyvault","","","client","","" +"azure-ai-metricsadvisor","","1.0.0b1","Metrics Advisor","Metrics Advisor","metricsadvisor","","","client","","" "azure-schemaregistry","","1.0.0b1","Schema Registry","Schema Registry","schemaregistry","","","client","","" "azure-schemaregistry-avroserializer","","1.0.0b1","Schema Registry Avro Serializer","Schema Registry","schemaregistry","","","client","","" "azure-servicebus","0.50.3","7.0.0b7","Service Bus","Service Bus","servicebus","","","client","","Will be replaced by: azure-servicebus 7.x" @@ -93,7 +93,7 @@ "azure-mgmt-azurestackhci","1.0.0","1.0.0rc1","azure-mgmt-azurestackhci","","NA","NA","","","","" "azure-mgmt-batch","9.0.0","","azure-mgmt-batch","Batch","batch","https://docs.microsoft.com/python/api/overview/azure/batch","","","","" "azure-mgmt-batchai","2.0.0","","azure-mgmt-batchai","Batchai","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batchai_2.0.0/azure-mgmt-batchai/","https://docs.microsoft.com/python/api/overview/azure/batchai","NA","","","" -"azure-mgmt-billing","0.2.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing","","","","" +"azure-mgmt-billing","1.0.0","","azure-mgmt-billing","Billing","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-billing_0.2.0/azure-mgmt-billing/","https://docs.microsoft.com/python/api/overview/azure/billing","","","","" "azure-mgmt-botservice","0.2.0","","azure-mgmt-botservice","Botservice","botservice","NA","","","","" "azure-mgmt-cdn","5.1.0","","azure-mgmt-cdn","CDN","cdn","","","","","" "azure-mgmt-cognitiveservices","6.3.0","","azure-mgmt-cognitiveservices","Cognitive Services","cognitiveservices","NA","","","","" @@ -148,7 +148,7 @@ "azure-mgmt-managementpartner","0.1.1","","azure-mgmt-managementpartner","Management Partner","managementpartner","NA","","","","" "azure-mgmt-maps","0.1.0","","azure-mgmt-maps","Maps","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-maps_0.1.0/azure-mgmt-maps/","NA","","","","" "azure-mgmt-marketplaceordering","0.2.1","","azure-mgmt-marketplaceordering","Marketplaceordering","https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-marketplaceordering_0.2.1/azure-mgmt-marketplaceordering/","NA","","","","" -"azure-mgmt-media","2.2.0","","azure-mgmt-media","Media","media","https://docs.microsoft.com/python/api/overview/azure/media-services","","","","" +"azure-mgmt-media","3.0.0","","azure-mgmt-media","Media","media","https://docs.microsoft.com/python/api/overview/azure/media-services","","","","" "azure-mgmt-mixedreality","0.2.0","","azure-mgmt-mixedreality","Mixedreality","mixedreality","https://docs.microsoft.com/python/api/overview/azure/mixed-reality","","","","" "azure-mgmt-msi","1.0.0","","azure-mgmt-msi","Resources","resources","NA","","","","" "azure-mgmt-netapp","0.13.0","","azure-mgmt-netapp","Netapp","netapp","","","","","" @@ -207,7 +207,7 @@ "azure-synapse-artifacts","0.3.0","","azure-synapse-artifacts","Synapse","synapse","","","","","" "azure-synapse-nspkg","1.0.0","","azure-synapse-nspkg","Synapse","synapse","NA","NA","","","" "azure-synapse-spark","0.3.0","","azure-synapse-spark","Synapse","synapse","","","","","" -"azure-template","0.0.17","0.1.0b15","azure-template","Template","","NA","","","true","" +"azure-template","0.0.17","0.1.0b25","azure-template","Template","","NA","","","true","" "doc-warden","0.7.1","","doc-warden","Doc Warden","https://github.com/Azure/azure-sdk-tools/tree/doc-warden_0.7.1/packages/python-packages/doc-warden","NA","NA","","","" "msrest","0.6.19","","msrest","Msrest","https://github.com/Azure/msrest-for-python/tree/v0.6.18/msrest","NA","NA","","","" "msrestazure","0.6.4","","msrestazure","Msrest Azure","https://github.com/Azure/msrestazure-for-python/tree/v0.6.4/msrestazure","NA","NA","","","" From 8c98dd164ffe1923d159e29d225afc0e33d18d5e Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 22 Oct 2020 10:01:27 -0700 Subject: [PATCH 39/87] update c and cpp links from refs (#1957) * update c and cpp links from refs * two more missing links * remove empty header --- _includes/refs.md | 4 ++-- releases/2020-09/cpp.md | 2 +- releases/2020-10/cpp.md | 4 +--- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/_includes/refs.md b/_includes/refs.md index b74141a1b86..122e535d1e1 100644 --- a/_includes/refs.md +++ b/_includes/refs.md @@ -23,8 +23,8 @@ [java-latest-releases]: {{ site.baseurl }}{% link releases/latest/java.md %} [js-latest-releases]: {{ site.baseurl }}{% link releases/latest/js.md %} [python-latest-releases]: {{ site.baseurl }}{% link releases/latest/python.md %} -[cpp-latest-releases]: {{ site.baseurl }}{% link releases/latest/c.md %} -[c-latest-releases]: {{ site.baseurl }}{% link releases/latest/cpp.md %} +[cpp-latest-releases]: {{ site.baseurl }}{% link releases/latest/cpp.md %} +[c-latest-releases]: {{ site.baseurl }}{% link releases/latest/c.md %} [README-EXAMPLE]: https://github.com/Azure/azure-sdk/blob/master/docs/policies/README-EXAMPLE.md [README-TEMPLATE]: https://github.com/Azure/azure-sdk/blob/master/docs/policies/README-TEMPLATE.md diff --git a/releases/2020-09/cpp.md b/releases/2020-09/cpp.md index 2b46d06f200..bc3f734a60a 100644 --- a/releases/2020-09/cpp.md +++ b/releases/2020-09/cpp.md @@ -31,7 +31,7 @@ If you have a bug or feature request for one of the libraries, please post an is ## Changelog -### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-c/blob/master/CHANGELOG.md) +### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/core/azure-core/CHANGELOG.md) ### Azure Storage Blobs [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/storage/azure-storage-blobs/CHANGELOG.md#100-beta2-2020-09-09) diff --git a/releases/2020-10/cpp.md b/releases/2020-10/cpp.md index e2132b8abea..c34ad4e245c 100644 --- a/releases/2020-10/cpp.md +++ b/releases/2020-10/cpp.md @@ -31,9 +31,7 @@ If you have a bug or feature request for one of the libraries, please post an is ## Changelog -### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-c/blob/master/CHANGELOG.md) - -#### New Features +### Azure Core [Changelog](https://github.com/Azure/azure-sdk-for-cpp/blob/master/sdk/core/azure-core/CHANGELOG.md) #### Bug Fixes From 58c5ebdea4af0fdc8ca6edd951d9b684ada29c16 Mon Sep 17 00:00:00 2001 From: Samer Alameer Date: Thu, 22 Oct 2020 10:47:29 -0700 Subject: [PATCH 40/87] Adding Search functionality (#1955) Integrating static content search capablity leveraging this open source project (MIT license): https://github.com/jekylltools/jekyll-tipue-search Co-authored-by: sameralameer --- _config.yml | 6 + _includes/head.html | 3 + _includes/sidebar.html | 14 ++ css/normalize.css | 461 ++++++++++++++++++++++++++++++++++++++ css/tipuesearch.css | 189 ++++++++++++++++ docs/general/search.md | 16 ++ images/search.png | Bin 0 -> 1366 bytes js/tipuesearch.min.js | 167 ++++++++++++++ js/tipuesearch_content.js | 83 +++++++ js/tipuesearch_set.js | 80 +++++++ 10 files changed, 1019 insertions(+) create mode 100644 css/normalize.css create mode 100755 css/tipuesearch.css create mode 100644 docs/general/search.md create mode 100644 images/search.png create mode 100644 js/tipuesearch.min.js create mode 100644 js/tipuesearch_content.js create mode 100644 js/tipuesearch_set.js diff --git a/_config.yml b/_config.yml index 8425f3c7da4..c412f3f75f2 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,11 @@ repository: azure/azure-sdk + +tipue_search: + include: + pages: true + posts: true + # feed.xml title: Azure SDKs description: "The design guidelines and policies under which the Azure SDKs are designed and built." diff --git a/_includes/head.html b/_includes/head.html index d6e8224c080..0c7c9b400c7 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -11,6 +11,9 @@ + + + diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 74749db51ac..405ecfdb57c 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,6 +1,20 @@ {% assign sidebar = site.data.sidebars[page.sidebar].entries %}