@fluid-experimental/oldest-client-observer 2.20.0 → 2.22.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-experimental/oldest-client-observer
2
2
 
3
+ ## 2.22.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.21.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.20.0
4
12
 
5
13
  Dependency updates only.
package/README.md CHANGED
@@ -61,6 +61,7 @@ When making such a request please include if the configuration already works (an
61
61
  ### Supported Runtimes
62
62
 
63
63
  - NodeJs ^20.10.0 except that we will drop support for it [when NodeJs 20 loses its upstream support on 2026-04-30](https://github.com/nodejs/release#release-schedule), and will support a newer LTS version of NodeJS (22) at least 1 year before 20 is end-of-life. This same policy applies to NodeJS 22 when it is end of life (2027-04-30).
64
+ - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
64
65
  - Modern browsers supporting the es2022 standard library: in response to asks we can add explicit support for using babel to polyfill to target specific standards or runtimes (meaning we can avoid/remove use of things that don't polyfill robustly, but otherwise target modern standards).
65
66
 
66
67
  ### Supported Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/oldest-client-observer",
3
- "version": "2.20.0",
3
+ "version": "2.22.0",
4
4
  "description": "Data object to determine if the local client is the oldest amongst connected clients",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,20 +69,20 @@
69
69
  "temp-directory": "nyc/.nyc_output"
70
70
  },
71
71
  "dependencies": {
72
- "@fluid-internal/client-utils": "~2.20.0",
73
- "@fluidframework/container-definitions": "~2.20.0",
74
- "@fluidframework/core-interfaces": "~2.20.0",
75
- "@fluidframework/core-utils": "~2.20.0",
76
- "@fluidframework/driver-definitions": "~2.20.0"
72
+ "@fluid-internal/client-utils": "~2.22.0",
73
+ "@fluidframework/container-definitions": "~2.22.0",
74
+ "@fluidframework/core-interfaces": "~2.22.0",
75
+ "@fluidframework/core-utils": "~2.22.0",
76
+ "@fluidframework/driver-definitions": "~2.22.0"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@arethetypeswrong/cli": "^0.17.1",
80
80
  "@biomejs/biome": "~1.9.3",
81
- "@fluid-private/test-dds-utils": "~2.20.0",
81
+ "@fluid-private/test-dds-utils": "~2.22.0",
82
82
  "@fluid-tools/build-cli": "^0.51.0",
83
83
  "@fluidframework/build-common": "^2.0.3",
84
84
  "@fluidframework/build-tools": "^0.51.0",
85
- "@fluidframework/eslint-config-fluid": "^5.6.0",
85
+ "@fluidframework/eslint-config-fluid": "^5.7.3",
86
86
  "@microsoft/api-extractor": "7.47.8",
87
87
  "@types/node": "^18.19.0",
88
88
  "concurrently": "^8.2.1",
@@ -136,7 +136,7 @@
136
136
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
137
137
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
138
138
  "ci:build:docs": "api-extractor run",
139
- "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
139
+ "clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
140
140
  "eslint": "eslint --format stylish src",
141
141
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
142
142
  "format": "npm run format:biome",