@fluidframework/core-utils 2.0.0-internal.6.1.2 → 2.0.0-internal.6.2.1

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.0.0-internal.6.2.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.0.0-internal.6.1.0
4
8
 
5
9
  Dependency updates only.
package/README.md CHANGED
@@ -17,9 +17,10 @@ When taking a dependency on a Fluid Framework library, we recommend using a `^`
17
17
  While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
18
18
  library consumers should always prefer `^`.
19
19
 
20
- Note that when depending on a library version of the form 2.0.0-internal.x.y.z, called the Fluid internal version
21
- scheme, you must use a `>= <` dependency range. Standard `^` and `~` ranges will not work as expected. See the
22
- [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
20
+ Note that when depending on a library version of the form `2.0.0-internal.x.y.z`, called the Fluid internal version scheme,
21
+ you must use a `>= <` dependency range (such as `>=2.0.0-internal.x.y.z <2.0.0-internal.w.0.0` where `w` is `x+1`).
22
+ Standard `^` and `~` ranges will not work as expected.
23
+ See the [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
23
24
  package for more information including tools to convert between version schemes.
24
25
 
25
26
  <!-- prettier-ignore-end -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-utils",
3
- "version": "2.0.0-internal.6.1.2",
3
+ "version": "2.0.0-internal.6.2.1",
4
4
  "description": "Not intended for use outside the Fluid client repo.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -36,11 +36,11 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@fluid-tools/benchmark": "^0.47.0",
39
- "@fluid-tools/build-cli": "^0.22.0",
39
+ "@fluid-tools/build-cli": "^0.23.0",
40
40
  "@fluidframework/build-common": "^2.0.0",
41
- "@fluidframework/build-tools": "^0.22.0",
42
- "@fluidframework/eslint-config-fluid": "^2.0.0",
43
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.1.2 <2.0.0-internal.6.2.0",
41
+ "@fluidframework/build-tools": "^0.23.0",
42
+ "@fluidframework/eslint-config-fluid": "^2.1.0",
43
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.2.1 <2.0.0-internal.6.3.0",
44
44
  "@microsoft/api-extractor": "^7.34.4",
45
45
  "@types/mocha": "^9.1.1",
46
46
  "@types/node": "^16.18.38",
@@ -87,7 +87,7 @@
87
87
  "test:benchmark:report": "mocha --node-option unhandled-rejections=strict,expose-gc --exit --perfMode --fgrep @Benchmark --reporter @fluid-tools/benchmark/dist/MochaReporter.js --timeout 60000",
88
88
  "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
89
89
  "test:mocha": "mocha",
90
- "test:mocha:multireport": "cross-env FLUID_TEST_MULTIREPORT=1 npm run test:mocha",
90
+ "test:mocha:multireport": "npm run test:mocha",
91
91
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
92
92
  "tsc": "tsc",
93
93
  "typetests:gen": "fluid-type-test-generator",