@fluidframework/app-insights-logger 2.20.0 → 2.22.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 +8 -0
- package/README.md +1 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -120,6 +120,7 @@ When making such a request please include if the configuration already works (an
|
|
|
120
120
|
### Supported Runtimes
|
|
121
121
|
|
|
122
122
|
- NodeJs ^20.10.0 except that we will drop support for it [when NodeJs 20 loses its upstream support on 2026-04-30](https://github.com/nodejs/release#release-schedule), and will support a newer LTS version of NodeJS (22) at least 1 year before 20 is end-of-life. This same policy applies to NodeJS 22 when it is end of life (2027-04-30).
|
|
123
|
+
- Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
|
|
123
124
|
- Modern browsers supporting the es2022 standard library: in response to asks we can add explicit support for using babel to polyfill to target specific standards or runtimes (meaning we can avoid/remove use of things that don't polyfill robustly, but otherwise target modern standards).
|
|
124
125
|
|
|
125
126
|
### Supported Tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/app-insights-logger",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.22.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,15 +47,16 @@
|
|
|
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.22.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.22.0",
|
|
58
58
|
"@fluid-tools/build-cli": "^0.51.0",
|
|
59
|
+
"@fluidframework/app-insights-logger-previous": "npm:@fluidframework/app-insights-logger@2.21.0",
|
|
59
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
60
61
|
"@fluidframework/build-tools": "^0.51.0",
|
|
61
62
|
"@microsoft/api-extractor": "7.47.8",
|
|
@@ -101,7 +102,6 @@
|
|
|
101
102
|
}
|
|
102
103
|
},
|
|
103
104
|
"typeValidation": {
|
|
104
|
-
"disabled": true,
|
|
105
105
|
"broken": {},
|
|
106
106
|
"entrypoint": "internal"
|
|
107
107
|
},
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"check:format": "npm run check:biome",
|
|
126
126
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
|
127
127
|
"ci:build:docs": "api-extractor run",
|
|
128
|
-
"clean": "rimraf --glob _api-extractor-temp coverage dist lib
|
|
128
|
+
"clean": "rimraf --glob _api-extractor-temp coverage dist lib {alpha,beta,internal,legacy}.d.ts nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
|
129
129
|
"eslint": "eslint src",
|
|
130
130
|
"eslint:fix": "eslint src --fix",
|
|
131
131
|
"format": "npm run format:biome",
|
|
@@ -137,8 +137,8 @@
|
|
|
137
137
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
138
138
|
"test": "npm run test:mocha",
|
|
139
139
|
"test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
|
|
140
|
-
"test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"
|
|
141
|
-
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"
|
|
140
|
+
"test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
|
|
141
|
+
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
|
|
142
142
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
143
143
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
144
144
|
"typetests:gen": "flub generate typetests --dir . -v",
|