Skip to content

chore!: remove dead legacy federation bridge plumbing - #41940

Merged
dionisio-bot[bot] merged 4 commits into
release-9.0.0from
chore/remove-dead-federation-plumbing
Aug 26, 2026
Merged

chore!: remove dead legacy federation bridge plumbing#41940
dionisio-bot[bot] merged 4 commits into
release-9.0.0from
chore/remove-dead-federation-plumbing

Conversation

@KevLehman

@KevLehman KevLehman commented Aug 25, 2026

Copy link
Copy Markdown
Member

Proposed changes (including videos or screenshots)

Follow-up to #41908. Removes dead code orphaned by the old Matrix bridge federation. Nothing here has a runtime caller; Native Federation (Federation_Service_*, @rocket.chat/federation-matrix) is untouched.

@rocket.chat/core-services:

  • Federation / FederationEE proxies — dialed broker names 'federation' / 'federation-enterprise', which no registered service answers anywhere; any call would hang
  • IFederationService.ts (whole file): all 12 interface members had no implementation and no caller — live equivalents moved to IFederationMatrixService with different signatures
  • federation.userRoleChanged event — no listener anywhere; also removes the 5 fire-and-forget broadcasts (addRoomOwner, removeRoomOwner, addRoomModerator, removeRoomModerator, removeUserFromRole — the user.roleUpdate broadcast they share the event object with stays)

@rocket.chat/rest-typings:

  • 5 of 6 /v1/federation/* endpoint typings had no server route and no client caller: searchPublicRooms, joinExternalPublicRoom, listServersByUser, addServerByUser, removeServerByUser — removed along with IFederationPublicRooms, FederationPaginatedRequest/Result and all 5 *Props ajv validator files (only consumers were their own unit specs; the live route validates via inline ajvQuery schema)
  • Kept matrixIds.verify (implemented in ee/server/api/federation.ts, called by useAddMatrixUsers) and fixed its response type: Map<string, string>Record<string, string> (server returns a plain object)

@rocket.chat/core-typings:

  • Federation v1 stat fields never written nor read: IStats.federatedServers, IStats.federatedUsers, IStats.federationOverviewData
  • federation/v1 types with zero consumers: IFederationServer, IFederationEvent, eventTypes (kept FederationKey — still powers Apps-Engine signature verification)

Tests:

  • apps/meteor/tests/unit/definition/rest/v1/federation/ — 4 specs, sole consumers of the deleted validators
  • apps/meteor/tests/e2e/federation/ + playwright-federation.config.ts + test:e2e:federation script — the old two-server Synapse bridge suite; not referenced by any CI workflow (native federation is covered by the test-federation-matrix CI job)

Client: the /federation slash command registration — client-side only, no server handler exists anywhere (the old v1 handler was removed with the federation v1 methods); typing it did nothing. The xmpp-join registration in the same file stays (live handler in ee/server/startup/federation.ts).

i18n: 12 orphaned keys removed from en, wiped from the other locales via the i18n linter's wipe-extra-keys --fix: Federation_Matrix ("Federation V2"), Federation_Matrix_error_applying_room_roles, Federation_Matrix_join_public_rooms_is_enterprise, Federation_Matrix_not_allowed_to_change_moderator, Federation_Matrix_not_allowed_to_change_owner, Federation_slash_commands, Federation_Enable, Federation_Example_matrix_server, Federation_Federated_room_search, Federation_Public_key, Federation_Search_federated_rooms, Federation_is_currently_disabled_on_this_workspace. The 8 Federation_Matrix_* keys used by live UI (CreateChannelModal, ComposerFederation, role-change modals) stay.

Issue(s)

Steps to test or reproduce

  1. yarn build + yarn workspace @rocket.chat/meteor run typecheck — no consumer of any removed symbol remains
  2. Grep for IFederationService, FederationEE, federation-enterprise, federation.userRoleChanged, federationOverviewData — zero hits outside changelogs
  3. Native federation flows (create federated room, verify matrix IDs, statistics) unchanged

Further comments

Follow-up to #41908, same 9.0.0 overdue-deprecations effort. One major changeset covering all five packages.

Review in cubic

Task: CORE-2628

Summary by CodeRabbit

  • Breaking Changes
    • Removed legacy federation management and search capabilities.
    • Removed the federation slash command; Matrix joining remains available.
    • Removed federation statistics and related administrative functionality.
    • Federation-specific end-to-end testing and setup have been retired.
  • Documentation
    • Updated translations to remove obsolete federation settings, search, error, permission, and slash-command messages.
    • Retained supported Matrix federation status, warning, and premium-room messaging.

@dionisio-bot

dionisio-bot Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is ready to merge! 🎉
If you have any trouble, please check the PR guidelines

@coderabbitai

coderabbitai Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 3e3a2f17-65a4-499c-9a8c-1997909e88ea

📥 Commits

Reviewing files that changed from the base of the PR and between 77b7883 and d1a31af.

⛔ Files ignored due to path filters (4)
  • apps/meteor/tests/e2e/federation/files/audio_mock.wav is excluded by !**/*.wav
  • apps/meteor/tests/e2e/federation/files/test_image.jpeg is excluded by !**/*.jpeg
  • apps/meteor/tests/e2e/federation/files/test_pdf_file.pdf is excluded by !**/*.pdf
  • apps/meteor/tests/e2e/federation/files/test_video.mp4 is excluded by !**/*.mp4
📒 Files selected for processing (92)
  • .changeset/remove-dead-federation-plumbing.md
  • apps/meteor/client/startup/slashCommands/federation.ts
  • apps/meteor/package.json
  • apps/meteor/playwright-federation.config.ts
  • apps/meteor/playwright.config.ts
  • apps/meteor/server/meteor-methods/auth/removeUserFromRole.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomModerator.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomOwner.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomModerator.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomOwner.ts
  • apps/meteor/tests/e2e/federation/README.md
  • apps/meteor/tests/e2e/federation/config/constants.ts
  • apps/meteor/tests/e2e/federation/config/global-setup.ts
  • apps/meteor/tests/e2e/federation/files/video_mock_for_webcam.y4m
  • apps/meteor/tests/e2e/federation/page-objects/account-profile.ts
  • apps/meteor/tests/e2e/federation/page-objects/admin.ts
  • apps/meteor/tests/e2e/federation/page-objects/channel.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/admin-flextab-users.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/admin-flextab.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-content.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-channels.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-dm-member.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-members.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-notificationPreferences.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-room.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-sidenav.ts
  • apps/meteor/tests/e2e/federation/tests/admin/rooms.spec.ts
  • apps/meteor/tests/e2e/federation/tests/admin/users.spec.ts
  • apps/meteor/tests/e2e/federation/tests/ce-version/ce.spec.ts
  • apps/meteor/tests/e2e/federation/tests/channel/dm.spec.ts
  • apps/meteor/tests/e2e/federation/tests/channel/private.spec.ts
  • apps/meteor/tests/e2e/federation/tests/channel/public.spec.ts
  • apps/meteor/tests/e2e/federation/tests/messaging/dm.spec.ts
  • apps/meteor/tests/e2e/federation/tests/messaging/private.spec.ts
  • apps/meteor/tests/e2e/federation/tests/messaging/public.spec.ts
  • apps/meteor/tests/e2e/federation/tests/messaging/threads.spec.ts
  • apps/meteor/tests/e2e/federation/tests/user-account/user.spec.ts
  • apps/meteor/tests/e2e/federation/utils/auth.ts
  • apps/meteor/tests/e2e/federation/utils/channel.ts
  • apps/meteor/tests/e2e/federation/utils/format.ts
  • apps/meteor/tests/e2e/federation/utils/register-user.ts
  • apps/meteor/tests/e2e/federation/utils/test.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationAddServerProps.spec.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationJoinExternalPublicRoomProps.spec.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationPublicRoomsProps.spec.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationRemoveServerProps.spec.ts
  • packages/core-services/src/events/Events.ts
  • packages/core-services/src/index.ts
  • packages/core-services/src/types/IFederationService.ts
  • packages/core-typings/src/IStats.ts
  • packages/core-typings/src/federation/index.ts
  • packages/core-typings/src/federation/v1/IFederationEvent.ts
  • packages/core-typings/src/federation/v1/IFederationServer.ts
  • packages/core-typings/src/federation/v1/events.ts
  • packages/core-typings/src/federation/v1/index.ts
  • packages/core-typings/src/index.ts
  • packages/i18n/src/locales/ar.i18n.json
  • packages/i18n/src/locales/ca.i18n.json
  • packages/i18n/src/locales/cs.i18n.json
  • packages/i18n/src/locales/da.i18n.json
  • packages/i18n/src/locales/de.i18n.json
  • packages/i18n/src/locales/en.i18n.json
  • packages/i18n/src/locales/es.i18n.json
  • packages/i18n/src/locales/fi.i18n.json
  • packages/i18n/src/locales/fr.i18n.json
  • packages/i18n/src/locales/hi-IN.i18n.json
  • packages/i18n/src/locales/hu.i18n.json
  • packages/i18n/src/locales/it.i18n.json
  • packages/i18n/src/locales/ja.i18n.json
  • packages/i18n/src/locales/ka-GE.i18n.json
  • packages/i18n/src/locales/ko.i18n.json
  • packages/i18n/src/locales/nb.i18n.json
  • packages/i18n/src/locales/nl.i18n.json
  • packages/i18n/src/locales/nn.i18n.json
  • packages/i18n/src/locales/pl.i18n.json
  • packages/i18n/src/locales/pt-BR.i18n.json
  • packages/i18n/src/locales/pt.i18n.json
  • packages/i18n/src/locales/ru.i18n.json
  • packages/i18n/src/locales/sv.i18n.json
  • packages/i18n/src/locales/tr.i18n.json
  • packages/i18n/src/locales/uk.i18n.json
  • packages/i18n/src/locales/zh-TW.i18n.json
  • packages/i18n/src/locales/zh.i18n.json
  • packages/rest-typings/src/index.ts
  • packages/rest-typings/src/v1/federation/FederationAddServerProps.ts
  • packages/rest-typings/src/v1/federation/FederationJoinExternalPublicRoomProps.ts
  • packages/rest-typings/src/v1/federation/FederationPublicRoomsProps.ts
  • packages/rest-typings/src/v1/federation/FederationRemoveServerProps.ts
  • packages/rest-typings/src/v1/federation/FederationVerifyMatrixIdProps.ts
  • packages/rest-typings/src/v1/federation/index.ts
  • packages/rest-typings/src/v1/federation/rooms.ts
💤 Files with no reviewable changes (86)
  • packages/i18n/src/locales/pt.i18n.json
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-channels.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationAddServerProps.spec.ts
  • packages/i18n/src/locales/ka-GE.i18n.json
  • apps/meteor/playwright-federation.config.ts
  • packages/core-typings/src/federation/v1/IFederationServer.ts
  • packages/rest-typings/src/v1/federation/FederationVerifyMatrixIdProps.ts
  • packages/i18n/src/locales/uk.i18n.json
  • apps/meteor/tests/e2e/federation/tests/admin/rooms.spec.ts
  • packages/core-typings/src/federation/v1/events.ts
  • packages/i18n/src/locales/hu.i18n.json
  • apps/meteor/tests/e2e/federation/tests/messaging/private.spec.ts
  • apps/meteor/tests/e2e/federation/tests/admin/users.spec.ts
  • apps/meteor/package.json
  • packages/i18n/src/locales/nl.i18n.json
  • apps/meteor/server/meteor-methods/auth/removeUserFromRole.ts
  • apps/meteor/tests/e2e/federation/utils/format.ts
  • apps/meteor/tests/e2e/federation/utils/auth.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomModerator.ts
  • packages/rest-typings/src/v1/federation/FederationPublicRoomsProps.ts
  • apps/meteor/tests/e2e/federation/utils/register-user.ts
  • apps/meteor/tests/e2e/federation/README.md
  • packages/core-services/src/events/Events.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomModerator.ts
  • packages/rest-typings/src/v1/federation/FederationRemoveServerProps.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationPublicRoomsProps.spec.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-room.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationRemoveServerProps.spec.ts
  • apps/meteor/tests/e2e/federation/tests/user-account/user.spec.ts
  • packages/rest-typings/src/v1/federation/rooms.ts
  • packages/i18n/src/locales/cs.i18n.json
  • apps/meteor/tests/e2e/federation/tests/channel/private.spec.ts
  • packages/i18n/src/locales/de.i18n.json
  • apps/meteor/tests/e2e/federation/tests/messaging/threads.spec.ts
  • apps/meteor/tests/e2e/federation/tests/channel/dm.spec.ts
  • apps/meteor/tests/e2e/federation/page-objects/account-profile.ts
  • packages/core-typings/src/federation/v1/index.ts
  • apps/meteor/tests/e2e/federation/config/constants.ts
  • packages/i18n/src/locales/fr.i18n.json
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-notificationPreferences.ts
  • packages/i18n/src/locales/ca.i18n.json
  • apps/meteor/tests/e2e/federation/tests/ce-version/ce.spec.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-members.ts
  • packages/i18n/src/locales/ko.i18n.json
  • packages/rest-typings/src/v1/federation/FederationJoinExternalPublicRoomProps.ts
  • packages/core-typings/src/IStats.ts
  • packages/i18n/src/locales/tr.i18n.json
  • apps/meteor/playwright.config.ts
  • packages/core-services/src/types/IFederationService.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/admin-flextab.ts
  • packages/rest-typings/src/v1/federation/FederationAddServerProps.ts
  • apps/meteor/tests/e2e/federation/tests/messaging/public.spec.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab-dm-member.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-flextab.ts
  • packages/i18n/src/locales/nn.i18n.json
  • apps/meteor/tests/e2e/federation/tests/channel/public.spec.ts
  • packages/i18n/src/locales/pl.i18n.json
  • apps/meteor/tests/e2e/federation/tests/messaging/dm.spec.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-sidenav.ts
  • apps/meteor/tests/unit/definition/rest/v1/federation/FederationJoinExternalPublicRoomProps.spec.ts
  • apps/meteor/tests/e2e/federation/config/global-setup.ts
  • apps/meteor/tests/e2e/federation/page-objects/fragments/home-content.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomOwner.ts
  • apps/meteor/tests/e2e/federation/page-objects/admin.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomOwner.ts
  • packages/i18n/src/locales/es.i18n.json
  • packages/i18n/src/locales/it.i18n.json
  • packages/i18n/src/locales/en.i18n.json
  • packages/i18n/src/locales/fi.i18n.json
  • apps/meteor/tests/e2e/federation/page-objects/channel.ts
  • apps/meteor/tests/e2e/federation/utils/test.ts
  • packages/i18n/src/locales/da.i18n.json
  • packages/i18n/src/locales/zh-TW.i18n.json
  • packages/core-services/src/index.ts
  • packages/i18n/src/locales/hi-IN.i18n.json
  • packages/i18n/src/locales/ja.i18n.json
  • packages/i18n/src/locales/ru.i18n.json
  • packages/i18n/src/locales/ar.i18n.json
  • packages/i18n/src/locales/pt-BR.i18n.json
  • apps/meteor/client/startup/slashCommands/federation.ts
  • packages/i18n/src/locales/sv.i18n.json
  • apps/meteor/tests/e2e/federation/page-objects/fragments/admin-flextab-users.ts
  • apps/meteor/tests/e2e/federation/utils/channel.ts
  • packages/i18n/src/locales/nb.i18n.json
  • packages/core-typings/src/federation/v1/IFederationEvent.ts
  • packages/i18n/src/locales/zh.i18n.json

Included review availability: Your plan provides up to 10 included reviews per hour; 9 remain after this review.

📜 Recent review details
⏰ Context from checks skipped due to timeout. (2)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
🧰 Additional context used
📓 Path-based instructions (2)
Shared libraries belong in `packages/`, while other services belong in `apps/` and `ee/`.

📄 CodeRabbit inference engine (CLAUDE.md)

Files:

  • packages/core-typings/src/federation/index.ts
  • packages/core-typings/src/index.ts
  • packages/rest-typings/src/index.ts
  • packages/rest-typings/src/v1/federation/index.ts
Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

Files:

  • packages/core-typings/src/federation/index.ts
  • packages/core-typings/src/index.ts
  • packages/rest-typings/src/index.ts
  • packages/rest-typings/src/v1/federation/index.ts
🧠 Learnings (2)
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • packages/core-typings/src/federation/index.ts
  • packages/rest-typings/src/index.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • packages/core-typings/src/federation/index.ts
  • packages/rest-typings/src/index.ts
🔇 Additional comments (5)
packages/core-typings/src/federation/index.ts (1)

1-1: LGTM!

packages/core-typings/src/index.ts (1)

6-6: LGTM!

packages/rest-typings/src/index.ts (1)

265-265: LGTM!

packages/rest-typings/src/v1/federation/index.ts (1)

1-9: LGTM!

.changeset/remove-dead-federation-plumbing.md (1)

1-10: LGTM!


Walkthrough

The change removes obsolete federation services, events, REST contracts, statistics fields, slash commands, E2E assets, and translations. Matrix federation type exports and the Matrix ID verification endpoint typing remain.

Changes

Federation cleanup

Layer / File(s) Summary
Remove legacy federation contracts
packages/core-services/src/events/Events.ts, packages/core-services/src/index.ts, packages/core-services/src/types/IFederationService.ts, packages/core-typings/src/**, packages/rest-typings/src/**
Legacy federation service interfaces, proxied services, event signatures, statistics fields, federation event/server types, REST validators, pagination types, and public-room endpoint typings are removed. Matrix ID verification request and endpoint types remain.
Remove federation runtime hooks
apps/meteor/client/startup/slashCommands/federation.ts, apps/meteor/server/meteor-methods/auth/removeUserFromRole.ts, apps/meteor/server/meteor-methods/rooms/*.ts
The federation slash command and federation-specific role-change broadcasts are removed. UI role-update broadcasts remain.
Remove federation E2E execution and assets
apps/meteor/package.json, apps/meteor/playwright.config.ts, apps/meteor/playwright-federation.config.ts, apps/meteor/tests/e2e/federation/**
The federation E2E script, Playwright configuration, README, setup, utilities, page objects, and federation test suites are removed.
Remove obsolete federation translations
packages/i18n/src/locales/*.i18n.json
Obsolete federation configuration, search, error, permission, public-key, Enterprise, and slash-command keys are removed. Supported Matrix federation messages remain.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Merge Risk: ⚪ Minimal · up to d1a31

This change removes unused legacy federation code and tests while preserving native federation behavior; no actionable merge-blocking risk remains after normal checks and review.

Suggested labels: type: chore

Suggested reviewers: ggazzo, sampaiodiego

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely summarizes the main change: removal of obsolete legacy federation bridge plumbing.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 4…
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Full details: Docstring Coverage

Explanation

No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 4 files. (1 skipped: 1 unsupported.)


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@changeset-bot

changeset-bot Bot commented Aug 25, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: d1a31af

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 30 packages
Name Type
@rocket.chat/core-services Major
@rocket.chat/rest-typings Major
@rocket.chat/core-typings Major
@rocket.chat/meteor Major
@rocket.chat/i18n Major
@rocket.chat/account-service Patch
@rocket.chat/authorization-service Patch
@rocket.chat/ddp-streamer Patch
@rocket.chat/omnichannel-transcript Patch
@rocket.chat/presence-service Patch
@rocket.chat/queue-worker Patch
@rocket.chat/abac Patch
@rocket.chat/federation-matrix Patch
@rocket.chat/network-broker Patch
@rocket.chat/omni-core-ee Patch
@rocket.chat/omnichannel-services Patch
@rocket.chat/presence Patch
rocketchat-services Patch
@rocket.chat/mock-providers Patch
@rocket.chat/ui-contexts Major
@rocket.chat/web-ui-registration Major
@rocket.chat/uikit-playground Patch
@rocket.chat/fuselage-ui-kit Major
@rocket.chat/gazzodown Major
@rocket.chat/livechat Patch
@rocket.chat/ui-avatar Major
@rocket.chat/ui-client Major
@rocket.chat/ui-video-conf Major
@rocket.chat/ui-voip Major
@rocket.chat/ui-composer Major

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@codecov

codecov Bot commented Aug 25, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
⚠️ Please upload report for BASE (release-9.0.0@77b7883). Learn more about missing BASE report.

Additional details and impacted files

Impacted file tree graph

@@               Coverage Diff                @@
##             release-9.0.0   #41940   +/-   ##
================================================
  Coverage                 ?   69.56%           
================================================
  Files                    ?     4224           
  Lines                    ?   167734           
  Branches                 ?    29882           
================================================
  Hits                     ?   116689           
  Misses                   ?    45897           
  Partials                 ?     5148           
Flag Coverage Δ
e2e 59.12% <ø> (?)
e2e-api 46.43% <ø> (?)
unit 71.27% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@KevLehman
KevLehman force-pushed the chore/remove-dead-federation-plumbing branch from 08a66a9 to 8c88e3e Compare August 25, 2026 21:38
@KevLehman
KevLehman marked this pull request as ready for review August 26, 2026 13:42
@KevLehman
KevLehman requested review from a team as code owners August 26, 2026 13:42
@KevLehman

Copy link
Copy Markdown
Member Author

/jira CORE

@KevLehman KevLehman added this to the 9.0.0 milestone Aug 26, 2026
@KevLehman KevLehman added the stat: QA assured Means it has been tested and approved by a company insider label Aug 26, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Aug 26, 2026

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 96 files

Not reviewed (too large): apps/meteor/tests/e2e/federation/files/video_mock_for_webcam.y4m (~39,580 lines) - if these are generated or fixture files, add them to ignored paths to exclude them from future reviews.

Re-trigger cubic

@KevLehman KevLehman removed the stat: ready to merge PR tested and approved waiting for merge label Aug 26, 2026
@dionisio-bot
dionisio-bot Bot merged commit 2b359ff into release-9.0.0 Aug 26, 2026
56 checks passed
@dionisio-bot
dionisio-bot Bot deleted the chore/remove-dead-federation-plumbing branch August 26, 2026 16:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stat: QA assured Means it has been tested and approved by a company insider type: chore

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants