@azure/identity 1.2.0-alpha.20201109.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @azure/identity might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/CHANGELOG.md +17 -3
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,16 +1,30 @@
1
1
  # Release History
2
2
 
3
- ## 1.2.0-beta.3 (Unreleased)
3
+ ## 1.2.0 (2020-11-11)
4
+
5
+ ### Changes since 1.1.\*
6
+
7
+ - With 1.2, we've added support for Azure Arc to our Managed Identity credential.
8
+ - We've also added an Interactive Browser credential for Node, which spawns the user's browser and connects via
9
+ a browser-based auth code flow. This is powered by the Microsoft Authentication Library (MSAL)
10
+ - We've moved `DeviceCodeCredential` to also use the Microsoft Authentication Library (MSAL)
11
+ - Identity now supports Subject Name/Issuer (SNI) as part of authentication for ClientCertificateCredential.
12
+ - Added Active Directory Federation Services authority host support to the node credentials.
13
+ - `ManagedIdentityCredential` has been aligned with other languages, and now treats expected errors properly.
14
+ - Added support for multiple clouds on `VisualStudioCodeCredential`.
15
+
16
+ ### Changes since the latest 1.2-beta
4
17
 
5
18
  - `ManagedIdentityCredential` now only checks for available MSIs once per class instance.
6
19
  - `ManagedIdentityCredential` now supports Azure Arc environments.
7
20
  - `ManagedIdentityCredential` now supports Azure Service Fabric environments.
8
21
  - Added authority host for multiple clouds on `VisualStudioCodeCredential`, and specified `AzureCloud` as the default cloud name.
9
22
  - `DeviceCodeCredential` now has both of its constructor parameters, `tenantId` and `clientId`, as optional parameters. The default value of `tenantId` is "organizations", and the Azure CLI's client ID is the default value of `clientId`.
23
+ - We've removed the persistent cache support from the previous beta.
10
24
 
11
25
  ## 1.2.0-beta.2 (2020-10-06)
12
26
 
13
- - `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`.
27
+ - `DeviceCodeCredential` 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`.
14
28
  - Added support for multiple clouds on `VisualStudioCodeCredential`. Fixes customer issue [11452](https://github.com/Azure/azure-sdk-for-js/issues/11452).
15
29
  - `ManagedIdentityCredential` has been aligned with other languages, now treating expected errors properly. This fixes customer issue [11451](https://github.com/Azure/azure-sdk-for-js/issues/11451).
16
30
  - `InteractiveBrowserCredential` authentication now uses the silent flow if the user provides a cache and authentication record for lookup.
@@ -26,7 +40,7 @@
26
40
 
27
41
  ## 1.1.0 (2020-08-11)
28
42
 
29
- ### Changes since 1.0.*
43
+ ### Changes since 1.0.\*
30
44
 
31
45
  - With 1.1.0, new developer credentials are now available: `VisualStudioCodeCredential` and `AzureCliCredential`.
32
46
  - `VisualStudioCodeCredential` allows developers to log into Azure using the credentials available after logging in through the Azure Account extension in Visual Studio Code.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@azure/identity",
3
3
  "sdk-type": "client",
4
- "version": "1.2.0-alpha.20201109.1",
4
+ "version": "1.2.0",
5
5
  "description": "Provides credential implementations for Azure SDK libraries that can authenticate with Azure Active Directory",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist-esm/src/index.js",
@@ -80,7 +80,7 @@
80
80
  "sideEffects": false,
81
81
  "dependencies": {
82
82
  "@azure/core-http": "^1.2.0",
83
- "@azure/core-tracing": "^1.0.0-alpha",
83
+ "@azure/core-tracing": "1.0.0-preview.9",
84
84
  "@azure/logger": "^1.0.0",
85
85
  "@azure/msal-node": "^1.0.0-alpha.13",
86
86
  "@opentelemetry/api": "^0.10.2",
@@ -97,7 +97,7 @@
97
97
  "keytar": "^5.4.0"
98
98
  },
99
99
  "devDependencies": {
100
- "@azure/eslint-plugin-azure-sdk": "^3.0.0-alpha",
100
+ "@azure/eslint-plugin-azure-sdk": "^3.0.0",
101
101
  "@azure/abort-controller": "^1.0.0",
102
102
  "@microsoft/api-extractor": "7.7.11",
103
103
  "@rollup/plugin-commonjs": "11.0.2",