From 0c652a97e4e2767f46cf1354aafc0e5948ad68da Mon Sep 17 00:00:00 2001 From: Laurent Mazuel Date: Tue, 20 Feb 2018 16:33:04 -0800 Subject: [PATCH] Packaging update for web 0.35.0 --- azure-mgmt-web/HISTORY.rst | 24 ++++++++++++++++++++++++ azure-mgmt-web/README.rst | 6 +++--- azure-mgmt-web/setup.py | 3 +-- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/azure-mgmt-web/HISTORY.rst b/azure-mgmt-web/HISTORY.rst index 6234b397f86d..77bd5a76ce86 100644 --- a/azure-mgmt-web/HISTORY.rst +++ b/azure-mgmt-web/HISTORY.rst @@ -3,6 +3,30 @@ Release History =============== +0.35.0 (2018-02-20) ++++++++++++++++++++ + +**Breaking changes** + +- Many models signature changed to expose correctly required parameters. Example (non exhaustive) list: + + - AppServiceCertificateOrderPatchResource now requires product_type + - AppServicePlanPatchResource now requires app_service_plan_patch_resource_name + - CertificatePatchResource now requires password + - DomainPatchResource now requires contact_admin, contact_billing, contact_registrant, contact_tech, consent + - MigrateMySqlRequest now requires connection_string, migration_type + - PushSettings now requires is_push_enabled + +- get_available_stacks now returns a pageable object + +**Features** + +- Add certificate_registration_provider operations group +- Add Diagnostics operations group +- Add domain registration provider operations groups +- All operations group have now a "models" attribute + + 0.34.1 (2017-10-24) +++++++++++++++++++ diff --git a/azure-mgmt-web/README.rst b/azure-mgmt-web/README.rst index 29113285f402..b4665a2dfaae 100644 --- a/azure-mgmt-web/README.rst +++ b/azure-mgmt-web/README.rst @@ -6,7 +6,7 @@ This is the Microsoft Azure Web Apps Management Client Library. Azure Resource Manager (ARM) is the next generation of management APIs that replace the old Azure Service Management (ASM). -This package has been tested with Python 2.7, 3.3, 3.4, 3.5 and 3.6. +This package has been tested with Python 2.7, 3.4, 3.5 and 3.6. For the older Azure Service Management (ASM) libraries, see `azure-servicemanagement-legacy `__ library. @@ -37,8 +37,8 @@ Usage ===== For code examples, see `Web Apps Management -`__ -on readthedocs.org. +`__ +on docs.microsoft.com. Provide Feedback diff --git a/azure-mgmt-web/setup.py b/azure-mgmt-web/setup.py index f3161ad81fe3..f47af623f2af 100644 --- a/azure-mgmt-web/setup.py +++ b/azure-mgmt-web/setup.py @@ -69,7 +69,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -78,7 +77,7 @@ zip_safe=False, packages=find_packages(exclude=["tests"]), install_requires=[ - 'msrestazure~=0.4.11', + 'msrestazure>=0.4.20,<2.0.0', 'azure-common~=1.1', ], cmdclass=cmdclass