@fluidframework/tinylicious-driver 2.21.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,9 @@
1
1
  # @fluidframework/tinylicious-driver
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/README.md CHANGED
@@ -53,6 +53,7 @@ When making such a request please include if the configuration already works (an
53
53
  ### Supported Runtimes
54
54
 
55
55
  - 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).
56
+ - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
56
57
  - 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).
57
58
 
58
59
  ### Supported Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/tinylicious-driver",
3
- "version": "2.21.0",
3
+ "version": "2.22.0",
4
4
  "description": "Driver for tinylicious",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -46,22 +46,22 @@
46
46
  "main": "lib/index.js",
47
47
  "types": "lib/public.d.ts",
48
48
  "dependencies": {
49
- "@fluidframework/core-interfaces": "~2.21.0",
50
- "@fluidframework/driver-definitions": "~2.21.0",
51
- "@fluidframework/driver-utils": "~2.21.0",
52
- "@fluidframework/routerlicious-driver": "~2.21.0",
49
+ "@fluidframework/core-interfaces": "~2.22.0",
50
+ "@fluidframework/driver-definitions": "~2.22.0",
51
+ "@fluidframework/driver-utils": "~2.22.0",
52
+ "@fluidframework/routerlicious-driver": "~2.22.0",
53
53
  "jsrsasign": "^11.0.0",
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/mocha-test-setup": "~2.21.0",
59
+ "@fluid-internal/mocha-test-setup": "~2.22.0",
60
60
  "@fluid-tools/build-cli": "^0.51.0",
61
61
  "@fluidframework/build-common": "^2.0.3",
62
62
  "@fluidframework/build-tools": "^0.51.0",
63
63
  "@fluidframework/eslint-config-fluid": "^5.7.3",
64
- "@fluidframework/tinylicious-driver-previous": "npm:@fluidframework/tinylicious-driver@2.20.0",
64
+ "@fluidframework/tinylicious-driver-previous": "npm:@fluidframework/tinylicious-driver@2.21.0",
65
65
  "@microsoft/api-extractor": "7.47.8",
66
66
  "@types/jsrsasign": "^10.5.12",
67
67
  "@types/mocha": "^10.0.10",
@@ -113,8 +113,8 @@
113
113
  "lint:fix": "fluid-build . --task eslint:fix --task format",
114
114
  "test": "npm run test:mocha",
115
115
  "test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
116
- "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
117
- "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
116
+ "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
117
+ "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
118
118
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
119
119
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
120
120
  "typetests:gen": "flub generate typetests --dir . -v",