@fluidframework/replay-driver 2.0.0-internal.6.1.1 → 2.0.0-internal.6.2.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 +31 -0
- package/README.md +4 -3
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @fluidframework/replay-driver
|
|
2
2
|
|
|
3
|
+
## 2.0.0-internal.6.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
|
|
8
|
+
|
|
9
|
+
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
10
|
+
imported from the **@fluidframework/core-interfaces** package:
|
|
11
|
+
|
|
12
|
+
- interface IDisposable
|
|
13
|
+
- interface IErrorEvent
|
|
14
|
+
- interface IErrorEvent
|
|
15
|
+
- interface IEvent
|
|
16
|
+
- interface IEventProvider
|
|
17
|
+
- interface ILoggingError
|
|
18
|
+
- interface ITaggedTelemetryPropertyType
|
|
19
|
+
- interface ITelemetryBaseEvent
|
|
20
|
+
- interface ITelemetryBaseLogger
|
|
21
|
+
- interface ITelemetryErrorEvent
|
|
22
|
+
- interface ITelemetryGenericEvent
|
|
23
|
+
- interface ITelemetryLogger
|
|
24
|
+
- interface ITelemetryPerformanceEvent
|
|
25
|
+
- interface ITelemetryProperties
|
|
26
|
+
- type ExtendEventProvider
|
|
27
|
+
- type IEventThisPlaceHolder
|
|
28
|
+
- type IEventTransformer
|
|
29
|
+
- type ReplaceIEventThisPlaceHolder
|
|
30
|
+
- type ReplaceIEventThisPlaceHolder
|
|
31
|
+
- type TelemetryEventCategory
|
|
32
|
+
- type TelemetryEventPropertyType
|
|
33
|
+
|
|
3
34
|
## 2.0.0-internal.6.1.0
|
|
4
35
|
|
|
5
36
|
Dependency updates only.
|
package/README.md
CHANGED
|
@@ -14,9 +14,10 @@ When taking a dependency on a Fluid Framework library, we recommend using a `^`
|
|
|
14
14
|
While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
|
|
15
15
|
library consumers should always prefer `^`.
|
|
16
16
|
|
|
17
|
-
Note that when depending on a library version of the form 2.0.0-internal.x.y.z
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
Note that when depending on a library version of the form `2.0.0-internal.x.y.z`, called the Fluid internal version scheme,
|
|
18
|
+
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`).
|
|
19
|
+
Standard `^` and `~` ranges will not work as expected.
|
|
20
|
+
See the [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
|
|
20
21
|
package for more information including tools to convert between version schemes.
|
|
21
22
|
|
|
22
23
|
<!-- prettier-ignore-end -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/replay-driver",
|
|
3
|
-
"version": "2.0.0-internal.6.
|
|
3
|
+
"version": "2.0.0-internal.6.2.0",
|
|
4
4
|
"description": "Document replay version of Socket.IO implementation",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,20 +15,19 @@
|
|
|
15
15
|
"module": "lib/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fluidframework/common-definitions": "^0.20.1",
|
|
19
18
|
"@fluidframework/common-utils": "^1.1.1",
|
|
20
|
-
"@fluidframework/core-interfaces": ">=2.0.0-internal.6.
|
|
21
|
-
"@fluidframework/driver-definitions": ">=2.0.0-internal.6.
|
|
22
|
-
"@fluidframework/driver-utils": ">=2.0.0-internal.6.
|
|
19
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
|
|
20
|
+
"@fluidframework/driver-definitions": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
|
|
21
|
+
"@fluidframework/driver-utils": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
|
|
23
22
|
"@fluidframework/protocol-definitions": "^1.1.0",
|
|
24
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-internal.6.
|
|
23
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0"
|
|
25
24
|
},
|
|
26
25
|
"devDependencies": {
|
|
27
|
-
"@fluid-tools/build-cli": "^0.
|
|
26
|
+
"@fluid-tools/build-cli": "^0.23.0",
|
|
28
27
|
"@fluidframework/build-common": "^2.0.0",
|
|
29
|
-
"@fluidframework/build-tools": "^0.
|
|
30
|
-
"@fluidframework/eslint-config-fluid": "^2.
|
|
31
|
-
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.0.0-internal.6.
|
|
28
|
+
"@fluidframework/build-tools": "^0.23.0",
|
|
29
|
+
"@fluidframework/eslint-config-fluid": "^2.1.0",
|
|
30
|
+
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.0.0-internal.6.1.1",
|
|
32
31
|
"@microsoft/api-extractor": "^7.34.4",
|
|
33
32
|
"@types/mocha": "^9.1.1",
|
|
34
33
|
"@types/nock": "^9.3.0",
|