ReleaseMicrosoftMicrosoftpublished Jun 8, 2026seen 1w

microsoft/FluidFramework client_v2.103.0

microsoft/FluidFramework

Open original ↗

Captured source

source ↗
published Jun 8, 2026seen 1wcaptured 1whttp 200method plain

Fluid Framework v2.103.0 (minor)

Repository: microsoft/FluidFramework

Tag: client_v2.103.0

Published: 2026-06-08T23:29:32Z

Prerelease: no

Release notes:

Contents

  • [⚠️ Deprecations](#user-content-️-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](#user-content-contents)

🛠️ Start Building Today!

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

Notability

notability 3.0/10

Routine version release, low impact.