@fluidframework/azure-client 2.111.0 → 2.113.0-411909

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 ADDED
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ "use strict";
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
+ };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/azure-client
2
2
 
3
+ ## 2.112.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.111.0
4
8
 
5
9
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-client",
3
- "version": "2.111.0",
3
+ "version": "2.113.0-411909",
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,28 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/container-definitions": "~2.111.0",
51
- "@fluidframework/container-loader": "~2.111.0",
52
- "@fluidframework/core-interfaces": "~2.111.0",
53
- "@fluidframework/driver-definitions": "~2.111.0",
54
- "@fluidframework/driver-utils": "~2.111.0",
55
- "@fluidframework/fluid-static": "~2.111.0",
56
- "@fluidframework/routerlicious-driver": "~2.111.0",
57
- "@fluidframework/runtime-definitions": "~2.111.0",
58
- "@fluidframework/telemetry-utils": "~2.111.0"
50
+ "@fluidframework/container-definitions": "2.113.0-411909",
51
+ "@fluidframework/container-loader": "2.113.0-411909",
52
+ "@fluidframework/core-interfaces": "2.113.0-411909",
53
+ "@fluidframework/driver-definitions": "2.113.0-411909",
54
+ "@fluidframework/driver-utils": "2.113.0-411909",
55
+ "@fluidframework/fluid-static": "2.113.0-411909",
56
+ "@fluidframework/routerlicious-driver": "2.113.0-411909",
57
+ "@fluidframework/runtime-definitions": "2.113.0-411909",
58
+ "@fluidframework/telemetry-utils": "2.113.0-411909"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@arethetypeswrong/cli": "^0.18.2",
62
62
  "@biomejs/biome": "~2.4.5",
63
63
  "@fluid-tools/build-cli": "^0.65.0",
64
- "@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.110.0",
65
- "@fluidframework/azure-local-service": "~2.111.0",
64
+ "@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.111.0",
65
+ "@fluidframework/azure-local-service": "2.113.0-411909",
66
66
  "@fluidframework/build-common": "^2.0.3",
67
67
  "@fluidframework/build-tools": "^0.65.0",
68
- "@fluidframework/container-runtime": "~2.111.0",
68
+ "@fluidframework/container-runtime": "2.113.0-411909",
69
69
  "@fluidframework/eslint-config-fluid": "^13.0.0",
70
- "@fluidframework/test-runtime-utils": "~2.111.0",
71
- "@fluidframework/test-utils": "~2.111.0",
70
+ "@fluidframework/test-runtime-utils": "2.113.0-411909",
71
+ "@fluidframework/test-utils": "2.113.0-411909",
72
72
  "@microsoft/api-extractor": "7.58.1",
73
73
  "@types/mocha": "^10.0.10",
74
74
  "@types/node": "~22.19.17",
@@ -77,7 +77,7 @@
77
77
  "cross-env": "^10.1.0",
78
78
  "eslint": "~9.39.1",
79
79
  "eslint-config-prettier": "~10.1.8",
80
- "fluid-framework": "~2.111.0",
80
+ "fluid-framework": "2.113.0-411909",
81
81
  "jiti": "^2.6.1",
82
82
  "mocha": "^11.7.5",
83
83
  "rimraf": "^6.1.3",
@@ -125,11 +125,12 @@
125
125
  "lint": "fluid-build . --task lint",
126
126
  "lint:fix": "fluid-build . --task eslint:fix --task format",
127
127
  "pack:tests": "tar -cf ./azure-client.test-files.tar ./dist/test ./lib/test",
128
- "start:tinylicious:test": "npx @fluidframework/azure-local-service > tinylicious.log 2>&1",
128
+ "start:tinylicious:test": "cross-env PORT=7073 npx @fluidframework/azure-local-service > tinylicious.log 2>&1",
129
129
  "test": "npm run test:realsvc",
130
130
  "test:realsvc": "npm run test:realsvc:tinylicious",
131
131
  "test:realsvc:local:run": "mocha --recursive lib/test --timeout 10000",
132
- "test:realsvc:tinylicious": "start-server-and-test start:tinylicious:test 7070 test:realsvc:local:run",
132
+ "test:realsvc:tinylicious": "start-server-and-test start:tinylicious:test 7073 test:realsvc:local:run",
133
+ "test:realsvc:tinylicious:report": "npm run test:realsvc:tinylicious",
133
134
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
134
135
  "typetests:gen": "flub generate typetests --dir . -v"
135
136
  }