@microsoft/vscode-azext-azureauth 6.0.0-alpha.1 → 6.0.0-alpha.2
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0-alpha.2 - 2026-02-09
|
|
4
|
+
|
|
5
|
+
* Fix copy all optional properties in `ExtendedEnvironment` constructor
|
|
6
|
+
|
|
3
7
|
## 6.0.0 - 2025-12-15
|
|
4
8
|
|
|
5
9
|
* [#2119](https://github.com/microsoft/vscode-azuretools/pull/2119) Complete rewrite of the auth package. Adds caching, parallelization, and smarter filtering.
|
|
@@ -57,6 +57,9 @@ class ExtendedEnvironment extends azureEnv.Environment {
|
|
|
57
57
|
constructor(parameters, isCustomCloud) {
|
|
58
58
|
super(parameters);
|
|
59
59
|
this.isCustomCloud = isCustomCloud;
|
|
60
|
+
// The Environment constructor only copies required properties. Copy all remaining
|
|
61
|
+
// optional properties (e.g. storageEndpointSuffix, keyVaultDnsSuffix) from the source.
|
|
62
|
+
Object.assign(this, parameters);
|
|
60
63
|
}
|
|
61
64
|
}
|
|
62
65
|
/**
|
|
@@ -19,6 +19,9 @@ class ExtendedEnvironment extends azureEnv.Environment {
|
|
|
19
19
|
constructor(parameters, isCustomCloud) {
|
|
20
20
|
super(parameters);
|
|
21
21
|
this.isCustomCloud = isCustomCloud;
|
|
22
|
+
// The Environment constructor only copies required properties. Copy all remaining
|
|
23
|
+
// optional properties (e.g. storageEndpointSuffix, keyVaultDnsSuffix) from the source.
|
|
24
|
+
Object.assign(this, parameters);
|
|
22
25
|
}
|
|
23
26
|
}
|
|
24
27
|
/**
|
package/package.json
CHANGED