Skip to content

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

Merged
markfields merged 1 commit intomainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-60ec8e0641
Feb 20, 2026
Merged

build(deps): Bump the fluid-framework-dependencies group across 3 directories with 38 updates#1806
markfields merged 1 commit intomainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-60ec8e0641

Conversation

@dependabot
Copy link
Contributor

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

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

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

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

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

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

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

Updates @fluidframework/azure-client from 2.82.0 to 2.83.0

Release notes

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

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

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

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/odsp-client from 2.82.0 to 2.83.0

Release notes

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

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

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

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/telemetry-utils from 2.82.0 to 2.83.0

Release notes

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

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

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

2.83.0

Dependency updates only.

Commits

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

Release notes

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

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

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

2.83.0

Dependency updates only.

Commits

Updates fluid-framework from 2.82.0 to 2.83.0

Release notes

Sourced from fluid-framework's releases.

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

Sourced from fluid-framework's changelog.

2.83.0

Minor Changes

  • Fix false positive error from FormatValidator (#26372) adad917d30

    Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

  • New beta ExtensibleUnionNode API (#26438) 05f716ffb5

    The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

    const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
    class ItemA extends sf.object("A", { x: sf.string }) {}
    class ItemB extends sf.object("B", { x: sf.number }) {}
    class AnyItem extends ExtensibleUnionNode.createSchema(
    [ItemA, ItemB], // Future versions may add more members here
    sf,
    "ExtensibleUnion",
    ) {}
    // Instances of the union are created using create.
    const anyItem = AnyItem.create(new ItemA({ x: "hello" }));
    // Reading the content from the union is done via the union property,
    // which can be undefined to handle the case where a future version of this schema allows a type unknown to the current version.
    const childNode: ItemA | ItemB | undefined = anyItem.union;
    // To determine which member of the union was present, its schema can be inspected:
    const aSchema = Tree.schema(childNode ?? assert.fail("No child"));
    assert.equal(aSchema, ItemA);

  • Improve error messages when failing to construct nodes (#26433) 8c612c6f2b

    The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Commits

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

Release notes

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

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

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

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/devtools from 2.82.0 to 2.83.0

Release notes

Sourced from @​fluidframework/devtools's releases.

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

Sourced from @​fluidframework/devtools's changelog.

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/aqueduct from 2.82.0 to 2.83.0

Release notes

Sourced from @​fluidframework/aqueduct's releases.

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

Sourced from @​fluidframework/aqueduct's changelog.

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/cell from 2.82.0 to 2.83.0

Release notes

Sourced from @​fluidframework/cell's releases.

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false positive error from FormatValidator (#26372)

Users of the alpha API FormatValidatorBasic could hit an "Invalid JSON." error when parsing data. This would occur where the result of evaluating "MinimumVersionForCollab < 2.74.0" differed between the client encoding the data and the client decoding it. For example opening an old document with a new client that sets MinimumVersionForCollab = 2.74.0 would throw this error. This has been fixed: this case will no longer throw.

Change details

Commit: adad917

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

Improve error messages when failing to construct nodes (#26388)

The error messages when constructing tree nodes have been improved. Several cases now list not only the schema identifiers, but also schema names which can help when there are identifier collisions and make it easier to find the implementations. Additionally some cases which did not include what schema were encountered and which were allowed now include both.

Change details

Commit: 862a65e

Affected packages:

  • @​fluidframework/tree
  • fluid-framework

⬆️ Table of contents

New beta ExtensibleUnionNode API (#26438)

The new ExtensibleUnionNode API allows for creation of unions which can tolerate future additions not yet known to the current code.

const sf = new SchemaFactoryBeta("extensibleUnionNodeExample.items");
class ItemA extends sf.object("A", { x: sf.string }) {}
class ItemB extends sf.object("B", { x: sf.number }) {}
</tr></table> 

... (truncated)

Changelog

Sourced from @​fluidframework/cell's changelog.

2.83.0

Dependency updates only.

Commits

Updates @fluidframework/container-definitions from 2.82.0 to 2.83.0

Release notes

Sourced from @​fluidframework/container-definitions's releases.

Fluid Framework v2.83.0 (minor)

Contents

  • 🌳 SharedTree DDS Changes
    • [Fix false positive error from FormatValidator (#26372)](#user-content-fix-false-positive-error-from-formatvalidator-26372)
    • [Improve error messages when failing to construct nodes (#26388)](#user-content-improve-error-messages-when-failing-to-construct-nodes-26388)
    • [New beta ExtensibleUnionNode API (#26438)](#user-content-new-beta-extensibleunionnode-api-26438)

🌳 SharedTree DDS Changes

Fix false p...

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.82.0` | `2.83.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.82.0` | `2.83.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.82.0` | `2.83.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.82.0` | `2.83.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.82.0` | `2.83.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.82.0` | `2.83.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.82.0` | `2.83.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.82.0` | `2.83.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.82.0` | `2.83.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.82.0` | `2.83.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.82.0` | `2.83.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.82.0` | `2.83.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.82.0` | `2.83.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.82.0` | `2.83.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.82.0` | `2.83.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.82.0` | `2.83.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.82.0` | `2.83.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.82.0` | `2.83.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.82.0` | `2.83.0` |



Updates `@fluidframework/azure-client` from 2.82.0 to 2.83.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.83.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.82.0 to 2.83.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.83.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.82.0 to 2.83.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.83.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.82.0 to 2.83.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.83.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.82.0 to 2.83.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.83.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.82.0 to 2.83.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.83.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.82.0 to 2.83.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.83.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.82.0 to 2.83.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.83.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.82.0 to 2.83.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.83.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.82.0 to 2.83.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.83.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.82.0 to 2.83.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.83.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.82.0 to 2.83.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.83.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.82.0 to 2.83.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.83.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.82.0 to 2.83.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.83.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.82.0 to 2.83.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.83.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.82.0 to 2.83.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.83.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.82.0 to 2.83.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.83.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.82.0 to 2.83.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.83.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.82.0 to 2.83.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.83.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.82.0 to 2.83.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.83.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.82.0 to 2.83.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.83.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.82.0 to 2.83.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.83.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.82.0 to 2.83.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.83.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.82.0 to 2.83.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.83.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.82.0 to 2.83.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.83.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.82.0 to 2.83.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.83.0/packages/service-clients/azure-client)

Updates `@fluidframework/telemetry-utils` from 2.82.0 to 2.83.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.83.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.82.0 to 2.83.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.83.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.82.0 to 2.83.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.83.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.82.0 to 2.83.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.83.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.82.0 to 2.83.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.83.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.82.0 to 2.83.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.83.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.82.0 to 2.83.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.83.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.82.0 to 2.83.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.83.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.82.0 to 2.83.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.83.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.82.0 to 2.83.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.83.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.82.0 to 2.83.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.83.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.82.0 to 2.83.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.83.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.82.0 to 2.83.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.83.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.82.0 to 2.83.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.83.0/packages/dds/merge-tree)

Updates `@fluidframework/request-handler` from 2.82.0 to 2.83.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.83.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.82.0 to 2.83.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.83.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.82.0 to 2.83.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.83.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.82.0 to 2.83.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.83.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.82.0 to 2.83.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.83.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.82.0 to 2.83.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.83.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.82.0 to 2.83.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.83.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.82.0 to 2.83.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.83.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.82.0 to 2.83.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.83.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-framework)

Updates `@fluidframework/devtools` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.82.0 to 2.83.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.83.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.82.0 to 2.83.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.83.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.82.0 to 2.83.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.83.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.82.0 to 2.83.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.83.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.82.0 to 2.83.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.83.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.82.0 to 2.83.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.83.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.82.0 to 2.83.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.83.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.82.0 to 2.83.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.83.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.82.0 to 2.83.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.83.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.82.0 to 2.83.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.83.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.82.0 to 2.83.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.83.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.82.0 to 2.83.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.83.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.82.0 to 2.83.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.83.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.82.0 to 2.83.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.83.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.82.0 to 2.83.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.83.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.82.0 to 2.83.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.83.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.82.0 to 2.83.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.83.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.82.0 to 2.83.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.83.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.82.0 to 2.83.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.83.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.82.0 to 2.83.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.83.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.82.0 to 2.83.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.83.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.82.0 to 2.83.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.83.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.82.0 to 2.83.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.83.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.82.0 to 2.83.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.83.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.82.0 to 2.83.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.83.0/packages/dds/tree)

---
updated-dependencies:
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.83.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.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.83.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.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.83.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.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.83.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.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.83.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.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.83.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.83.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 19, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 19, 2026 07:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 19, 2026
@markfields
Copy link
Member

/azp run Microsoft.FluidExamples

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@markfields
Copy link
Member

@copilot can you double-check the lockfile changes don't have anything besides the 2.82 -> 2.83 bump? Don't make any changes, just read the code.

Copy link

Copilot AI commented Feb 20, 2026

@markfields I've opened a new pull request, #1809, to work on those changes. Once the pull request is ready, I'll request review from you.

@markfields markfields merged commit 51c60e6 into main Feb 20, 2026
5 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-60ec8e0641 branch February 20, 2026 20:00
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.

2 participants