Skip to content

build(deps): Bump the fluid-framework-dependencies group across 3 directories with 38 updates#1791

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-f3bfecd202
Open

build(deps): Bump the fluid-framework-dependencies group across 3 directories with 38 updates#1791
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-f3bfecd202

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps the fluid-framework-dependencies group with 7 updates in the /brainstorm directory:

Package From To
@fluidframework/azure-client 2.81.1 2.82.0
@fluidframework/odsp-client 2.81.1 2.82.0
@fluidframework/telemetry-utils 2.81.1 2.82.0
@fluidframework/test-runtime-utils 2.81.1 2.82.0
fluid-framework 2.81.1 2.82.0
@fluidframework/azure-local-service 2.81.1 2.82.0
@fluidframework/devtools 2.81.1 2.82.0

Bumps the fluid-framework-dependencies group with 6 updates in the /item-counter directory:

Package From To
@fluidframework/azure-client 2.81.1 2.82.0
@fluidframework/telemetry-utils 2.81.1 2.82.0
@fluidframework/test-runtime-utils 2.81.1 2.82.0
fluid-framework 2.81.1 2.82.0
@fluidframework/azure-local-service 2.81.1 2.82.0
@fluidframework/devtools 2.81.1 2.82.0

Bumps the fluid-framework-dependencies group with 6 updates in the /item-counter-spe directory:

Package From To
@fluidframework/azure-client 2.81.1 2.82.0
@fluidframework/odsp-client 2.81.1 2.82.0
@fluidframework/telemetry-utils 2.81.1 2.82.0
@fluidframework/test-runtime-utils 2.81.1 2.82.0
fluid-framework 2.81.1 2.82.0
@fluidframework/devtools 2.81.1 2.82.0

Updates @fluidframework/azure-client from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/azure-client's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/azure-client's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Dependency updates only.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Dependency updates only.

2.60.0

Dependency updates only.

2.53.0

... (truncated)

Commits

Updates @fluidframework/odsp-client from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/odsp-client's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/odsp-client's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Dependency updates only.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Dependency updates only.

2.60.0

Dependency updates only.

2.53.0

... (truncated)

Commits

Updates @fluidframework/telemetry-utils from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/telemetry-utils's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/telemetry-utils's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Dependency updates only.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Minor Changes

  • Wrapped errors preserved as cause property (#25485) c69d56d2b2

    IFluidErrorBase (internal basis for FluidFramework client errors) declares cause property matching ES2022 lib (whether targeted or not). When an error is wrapped, cause will be set to the originating error (which may or may not itself be an Error).

2.60.0

... (truncated)

Commits
  • e99822e Release notes and changelogs for 2.82.0 (#26358)
  • 5b3d553 Add clientSequenceNumber to the data corruption error where it doesn't advanc...
  • 7290278 build: upgrade Biome from 1.9 to 2.3 and consolidate configs (#26222)
  • 429e144 Update client node types from ^18.19.0 to ~20.19.0 (#26273)
  • e4795ee build(client): update typetest baselines (#26270)
  • c34569a [bump] client: 2.81.0 => 2.82.0 (minor) (#26256)
  • See full diff in compare view

Updates @fluidframework/test-runtime-utils from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/test-runtime-utils's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/test-runtime-utils's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Minor Changes

  • Types not intended for consumer implementation/extension are now @​sealed (#26024) 75a3861ba8b

    The following types are now explicitly marked as @sealed to indicate that they are not intended for consumer implementation or extension.

    • MockFluidDataStoreRuntime class in @fluidframework/test-runtime-utils
    • IFluidParentContext interface in @fluidframework/runtime-definitions
    • IFluidDataStoreContext interface in @fluidframework/runtime-definitions
    • IFluidDataStoreContextDetached interface in @fluidframework/runtime-definitions

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Minor Changes

  • getSnapshotTree is now required in IChannelStorageService (#25707) d1c4c0ab1d

    The getSnapshotTree property was added as optional to IChannelStorageService in version 2.51.0. It is now a required property. See this github issue for more details.

  • Remove submitMessage from FluidDataStoreRuntime and MockFluidDataStoreRuntime (#25755) 88860f348b

    As needed, access submitMessage via IFluidDataStoreContext/IFluidParentContext. See microsoft/FluidFramework#24406 for details.

2.63.0

... (truncated)

Commits
  • e99822e Release notes and changelogs for 2.82.0 (#26358)
  • 0561765 Tag asserts (#26350)
  • be7a071 Tag asserts (#26340)
  • eb4f45c Fix: Change sensitivity label timestamp to Unix ms and add sensitivity label ...
  • 7290278 build: upgrade Biome from 1.9 to 2.3 and consolidate configs (#26222)
  • ab6e056 docs(client): Add missing description comments in preparation for enabling es...
  • 429e144 Update client node types from ^18.19.0 to ~20.19.0 (#26273)
  • e4795ee build(client): update typetest baselines (#26270)
  • c34569a [bump] client: 2.81.0 => 2.82.0 (minor) (#26256)
  • See full diff in compare view

Updates fluid-framework from 2.81.1 to 2.82.0

Release notes

Sourced from fluid-framework's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from fluid-framework's changelog.

2.82.0

Minor Changes

  • Promote MinimumVersionForCollab to beta (#26342) 2bb53c5c3f1

    Promotes the MinimumVersionForCollab type to beta, and adds option to configuredSharedTreeBeta for specifying it when creating a new SharedTree.

    This allows users to opt into new features and optimizations that are only available when certain minimum version thresholds are guaranteed. For more details, see FluidClientVersion

    Example usage

    // Configure SharedTree DDS to limit the features it requires of collaborators and future document users to only those available in version `2.80.0` and later, overriding the `MinimumVersionForCollab` provided by the runtime (default: "2.0.0").
    // Edits made to this DDS by this client might cause clients older than the specified version to be unable to open the document and/or error out of collaboration sessions.
    const SharedTree = configuredSharedTreeBeta({
      minVersionForCollab: FluidClientVersion.v2_80,
    });
  • Add "push" as alias for insertAtEnd on TreeArrayNode (#26260) e2ed71b014d

    Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

    Usage

    import { TreeArrayNode } from "@fluidframework/tree";
    // inventory is a TreeArrayNode from your schema.
    inventory.push({ name: "Apples", quantity: 3 });
    // Insert multiple items in one call.
    inventory.push(
    TreeArrayNode.spread([
    { name: "Oranges", quantity: 2 },
    { name: "Bananas", quantity: 5 },
    ]),
    );

  • Promote TableSchema APIs to beta (#26339) 36a625a3058

    Promotes the SharedTree TableSchema from alpha to beta. These APIs can now be imported via @fluidframework/tree/beta. Documents from before this are not supported with the beta version of the schema to ensure orphan cell invariants can be guaranteed.

  • Fix bug in multi-step move of array elements (#26344) 1bca56c3fb2

... (truncated)

Commits
  • e99822e Release notes and changelogs for 2.82.0 (#26358)
  • 36a625a feat(tree): Promote TableSchema APIs to beta (#26339)
  • 2bb53c5 feat(tree): Add minVersionForCollaboration option to `configuredSharedTreeB...
  • d385e25 Add ExtensibleSchemaUnion (#26337)
  • eb2126e feat(tree) asynchronous transactions (#26233)
  • ecff1b9 V0 constraints in table (#26208)
  • 7290278 build: upgrade Biome from 1.9 to 2.3 and consolidate configs (#26222)
  • cca4db2 Add label for transaction commits for undo/redo grouping. (#25938)
  • e2ed71b feat(tree): Add push as alias for insertAtEnd on TreeArrayNode (#26260)
  • 4e056b6 build: use projectService for ESLint typed linting where possible (#26239)
  • Additional commits viewable in compare view

Updates @fluidframework/azure-local-service from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/azure-local-service's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/azure-local-service's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Dependency updates only.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Dependency updates only.

2.60.0

Dependency updates only.

2.53.0

... (truncated)

Commits

Updates @fluidframework/devtools from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/devtools's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/devtools's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Dependency updates only.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Dependency updates only.

2.60.0

Dependency updates only.

2.53.0

... (truncated)

Commits

Updates @fluidframework/aqueduct from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/aqueduct's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)

Adds push as an alias to make the API more intuitive and reduce friction for both LLM-generated code and developers familiar with JavaScript array semantics.

Usage

import { TreeArrayNode } from "@fluidframework/tree";
// inventory is a TreeArrayNode from your schema.
inventory.push({ name: "Apples", quantity: 3 });
// Insert multiple items in one call.
inventory.push(
TreeArrayNode.spread([
{ name: "Oranges", quantity: 2 },
{ name: "Bananas", quantity: 5 },
]),
);

Change details

Commit: e2ed71b

Affected packages:

  • fluid-framework
  • @​fluidframework/tree

⬆️ Table of contents

Adds optional "label" parameter to runTransaction for grouping changes (#25938)

Transaction labels can be used to group multiple changes for undo/redo, where groups of changes with the same label can be undone together. When multiple labels are used in nested transactions, only the outermost label will be used.

... (truncated)

Changelog

Sourced from @​fluidframework/aqueduct's changelog.

2.82.0

Dependency updates only.

2.81.0

Dependency updates only.

2.80.0

Dependency updates only.

2.74.0

Dependency updates only.

2.73.0

Dependency updates only.

2.72.0

Dependency updates only.

2.71.0

Dependency updates only.

2.70.0

Minor Changes

  • Removed deprecated export of MinimumVersionForCollab from @​fluidframework/container-runtime (#25309) 776cb1ce31

    Removed the deprecated re-export of MinimumVersionForCollab from @​fluidframework/container-runtime. This type should now be imported from @​fluidframework/runtime-definitions. See the Fluid Framework 2.52.0 release notes for details.

2.63.0

Dependency updates only.

2.62.0

Dependency updates only.

2.61.0

Dependency updates only.

... (truncated)

Commits

Updates @fluidframework/cell from 2.81.1 to 2.82.0

Release notes

Sourced from @​fluidframework/cell's releases.

Fluid Framework v2.82.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Add "push" as alias for insertAtEnd on TreeArrayNode (#26260)](#user-content-add-push-as-alias-for-insertatend-on-treearraynode-26260)
    • [Adds optional "label" parameter to runTransaction for grouping changes (#25938)](#user-content-adds-optional-label-parameter-to-runtransaction-for-grouping-changes-25938)
    • [Fix bug in multi-step move of array elements (#26344)](#user-content-fix-bug-in-multi-step-move-of-array-elements-26344)
    • [Promote MinimumVersionForCollab to beta (#26342)](#user-content-promote-minimumversionforcollab-to-beta-26342)
    • [Promote TableSchema APIs to beta (#26339)](#user-content-promote-tableschema-apis-to-beta-26339)

🌳 SharedTree DDS Changes

Add "push" as alias for insertAt...

Description has been truncated

…ectories with 38 updates

Bumps the fluid-framework-dependencies group with 7 updates in the /brainstorm directory:

| Package | From | To |
| --- | --- | --- |
| [@fluidframework/azure-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/azure-client) | `2.81.1` | `2.82.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.81.1` | `2.82.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.81.1` | `2.82.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.81.1` | `2.82.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.81.1` | `2.82.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.81.1` | `2.82.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.81.1` | `2.82.0` |

Bumps the fluid-framework-dependencies group with 6 updates in the /item-counter directory:

| Package | From | To |
| --- | --- | --- |
| [@fluidframework/azure-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/azure-client) | `2.81.1` | `2.82.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.81.1` | `2.82.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.81.1` | `2.82.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.81.1` | `2.82.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.81.1` | `2.82.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.81.1` | `2.82.0` |

Bumps the fluid-framework-dependencies group with 6 updates in the /item-counter-spe directory:

| Package | From | To |
| --- | --- | --- |
| [@fluidframework/azure-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/azure-client) | `2.81.1` | `2.82.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.81.1` | `2.82.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.81.1` | `2.82.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.81.1` | `2.82.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.81.1` | `2.82.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.81.1` | `2.82.0` |



Updates `@fluidframework/azure-client` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/azure-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/odsp-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/utils/telemetry-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/test-runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-framework/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/azure/packages/azure-local-service/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/aqueduct/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/cell/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/container-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/container-loader/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/counter/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools-core/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/driver-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/driver-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/driver-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-static/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/id-compressor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/map/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/matrix/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/merge-tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/utils/odsp-doclib-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/odsp-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/odsp-driver-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/request-handler/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/routerlicious-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/sequence/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/shared-object-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/synthesize/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/azure-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/service-clients/azure-client)

Updates `@fluidframework/telemetry-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/utils/telemetry-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/test-runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-framework/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/azure/packages/azure-local-service/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/aqueduct/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/cell/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/container-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/container-loader/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/counter/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools-core/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/driver-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/driver-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/driver-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-static/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/id-compressor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/map/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/matrix/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/merge-tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/merge-tree)

Updates `@fluidframework/request-handler` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/request-handler/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/routerlicious-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/sequence/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/shared-object-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/synthesize/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/azure-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/odsp-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/utils/telemetry-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/test-runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-framework/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-framework)

Updates `@fluidframework/devtools` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/aqueduct/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/cell/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/container-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/container-loader/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/counter/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/tools/devtools/devtools-core/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/driver-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/common/driver-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/loader/driver-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/fluid-static/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/id-compressor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/map/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/matrix/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/merge-tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/utils/odsp-doclib-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/odsp-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/odsp-driver-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/request-handler/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/drivers/routerlicious-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-definitions/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/runtime-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/sequence/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/shared-object-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/synthesize/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.81.1 to 2.82.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/dds/tree/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.82.0/packages/dds/tree)

---
updated-dependencies:
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/test-runtime-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-local-service"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/test-runtime-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-local-service"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/test-runtime-utils"
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.82.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 5, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 5, 2026 07:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants