Skip to content

build(deps): Bump the fluid-framework-dependencies group with 29 updates#644

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

build(deps): Bump the fluid-framework-dependencies group with 29 updates#644
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/fluid-framework-dependencies-b1bd28f759

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 29 updates:

Package From To
@fluidframework/tinylicious-client 2.111.0 2.112.0
fluid-framework 2.111.0 2.112.0
@fluidframework/aqueduct 2.111.0 2.112.0
@fluidframework/container-definitions 2.111.0 2.112.0
@fluidframework/container-loader 2.111.0 2.112.0
@fluidframework/container-runtime 2.111.0 2.112.0
@fluidframework/container-runtime-definitions 2.111.0 2.112.0
@fluidframework/core-interfaces 2.111.0 2.112.0
@fluidframework/core-utils 2.111.0 2.112.0
@fluidframework/datastore 2.111.0 2.112.0
@fluidframework/datastore-definitions 2.111.0 2.112.0
@fluidframework/driver-base 2.111.0 2.112.0
@fluidframework/driver-definitions 2.111.0 2.112.0
@fluidframework/driver-utils 2.111.0 2.112.0
@fluidframework/fluid-static 2.111.0 2.112.0
@fluidframework/id-compressor 2.111.0 2.112.0
@fluidframework/map 2.111.0 2.112.0
@fluidframework/merge-tree 2.111.0 2.112.0
@fluidframework/request-handler 2.111.0 2.112.0
@fluidframework/routerlicious-driver 2.111.0 2.112.0
@fluidframework/runtime-definitions 2.111.0 2.112.0
@fluidframework/runtime-utils 2.111.0 2.112.0
@fluidframework/sequence 2.111.0 2.112.0
@fluidframework/shared-object-base 2.111.0 2.112.0
@fluidframework/synthesize 2.111.0 2.112.0
@fluidframework/telemetry-utils 2.111.0 2.112.0
@fluidframework/tinylicious-driver 2.111.0 2.112.0
@fluidframework/tree 2.111.0 2.112.0
@fluidframework/type-factory 2.111.0 2.112.0

Updates @fluidframework/tinylicious-client from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/tinylicious-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/tinylicious-client'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/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/container-definitions from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/container-definitions'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/container-definitions's changelog.

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/container-loader from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/container-loader'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/container-loader's changelog.

2.112.0

Dependency updates only.

Commits

Updates @fluidframework/container-runtime from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/container-runtime'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/container-runtime's changelog.

2.112.0

Minor Changes

  • Start sharing local handle payloads before attachment (#27704) 2c4d5aaf8a

    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.

    const handle = await runtime.uploadBlob(bytes);
    if (isLocalFluidHandle(handle) && handle.sharePayload !== undefined) {
    handle.sharePayload();
    }

Patch Changes

  • Throw DataCorruptionError for meaningful duplicate batch detections (#27668) 46a69e3d8e

    Previously, all detected duplicate batches were only logged via the DuplicateBatch telemetry event, and the corresponding DataCorruptionError was never thrown. This was a temporary mitigation for a service-side bug that could redeliver batches.

    Now, the error is thrown when either the incoming batch or the previously-seen batch has an explicit batchId (i.e. the batch was resubmitted, as opposed to a fresh batch whose batchId is derived from clientId and batchStartCsn). This distinguishes genuine duplicate-batch scenarios (e.g. container forking) from the known service-outage artifact, which only ever produces duplicates without explicit batch ids. Duplicates without an explicit batchId on either side continue to be log-only.

Commits
  • b210c3e build: release notes and changelogs for 2.112.0 (#27719)
  • 2c4d5aa feat: add imperative payload sharing for local Fluid handles (#27704)
  • c12943d feat: Expose hasStagedChanges/hasStagedChangesChanged on IContainerRuntimeBas...
  • 46a69e3 Throw DataCorruptionError for meaningful duplicate batch detections (#27668)
  • 541fb97 Update type tests (#27652)
  • db34092 Bump version to 2.112.0 (#27644)
  • See full diff in compare view

Updates @fluidframework/container-runtime-definitions from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/container-runtime-definitions'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/container-runtime-definitions's changelog.

2.112.0

Minor Changes

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

    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;

Commits

Updates @fluidframework/core-interfaces from 2.111.0 to 2.112.0

Release notes

Sourced from @​fluidframework/core-interfaces'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)
    • ...

      Description has been truncated

Bumps the fluid-framework-dependencies group with 29 updates:

| Package | From | To |
| --- | --- | --- |
| [@fluidframework/tinylicious-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/tinylicious-client) | `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/aqueduct](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/aqueduct) | `2.111.0` | `2.112.0` |
| [@fluidframework/container-definitions](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/common/container-definitions) | `2.111.0` | `2.112.0` |
| [@fluidframework/container-loader](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/loader/container-loader) | `2.111.0` | `2.112.0` |
| [@fluidframework/container-runtime](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/container-runtime) | `2.111.0` | `2.112.0` |
| [@fluidframework/container-runtime-definitions](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/container-runtime-definitions) | `2.111.0` | `2.112.0` |
| [@fluidframework/core-interfaces](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/common/core-interfaces) | `2.111.0` | `2.112.0` |
| [@fluidframework/core-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/common/core-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/datastore](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/datastore) | `2.111.0` | `2.112.0` |
| [@fluidframework/datastore-definitions](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/datastore-definitions) | `2.111.0` | `2.112.0` |
| [@fluidframework/driver-base](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/drivers/driver-base) | `2.111.0` | `2.112.0` |
| [@fluidframework/driver-definitions](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/common/driver-definitions) | `2.111.0` | `2.112.0` |
| [@fluidframework/driver-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/loader/driver-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/fluid-static](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-static) | `2.111.0` | `2.112.0` |
| [@fluidframework/id-compressor](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/id-compressor) | `2.111.0` | `2.112.0` |
| [@fluidframework/map](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/dds/map) | `2.111.0` | `2.112.0` |
| [@fluidframework/merge-tree](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/dds/merge-tree) | `2.111.0` | `2.112.0` |
| [@fluidframework/request-handler](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/request-handler) | `2.111.0` | `2.112.0` |
| [@fluidframework/routerlicious-driver](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/drivers/routerlicious-driver) | `2.111.0` | `2.112.0` |
| [@fluidframework/runtime-definitions](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/runtime-definitions) | `2.111.0` | `2.112.0` |
| [@fluidframework/runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/runtime-utils) | `2.111.0` | `2.112.0` |
| [@fluidframework/sequence](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/dds/sequence) | `2.111.0` | `2.112.0` |
| [@fluidframework/shared-object-base](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/dds/shared-object-base) | `2.111.0` | `2.112.0` |
| [@fluidframework/synthesize](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/synthesize) | `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/tinylicious-driver](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/drivers/tinylicious-driver) | `2.111.0` | `2.112.0` |
| [@fluidframework/tree](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/dds/tree) | `2.111.0` | `2.112.0` |
| [@fluidframework/type-factory](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/type-factory) | `2.111.0` | `2.112.0` |


Updates `@fluidframework/tinylicious-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/tinylicious-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.112.0/packages/service-clients/tinylicious-client)

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/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/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/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/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/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/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/tinylicious-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/tinylicious-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/client_v2.112.0/packages/drivers/tinylicious-driver)

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/tinylicious-client"
  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/aqueduct"
  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/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/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/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/telemetry-utils"
  dependency-version: 2.112.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tinylicious-driver"
  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
...

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 11:25
@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