Skip to content

Commit 1dbfeba

Browse files
author
Jonathan Turner
authored
[Identity] Change version to 1.2.0 and update changelog (Azure#12451)
* Update changelog and identity package version * Update changelog and identity package version * Add json * Fix broken tenant id * Add date to changelog
1 parent 121ed88 commit 1dbfeba

File tree

7 files changed

+25
-5
lines changed

7 files changed

+25
-5
lines changed

sdk/appconfiguration/app-configuration/test/testHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function startRecorder(that: any) {
3131
AZ_CONFIG_ENDPOINT: "https://myappconfig.azconfig.io",
3232
AZURE_CLIENT_ID: "azure_client_id",
3333
AZURE_CLIENT_SECRET: "azure_client_secret",
34-
AZURE_TENANT_ID: "azure_tenant_id"
34+
AZURE_TENANT_ID: "azuretenantid"
3535
},
3636
customizationsOnRecordings: [
3737
(recording: any): any =>

sdk/identity/identity/CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
11
# Release History
22

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
417

518
- `ManagedIdentityCredential` now only checks for available MSIs once per class instance.
619
- `ManagedIdentityCredential` now supports Azure Arc environments.
720
- `ManagedIdentityCredential` now supports Azure Service Fabric environments.
821
- Added authority host for multiple clouds on `VisualStudioCodeCredential`, and specified `AzureCloud` as the default cloud name.
922
- `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.
1024

1125
## 1.2.0-beta.2 (2020-10-06)
1226

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`.
1428
- Added support for multiple clouds on `VisualStudioCodeCredential`. Fixes customer issue [11452](https://github.com/Azure/azure-sdk-for-js/issues/11452).
1529
- `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).
1630
- `InteractiveBrowserCredential` authentication now uses the silent flow if the user provides a cache and authentication record for lookup.
@@ -26,7 +40,7 @@
2640

2741
## 1.1.0 (2020-08-11)
2842

29-
### Changes since 1.0.*
43+
### Changes since 1.0.\*
3044

3145
- With 1.1.0, new developer credentials are now available: `VisualStudioCodeCredential` and `AzureCliCredential`.
3246
- `VisualStudioCodeCredential` allows developers to log into Azure using the credentials available after logging in through the Azure Account extension in Visual Studio Code.

sdk/identity/identity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/identity",
33
"sdk-type": "client",
4-
"version": "1.2.0-beta.3",
4+
"version": "1.2.0",
55
"description": "Provides credential implementations for Azure SDK libraries that can authenticate with Azure Active Directory",
66
"main": "dist/index.js",
77
"module": "dist-esm/src/index.js",

sdk/storage/storage-blob/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
"@microsoft/api-extractor": "7.7.11",
136136
"@rollup/plugin-multi-entry": "^3.0.0",
137137
"@rollup/plugin-replace": "^2.2.0",
138+
"@rollup/plugin-json": "^4.0.0",
138139
"@types/mocha": "^7.0.2",
139140
"@types/node": "^8.0.0",
140141
"assert": "^1.4.1",

sdk/storage/storage-blob/rollup.base.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import nodeResolve from "@rollup/plugin-node-resolve";
55
import multiEntry from "@rollup/plugin-multi-entry";
66
import cjs from "@rollup/plugin-commonjs";
7+
import json from "@rollup/plugin-json";
78
import replace from "@rollup/plugin-replace";
89
import { terser } from "rollup-plugin-terser";
910
import sourcemaps from "rollup-plugin-sourcemaps";
@@ -51,6 +52,7 @@ export function nodeConfig(test = false) {
5152
"if (!isNode)": "if (false)"
5253
}),
5354
nodeResolve({ preferBuiltins: true }),
55+
json(),
5456
cjs()
5557
],
5658
onwarn(warning, warn) {

sdk/storage/storage-file-datalake/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
"@microsoft/api-extractor": "7.7.11",
115115
"@opentelemetry/api": "^0.10.2",
116116
"@rollup/plugin-commonjs": "11.0.2",
117+
"@rollup/plugin-json": "^4.0.0",
117118
"@rollup/plugin-multi-entry": "^3.0.0",
118119
"@rollup/plugin-node-resolve": "^8.0.0",
119120
"@rollup/plugin-replace": "^2.2.0",

sdk/storage/storage-file-datalake/rollup.base.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Licensed under the MIT License.
33
import replace from "@rollup/plugin-replace";
44
import cjs from "@rollup/plugin-commonjs";
5+
import json from "@rollup/plugin-json";
56
import multiEntry from "@rollup/plugin-multi-entry";
67
import nodeResolve from "@rollup/plugin-node-resolve";
78
import shim from "rollup-plugin-shim";
@@ -50,6 +51,7 @@ export function nodeConfig(test = false) {
5051
"if (isNode)": "if (true)"
5152
}),
5253
nodeResolve({ preferBuiltins: true }),
54+
json(),
5355
cjs({
5456
namedExports: {
5557
events: ["EventEmitter"],

0 commit comments

Comments
 (0)