Skip to content

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

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 9, 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.100.0 2.103.0
@fluidframework/odsp-client 2.100.0 2.103.0
@fluidframework/telemetry-utils 2.100.0 2.103.0
@fluidframework/test-runtime-utils 2.100.0 2.103.0
fluid-framework 2.100.0 2.103.0
@fluidframework/azure-local-service 2.100.0 2.103.0
@fluidframework/devtools 2.100.0 2.103.0

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

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

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

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

Updates @fluidframework/azure-client from 2.100.0 to 2.103.0

Release notes

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

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

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

2.103.0

Dependency updates only.

2.102.0

Minor Changes

  • Service client createContainer/getContainer overloads taking CompatibilityMode are deprecated (#27212) 3e951b4abf

    The createContainer and getContainer overloads on AzureClient, OdspClient, and TinyliciousClient (plus AzureClient.viewContainerVersion) that accept a CompatibilityMode ("1" / "2") argument are now deprecated. Pass a MinimumVersionForCollab SemVer string instead — it specifies the minimum collaborating client version directly.

    See [issue #23289](microsoft/FluidFramework#23289) for migration details and removal tracking.

2.101.0

Dependency updates only.

Commits
  • c8df600 Release notes and changelogs for client 2.103.0 (#27512)
  • eb436ea build: bump main to 2.103.0 (#27402)
  • 8d97018 build: fixup 2.102.0 release prep (asserts + missed changesets) (#27435)
  • cf7e189 build: add release notes and changelogs for 2.102.0 (#27401)
  • 3e951b4 Compat: Add minVersionForCollab option to declarative model and deprecate Com...
  • ba3a0ac build: update type tests baseline to 2.101.0 (#27365)
  • bca7792 build: build: bump main to 2.102.0 (#27305)
  • 63b5950 build: generate release notes and changelogs for 2.101.0 (#27301)
  • 2d7ac25 build(client): bump client release group to 2.101.0 (#27176)
  • See full diff in compare view

Updates @fluidframework/odsp-client from 2.100.0 to 2.103.0

Release notes

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

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

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

2.103.0

Dependency updates only.

2.102.0

Minor Changes

  • Service client createContainer/getContainer overloads taking CompatibilityMode are deprecated (#27212) 3e951b4abf

    The createContainer and getContainer overloads on AzureClient, OdspClient, and TinyliciousClient (plus AzureClient.viewContainerVersion) that accept a CompatibilityMode ("1" / "2") argument are now deprecated. Pass a MinimumVersionForCollab SemVer string instead — it specifies the minimum collaborating client version directly.

    See [issue #23289](microsoft/FluidFramework#23289) for migration details and removal tracking.

2.101.0

Dependency updates only.

Commits
  • c8df600 Release notes and changelogs for client 2.103.0 (#27512)
  • eb436ea build: bump main to 2.103.0 (#27402)
  • 8d97018 build: fixup 2.102.0 release prep (asserts + missed changesets) (#27435)
  • cf7e189 build: add release notes and changelogs for 2.102.0 (#27401)
  • 3e951b4 Compat: Add minVersionForCollab option to declarative model and deprecate Com...
  • bca7792 build: build: bump main to 2.102.0 (#27305)
  • 63b5950 build: generate release notes and changelogs for 2.101.0 (#27301)
  • 2d7ac25 build(client): bump client release group to 2.101.0 (#27176)
  • See full diff in compare view

Updates @fluidframework/telemetry-utils from 2.100.0 to 2.103.0

Release notes

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

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

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

2.103.0

Dependency updates only.

2.102.0

Dependency updates only.

2.101.0

Dependency updates only.

Commits
  • c8df600 Release notes and changelogs for client 2.103.0 (#27512)
  • 52909a3 feat(telemetry-utils): escalate selected performance events to essential (#27...
  • 228a839 (refactor): Migrate all internal ITelemetryLoggerExt use to TelemetryLoggerEx...
  • eb436ea build: bump main to 2.103.0 (#27402)
  • cf7e189 build: add release notes and changelogs for 2.102.0 (#27401)
  • 4d6eab2 feat(datastore): Decorate and log errors thrown during DataStore entrypoint i...
  • ba3a0ac build: update type tests baseline to 2.101.0 (#27365)
  • bca7792 build: build: bump main to 2.102.0 (#27305)
  • 63b5950 build: generate release notes and changelogs for 2.101.0 (#27301)
  • 77ef335 feat(telemetry-utils): deprecate LogLevel.default/error and tag unspecified e...
  • Additional commits viewable in compare view

Updates @fluidframework/test-runtime-utils from 2.100.0 to 2.103.0

Release notes

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

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

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

2.103.0

Dependency updates only.

2.102.0

Dependency updates only.

2.101.0

Dependency updates only.

Commits

Updates fluid-framework from 2.100.0 to 2.103.0

Release notes

Sourced from fluid-framework's releases.

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

Sourced from fluid-framework's changelog.

2.103.0

Dependency updates only.

2.102.0

Minor Changes

  • Promote onAssertionFailure to @beta (#27282) 4191b82e41

    The onAssertionFailure hook, previously @alpha, has been promoted to @beta. It allows registering a handler that is invoked when an assertion failure occurs, which is useful for capturing the first error in a sequence before subsequent failures obscure the root cause.

    import { onAssertionFailure } from "@fluidframework/core-utils/beta";
    let firstAssertion: Error | undefined;
    const unregister = onAssertionFailure((error) => {
    firstAssertion ??= error;
    });

2.101.0

Minor Changes

  • Add SharedTreeOptionsBeta.healUnresolvableIdentifiersOnDecode to recover documents with corrupted identifiers (#27281) d9205ddcd6a

    A SharedTree bug can result in corrupted documents due to their attach summary compressing identifier-field values in a way that cannot be uncompressed. This bug manifested as remote clients processing the op throwing an error with the message "Unknown op space ID.".

    This change adds an option (healUnresolvableIdentifiersOnDecode) to configuredSharedTreeBetaLegacy which will allow documents affected by this bug to load again when enabled. Enabling this option carries some risk, see documentation on the interface itself for more details.

    Who is affected

    Only SharedTrees attached to a container that was already attached can be impacted. Furthermore, this bug only occurs when the attached tree contains identifier fields which contain implicitly generated default values.

  • Fix a SharedTree document corruption bug (#27292) 6f4cdcb7a0a

    A SharedTree bug which could corrupt documents when attaching them to containers has been fixed. See healUnresolvableIdentifiersOnDecode on configuredSharedTreeBetaLegacy for a potential mitigation path for documents that were already corrupted by this bug.

    Who is affected

    Only SharedTrees attached to a container that was already attached can be impacted. Furthermore, this bug only occurs when the attached tree contains identifier fields which contain implicitly generated default values.

Commits

Updates @fluidframework/azure-local-service from 2.100.0 to 2.103.0

Release notes

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

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

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

2.103.0

Dependency updates only.

2.102.0

Dependency updates only.

2.101.0

Dependency updates only.

Commits

Updates @fluidframework/devtools from 2.100.0 to 2.103.0

Release notes

Sourced from @​fluidframework/devtools's releases.

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

Sourced from @​fluidframework/devtools's changelog.

2.103.0

Dependency updates only.

2.102.0

Dependency updates only.

2.101.0

Dependency updates only.

Commits

Updates @fluidframework/aqueduct from 2.100.0 to 2.103.0

Release notes

Sourced from @​fluidframework/aqueduct's releases.

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!

... (truncated)

Changelog

Sourced from @​fluidframework/aqueduct's changelog.

2.103.0

Dependency updates only.

2.102.0

Dependency updates only.

2.101.0

Dependency updates only.

Commits

Updates @fluidframework/cell from 2.100.0 to 2.103.0

Release notes

Sourced from @​fluidframework/cell's releases.

Fluid Framework v2.103.0 (minor)

Contents

  • ⚠️ Deprecations
    • [Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)](#user-content-deprecate-icreateandloadcontainerprops-in-favor-of-composable-building-blocks-27347)

⚠️ Deprecations

Deprecate ICreateAndLoadContainerProps in favor of composable building blocks (#27347)

ICreateAndLoadContainerProps is now @deprecated. It remains as a structurally-identical alias and the props types that previously extended it (ILoadExistingContainerProps, ICreateDetachedContainerProps, IRehydrateDetachedContainerProps) now extend the building blocks directly, so no caller migration is required for those.

Callers writing new props types should compose from the building blocks directly:

import type {
  IContainerHostProps,
  IContainerDriverServices,
} from "@fluidframework/container-loader/legacy";
// Equivalent to the old ICreateAndLoadContainerProps
type MyProps = IContainerHostProps & IContainerDriverServices;
// Add only what you need
interface MyHostOnlyProps extends IContainerHostProps {
readonly extraOption: boolean;
}

  • IContainerHostProps covers the code loader plus optional policy / observability fields (options, scope, logger, configProvider, protocolHandlerBuilder, allowReconnect, clientDetailsOverride).
  • IContainerDriverServices covers the urlResolver + documentServiceFactory pair.

ICreateAndLoadContainerProps will be removed in a future major release.

Change details

Commit: 4091373

Affected packages:

  • @​fluidframework/container-loader

⬆️ Table of contents

🛠️ Start Building Today!

Please continue to engage with us on Git...

Description has been truncated

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



Updates `@fluidframework/azure-client` from 2.100.0 to 2.103.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.103.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.100.0 to 2.103.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.103.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.100.0 to 2.103.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.103.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.100.0 to 2.103.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.103.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.100.0 to 2.103.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.103.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.100.0 to 2.103.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.103.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.100.0 to 2.103.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.103.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.100.0 to 2.103.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.103.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.100.0 to 2.103.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.103.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.100.0 to 2.103.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.103.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.100.0 to 2.103.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.103.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.100.0 to 2.103.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.103.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-static)

Updates `@fluidframework/gitresources` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/gitresources/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/gitresources)

Updates `@fluidframework/id-compressor` from 2.100.0 to 2.103.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.103.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.100.0 to 2.103.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.103.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.100.0 to 2.103.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.103.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.100.0 to 2.103.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.103.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.100.0 to 2.103.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.103.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.100.0 to 2.103.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.103.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.100.0 to 2.103.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.103.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/protocol-base` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/protocol-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/protocol-base)

Updates `@fluidframework/request-handler` from 2.100.0 to 2.103.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.103.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.100.0 to 2.103.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.103.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.100.0 to 2.103.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.103.0/packages/dds/sequence)

Updates `@fluidframework/server-lambdas` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/lambdas/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/lambdas)

Updates `@fluidframework/server-lambdas-driver` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/lambdas-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/lambdas-driver)

Updates `@fluidframework/server-local-server` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/local-server/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/local-server)

Updates `@fluidframework/server-memory-orderer` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/memory-orderer/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/memory-orderer)

Updates `@fluidframework/server-services-client` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-client)

Updates `@fluidframework/server-services-core` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-core/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-core)

Updates `@fluidframework/server-services-shared` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-shared/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-shared)

Updates `@fluidframework/server-services-telemetry` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-telemetry/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-telemetry)

Updates `@fluidframework/server-services-utils` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-utils)

Updates `@fluidframework/server-test-utils` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/test-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/test-utils)

Updates `@fluidframework/shared-object-base` from 2.100.0 to 2.103.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.103.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.100.0 to 2.103.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.103.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.100.0 to 2.103.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.103.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.100.0 to 2.103.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.103.0/packages/framework/type-factory)

Updates `@fluidframework/azure-client` from 2.100.0 to 2.103.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.103.0/packages/service-clients/azure-client)

Updates `@fluidframework/telemetry-utils` from 2.100.0 to 2.103.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.103.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.100.0 to 2.103.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.103.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.100.0 to 2.103.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.103.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.100.0 to 2.103.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.103.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.100.0 to 2.103.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.103.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.100.0 to 2.103.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.103.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.100.0 to 2.103.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.103.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.100.0 to 2.103.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.103.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.100.0 to 2.103.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.103.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.100.0 to 2.103.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.103.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-static)

Updates `@fluidframework/gitresources` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/gitresources/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/gitresources)

Updates `@fluidframework/id-compressor` from 2.100.0 to 2.103.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.103.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.100.0 to 2.103.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.103.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.100.0 to 2.103.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.103.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.100.0 to 2.103.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.103.0/packages/dds/merge-tree)

Updates `@fluidframework/protocol-base` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/protocol-base/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/protocol-base)

Updates `@fluidframework/request-handler` from 2.100.0 to 2.103.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.103.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.100.0 to 2.103.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.103.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.100.0 to 2.103.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.103.0/packages/dds/sequence)

Updates `@fluidframework/server-lambdas` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/lambdas/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/lambdas)

Updates `@fluidframework/server-lambdas-driver` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/lambdas-driver/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/lambdas-driver)

Updates `@fluidframework/server-local-server` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/local-server/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/local-server)

Updates `@fluidframework/server-memory-orderer` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/memory-orderer/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/memory-orderer)

Updates `@fluidframework/server-services-client` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-client/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-client)

Updates `@fluidframework/server-services-core` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-core/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-core)

Updates `@fluidframework/server-services-shared` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-shared/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-shared)

Updates `@fluidframework/server-services-telemetry` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-telemetry/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-telemetry)

Updates `@fluidframework/server-services-utils` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/services-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/services-utils)

Updates `@fluidframework/server-test-utils` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/microsoft/FluidFramework/releases)
- [Changelog](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/packages/test-utils/CHANGELOG.md)
- [Commits](https://github.com/microsoft/FluidFramework/commits/server_v7.0.1/server/routerlicious/packages/test-utils)

Updates `@fluidframework/shared-object-base` from 2.100.0 to 2.103.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.103.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.100.0 to 2.103.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.103.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.100.0 to 2.103.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.103.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.100.0 to 2.103.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.103.0/packages/framework/type-factory)

Updates `@fluidframework/azure-client` from 2.100.0 to 2.103.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.103.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.100.0 to 2.103.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.103.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.100.0 to 2.103.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.103.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-framework)

Updates `@fluidframework/devtools` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.100.0 to 2.103.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.103.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.100.0 to 2.103.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.103.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.100.0 to 2.103.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.103.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.100.0 to 2.103.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.103.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.100.0 to 2.103.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.103.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.100.0 to 2.103.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.103.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.100.0 to 2.103.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.103.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.100.0 to 2.103.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.103.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.100.0 to 2.103.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.103.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.100.0 to 2.103.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.103.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.100.0 to 2.103.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.103.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.100.0 to 2.103.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.103.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.100.0 to 2.103.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.103.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.100.0 to 2.103.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.103.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.100.0 to 2.103.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.103.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.100.0 to 2.103.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.103.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.100.0 to 2.103.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.103.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.100.0 to 2.103.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.103.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.100.0 to 2.103.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.103.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.100.0 to 2.103.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.103.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.100.0 to 2.103.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.103.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.100.0 to 2.103.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.103.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.100.0 to 2.103.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.103.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.100.0 to 2.103.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.103.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.100.0 to 2.103.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.103.0/packages/dds/tree)

Updates `@fluidframework/type-factory` from 2.100.0 to 2.103.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.103.0/packages/framework/type-factory)

---
updated-dependencies:
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.103.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-client"
  dependency-version: 2.103.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.103.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.103.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.103.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.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-loader"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-runtime-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-interfaces"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/core-utils"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/counter"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/datastore-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools-core"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-base"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/driver-utils"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/fluid-static"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/gitresources"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/id-compressor"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/map"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/matrix"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/merge-tree"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-doclib-utils"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/odsp-driver-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/protocol-base"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/request-handler"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/routerlicious-driver"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/runtime-utils"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/sequence"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-lambdas"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-lambdas-driver"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-local-server"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-memory-orderer"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-services-client"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-services-core"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-services-shared"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-services-telemetry"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-services-utils"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/server-test-utils"
  dependency-version: 7.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/shared-object-base"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/synthesize"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/tree"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/type-factory"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/azure-client"
  dependency-version: 2.103.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/telemetry-utils"
  dependency-version: 2.103.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.103.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: fluid-framework
  dependency-version: 2.103.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.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/devtools"
  dependency-version: 2.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/aqueduct"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/cell"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluidframework/container-definitions"
  dependency-version: 2.103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: fluid-framework-dependencies
- dependency-name: "@fluid...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot requested a review from a team as a code owner June 9, 2026 07:45
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants