@fluidframework/synthesize 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -0
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluidframework/synthesize
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
@@ -282,6 +282,7 @@ When making such a request please include if the configuration already works (an
282
282
  ### Supported Runtimes
283
283
 
284
284
  - 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).
285
+ - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
285
286
  - 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).
286
287
 
287
288
  ### Supported Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/synthesize",
3
- "version": "2.20.0",
3
+ "version": "2.22.0",
4
4
  "description": "A library for synthesizing scope objects.",
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
- "@fluidframework/core-utils": "~2.20.0"
72
+ "@fluidframework/core-utils": "~2.22.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@arethetypeswrong/cli": "^0.17.1",
76
76
  "@biomejs/biome": "~1.9.3",
77
- "@fluid-internal/mocha-test-setup": "~2.20.0",
77
+ "@fluid-internal/mocha-test-setup": "~2.22.0",
78
78
  "@fluid-tools/build-cli": "^0.51.0",
79
79
  "@fluidframework/build-common": "^2.0.3",
80
80
  "@fluidframework/build-tools": "^0.51.0",
81
- "@fluidframework/core-interfaces": "~2.20.0",
82
- "@fluidframework/datastore": "~2.20.0",
83
- "@fluidframework/eslint-config-fluid": "^5.6.0",
84
- "@fluidframework/runtime-utils": "~2.20.0",
85
- "@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.13.0",
81
+ "@fluidframework/core-interfaces": "~2.22.0",
82
+ "@fluidframework/datastore": "~2.22.0",
83
+ "@fluidframework/eslint-config-fluid": "^5.7.3",
84
+ "@fluidframework/runtime-utils": "~2.22.0",
85
+ "@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.21.0",
86
86
  "@microsoft/api-extractor": "7.47.8",
87
87
  "@types/mocha": "^10.0.10",
88
88
  "@types/node": "^18.19.0",
@@ -131,7 +131,7 @@
131
131
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
132
132
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
133
133
  "ci:build:docs": "api-extractor run",
134
- "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
134
+ "clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
135
135
  "eslint": "eslint --format stylish src",
136
136
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
137
137
  "format": "npm run format:biome",
@@ -142,8 +142,8 @@
142
142
  "test": "npm run test:mocha",
143
143
  "test:coverage": "c8 npm test",
144
144
  "test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
145
- "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
146
- "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
145
+ "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
146
+ "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
147
147
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
148
148
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
149
149
  "typetests:gen": "flub generate typetests --dir . -v",