@fluidframework/core-utils 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/core-utils
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
@@ -85,6 +85,7 @@ When making such a request please include if the configuration already works (an
85
85
  ### Supported Runtimes
86
86
 
87
87
  - 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).
88
+ - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
88
89
  - 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).
89
90
 
90
91
  ### Supported Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-utils",
3
- "version": "2.21.0",
3
+ "version": "2.22.0",
4
4
  "description": "Not intended for use outside the Fluid client repo.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,12 +69,12 @@
69
69
  "devDependencies": {
70
70
  "@arethetypeswrong/cli": "^0.17.1",
71
71
  "@biomejs/biome": "~1.9.3",
72
- "@fluid-internal/mocha-test-setup": "~2.21.0",
72
+ "@fluid-internal/mocha-test-setup": "~2.22.0",
73
73
  "@fluid-tools/benchmark": "^0.50.0",
74
74
  "@fluid-tools/build-cli": "^0.51.0",
75
75
  "@fluidframework/build-common": "^2.0.3",
76
76
  "@fluidframework/build-tools": "^0.51.0",
77
- "@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.20.0",
77
+ "@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.21.0",
78
78
  "@fluidframework/eslint-config-fluid": "^5.7.3",
79
79
  "@microsoft/api-extractor": "7.47.8",
80
80
  "@types/mocha": "^10.0.10",
@@ -141,8 +141,8 @@
141
141
  "test:benchmark:report": "mocha --recursive \"lib/test/**/*.spec.*js\" --node-option unhandled-rejections=strict,expose-gc --exit --perfMode --fgrep @Benchmark --reporter @fluid-tools/benchmark/dist/MochaReporter.js --timeout 60000",
142
142
  "test:coverage": "c8 npm test",
143
143
  "test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
144
- "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
145
- "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
144
+ "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
145
+ "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
146
146
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
147
147
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
148
148
  "typetests:gen": "flub generate typetests --dir . -v",
package/tsconfig.json CHANGED
@@ -5,7 +5,6 @@
5
5
  "compilerOptions": {
6
6
  "rootDir": "./src",
7
7
  "outDir": "./lib",
8
- "exactOptionalPropertyTypes": false,
9
8
  "noUncheckedIndexedAccess": false,
10
9
  },
11
10
  }