Skip to content

Commit 873435f

Browse files
authored
Remove link locales, update release date (Azure#15225)
1 parent 890c4ce commit 873435f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

sdk/identity/azure-identity/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.5.0 (2020-11-10)
3+
## 1.5.0 (2020-11-11)
44
### Breaking Changes
55
- Renamed optional `CertificateCredential` keyword argument `send_certificate`
66
(added in 1.5.0b1) to `send_certificate_chain`

sdk/identity/azure-identity/azure/identity/_credentials/authorization_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class AuthorizationCodeCredential(object):
1818
"""Authenticates by redeeming an authorization code previously obtained from Azure Active Directory.
1919
20-
See https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
20+
See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
2121
about the authentication flow.
2222
2323
:param str tenant_id: ID of the application's Azure Active Directory tenant. Also called its 'directory' ID.

sdk/identity/azure-identity/azure/identity/_credentials/browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class InteractiveBrowserCredential(InteractiveCredential):
2727
2828
:func:`~get_token` opens a browser to a login URL provided by Azure Active Directory and authenticates a user
2929
there with the authorization code flow. Azure Active Directory documentation describes this flow in more detail:
30-
https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code
30+
https://docs.microsoft.com/azure/active-directory/develop/v1-protocols-oauth-code
3131
3232
:keyword str authority: Authority of an Azure Active Directory endpoint, for example 'login.microsoftonline.com',
3333
the authority for Azure Public Cloud (which is the default). :class:`~azure.identity.AzureAuthorityHosts`

sdk/identity/azure-identity/azure/identity/_credentials/device_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DeviceCodeCredential(InteractiveCredential):
2828
authenticates successfully, the credential receives an access token.
2929
3030
For more information about the device code flow, see Azure Active Directory documentation:
31-
https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-device-code
31+
https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-device-code
3232
3333
:param str client_id: client ID of the application users will authenticate to. When not specified users will
3434
authenticate to an Azure development application.

sdk/identity/azure-identity/azure/identity/_credentials/user_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class UsernamePasswordCredential(InteractiveCredential):
2222
2323
This credential can only authenticate work and school accounts; Microsoft accounts are not supported.
2424
See this document for more information about account types:
25-
https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/sign-up-organization
25+
https://docs.microsoft.com/azure/active-directory/fundamentals/sign-up-organization
2626
2727
:param str client_id: the application's client ID
2828
:param str username: the user's username (usually an email address)

sdk/identity/azure-identity/azure/identity/aio/_credentials/authorization_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class AuthorizationCodeCredential(AsyncContextManager):
1818
"""Authenticates by redeeming an authorization code previously obtained from Azure Active Directory.
1919
20-
See https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
20+
See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
2121
about the authentication flow.
2222
2323
:param str tenant_id: ID of the application's Azure Active Directory tenant. Also called its 'directory' ID.

0 commit comments

Comments
 (0)