Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 29, 2025

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

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

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

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

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

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

Updates @fluidframework/azure-client from 2.32.0 to 2.33.0

Release notes

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

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

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

2.33.0

Dependency updates only.

Commits
  • bb52ade Changelogs and release notes for 2.33.0 (#24473)
  • e835518 build: Update API-Extractor report configurations to include @legacy and `@...
  • 4e918aa build: Update (dev) dependencies on api-extractor (#24435)
  • d767ea8 build(client): Update typetests after minor release 2.32.0 (#24370)
  • 6a7bb8e [bump] client: 2.32.0 => 2.33.0 (minor) (#24360)
  • See full diff in compare view

Updates @fluidframework/odsp-client from 2.32.0 to 2.33.0

Release notes

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

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

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

2.33.0

Dependency updates only.

Commits

Updates @fluidframework/telemetry-utils from 2.32.0 to 2.33.0

Release notes

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

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

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

2.33.0

Dependency updates only.

Commits
  • bb52ade Changelogs and release notes for 2.33.0 (#24473)
  • e835518 build: Update API-Extractor report configurations to include @legacy and `@...
  • 4e918aa build: Update (dev) dependencies on api-extractor (#24435)
  • 2e54811 Remove unneeded "replace-in-file" and "moment" deps (#24388)
  • d767ea8 build(client): Update typetests after minor release 2.32.0 (#24370)
  • 6a7bb8e [bump] client: 2.32.0 => 2.33.0 (minor) (#24360)
  • See full diff in compare view

Updates @fluidframework/test-runtime-utils from 2.32.0 to 2.33.0

Release notes

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

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

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

2.33.0

Dependency updates only.

Commits
  • bb52ade Changelogs and release notes for 2.33.0 (#24473)
  • aa3512f Cleanup changeset formatting and assert short codes (#24468)
  • ec228d4 Tag asserts (#24464)
  • e835518 build: Update API-Extractor report configurations to include @legacy and `@...
  • e991905 Runtime: Expose readonly directly off the datastore runtime (#24410)
  • 4e918aa build: Update (dev) dependencies on api-extractor (#24435)
  • d9972f9 ContainerRuntime: Only wrap delta manger if summarizer (#24408)
  • ea95ef0 refactor(client-presence): Refactor/Rename APIs (#24384)
  • 2e54811 Remove unneeded "replace-in-file" and "moment" deps (#24388)
  • d767ea8 build(client): Update typetests after minor release 2.32.0 (#24370)
  • Additional commits viewable in compare view

Updates fluid-framework from 2.32.0 to 2.33.0

Release notes

Sourced from fluid-framework's releases.

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

Sourced from fluid-framework's changelog.

2.33.0

Minor Changes

  • Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421) 916ad0546f7

    There was a bug where "treeChanged" events would not always trigger if the node that was edited had never been accessed in the current view. This has been fixed.

  • Typing derived from unions of AllowedTypes arrays is fixed (#24441) a27ef0a0939

    Unions of array types provided as an AllowedTypes used to result in incorrectly computed insertable content types. This happened because InsertableTreeNodeFromAllowedTypes distributed over the union, violating the policy documented in Input for how schema-derived input types should be computed. This has been fixed. To get usable Input types, SharedTree schema's types should always capture the exact schema provided at runtime and not unions of possible different schema. Any code impacted by this change should be updated to replace any such unions with more specific types.

  • "Unsafe" @​system types moved to System_Unsafe namespace (#24443) dd4abfc4570

    Working code conforming to the rules regarding API Support Levels should be unaffected, but this resolves an issue which required violating these rules and directly referencing @system types.

    Sometimes packages exporting SharedTree schema related types for recursive schema could yield errors like:

    error TS2742: The inferred type of 'YourSchema' cannot be named without a reference to '../node_modules/@​fluidframework/tree/lib/internalTypes.js'. This is likely not portable. A type annotation is necessary.

    Mitigating this error could require explicitly referencing these @system types from internalTypes. Any such references to the moved types should be able to be deleted, as TypeScript will now be able to find them in the new namespace without assistance.

    This does not migrate all types out of internalTypes, so some occurrences of this issue may remain.

  • allowUnused utility function (#24076) 13c62b613e8

    A new allowUnused utility function has been added, which discards its type or runtime argument. When TypeScript is configured to reject code with unused locals, this function can be used to suppress that error, enabling use of ValidateRecursiveSchema to compile.

    class Test extends sf.arrayRecursive("Test", () => Test) {} // Bad
    allowUnused<ValidateRecursiveSchema<typeof Test>>(); // Reports compile error due to invalid schema above.
  • Improve handling of deleted nodes (#24345) 0ab3e510db5

    TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

    1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
    2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one.

... (truncated)

Commits
  • bb52ade Changelogs and release notes for 2.33.0 (#24473)
  • dd4abfc Move unsafe types into System_Unsafe namespace (#24443)
  • e835518 build: Update API-Extractor report configurations to include @legacy and `@...
  • a27ef0a Make InsertableTreeNodeFromAllowedTypes not distribute over unions (#24441)
  • 4e918aa build: Update (dev) dependencies on api-extractor (#24435)
  • 13c62b6 Add allowUnused (#24076)
  • 4b1e37b Clarify some details of creating TreeNodes and assigning object node fields (...
  • 1c743e8 Revert "IntervalCollection: Postpone deprecation until after next release" (#...
  • 6a7bb8e [bump] client: 2.32.0 => 2.33.0 (minor) (#24360)
  • See full diff in compare view

Updates @fluidframework/azure-local-service from 2.32.0 to 2.33.0

Release notes

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

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and State objects (#24396)](#user-content-presence-object-is-accessible-from-workspaces-and-state-objects-24396)
    • [StateFactory.latest/latestMap take an object as its only argument (#24414)](#user-content-statefactorylatestlatestmap-take-an-object-as-its-only-argument-24414)

✨ New Features

Latest and LatestMap support more types (#24417)

  • Latest (StateFactory.latest) permits null so that nullable types may be used.
  • LatestMap (StateFactory.latestMap) permits boolean, number, string, and null.

Change details

Commit: 619af0b

Affected packages:

  • @​fluidframework/presence

⬆️ Table of contents

🌳 SharedTree DDS Changes

Improve handling of deleted nodes (#24345)

TreeNodes which are deleted were not handled correctly. This has been improved in two ways:

  1. Accessing fields of deleted nodes now consistently throws a usage error indicating that doing so is invalid. Previously, this would throw an assertion error, which was a bug.
  2. When a TreeNode is deleted, but that node still exists within the ITree, then becomes accessible again later, a new TreeNode is now allocated instead of trying to reuse the deleted one. Note that this can only happen when the entire view of the ITree is disposed then recreated. This happens when disposing and recreating a TreeView or when the contents of the view are disposed due to being out of schema (another client did a schema upgrade), then brought back into schema (the schema upgrade was undone).

Change details

Commit: 0ab3e51

... (truncated)

Changelog

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

2.33.0

Dependency updates only.

Commits

Updates @fluidframework/devtools from 2.32.0 to 2.33.0

Release notes

Sourced from @​fluidframework/devtools's releases.

Fluid Framework v2.33.0 (minor)

Contents

  • ✨ New Features
    • [Latest and LatestMap support more types (#24417)](#user-content-latest-and-latestmap-support-more-types-24417)
  • 🌳 SharedTree DDS Changes
    • [Improve handling of deleted nodes (#24345)](#user-content-improve-handling-of-deleted-nodes-24345)
    • [allowUnused utility function (#24076)](#user-content-allowunused-utility-function-24076)
    • [Typing derived from unions of AllowedTypes arrays is fixed (#24441)](#user-content-typing-derived-from-unions-of-allowedtypes-arrays-is-fixed-24441)
    • [Remote edits to nodes which have never been accessed locally correctly trigger "treeChanged" events (#24421)](#user-content-remote-edits-to-nodes-which-have-never-been-accessed-locally-correctly-trigger-treechanged-events-24421)
    • ["Unsafe" @​system types moved to System_Unsafe namespace (#24443)](#user-content-unsafe-system-types-moved-to-system_unsafe-namespace-24443)
  • ⚠️ Deprecations
    • [Generic types for IntervalCollections have been replaced with non-generic types (#24164)](#user-content-generic-types-for-intervalcollections-have-been-replaced-with-non-generic-types-24164)
  • Other Changes
    • [Presence APIs have been renamed (#24384)](#user-content-presence-apis-have-been-renamed-24384)
    • [Presence object is accessible from Workspaces and S...

      Description has been truncated

@dependabot dependabot bot requested a review from a team April 29, 2025 07:44
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 29, 2025
…ectories with 38 updates

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

| Package | From | To |
| --- | --- | --- |
| [@fluidframework/azure-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/azure-client) | `2.32.0` | `2.33.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.32.0` | `2.33.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.32.0` | `2.33.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.32.0` | `2.33.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.32.0` | `2.33.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.32.0` | `2.33.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.32.0` | `2.33.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.32.0` | `2.33.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.32.0` | `2.33.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.32.0` | `2.33.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.32.0` | `2.33.0` |
| [@fluidframework/azure-local-service](https://github.com/microsoft/FluidFramework/tree/HEAD/azure/packages/azure-local-service) | `2.32.0` | `2.33.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.32.0` | `2.33.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.32.0` | `2.33.0` |
| [@fluidframework/odsp-client](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/service-clients/odsp-client) | `2.32.0` | `2.33.0` |
| [@fluidframework/telemetry-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/utils/telemetry-utils) | `2.32.0` | `2.33.0` |
| [@fluidframework/test-runtime-utils](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/runtime/test-runtime-utils) | `2.32.0` | `2.33.0` |
| [fluid-framework](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/framework/fluid-framework) | `2.32.0` | `2.33.0` |
| [@fluidframework/devtools](https://github.com/microsoft/FluidFramework/tree/HEAD/packages/tools/devtools/devtools) | `2.32.0` | `2.33.0` |



Updates `@fluidframework/azure-client` from 2.32.0 to 2.33.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.33.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.32.0 to 2.33.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.33.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.32.0 to 2.33.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.33.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.32.0 to 2.33.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.33.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.32.0 to 2.33.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.33.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.32.0 to 2.33.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.33.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.32.0 to 2.33.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.33.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.32.0 to 2.33.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.33.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.32.0 to 2.33.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.33.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.32.0 to 2.33.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.33.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.32.0 to 2.33.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.33.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.32.0 to 2.33.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.33.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.32.0 to 2.33.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.33.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.32.0 to 2.33.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.33.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.32.0 to 2.33.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.33.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.32.0 to 2.33.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.33.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.32.0 to 2.33.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.33.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.32.0 to 2.33.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.33.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.32.0 to 2.33.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.33.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.32.0 to 2.33.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.33.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.32.0 to 2.33.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.33.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.32.0 to 2.33.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.33.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.32.0 to 2.33.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.33.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.32.0 to 2.33.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.33.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.32.0 to 2.33.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.33.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.32.0 to 2.33.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.33.0/packages/service-clients/azure-client)

Updates `@fluidframework/telemetry-utils` from 2.32.0 to 2.33.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.33.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-framework)

Updates `@fluidframework/azure-local-service` from 2.32.0 to 2.33.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.33.0/azure/packages/azure-local-service)

Updates `@fluidframework/devtools` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.32.0 to 2.33.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.33.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.32.0 to 2.33.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.33.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.32.0 to 2.33.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.33.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.32.0 to 2.33.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.33.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.32.0 to 2.33.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.33.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.32.0 to 2.33.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.33.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.32.0 to 2.33.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.33.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.32.0 to 2.33.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.33.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.32.0 to 2.33.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.33.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.32.0 to 2.33.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.33.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.32.0 to 2.33.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.33.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.32.0 to 2.33.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.33.0/packages/dds/merge-tree)

Updates `@fluidframework/request-handler` from 2.32.0 to 2.33.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.33.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.32.0 to 2.33.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.33.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.32.0 to 2.33.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.33.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.32.0 to 2.33.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.33.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.32.0 to 2.33.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.33.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.32.0 to 2.33.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.33.0/packages/dds/tree)

Updates `@fluidframework/azure-client` from 2.32.0 to 2.33.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.33.0/packages/service-clients/azure-client)

Updates `@fluidframework/odsp-client` from 2.32.0 to 2.33.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.33.0/packages/service-clients/odsp-client)

Updates `@fluidframework/telemetry-utils` from 2.32.0 to 2.33.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.33.0/packages/utils/telemetry-utils)

Updates `@fluidframework/test-runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/test-runtime-utils)

Updates `fluid-framework` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-framework)

Updates `@fluidframework/devtools` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools)

Updates `@fluidframework/aqueduct` from 2.32.0 to 2.33.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.33.0/packages/framework/aqueduct)

Updates `@fluidframework/cell` from 2.32.0 to 2.33.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.33.0/packages/dds/cell)

Updates `@fluidframework/container-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/container-definitions)

Updates `@fluidframework/container-loader` from 2.32.0 to 2.33.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.33.0/packages/loader/container-loader)

Updates `@fluidframework/container-runtime` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime)

Updates `@fluidframework/container-runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/container-runtime-definitions)

Updates `@fluidframework/core-interfaces` from 2.32.0 to 2.33.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.33.0/packages/common/core-interfaces)

Updates `@fluidframework/core-utils` from 2.32.0 to 2.33.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.33.0/packages/common/core-utils)

Updates `@fluidframework/counter` from 2.32.0 to 2.33.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.33.0/packages/dds/counter)

Updates `@fluidframework/datastore` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore)

Updates `@fluidframework/datastore-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/datastore-definitions)

Updates `@fluidframework/devtools-core` from 2.32.0 to 2.33.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.33.0/packages/tools/devtools/devtools-core)

Updates `@fluidframework/driver-base` from 2.32.0 to 2.33.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.33.0/packages/drivers/driver-base)

Updates `@fluidframework/driver-definitions` from 2.32.0 to 2.33.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.33.0/packages/common/driver-definitions)

Updates `@fluidframework/driver-utils` from 2.32.0 to 2.33.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.33.0/packages/loader/driver-utils)

Updates `@fluidframework/fluid-static` from 2.32.0 to 2.33.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.33.0/packages/framework/fluid-static)

Updates `@fluidframework/id-compressor` from 2.32.0 to 2.33.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.33.0/packages/runtime/id-compressor)

Updates `@fluidframework/map` from 2.32.0 to 2.33.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.33.0/packages/dds/map)

Updates `@fluidframework/matrix` from 2.32.0 to 2.33.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.33.0/packages/dds/matrix)

Updates `@fluidframework/merge-tree` from 2.32.0 to 2.33.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.33.0/packages/dds/merge-tree)

Updates `@fluidframework/odsp-doclib-utils` from 2.32.0 to 2.33.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.33.0/packages/utils/odsp-doclib-utils)

Updates `@fluidframework/odsp-driver` from 2.32.0 to 2.33.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.33.0/packages/drivers/odsp-driver)

Updates `@fluidframework/odsp-driver-definitions` from 2.32.0 to 2.33.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.33.0/packages/drivers/odsp-driver-definitions)

Updates `@fluidframework/request-handler` from 2.32.0 to 2.33.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.33.0/packages/framework/request-handler)

Updates `@fluidframework/routerlicious-driver` from 2.32.0 to 2.33.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.33.0/packages/drivers/routerlicious-driver)

Updates `@fluidframework/runtime-definitions` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-definitions)

Updates `@fluidframework/runtime-utils` from 2.32.0 to 2.33.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.33.0/packages/runtime/runtime-utils)

Updates `@fluidframework/sequence` from 2.32.0 to 2.33.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.33.0/packages/dds/sequence)

Updates `@fluidframework/shared-object-base` from 2.32.0 to 2.33.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.33.0/packages/dds/shared-object-base)

Updates `@fluidframework/synthesize` from 2.32.0 to 2.33.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.33.0/packages/framework/synthesize)

Updates `@fluidframework/tree` from 2.32.0 to 2.33.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.33.0/packages/dds/tree)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-6b818b2bff branch from eecc6ac to 15b2deb Compare April 30, 2025 20:45
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

Superseded by #1440.

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/brainstorm/main/fluid-framework-dependencies-6b818b2bff branch May 1, 2025 07:41
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.

1 participant