@fluidframework/app-insights-logger 2.30.0 → 2.31.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 +21 -17
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +5 -8
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-internal/app-insights-logger
|
|
2
2
|
|
|
3
|
+
## 2.31.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.30.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -60,9 +64,9 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
64
68
|
|
|
65
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
66
70
|
|
|
67
71
|
## 2.0.0-rc.4.0.0
|
|
68
72
|
|
|
@@ -72,24 +76,24 @@ Dependency updates only.
|
|
|
72
76
|
|
|
73
77
|
### Major Changes
|
|
74
78
|
|
|
75
|
-
-
|
|
79
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
76
80
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
82
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
83
|
+
TypeScript types and implementation code.
|
|
80
84
|
|
|
81
|
-
|
|
85
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
82
86
|
|
|
83
|
-
|
|
84
|
-
|
|
87
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
88
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
85
89
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
91
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
92
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
93
|
+
regarding the module and moduleResolution options.
|
|
90
94
|
|
|
91
|
-
|
|
92
|
-
|
|
95
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
96
|
+
to distinguish stable APIs from those that are in development.**
|
|
93
97
|
|
|
94
98
|
## 2.0.0-rc.2.0.0
|
|
95
99
|
|
|
@@ -99,9 +103,9 @@ Dependency updates only.
|
|
|
99
103
|
|
|
100
104
|
### Major Changes
|
|
101
105
|
|
|
102
|
-
-
|
|
106
|
+
- @fluid-experimental/app-insights-logger package renamed ([#18817](https://github.com/microsoft/FluidFramework/issues/18817)) [d1f584108b](https://github.com/microsoft/FluidFramework/commits/d1f584108bb93e73c355456d414d444c3641b7ab)
|
|
103
107
|
|
|
104
|
-
|
|
108
|
+
The package is now `@fluidframework/app-insights-logger`.
|
|
105
109
|
|
|
106
110
|
## 2.0.0-internal.8.0.0
|
|
107
111
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/app-insights-logger",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Contains a Fluid logging client that sends telemetry events to Azure App Insights",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,19 +47,19 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-interfaces": "~2.
|
|
50
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
51
51
|
"@microsoft/applicationinsights-web": "^2.8.11",
|
|
52
52
|
"@ungap/structured-clone": "^1.2.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
56
56
|
"@biomejs/biome": "~1.9.3",
|
|
57
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
57
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
58
58
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
59
|
-
"@fluidframework/app-insights-logger-previous": "npm:@fluidframework/app-insights-logger@2.
|
|
59
|
+
"@fluidframework/app-insights-logger-previous": "npm:@fluidframework/app-insights-logger@2.30.0",
|
|
60
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
61
|
"@fluidframework/build-tools": "^0.54.0",
|
|
62
|
-
"@microsoft/api-extractor": "7.
|
|
62
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
63
63
|
"@types/mocha": "^10.0.10",
|
|
64
64
|
"@types/node": "^18.19.0",
|
|
65
65
|
"@types/sinon": "^17.0.3",
|
|
@@ -73,7 +73,6 @@
|
|
|
73
73
|
"eslint-plugin-react": "~7.33.2",
|
|
74
74
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
75
75
|
"mocha": "^10.8.2",
|
|
76
|
-
"prettier": "~3.0.3",
|
|
77
76
|
"rimraf": "^4.4.0",
|
|
78
77
|
"sinon": "^18.0.1",
|
|
79
78
|
"tslib": "^1.10.0",
|
|
@@ -123,7 +122,6 @@
|
|
|
123
122
|
"check:exports:esm:beta": "api-extractor run --config api-extractor/api-extractor-lint-beta.esm.json",
|
|
124
123
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
125
124
|
"check:format": "npm run check:biome",
|
|
126
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
|
127
125
|
"ci:build:docs": "api-extractor run",
|
|
128
126
|
"clean": "rimraf --glob _api-extractor-temp coverage dist lib {alpha,beta,internal,legacy}.d.ts nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
|
129
127
|
"eslint": "eslint src",
|
|
@@ -132,7 +130,6 @@
|
|
|
132
130
|
"format-and-build": "npm run format && npm run build",
|
|
133
131
|
"format-and-compile": "npm run format && npm run build:compile",
|
|
134
132
|
"format:biome": "biome check . --write",
|
|
135
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
|
136
133
|
"lint": "fluid-build . --task lint",
|
|
137
134
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
138
135
|
"test": "npm run test:mocha",
|