@fluidframework/azure-client 2.103.0 → 2.111.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @fluidframework/azure-client
|
|
2
2
|
|
|
3
|
+
## 2.111.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.110.0
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- ITelemetryBaseLogger.minLogLevel may be undefined ([#27546](https://github.com/microsoft/FluidFramework/pull/27546)) [6afb933be51](https://github.com/microsoft/FluidFramework/commit/6afb933be5119722134d3e9c4ca61dfaf8024d8a)
|
|
12
|
+
|
|
13
|
+
Typing for `ITelemetryBaseLogger.minLogLevel` is updated to reflect that in some implementations `minLogLevel` is present but evaluates to `undefined`.
|
|
14
|
+
When building with `excactOptionalPropertyTypes:false` as suggested in [compatibility requirements](https://github.com/microsoft/FluidFramework/blob/68732d93a6cc8be2df966b9bb40f58bdd9fad69b/packages/common/core-interfaces/README.md#supported-tools), there is no apparent type change.
|
|
15
|
+
If a type error is experienced, make sure to check for `undefined` or use `?? LogLevel.info` when reading.
|
|
16
|
+
|
|
3
17
|
## 2.103.0
|
|
4
18
|
|
|
5
19
|
Dependency updates only.
|
|
@@ -103,7 +103,7 @@ export interface ITelemetryBaseEvent extends ITelemetryBaseProperties {
|
|
|
103
103
|
|
|
104
104
|
// @public
|
|
105
105
|
export interface ITelemetryBaseLogger {
|
|
106
|
-
minLogLevel?: LogLevel;
|
|
106
|
+
minLogLevel?: LogLevel | undefined;
|
|
107
107
|
send(event: ITelemetryBaseEvent, logLevel?: LogLevel): void;
|
|
108
108
|
}
|
|
109
109
|
|
|
@@ -103,7 +103,7 @@ export interface ITelemetryBaseEvent extends ITelemetryBaseProperties {
|
|
|
103
103
|
|
|
104
104
|
// @public
|
|
105
105
|
export interface ITelemetryBaseLogger {
|
|
106
|
-
minLogLevel?: LogLevel;
|
|
106
|
+
minLogLevel?: LogLevel | undefined;
|
|
107
107
|
send(event: ITelemetryBaseEvent, logLevel?: LogLevel): void;
|
|
108
108
|
}
|
|
109
109
|
|
|
@@ -103,7 +103,7 @@ export interface ITelemetryBaseEvent extends ITelemetryBaseProperties {
|
|
|
103
103
|
|
|
104
104
|
// @public
|
|
105
105
|
export interface ITelemetryBaseLogger {
|
|
106
|
-
minLogLevel?: LogLevel;
|
|
106
|
+
minLogLevel?: LogLevel | undefined;
|
|
107
107
|
send(event: ITelemetryBaseEvent, logLevel?: LogLevel): void;
|
|
108
108
|
}
|
|
109
109
|
|
|
@@ -103,7 +103,7 @@ export interface ITelemetryBaseEvent extends ITelemetryBaseProperties {
|
|
|
103
103
|
|
|
104
104
|
// @public
|
|
105
105
|
export interface ITelemetryBaseLogger {
|
|
106
|
-
minLogLevel?: LogLevel;
|
|
106
|
+
minLogLevel?: LogLevel | undefined;
|
|
107
107
|
send(event: ITelemetryBaseEvent, logLevel?: LogLevel): void;
|
|
108
108
|
}
|
|
109
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.111.0",
|
|
4
4
|
"description": "A tool to enable creation and loading of Fluid containers using the Azure Fluid Relay service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,37 +47,37 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/container-definitions": "~2.
|
|
51
|
-
"@fluidframework/container-loader": "~2.
|
|
52
|
-
"@fluidframework/core-interfaces": "~2.
|
|
53
|
-
"@fluidframework/driver-definitions": "~2.
|
|
54
|
-
"@fluidframework/driver-utils": "~2.
|
|
55
|
-
"@fluidframework/fluid-static": "~2.
|
|
56
|
-
"@fluidframework/routerlicious-driver": "~2.
|
|
57
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
58
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
50
|
+
"@fluidframework/container-definitions": "~2.111.0",
|
|
51
|
+
"@fluidframework/container-loader": "~2.111.0",
|
|
52
|
+
"@fluidframework/core-interfaces": "~2.111.0",
|
|
53
|
+
"@fluidframework/driver-definitions": "~2.111.0",
|
|
54
|
+
"@fluidframework/driver-utils": "~2.111.0",
|
|
55
|
+
"@fluidframework/fluid-static": "~2.111.0",
|
|
56
|
+
"@fluidframework/routerlicious-driver": "~2.111.0",
|
|
57
|
+
"@fluidframework/runtime-definitions": "~2.111.0",
|
|
58
|
+
"@fluidframework/telemetry-utils": "~2.111.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
62
62
|
"@biomejs/biome": "~2.4.5",
|
|
63
63
|
"@fluid-tools/build-cli": "^0.65.0",
|
|
64
|
-
"@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.
|
|
65
|
-
"@fluidframework/azure-local-service": "~2.
|
|
64
|
+
"@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.110.0",
|
|
65
|
+
"@fluidframework/azure-local-service": "~2.111.0",
|
|
66
66
|
"@fluidframework/build-common": "^2.0.3",
|
|
67
67
|
"@fluidframework/build-tools": "^0.65.0",
|
|
68
|
-
"@fluidframework/container-runtime": "~2.
|
|
69
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
70
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
71
|
-
"@fluidframework/test-utils": "~2.
|
|
68
|
+
"@fluidframework/container-runtime": "~2.111.0",
|
|
69
|
+
"@fluidframework/eslint-config-fluid": "^13.0.0",
|
|
70
|
+
"@fluidframework/test-runtime-utils": "~2.111.0",
|
|
71
|
+
"@fluidframework/test-utils": "~2.111.0",
|
|
72
72
|
"@microsoft/api-extractor": "7.58.1",
|
|
73
73
|
"@types/mocha": "^10.0.10",
|
|
74
74
|
"@types/node": "~22.19.17",
|
|
75
|
-
"concurrently": "^
|
|
75
|
+
"concurrently": "^10.0.3",
|
|
76
76
|
"copyfiles": "^2.4.1",
|
|
77
77
|
"cross-env": "^10.1.0",
|
|
78
78
|
"eslint": "~9.39.1",
|
|
79
79
|
"eslint-config-prettier": "~10.1.8",
|
|
80
|
-
"fluid-framework": "~2.
|
|
80
|
+
"fluid-framework": "~2.111.0",
|
|
81
81
|
"jiti": "^2.6.1",
|
|
82
82
|
"mocha": "^11.7.5",
|
|
83
83
|
"rimraf": "^6.1.3",
|