1.. :changelog: 2 3Release History 4=============== 5 60.61.1 (2019-05-29) 7+++++++++++++++++++ 8 9**Bugfix** 10 11- account_enabled is now correctly bool (from str) 12 130.61.0 (2019-03-20) 14+++++++++++++++++++ 15 16**Features** 17 18- Adding applications.get_service_principals_id_by_app_id 19 20**Bugfix** 21 22- identifier_uris is not a required application parameter 23 240.60.0 (2019-03-13) 25+++++++++++++++++++ 26 27**Features** 28 29- Model Application has a new parameter optional_claims 30- Model Application has a new parameter pre_authorized_applications 31- Model Application has a new parameter group_membership_claims 32- Model Application has a new parameter oauth2_allow_url_path_matching 33- Model Application has a new parameter allow_passthrough_users 34- Model Application has a new parameter is_device_only_auth_supported 35- Model Application has a new parameter saml_metadata_url 36- Model Application has a new parameter app_logo_url 37- Model Application has a new parameter sign_in_audience 38- Model Application has a new parameter logout_url 39- Model Application has a new parameter oauth2_permissions 40- Model Application has a new parameter oauth2_require_post_response 41- Model Application has a new parameter org_restrictions 42- Model Application has a new parameter allow_guests_sign_in 43- Model Application has a new parameter www_homepage 44- Model Application has a new parameter public_client 45- Model Application has a new parameter error_url 46- Model Application has a new parameter known_client_applications 47- Model Application has a new parameter publisher_domain 48- Model Application has a new parameter informational_urls 49 50**Breaking changes** 51 52- client.oauth2 has been renamed client.oauth2_permission_grant 53 540.53.0 (2018-11-27) 55+++++++++++++++++++ 56 57**Features** 58 59- Add PasswordCredentials.custom_key_identifier 60- Add Application.key_credentials 61- Add Application.password_credentials 62 63**Bugfix** 64 65- Fix KeyCredential.custom_key_identifier type from bytes to str 66 670.52.0 (2018-10-29) 68+++++++++++++++++++ 69 70**Bugfix** 71 72- Add missing required_resource_access in Application 73 740.51.1 (2018-10-16) 75+++++++++++++++++++ 76 77**Bugfix** 78 79- Fix sdist broken in 0.50.0 and 0.51.0. No code change. 80 810.51.0 (2018-10-11) 82+++++++++++++++++++ 83 84**Features** 85 86- Add delete group/application owner 87 880.50.0 (2018-10-10) 89+++++++++++++++++++ 90 91**Features** 92 93- signed_in_user.get : Return the currently logged-in User object 94- signed_in_user.list_owned_objects : All objects owned by current user 95- deleted_applications.restore : Restore an application deleted in the last 30 days 96- deleted_applications.list : List all applications deleted in the last 30 days 97- deleted_applications.hard_delete : Delete for real an application in the deleted list 98- groups.list_owners : List owner of the group 99- groups.add_owner : Add owner to this group 100- Application and ServicePrincipals have now the attribute "app_roles" which is a list of AppRole class. To implement this. 101- Client class can be used as a context manager to keep the underlying HTTP session open for performance 102- Model ADGroup has a attributes mail_enabled and mail_nickname 103- Model KeyCredential has a new atrribute custom_key_identifier 104- Added operation group oauth2_operations (operations "get" and "grant") 105 106**Bug fixes** 107 108- Fix applications.list_owners access to next page 109- Fix service_principal.list_owners access to next page 110 111**Breaking changes** 112 113- ApplicationAddOwnerParameters has been renamed AddOwnerParameters 114- objects.get_current_user has been removed. Use signed_in_user.get instead. The main difference is this new method returns a DirectoryObjectList, where every elements could be sub-type of DirectoryObject (User, Group, etc.) 115- objects.get_objects_by_object_ids now returns a DirectoryObjectList, where every element could be sub-type of DirectoryObject (User, Group, etc.) 116- GetObjectsParameters.include_directory_object_references is no longer required. 117- Groups.get_members now returns a DirectoryObjectList, where every element could be sub-type of DirectoryObject (User, Group, etc.) 118 119**General Breaking changes** 120 121This version uses a next-generation code generator that *might* introduce breaking changes. 122 123- Model signatures now use only keyword-argument syntax. All positional arguments must be re-written as keyword-arguments. 124 To keep auto-completion in most cases, models are now generated for Python 2 and Python 3. Python 3 uses the "*" syntax for keyword-only arguments. 125- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered. 126 While this is not a breaking change, the distinctions are important, and are documented here: 127 https://docs.python.org/3/library/enum.html#others 128 At a glance: 129 130 - "is" should not be used at all. 131 - "format" will return the string value, where "%s" string formatting will return `NameOfEnum.stringvalue`. Format syntax should be prefered. 132 133- New Long Running Operation: 134 135 - Return type changes from `msrestazure.azure_operation.AzureOperationPoller` to `msrest.polling.LROPoller`. External API is the same. 136 - Return type is now **always** a `msrest.polling.LROPoller`, regardless of the optional parameters used. 137 - The behavior has changed when using `raw=True`. Instead of returning the initial call result as `ClientRawResponse`, 138 without polling, now this returns an LROPoller. After polling, the final resource will be returned as a `ClientRawResponse`. 139 - New `polling` parameter. The default behavior is `Polling=True` which will poll using ARM algorithm. When `Polling=False`, 140 the response of the initial call will be returned without polling. 141 - `polling` parameter accepts instances of subclasses of `msrest.polling.PollingMethod`. 142 - `add_done_callback` will no longer raise if called after polling is finished, but will instead execute the callback right away. 143 144**Note** 145 146- azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based namespace package) 147 1480.40.0 (2018-02-05) 149+++++++++++++++++++ 150 151**Disclaimer** 152 153To prepare future versions, all Model creation should use keyword only arguments. 154 155**Breaking changes** 156 157- ApplicationCreateParameters changed __init__ signature, breaks if positional arguments was used. 158- ApplicationUpdateParameters changed __init__ signature, breaks if positional arguments was used. 159- CheckGroupMembershipParameters changed __init__ signature, breaks if positional arguments was used. 160- GetObjectsParameters changed __init__ signature, breaks if positional arguments was used. 161- GroupAddMemberParameters changed __init__ signature, breaks if positional arguments was used. 162- GroupCreateParameters changed __init__ signature, breaks if positional arguments was used. 163- GroupGetMemberGroupsParameters changed __init__ signature, breaks if positional arguments was used. 164- ServicePrincipalCreateParameters changed __init__ signature, breaks if positional arguments was used. 165- UserCreateParameters changed __init__ signature, breaks if positional arguments was used. 166- UserGetMemberGroupsParameters changed __init__ signature, breaks if positional arguments was used. 167- UserUpdateParameters changed __init__ signature, breaks if positional arguments was used. 168- groups.is_member_of now takes an instance of CheckGroupMembershipParameters, and not group_id, member_id parameters 169- groups.add_member now have an optional parameter "additional_properties", breaks if positional arguments was used. 170- groups.create now takes an instance of GroupCreateParameters, and not display_name, mail_nickname parameters 171- groups.get_member_groups now have an optional parameter "additional_properties", breaks if positional arguments was used. 172- service_principals.get_member_groups now have an optional parameter "additional_properties", breaks if positional arguments was used. 173 174**Features** 175 176- Enable additional_properties on all Models. to dynamically harvest new properties. 177- Better hierarchy resolution and new generic Model like AADObject. This adds several new attribute to a lot of models. 178- Operation groups now have a "models" attribute. 179- Add applications.list_owners 180- Add applications.add_owner 181- Add service_principals.list_owners 182 1830.33.0 (2017-11-01) 184+++++++++++++++++++ 185 186**Features** 187 188- add "required_resource_access" when applicable 189 190**Bugfixes** 191 192- Get/Delete of Users now encode for you if you provide the UPN. 193 1940.32.0 (2017-09-22) 195+++++++++++++++++++ 196 197**Features** 198 199- Add Application.oauth2_allow_implicit_flow (create, update, get) 200- Add to User: immutable_id, given_name, surname, user_type, account_enabled 201- Add to UserCreate: given_name, surname, user_type, mail 202- Add to UserUpdate: immutable_id, given_name, surname, user_type, user_principal_name 203 204**Bugfixes** 205 206- Renamed User.signInName to an array User.signInNames 207 2080.31.0 (2017-08-09) 209+++++++++++++++++++ 210 211- Add domains operation group 212- Add usage locations to user 213- Add several new attributes to AADObject 214 2150.30.0 (2017-04-20) 216+++++++++++++++++++ 217 218* ApiVersion is now 1.6 for the whole package 219* This wheel package is now built with the azure wheel extension 220 2210.30.0rc6 (2016-09-14) 222++++++++++++++++++++++ 223 224**Bugfixes** 225 226* 'list' methods returned only 100 entries (#653) 227 2280.30.0rc5 (2016-06-23) 229++++++++++++++++++++++ 230 231* Initial preview release 232