Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-de2e90f264
Open

build(deps): Bump the fluid-framework-dependencies group across 3 directories with 39 updates#1963
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-de2e90f264

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

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

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

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

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

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

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

Updates @fluidframework/azure-client from 2.111.0 to 2.112.0

Release notes

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

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

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

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/odsp-client from 2.111.0 to 2.112.0

Release notes

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

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

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

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/telemetry-utils from 2.111.0 to 2.112.0

Release notes

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

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

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

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/test-runtime-utils from 2.111.0 to 2.112.0

Release notes

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

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

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

2.112.0

Dependency updates only.

Commits

Updates fluid-framework from 2.111.0 to 2.112.0

Release notes

Sourced from fluid-framework's releases.

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

Sourced from fluid-framework's changelog.

2.112.0

Minor Changes

  • Add Component utilities for composing open-polymorphic schema (#27628) 7a56d096bf

    A new @alpha Component namespace is now exported from @fluidframework/tree (and re-exported from fluid-framework). It provides utilities for composing independently authored application "components" that contribute to a shared configuration, which is useful for implementing "open polymorphism" schema patterns where the set of allowed types for a field or collection can be extended by separate libraries.

    Each component is expressed as a Component.Factory: a function which receives a lazy reference to the composed configuration and returns the content that component contributes. Because the configuration is provided lazily, components may reference (including recursively) types contributed by other components. Component.compose combines a set of components into a Component.Composed, from which the aggregated configuration and per-component content can be read.

    /** Example application component content type. */
    interface MyAppComponentContent {
      /**
       * Item types contributed by this component.
       * We are just typing them as TreeNodeSchema here to keep things simple.
       * Real use would often provide some static factory to be able to create instances, as well as some APIs all item nodes should implement.
       */
      readonly items: Component.LazyArray<TreeNodeSchema>;
    }
    type MyAppComponent = Component.Factory<MyAppComponentContent>;
    // A simple component, which does not depend on any other context.
    const textComponent: MyAppComponent = () => ({
    items: () => [() => TextItem],
    });
    // A component which creates an item type which recursively depends on all item types.
    const containerComponent: MyAppComponent = (config) => ({
    items: () => [
    () =>
    class extends sf.array("Container", config().getComposed("items")) {},
    ],
    });
    const appConfig = Component.compose([containerComponent, textComponent]);
    // The config's items can now be used to create a TreeViewConfiguration, root schema, or whatever else is needed.
    class Root extends sf.object("Root", {
    content: appConfig.getComposed("items"),
    }) {}

    See the worked examples in openPolymorphism.integration.ts for end-to-end usage with SharedTree schema.

  • Independent tree views now accept an optional telemetry logger (#27567) 5fbbcab0af

    The alpha independentView, independentInitializedView, and createIndependentTreeAlpha APIs now accept an optional logger on their options. Previously these standalone (non-SharedTree) views had no way to surface telemetry,

... (truncated)

Commits
  • b210c3e build: release notes and changelogs for 2.112.0 (#27719)
  • 6ff15f3 feat(tree): alpha findLast functions for arrayNode (#27706)
  • 1f08b92 feat(tree): shared branch names (#27708)
  • 393ccf3 Add simpler way to use Component (#27664)
  • b72f836 Fix bug in System_Unsafe.InsertableTreeNodeFromImplicitAllowedTypesUnsafe (#2...
  • 5966900 feat(tree): Alpha ArrayNode APIs (#27686)
  • 2fa44c6 feat(tree): option to retain history (#27696)
  • 9c4a91e feat(tree): computeNetChangeIfRebasedOnto (#27684)
  • 5fbbcab Add optional telemetry logger to Breakable and independent tree views (#27567)
  • 76735ba test(client-tree): unimplemented "minimize" post-processor (#27633)
  • Additional commits viewable in compare view

Updates @fluidframework/azure-local-service from 2.111.0 to 2.112.0

Release notes

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

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

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

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/devtools from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/devtools's releases.

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

Sourced from @​fluidframework/devtools's changelog.

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/aqueduct from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/aqueduct's releases.

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent tree views now accept an optional telemetry logger (#27567)](#user-content-independent-tree-views-now-accept-an-optional-telemetry-logger-27567)
    • [Retain history option (#27696)](#user-content-retain-history-option-27696)
    • [Add at, pop, shift, unshift, findLast, and findLastIndex methods to TreeArrayNodeAlpha (#27686)](#user-content-add-at-pop-shift-unshift-findlast-and-findlastindex-methods-to-treearraynodealpha-27686)
    • [Shared branch names (#27708)](#user-content-shared-branch-names-27708)
  • 🐛 Bug Fixes
  • Other Changes
    • [Re-export telemetry types from fluid-framework (#27567)](#user-content-re-export-telemetry-types-from-fluid-framework-27567)

✨ New Features

Expose whether a container runtime has staged changes (#27648)

IContainerRuntimeBase now exposes hasStagedChanges, a flag indicating whether there are any changes submitted while in Staging Mode (via enterStagingMode) that have not yet been discarded or committed. A new hasStagedChangesChanged event is emitted whenever this value changes.

This is distinct from isDirty: a container runtime can be dirty due to ordinary unacknowledged local changes without having any staged changes.

containerRuntime.on("hasStagedChangesChanged", (hasStagedChanges) => {
  // update UI to reflect whether there are staged changes awaiting commit/discard
});
const hasStagedChanges = containerRuntime.hasStagedChanges;

Change details

Commit: c12943d

Affected packages:

  • @​fluidframework/runtime-definitions
  • @​fluidframework/container-runtime-definitions

⬆️ Table of contents

Start sharing local handle payloads before attachment (#27704)

Locally created Fluid handles can now expose an optional sharePayload() method that starts sharing their payload without attaching the handle to the Fluid object graph. Blob handles implement this method, allowing applications to begin uploading a blob before serializing its handle into a DDS.

</tr></table> 

... (truncated)

Changelog

Sourced from @​fluidframework/aqueduct's changelog.

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/cell from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/cell's releases.

Fluid Framework v2.112.0 (minor)

Contents

  • ✨ New Features
    • [Expose whether a container runtime has staged changes (#27648)](#user-content-expose-whether-a-container-runtime-has-staged-changes-27648)
    • [Start sharing local handle payloads before attachment (#27704)](#user-content-start-sharing-local-handle-payloads-before-attachment-27704)
  • 🌳 SharedTree DDS Changes
    • [Add Component utilities for composing open-polymorphic schema (#27628)](#user-content-add-component-utilities-for-composing-open-polymorphic-schema-27628)
    • [Independent...

      Description has been truncated

…ectories with 39 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.111.0` | `2.112.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.111.0` | `2.112.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.111.0` | `2.112.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.111.0` | `2.112.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.111.0` | `2.112.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.111.0` | `2.112.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.111.0` | `2.112.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.111.0` | `2.112.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.111.0` | `2.112.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.111.0` | `2.112.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.111.0` | `2.112.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.111.0` | `2.112.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.111.0` | `2.112.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.111.0` | `2.112.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.111.0` | `2.112.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.111.0` | `2.112.0` |



Updates `@fluidframework/azure-client` from 2.111.0 to 2.112.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.112.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.111.0 to 2.112.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.112.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.111.0 to 2.112.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.112.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.111.0 to 2.112.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.112.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.111.0 to 2.112.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.112.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.111.0 to 2.112.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.112.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.111.0 to 2.112.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.112.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.111.0 to 2.112.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.112.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.111.0 to 2.112.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.112.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.111.0 to 2.112.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.112.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.111.0 to 2.112.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.112.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.111.0 to 2.112.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.112.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.111.0 to 2.112.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.112.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.111.0 to 2.112.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.112.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.111.0 to 2.112.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.112.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.111.0 to 2.112.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.112.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.111.0 to 2.112.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.112.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.111.0 to 2.112.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.112.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.111.0 to 2.112.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.112.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.111.0 to 2.112.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.112.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.111.0 to 2.112.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.112.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.111.0 to 2.112.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.112.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.111.0 to 2.112.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.112.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.111.0 to 2.112.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.112.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.111.0 to 2.112.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.112.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.111.0 to 2.112.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/type-factory/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.112.0/packages/framework/type-factory)

Updates `@fluidframework/azure-client` from 2.111.0 to 2.112.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.112.0/packages/service-clients/azure-client)

Updates `@fluidframework/telemetry-utils` from 2.111.0 to 2.112.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.112.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.111.0 to 2.112.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.112.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.111.0 to 2.112.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.112.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.111.0 to 2.112.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.112.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.111.0 to 2.112.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.112.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.111.0 to 2.112.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.112.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.111.0 to 2.112.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.112.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.111.0 to 2.112.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.112.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.111.0 to 2.112.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.112.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.111.0 to 2.112.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.112.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.111.0 to 2.112.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.112.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.111.0 to 2.112.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.112.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.111.0 to 2.112.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.112.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.111.0 to 2.112.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.112.0/packages/dds/merge-tree)

Updates `@fluidframework/request-handler` from 2.111.0 to 2.112.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.112.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.111.0 to 2.112.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.112.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.111.0 to 2.112.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.112.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.111.0 to 2.112.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.112.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.111.0 to 2.112.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.112.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.111.0 to 2.112.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.112.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.111.0 to 2.112.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/type-factory/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.112.0/packages/framework/type-factory)

Updates `@fluidframework/azure-client` from 2.111.0 to 2.112.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.112.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.111.0 to 2.112.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.112.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.111.0 to 2.112.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.112.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-framework)

Updates `@fluidframework/devtools` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.111.0 to 2.112.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.112.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.111.0 to 2.112.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.112.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.111.0 to 2.112.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.112.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.111.0 to 2.112.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.112.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.111.0 to 2.112.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.112.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.111.0 to 2.112.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.112.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.111.0 to 2.112.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.112.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.111.0 to 2.112.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.112.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.111.0 to 2.112.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.112.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.111.0 to 2.112.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.112.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.111.0 to 2.112.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.112.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.111.0 to 2.112.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.112.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.111.0 to 2.112.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.112.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.111.0 to 2.112.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.112.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.111.0 to 2.112.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.112.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.111.0 to 2.112.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.112.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.111.0 to 2.112.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.112.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.111.0 to 2.112.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.112.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.111.0 to 2.112.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.112.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.111.0 to 2.112.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.112.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.111.0 to 2.112.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.112.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.111.0 to 2.112.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.112.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.111.0 to 2.112.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.112.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.111.0 to 2.112.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.112.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.111.0 to 2.112.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.112.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.111.0 to 2.112.0
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/type-factory/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.112.0/packages/framework/type-factory)

---
updated-dependencies:
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.112.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.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.112.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.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/type-factory"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.112.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.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.112.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.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/type-factory"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.112.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.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.112.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.112.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-vers...

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 Jul 21, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 21, 2026 07:40
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 21, 2026
@azure-pipelines

Copy link
Copy Markdown
Azure Pipelines:
There may be pipelines that require an authorized user to comment /azp run to run.

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