@fluidframework/runtime-definitions 2.0.0-dev.4.1.0.148229 → 2.0.0-dev.4.2.0.153917

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 +14 -0
  2. package/README.md +37 -1
  3. package/package.json +6 -6
package/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # @fluidframework/runtime-definitions
2
+
3
+ ## 2.0.0-internal.4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - GC interfaces removed from runtime-definitions ([#14750](https://github.com/microsoft/FluidFramework/pull-requests/14750)) [60274eacab](https://github.com/microsoft/FluidFramework/commits/60274eacabf14d42f52f6ad1c2f64356e64ba1a2)
8
+
9
+ The following interfaces available in `@fluidframework/runtime-definitions` are internal implementation details and have been deprecated for public use. They will be removed in an upcoming release.
10
+
11
+ - `IGarbageCollectionNodeData`
12
+ - `IGarbageCollectionState`
13
+ - `IGarbageCollectionSnapshotData`
14
+ - `IGarbageCollectionSummaryDetailsLegacy`
package/README.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  Contains handshake interfaces for communication between the container runtime layer and the data store runtime layer.
4
4
 
5
+ <!-- AUTO-GENERATED-CONTENT:START (README_DEPENDENCY_GUIDELINES_SECTION:includeHeading=TRUE) -->
6
+
7
+ <!-- prettier-ignore-start -->
8
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
9
+
10
+ ## Using Fluid Framework libraries
11
+
12
+ When taking a dependency on a Fluid Framework library, we recommend using a `^` (caret) version range, such as `^1.3.4`.
13
+ While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
14
+ library consumers should always prefer `^`.
15
+
16
+ Note that when depending on a library version of the form 2.0.0-internal.x.y.z, called the Fluid internal version
17
+ scheme, you must use a `>= <` dependency range. Standard `^` and `~` ranges will not work as expected. See the
18
+ [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
19
+ package for more information including tools to convert between version schemes.
20
+
21
+ <!-- prettier-ignore-end -->
22
+
23
+ <!-- AUTO-GENERATED-CONTENT:END -->
24
+
5
25
  - `IFluidDataStoreRuntimeChannel` includes the minimal set of data and functionalities that are needed by the ContainerRuntime to bind and control a FluidDataStoreRuntime, including attach, snapshot, op/signal processing, request routes, and connection state notifications.
6
26
  - `IFluidDataStoreContext` includes data and function provided by the container layer and used by the data store layer for information about the container, to send ops and signals, data store creation, etc.
7
27
  - Agent/Task related interfaces, since the agent scheduler is included by default by the container layer, and data stores can make use of it
@@ -11,4 +31,20 @@ Contains handshake interfaces for communication between the container runtime la
11
31
 
12
32
  These interfaces needs to have strong back-compat guaranetee to support dynamic data store loading scenario where the FluidDataStoreRuntime might be built with different version.
13
33
 
14
- See [GitHub](https://github.com/microsoft/FluidFramework) for more details on the Fluid Framework and packages within.
34
+ <!-- AUTO-GENERATED-CONTENT:START (README_TRADEMARK_SECTION:includeHeading=TRUE) -->
35
+
36
+ <!-- prettier-ignore-start -->
37
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
38
+
39
+ ## Trademark
40
+
41
+ This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
42
+
43
+ Use of these trademarks or logos must follow Microsoft's [Trademark & Brand
44
+ Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
45
+
46
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
47
+
48
+ <!-- prettier-ignore-end -->
49
+
50
+ <!-- AUTO-GENERATED-CONTENT:END -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/runtime-definitions",
3
- "version": "2.0.0-dev.4.1.0.148229",
3
+ "version": "2.0.0-dev.4.2.0.153917",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -16,15 +16,15 @@
16
16
  "dependencies": {
17
17
  "@fluidframework/common-definitions": "^0.20.1",
18
18
  "@fluidframework/common-utils": "^1.1.1",
19
- "@fluidframework/container-definitions": "2.0.0-dev.4.1.0.148229",
20
- "@fluidframework/core-interfaces": "2.0.0-dev.4.1.0.148229",
21
- "@fluidframework/driver-definitions": "2.0.0-dev.4.1.0.148229",
19
+ "@fluidframework/container-definitions": "2.0.0-dev.4.2.0.153917",
20
+ "@fluidframework/core-interfaces": "2.0.0-dev.4.2.0.153917",
21
+ "@fluidframework/driver-definitions": "2.0.0-dev.4.2.0.153917",
22
22
  "@fluidframework/protocol-definitions": "^1.1.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@fluid-tools/build-cli": "^0.13.1",
25
+ "@fluid-tools/build-cli": "^0.15.0",
26
26
  "@fluidframework/build-common": "^1.1.0",
27
- "@fluidframework/build-tools": "^0.13.1",
27
+ "@fluidframework/build-tools": "^0.15.0",
28
28
  "@fluidframework/eslint-config-fluid": "^2.0.0",
29
29
  "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.0.0-internal.4.0.0",
30
30
  "@microsoft/api-extractor": "^7.34.4",