@fluidframework/app-insights-logger 2.23.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluid-internal/app-insights-logger
2
2
 
3
+ ## 2.31.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.30.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.23.0
4
12
 
5
13
  Dependency updates only.
@@ -56,9 +64,9 @@ Dependency updates only.
56
64
 
57
65
  ### Minor Changes
58
66
 
59
- - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
67
+ - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
60
68
 
61
- Update package implementations to use TypeScript 5.4.5.
69
+ Update package implementations to use TypeScript 5.4.5.
62
70
 
63
71
  ## 2.0.0-rc.4.0.0
64
72
 
@@ -68,24 +76,24 @@ Dependency updates only.
68
76
 
69
77
  ### Major Changes
70
78
 
71
- - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
79
+ - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
72
80
 
73
- Fluid Framework packages have been updated to use the [package.json "exports"
74
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
75
- TypeScript types and implementation code.
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.
76
84
 
77
- This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
85
+ This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
78
86
 
79
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
80
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
87
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
88
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
81
89
 
82
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
83
- for use with modern versions of Node.js _and_ Bundlers.
84
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
85
- regarding the module and moduleResolution options.
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.
86
94
 
87
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
88
- to distinguish stable APIs from those that are in development.**
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.**
89
97
 
90
98
  ## 2.0.0-rc.2.0.0
91
99
 
@@ -95,9 +103,9 @@ Dependency updates only.
95
103
 
96
104
  ### Major Changes
97
105
 
98
- - @fluid-experimental/app-insights-logger package renamed ([#18817](https://github.com/microsoft/FluidFramework/issues/18817)) [d1f584108b](https://github.com/microsoft/FluidFramework/commits/d1f584108bb93e73c355456d414d444c3641b7ab)
106
+ - @fluid-experimental/app-insights-logger package renamed ([#18817](https://github.com/microsoft/FluidFramework/issues/18817)) [d1f584108b](https://github.com/microsoft/FluidFramework/commits/d1f584108bb93e73c355456d414d444c3641b7ab)
99
107
 
100
- The package is now `@fluidframework/app-insights-logger`.
108
+ The package is now `@fluidframework/app-insights-logger`.
101
109
 
102
110
  ## 2.0.0-internal.8.0.0
103
111
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.47.8"
8
+ "packageVersion": "7.50.1"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/app-insights-logger",
3
- "version": "2.23.0",
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.23.0",
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.23.0",
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.22.0",
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.47.8",
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",
@@ -72,8 +72,7 @@
72
72
  "eslint-plugin-jest": "~27.4.2",
73
73
  "eslint-plugin-react": "~7.33.2",
74
74
  "eslint-plugin-react-hooks": "~4.6.0",
75
- "mocha": "^10.2.0",
76
- "prettier": "~3.0.3",
75
+ "mocha": "^10.8.2",
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",
@@ -1,8 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
-
6
- module.exports = {
7
- ...require("@fluidframework/build-common/prettier.config.cjs"),
8
- };