@fluidframework/azure-client 2.113.1 → 2.115.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/.mocharc.cjs CHANGED
@@ -5,8 +5,10 @@
5
5
 
6
6
  "use strict";
7
7
 
8
- module.exports = {
9
- // TODO: figure out why this package needs the --exit flag, tests might not be cleaning up correctly after themselves
10
- // AB#7856
11
- exit: true,
12
- };
8
+ const getFluidTestMochaConfig = require("@fluid-internal/mocha-test-setup/mocharc-common");
9
+
10
+ const config = getFluidTestMochaConfig(__dirname);
11
+ // TODO: figure out why this package needs the --exit flag, tests might not be cleaning up correctly after themselves
12
+ // AB#7856
13
+ config.exit = true;
14
+ module.exports = config;
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluidframework/azure-client
2
2
 
3
+ ## 2.115.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.114.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.113.0
4
12
 
5
13
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-client",
3
- "version": "2.113.1",
3
+ "version": "2.115.0",
4
4
  "description": "A tool to enable creation and loading of Fluid containers using the Azure Fluid Relay service",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,28 +47,29 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/container-definitions": "~2.113.1",
51
- "@fluidframework/container-loader": "~2.113.1",
52
- "@fluidframework/core-interfaces": "~2.113.1",
53
- "@fluidframework/driver-definitions": "~2.113.1",
54
- "@fluidframework/driver-utils": "~2.113.1",
55
- "@fluidframework/fluid-static": "~2.113.1",
56
- "@fluidframework/routerlicious-driver": "~2.113.1",
57
- "@fluidframework/runtime-definitions": "~2.113.1",
58
- "@fluidframework/telemetry-utils": "~2.113.1"
50
+ "@fluidframework/container-definitions": "~2.115.0",
51
+ "@fluidframework/container-loader": "~2.115.0",
52
+ "@fluidframework/core-interfaces": "~2.115.0",
53
+ "@fluidframework/driver-definitions": "~2.115.0",
54
+ "@fluidframework/driver-utils": "~2.115.0",
55
+ "@fluidframework/fluid-static": "~2.115.0",
56
+ "@fluidframework/routerlicious-driver": "~2.115.0",
57
+ "@fluidframework/runtime-definitions": "~2.115.0",
58
+ "@fluidframework/telemetry-utils": "~2.115.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@arethetypeswrong/cli": "^0.18.2",
62
62
  "@biomejs/biome": "~2.4.5",
63
+ "@fluid-internal/mocha-test-setup": "~2.115.0",
63
64
  "@fluid-tools/build-cli": "^0.65.0",
64
- "@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.111.0",
65
- "@fluidframework/azure-local-service": "~2.113.1",
65
+ "@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.112.0",
66
+ "@fluidframework/azure-local-service": "~2.115.0",
66
67
  "@fluidframework/build-common": "^2.0.3",
67
68
  "@fluidframework/build-tools": "^0.65.0",
68
- "@fluidframework/container-runtime": "~2.113.1",
69
+ "@fluidframework/container-runtime": "~2.115.0",
69
70
  "@fluidframework/eslint-config-fluid": "^13.0.0",
70
- "@fluidframework/test-runtime-utils": "~2.113.1",
71
- "@fluidframework/test-utils": "~2.113.1",
71
+ "@fluidframework/test-runtime-utils": "~2.115.0",
72
+ "@fluidframework/test-utils": "~2.115.0",
72
73
  "@microsoft/api-extractor": "7.58.1",
73
74
  "@types/mocha": "^10.0.10",
74
75
  "@types/node": "~22.19.17",
@@ -77,7 +78,7 @@
77
78
  "cross-env": "^10.1.0",
78
79
  "eslint": "~9.39.1",
79
80
  "eslint-config-prettier": "~10.1.8",
80
- "fluid-framework": "~2.113.1",
81
+ "fluid-framework": "~2.115.0",
81
82
  "jiti": "^2.6.1",
82
83
  "mocha": "^11.7.5",
83
84
  "rimraf": "^6.1.3",
@@ -90,9 +91,6 @@
90
91
  "entrypoint": "legacy"
91
92
  },
92
93
  "scripts": {
93
- "api": "fluid-build . --task api",
94
- "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
95
- "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
96
94
  "build": "fluid-build . --task build",
97
95
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
98
96
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
@@ -100,8 +98,11 @@
100
98
  "build:commonjs": "fluid-build . --task commonjs",
101
99
  "build:compile": "fluid-build . --task compile",
102
100
  "build:docs": "api-extractor run --local",
101
+ "build:entrypoints": "fluid-build . --task build:entrypoints",
102
+ "build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
103
+ "build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
103
104
  "build:esnext": "tsc --project ./tsconfig.json",
104
- "build:test": "npm run build:test:esm && npm run build:test:cjs",
105
+ "build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
105
106
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
106
107
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
107
108
  "check:are-the-types-wrong": "attw --pack .",