@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 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
- - 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)
64
68
 
65
- Update package implementations to use TypeScript 5.4.5.
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
- - 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)
76
80
 
77
- Fluid Framework packages have been updated to use the [package.json "exports"
78
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
79
- 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.
80
84
 
81
- 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:
82
86
 
83
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
84
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
87
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
88
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
85
89
 
86
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
87
- for use with modern versions of Node.js _and_ Bundlers.
88
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
89
- 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.
90
94
 
91
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
92
- 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.**
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
- - @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)
103
107
 
104
- The package is now `@fluidframework/app-insights-logger`.
108
+ The package is now `@fluidframework/app-insights-logger`.
105
109
 
106
110
  ## 2.0.0-internal.8.0.0
107
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.30.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.30.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.30.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.23.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",
@@ -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",
@@ -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
- };