@xh/hoist 79.0.0-SNAPSHOT.1764968347393 → 79.0.0-SNAPSHOT.1764976082522
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 +22 -14
- package/package.json +1 -1
- package/security/msal/MsalClient.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,26 +6,35 @@
|
|
|
6
6
|
|
|
7
7
|
* Defaulted Highcharts font to Hoist default (--xh-font-family)
|
|
8
8
|
|
|
9
|
+
## 78.1.4 - 2025-12-05
|
|
10
|
+
|
|
11
|
+
### 🐞 Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Fix logging during MsalClient creation.
|
|
14
|
+
|
|
9
15
|
## 78.1.3 - 2025-12-04
|
|
10
16
|
|
|
11
17
|
### 🐞 Bug Fixes
|
|
12
18
|
|
|
13
|
-
*
|
|
14
|
-
`time.useUTC`
|
|
19
|
+
* Fix to Highchart timezone handling regression from version 77. Applications should note that
|
|
20
|
+
Highcharts has deprecated the `time.useUTC` option and its functioning seem suspect. Apps
|
|
21
|
+
should set `time.timezone` instead. See https://api.highcharts.com/highcharts/time.useUTC.
|
|
15
22
|
|
|
16
23
|
### ⚙️ Technical
|
|
17
24
|
|
|
18
|
-
*
|
|
25
|
+
* Allow cross-tab persistence of client log levels
|
|
19
26
|
|
|
20
27
|
## 78.1.0 - 2025-12-02
|
|
21
28
|
|
|
22
29
|
### ⚙️ Technical
|
|
30
|
+
* New property `MsalClientConfig.enableSsoSilent` to govern use of MSAL SSO api.
|
|
31
|
+
|
|
32
|
+
* Existing property `MsalClientConfig.enableTelemetry` now defaults to `true`.
|
|
23
33
|
|
|
24
|
-
* Improved
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
* Defaulted `MsalClientConfig.enableTelemetry` to `true`.
|
|
34
|
+
* Improved use of MSAL client API, to maximize effectiveness of SSO. Improved documentation
|
|
35
|
+
and logging. Iframe attempts will now time out by default after 3 seconds vs. 10 seconds.
|
|
36
|
+
This can be further modified by apps via the option
|
|
37
|
+
`MsalClientConfig.msalClientOptions.system.iFrameHashTimeout`
|
|
29
38
|
|
|
30
39
|
### 📚 Libraries
|
|
31
40
|
|
|
@@ -36,10 +45,10 @@
|
|
|
36
45
|
|
|
37
46
|
### 💥 Breaking Changes
|
|
38
47
|
|
|
39
|
-
*
|
|
40
|
-
|
|
41
|
-
`GridModel.applyColumnStateChanges` instead.
|
|
42
|
-
*
|
|
48
|
+
* `GridModel.setColumnState` no longer patches existing column state, but instead replaces it
|
|
49
|
+
wholesale. Applications that were relying on the prior patching behavior will need to
|
|
50
|
+
call `GridModel.applyColumnStateChanges` instead.
|
|
51
|
+
* `GridModel.cleanColumnState` is now private (not expected to impact applications).
|
|
43
52
|
|
|
44
53
|
### 🎁 New Features
|
|
45
54
|
|
|
@@ -67,8 +76,7 @@
|
|
|
67
76
|
|
|
68
77
|
### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW)
|
|
69
78
|
|
|
70
|
-
* Apps that use and provide the `highcharts` library should be sure to update the version to
|
|
71
|
-
v12.4.0.
|
|
79
|
+
* Apps that use and provide the `highcharts` library should be sure to update the version to v12.4.0.
|
|
72
80
|
Refer to `Bootstrap.js` in Toolbox for required import changes.
|
|
73
81
|
* Visit https://www.highcharts.com/blog/changelog/ for specific changes.
|
|
74
82
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "79.0.0-SNAPSHOT.
|
|
3
|
+
"version": "79.0.0-SNAPSHOT.1764976082522",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|
|
@@ -393,7 +393,7 @@ export class MsalClient extends BaseOAuthClient<MsalClientConfig, MsalTokenSpec>
|
|
|
393
393
|
},
|
|
394
394
|
system: {
|
|
395
395
|
loggerOptions: {
|
|
396
|
-
loggerCallback: this.logFromMsal,
|
|
396
|
+
loggerCallback: (level, message) => this.logFromMsal(level, message),
|
|
397
397
|
logLevel: msalLogLevel
|
|
398
398
|
},
|
|
399
399
|
iframeHashTimeout: 3000 // Prevent long pauses for sso failures.
|
|
@@ -412,7 +412,7 @@ export class MsalClient extends BaseOAuthClient<MsalClientConfig, MsalTokenSpec>
|
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
private logFromMsal(level: LogLevel, message: string) {
|
|
415
|
-
const source = this.client
|
|
415
|
+
const source = this.client?.constructor.name;
|
|
416
416
|
switch (level) {
|
|
417
417
|
case msal.LogLevel.Info:
|
|
418
418
|
return logInfo(message, source);
|