@fluidframework/fluid-telemetry 2.21.0 → 2.22.1

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/.mocharc.cjs CHANGED
@@ -9,4 +9,7 @@ const getFluidTestMochaConfig = require("@fluid-internal/mocha-test-setup/mochar
9
9
 
10
10
  const packageDir = __dirname;
11
11
  const config = getFluidTestMochaConfig(packageDir);
12
+ // TODO: figure out why this package needs the --exit flag, tests might not be cleaning up correctly after themselves
13
+ // AB#7856
14
+ config.exit = true;
12
15
  module.exports = config;
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/fluid-telemetry
2
2
 
3
+ ## 2.22.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.21.0
4
8
 
5
9
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/fluid-telemetry",
3
- "version": "2.21.0",
3
+ "version": "2.22.1",
4
4
  "description": "Customer facing Fluid telemetry types and classes for both producing and consuming said telemetry",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,22 +47,22 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/index.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/container-definitions": "~2.21.0",
51
- "@fluidframework/container-loader": "~2.21.0",
52
- "@fluidframework/fluid-static": "~2.21.0",
50
+ "@fluidframework/container-definitions": "~2.22.1",
51
+ "@fluidframework/container-loader": "~2.22.1",
52
+ "@fluidframework/fluid-static": "~2.22.1",
53
53
  "@microsoft/applicationinsights-web": "^2.8.11",
54
54
  "uuid": "^9.0.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.17.1",
58
58
  "@biomejs/biome": "~1.9.3",
59
- "@fluid-internal/client-utils": "~2.21.0",
60
- "@fluid-internal/mocha-test-setup": "~2.21.0",
59
+ "@fluid-internal/client-utils": "~2.22.1",
60
+ "@fluid-internal/mocha-test-setup": "~2.22.1",
61
61
  "@fluid-tools/build-cli": "^0.51.0",
62
62
  "@fluidframework/build-tools": "^0.51.0",
63
- "@fluidframework/test-utils": "~2.21.0",
64
- "@fluidframework/tinylicious-client": "~2.21.0",
65
- "@fluidframework/tree": "~2.21.0",
63
+ "@fluidframework/test-utils": "~2.22.1",
64
+ "@fluidframework/tinylicious-client": "~2.22.1",
65
+ "@fluidframework/tree": "~2.22.1",
66
66
  "@microsoft/api-extractor": "7.47.8",
67
67
  "@types/chai": "^4.0.0",
68
68
  "@types/mocha": "^10.0.10",
@@ -132,13 +132,13 @@
132
132
  "test": "start-server-and-test start:tinylicious:test 7070 test:mocha:all",
133
133
  "test:mocha": "npm run test:mocha:esm:unit && echo skipping cjs to avoid overhead - npm run test:mocha:cjs:unit",
134
134
  "test:mocha:all": "npm run test:mocha:esm:all && echo skipping cjs to avoid overhead - npm run test:mocha:cjs:all",
135
- "test:mocha:cjs:all": "mocha --recursive \"dist/test/**/*.spec*.js\" --exit",
136
- "test:mocha:cjs:end-to-end": "mocha --recursive \"dist/test/**/*.spec.realsvc.js\" --exit",
137
- "test:mocha:cjs:unit": "mocha --recursive \"dist/test/**/*.spec.js\" --exit",
135
+ "test:mocha:cjs:all": "mocha --recursive \"dist/test/**/*.spec*.js\"",
136
+ "test:mocha:cjs:end-to-end": "mocha --recursive \"dist/test/**/*.spec.realsvc.js\"",
137
+ "test:mocha:cjs:unit": "mocha --recursive \"dist/test/**/*.spec.js\"",
138
138
  "test:mocha:end-to-end": "npm run test:mocha:esm:end-to-end && echo skipping cjs to avoid overhead - npm run test:mocha:cjs:end-to-end",
139
- "test:mocha:esm:all": "mocha --recursive \"lib/test/**/*.spec*.js\" --exit",
140
- "test:mocha:esm:end-to-end": "mocha --recursive \"lib/test/**/*.spec.realsvc.js\" --exit",
141
- "test:mocha:esm:unit": "mocha --recursive \"lib/test/**/*.spec.js\" --exit",
139
+ "test:mocha:esm:all": "mocha --recursive \"lib/test/**/*.spec*.js\"",
140
+ "test:mocha:esm:end-to-end": "mocha --recursive \"lib/test/**/*.spec.realsvc.js\"",
141
+ "test:mocha:esm:unit": "mocha --recursive \"lib/test/**/*.spec.js\"",
142
142
  "test:realsvc": "npm run test:realsvc:tinylicious",
143
143
  "test:realsvc:tinylicious": "start-server-and-test start:tinylicious:test 7070 test:realsvc:tinylicious:run",
144
144
  "test:realsvc:tinylicious:run": "npm run test:mocha:end-to-end",