@equinor/fusion-framework-module-msal 5.0.0 → 5.0.1
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 +16 -0
- package/dist/esm/static.js +1 -1
- package/dist/esm/v2/client/log/console.js +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/static.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/v2/client/log/console.ts +1 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3442](https://github.com/equinor/fusion-framework/pull/3442) [`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update biome to latest version
|
|
8
|
+
|
|
9
|
+
- [#3428](https://github.com/equinor/fusion-framework/pull/3428) [`1700ca8`](https://github.com/equinor/fusion-framework/commit/1700ca8851fa108e55e9729fd24f595272766e63) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update zod from 4.1.9 to 4.1.11
|
|
10
|
+
|
|
11
|
+
- **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
|
|
12
|
+
- **v4.1.11**: Maintenance release with general improvements
|
|
13
|
+
|
|
14
|
+
This patch update enhances schema validation performance without changing any APIs.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6)]:
|
|
17
|
+
- @equinor/fusion-framework-module@5.0.2
|
|
18
|
+
|
|
3
19
|
## 5.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/dist/esm/static.js
CHANGED
|
@@ -3,6 +3,6 @@ export const ModuleName = 'msal';
|
|
|
3
3
|
export var MsalModuleVersion;
|
|
4
4
|
(function (MsalModuleVersion) {
|
|
5
5
|
MsalModuleVersion["V2"] = "v2";
|
|
6
|
-
MsalModuleVersion["Latest"] = "5.0.
|
|
6
|
+
MsalModuleVersion["Latest"] = "5.0.1";
|
|
7
7
|
})(MsalModuleVersion || (MsalModuleVersion = {}));
|
|
8
8
|
//# sourceMappingURL=static.js.map
|
|
@@ -19,7 +19,7 @@ export class ConsoleLogger extends Logger {
|
|
|
19
19
|
}
|
|
20
20
|
/** @inheritdoc */
|
|
21
21
|
loggerCallback(lvl, msg, _containsPii) {
|
|
22
|
-
console[this.getLogType(lvl)](
|
|
22
|
+
console[this.getLogType(lvl)]('%c FUSION::MSAL %c %s', 'border: 1px solid;', 'border: none;', msg);
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Map log level to console log function type
|
package/dist/esm/version.js
CHANGED