Releases: microsoft/FluidFramework
Fluid Framework v2.0.0-rc.5.0.8 (patch)
What's Changed
- [main > release/client/rc.5.0]: Handle Location redirection for getSharingInformation call (#22551)
#22577
- [Port 2.0.0-rc.5.0] Hide part of code behind feature flag (#22529)
#22534
- [bump] client: 2.0.0-rc.5.0.7 => 2.0.0-rc.5.0.8 (patch)
#22034
Full Changelog: client_v2.0.0-rc.5.0.7...client_v2.0.0-rc.5.0.8
Fluid Framework v2.0.8 (patch)
What's Changed
- [port 2.0]: Avoid two leading slashes in the request to create a new file
#22588
- Manually bump client release branch from 2.0.7 to 2.0.8
#22568
Full Changelog: client_v2.0.7...client_v2.0.8
Fluid Framework v2.2.1 (patch)
What's Changed
- [Port 2.2] 0x04f bug fix for SharedString and SharedMatrix (#22529)
#22540
- [main -> 2.2] build(client): Update typetests baselines to 2.2.0
#22268
- [bump] client: 2.2.0 => 2.2.1 (patch)
#22258
- [main -> 2.2] ci: Bump marocchino/sticky-pull-request-comment action to latest version (2.9.0)
#22262
Full Changelog: client_v2.2.0...client_v2.2.1
Fluid Framework v2.1.1 (patch)
What's Changed
- [Port 2.1] 0x04f bug fix for SharedString and SharedMatrix (#22529)
#22539
- Revert back PR #21785. Process ops by batches in remoteMessageProcessor and pendingStateManager
#22509
- [port 2.1]: Fix upload release report step
#22168
- [port 2.1] refactor(ci): Use Small pool for first stage of Test DDS Stress pipeline
#21986
- Update type tests for 2.1 release branch
#21981
- [bump] client: 2.1.0 => 2.1.1 (patch)
#21978
Full Changelog: client_v2.1.0...client_v2.1.1
Fluid Framework v2.0.7 (patch)
What's Changed
- [Port 2.0] 0x04f bug fix for SharedString and SharedMatrix (#22537)
#22537
- [port 2.0]: Fix upload release report step
#22167
- [bump] client: 2.0.6 => 2.0.7 (patch)
#22054
Full Changelog: client_v2.0.6...client_v2.0.7
Fluid Framework v2.3.0 (minor)
Contents
- ✨ New Features
- 🌳 SharedTree DDS changes
- Refactor code for emitting events to make it easier to copy into other projects (#22275)
- A
@beta
version ofnodeChanged
which includes the list of properties has been added (#22229) - Make SharedTree usable with legacy APIs (#22320)
- Implicitly constructed object nodes now only consider own properties during validation (#22453)
- Export SharedTree beta APIs from fluid-framework/beta (#22469)
- Add /alpha import path to @fluidframework/tree and fluid-framework packages (#22483)
- 🐛 Bug Fixes
- Other Changes
✨ New Features
Experimental Presence package added (#22499)
@fluid-experimental/presence is now available for investigation. The new package is meant to support presence of collaborators connected to the same container. Use this library to quickly share simple, non-persisted data among all clients or send/receive fire and forget notifications.
API documentation for @fluid-experimental/presence is available at https://fluidframework.com/docs/apis/presence.
There are some limitations; see the README.md of installed package for most relevant notes.
We're just getting started. Please give it a go and share feedback.
Change details
Commit: 42b323c
Affected packages:
- @fluid-experimental/presence
🌳 SharedTree DDS changes
Refactor code for emitting events to make it easier to copy into other projects (#22275)
Factored event emitting utilities into their own file, events/emitter.ts
. Applications wishing to use SharedTree's eventing library for custom events can copy this file (and its referenced utility function) as a starting point for defining and emitting their own custom events. See createEmitter
's documentation for example usage.
Currently there are no published or officially supported versions of these utilities, but they are relatively simple, and can be copied and customized as needed.
Change details
Commit: 49849bb
Affected packages:
- @fluidframework/tree
A @beta
version of nodeChanged
which includes the list of properties has been added (#22229)
const factory = new SchemaFactory("example");
class Point2d extends factory.object("Point2d", {
x: factory.number,
y: factory.number,
}) {}
const point = new Point2d({ x: 0, y: 0 });
TreeBeta.on(point, "nodeChanged", (data) => {
const changed: ReadonlySet<"x" | "y"> = data.changedProperties;
if (changed.has("x")) {
// ...
}
});
The payload of the nodeChanged
event emitted by SharedTree's TreeBeta
includes a changedProperties
property that indicates which properties of the node changed.
For object nodes, the list of properties uses the property identifiers defined in the schema, and not the persisted identifiers (or "stored keys") that can be provided through FieldProps
when defining a schema. See the documentation for FieldProps
for more details about the distinction between "property keys" and "stored keys".
For map nodes, every key that was added, removed, or updated by a change to the tree is included in the list of properties.
For array nodes, the set of properties will always be undefined: there is currently no API to get details about changes to an array.
Object nodes revieve strongly types sets of changed keys, allowing compile time detection of incorrect keys:
TreeBeta.on(point, "nodeChanged", (data) => {
// @ts-expect-error Strong typing for changed properties of object nodes detects incorrect keys:
if (data.changedProperties.has("z")) {
// ...
}
});
The existing stable "nodeChanged" event's callback now is given a parameter called unstable
of type unknown
which is used to indicate that additional data can be provided there. This could break existing code using "nodeChanged" in a particularly fragile way.
function f(optional?: number) {
// ...
}
Tree.on(point, "nodeChanged", f); // Bad
Code like this which is implicitly discarding an optional argument from the function used as the listener will be broken. It can be fixed by using an inline lambda expression:
function f(optional?: number) {
// ...
}
Tree.on(point, "nodeChanged", () => f()); // Safe
Change details
Commit: aae34dd
Affected packages:
- fluid-framework
- @fluidframework/tree
Make SharedTree usable with legacy APIs (#22320)
SharedTree was not previously exported in a way that made it usable with @fluidframework/aqueduct or other lower-level legacy APIs. This fixes that issue by making it consistent with other DDSes: such usages can import { SharedTree } from "@fluidframework/tree/legacy";
.
Change details
Commit: bbdf869
Affected packages:
- @fluidframework/tree
Implicitly constructed object nodes now only consider own properties during validation (#22453)
When determining if some given data is compatible with a particular ObjectNode schema, both inherited and own properties were considered. However, when constructing the node from this data, only own properties were used. This allowed input which provided required values in inherited fields to pass validation. When the node was constructed, it would lack these fields, and end up out of schema. This has been fixed: both validation and node construction now only consider own properties.
This may cause some cases which previously exhibited data corruption to now throw a usage error reporting the data is incompatible. Such cases may need to copy data from the objects with inherited properties into new objects with own properties before constructing nodes from them.
Change details
Commit: 27faa56
Affected packages:
- @fluidframework/tree
- fluid-framework
Export SharedTree beta APIs from fluid-framework/beta (#22469)
fluid-framework/beta
now contains the @beta
APIs from @fluidframework/tree/beta
.
Change details
Commit: c51f55c
Affected packages:
- fluid-framework
Add /alpha import path to @fluidframework/tree and fluid-framework packages (#22483)
@fluidframework/tree
and fluid-framework
now have a /alpha
import path where their @alpha
APIs are exported.
Change details
Commit: 12242cf
Affected packages:
- fluid-framework
- @fluidfr...
build-tools v0.44.0 (minor)
This is a minor release.
Fluid Framework v2.2.0 (minor)
Contents
- ✨ New Features
- 🌳 SharedTree DDS changes
- ✨ New! When unambiguous, ArrayNodes can now be constructed from Maps and MapNodes from arrays (#22036)
- ✨ New!
Record
-typed objects can now be used to construct MapNodes (#22042) - Implicit TreeNode construction improvements (#21995)
- Fix document-corrupting bug when rebasing over move compositions (#21993)
- Enforce use of TreeViewConfiguration's constructor (#22055)
- New SharedTree configuration option:
ITreeConfigurationOptions.preventAmbiguity
(#22048) - Add
@alpha
APIFixRecursiveArraySchema
as a workaround around an issue with recursive ArrayNode schema (#22122) - Support generation of JSON Schema from Shared Tree view schema (alpha) (#21984)
Tree.schema
now returnsTreeNodeSchema
(#22185)- Compile-time type narrowing based on a TreeNode's NodeKind (#22222)
- 🐛 Bug Fixes
⚠️ Deprecations- container-loader: summarizeProtocolTree and its corresponding duplicate ILoaderOptions definition is deprecated (#21999)
- gcThrowOnTombstoneUsage and gcTombstoneEnforcementAllowed are deprecated (#21992)
- InactiveResponseHeaderKey header is deprecated (#22107)
- The PropertyManager class and related functions and properties are deprecated (#22183)
- Deprecate segmentGroups and ack on ISegment (#22183)
- Other Changes
✨ New Features
New isFluidHandle
type guard to check if an object is an IFluidHandle
(#22029)
The isFluidHandle
type guard function is now exported and can be used to detect which objects are IFluidHandle
s. Since IFluidHandle
often needs special handling (for example when serializing since it's not JSON compatible), having a dedicated detection function for it is useful. Doing this detection was possible previously using the tree
package's schema system via Tree.is(value, new SchemaFactory("").handle)
, but can now be done with just isFluidHandle(value)
.
Change details
Commit: 7827d10
Affected packages:
- fluid-framework
- @fluidframework/runtime-utils
🌳 SharedTree DDS changes
✨ New! When unambiguous, ArrayNodes can now be constructed from Maps and MapNodes from arrays (#22036)
Since the types for ArrayNodes and MapNodes indicate they can be constructed from iterables, it should work, even if those iterables are themselves arrays or maps. To avoid this being a breaking change, a priority system was introduced. ArrayNodes will only be implicitly constructable from JavaScript Map objects in contexts where no MapNodes are allowed. Similarly MapNodes will only be implicitly constructable from JavaScript Array objects in contexts where no ArrayNodes are allowed.
In practice, the main case in which this is likely to matter is when implicitly constructing a map node. If you provide an array of key value pairs, this now works instead of erroring, as long as no ArrayNode is valid at that location in the tree.
class MyMapNode extends schemaFactory.map("x", schemaFactory.number) {}
class Root extends schemaFactory.object("root", { data: MyMapNode }) {}
// This now works (before it compiled, but error at runtime):
const fromArray = new Root({ data: [["x", 5]] });
Prior versions used to have to do:
new Root({ data: new MyMapNode([["x", 5]]) });
or:
new Root({ data: new Map([["x", 5]]) });
Both of these options still work: strictly more cases are allowed with this change.
Change details
Commit: 25e74f9
Affected packages:
- @fluidframework/tree
- fluid-framework
✨ New! Record
-typed objects can now be used to construct MapNodes (#22042)
You can now construct MapNodes from Record
typed objects, similar to how maps are expressed in JSON.
Before this change, an Iterable<string, Child>
was required, but now an object like {key1: Child1, key2: Child2}
is allowed.
Full example using this new API:
class Schema extends schemaFactory.map("ExampleMap", schemaFactory.number) {}
const fromRecord = new Schema({ x: 5 });
This new feature makes it possible for schemas to construct a tree entirely from JSON-compatible objects using their constructors, as long as they do not require unhydrated nodes to differentiate ambiguous unions, or IFluidHandles (which themselves are not JSON compatible).
Due to limitations of TypeScript and recursive types, recursive maps do not advertise support for this feature in their typing, but it works at runtime.
Change details
Commit: 25deff3
Affected packages:
- fluid-framework
- @fluidframework/tree
Implicit TreeNode construction improvements (#21995)
ArrayNodes and MapNodes could always be explicitly constructed (using new
) from iterables. The types also allowed using of iterables to implicitly construct array nodes and map nodes, but this did not work at runtime. This has been fixed for all cases except implicitly constructing an ArrayNode form an Iterable
that is actually a Map
, and implicitly constructing a MapNode from an Iterable
that is actually an Array
. These cases may be fixed in the future, but require additional work to ensure unions of array nodes and map nodes work correctly.
Additionally MapNodes can now be constructed from Iterator<readonly [string, content]>
where previously the inner arrays had to be mutable.
Change details
Commit: 977f96c
Affected packages:
- fluid-framework
- @fluidframework/tree
Fix document-corrupting bug when rebasing over move compositions (#21993)
Before this fix, if multiple users concurrently performed moves (possibly by reverting prior moves), there was a chance that the document would become corrupted.
Change details
Commit: f3af9d1
Affected packages:
- @fluidframework/tree
Enforce use of TreeViewConfiguration's constructor (#22055)
TreeViewConfiguration
is @sealed
, meaning creating custom implementations of it such as assigning object literals to a `TreeViewConfiguratio...
build-tools v0.43.0 (minor)
This is a minor release.
build-tools v0.42.0 (minor)
This is a minor release.