Skip to content

fix: Deleted thread not being displayed correctly in thread context - #41484

Merged
dionisio-bot[bot] merged 12 commits into
developfrom
fix/normalize-removed-thread
Jul 23, 2026
Merged

fix: Deleted thread not being displayed correctly in thread context#41484
dionisio-bot[bot] merged 12 commits into
developfrom
fix/normalize-removed-thread

Conversation

@dougfabris

@dougfabris dougfabris commented Jul 20, 2026

Copy link
Copy Markdown
Member

Proposed changes (including videos or screenshots)

before

image Screenshot 2026-07-20 at 18 24 21

after

image image

Issue(s)

Steps to test or reproduce

Further comments

CORE-2414

Review in cubic

Summary by CodeRabbit

  • Bug Fixes
    • Fixed deleted thread messages with no content appearing blank; they now show the localized “message removed” label consistently across thread and discussion views.
    • Deleted messages that still contain content continue to display their normalized content.
    • Thread titles now use localized formatting with correct capitalization.
  • Localization
    • Updated “removed message” translation keys to support consistent casing in the UI.
  • Tests
    • Expanded unit coverage for localization-aware normalization and removed-message/title rendering scenarios.

@dionisio-bot

dionisio-bot Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is not ready to merge, because of the following issues:

  • This PR is targeting the wrong base branch. It should target 8.8.0, but it targets 8.7.0

Please fix the issues and try again

If you have any trouble, please check the PR guidelines

@changeset-bot

changeset-bot Bot commented Jul 20, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: eaeab92

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

This PR includes changesets to release 4 packages
Name Type
@rocket.chat/message-types Patch
@rocket.chat/meteor Patch
@rocket.chat/core-typings Patch
@rocket.chat/rest-typings Patch

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

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Deleted thread messages now use localized message-type text when they lack content. Thread normalization and title rendering receive i18n translators, while existing markdown and attachment handling remains in place. Locale keys and tests are updated accordingly.

Changes

Localized thread message rendering

Layer / File(s) Summary
Message type text contract
packages/message-types/src/MessageTypes.ts, packages/message-types/src/registrations/common.ts
Message type formatters accept optional text options, and removed messages select capitalization-specific translation keys.
Thread message normalization
apps/meteor/client/lib/normalizeThreadMessage.tsx, apps/meteor/client/lib/normalizeThreadMessage.spec.tsx, apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx, apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
Normalization resolves typed messages with i18n, while callers and tests pass the translator.
Thread title rendering
apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts, apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
Thread titles use localized text for content-less removed messages and retain markdown processing for messages with content.
Locale translation updates
packages/i18n/src/locales/*.i18n.json
The legacy Message_is_removed key is removed and updated removal-related keys are provided across locale files.
Release metadata
.changeset/sparkly-regions-drive.md
Adds patch release entries for @rocket.chat/message-types and @rocket.chat/meteor.

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

Possibly related PRs

Suggested labels: type: bug

Suggested reviewers: yash-rajpal, gabriellsh, kevlehman

🚥 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 matches the bug fix: deleted threads are now displayed correctly in thread context.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
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.

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (1)
  • CORE-2414: Request failed with status code 401

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.

@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch from 0924fda to d4c3eb4 Compare July 20, 2026 21:28
@codecov

codecov Bot commented Jul 20, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 89.28571% with 3 lines in your changes missing coverage. Please review.
✅ Project coverage is 68.65%. Comparing base (8d8cd01) to head (eaeab92).
⚠️ Report is 42 commits behind head on develop.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##           develop   #41484      +/-   ##
===========================================
+ Coverage    68.60%   68.65%   +0.04%     
===========================================
  Files         4134     4135       +1     
  Lines       160803   160585     -218     
  Branches     29246    29299      +53     
===========================================
- Hits        110323   110253      -70     
+ Misses       45375    45223     -152     
- Partials      5105     5109       +4     
Flag Coverage Δ
e2e 58.82% <22.22%> (-0.02%) ⬇️
e2e-api 45.33% <ø> (-0.02%) ⬇️
unit 70.66% <96.15%> (+0.07%) ⬆️

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.

@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch 2 times, most recently from 1beceb7 to f03567f Compare July 21, 2026 15:53
@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch from f03567f to 2a1b6ca Compare July 21, 2026 17:00
@dougfabris dougfabris added this to the 8.8.0 milestone Jul 21, 2026
@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch from 2a1b6ca to 78307c7 Compare July 21, 2026 17:34
@dougfabris
dougfabris marked this pull request as ready for review July 21, 2026 19:56
@dougfabris
dougfabris requested a review from a team as a code owner July 21, 2026 19:56

@coderabbitai coderabbitai 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.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.changeset/sparkly-regions-drive.md:
- Line 6: Update the changeset description to use the corrected wording: “Fixes
an issue where deleted thread messages are displayed as empty in the thread
context.”
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 496139ea-27d1-40d0-9238-0ac6c0dc1dd2

📥 Commits

Reviewing files that changed from the base of the PR and between c162052 and 7717148.

📒 Files selected for processing (9)
  • .changeset/sparkly-regions-drive.md
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.tsx
  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
  • packages/message-types/src/MessageTypes.ts
  • packages/message-types/src/registrations/common.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (4)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: CodeQL-Build
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
🧰 Additional context used
📓 Path-based instructions (2)
**/*.{ts,tsx,js}

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

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx
  • packages/message-types/src/registrations/common.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.tsx
  • packages/message-types/src/MessageTypes.ts
**/*.spec.ts

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

**/*.spec.ts: Use descriptive test names that clearly communicate expected behavior in Playwright tests
Use .spec.ts extension for test files (e.g., login.spec.ts)

Files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
🧠 Learnings (9)
📚 Learning: 2026-03-16T21:50:37.589Z
Learnt from: amitb0ra
Repo: RocketChat/Rocket.Chat PR: 39676
File: .changeset/migrate-users-register-openapi.md:3-3
Timestamp: 2026-03-16T21:50:37.589Z
Learning: For changes related to OpenAPI migrations in Rocket.Chat/OpenAPI, when removing endpoint types and validators from rocket.chat/rest-typings (e.g., UserRegisterParamsPOST, /v1/users.register) document this as a minor changeset (not breaking) per RocketChat/Rocket.Chat-Open-API#150 Rule 7. Note that the endpoint type is re-exposed via a module augmentation .d.ts in the consuming package (e.g., packages/web-ui-registration/src/users-register.d.ts). In reviews, ensure the changeset clearly states: this is a non-breaking change, the major version should not be bumped, and the changeset reflects a minor version bump. Do not treat this as a breaking change during OpenAPI migrations.

Applied to files:

  • .changeset/sparkly-regions-drive.md
📚 Learning: 2026-02-10T16:32:42.586Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 38528
File: apps/meteor/client/startup/roles.ts:14-14
Timestamp: 2026-02-10T16:32:42.586Z
Learning: In Rocket.Chat's Meteor client code, DDP streams use EJSON and Date fields arrive as Date objects; do not manually construct new Date() in stream handlers (for example, in sdk.stream()). Only REST API responses return plain JSON where dates are strings, so implement explicit conversion there if needed. Apply this guidance to all TypeScript files under apps/meteor/client to ensure consistent date handling in DDP streams and REST responses.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
📚 Learning: 2026-05-11T20:30:35.265Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 40480
File: apps/meteor/client/meteor/startup/accounts.ts:59-61
Timestamp: 2026-05-11T20:30:35.265Z
Learning: In Rocket.Chat’s Meteor client code, when calling `dispatchToastMessage` with `{ type: 'error' }`, pass the raw caught error object as `message` without manual normalization. `dispatchToastMessage` is designed to accept `message: unknown` for error toasts, so avoid converting errors to strings (e.g., `String(error)`) or extracting `error.message` before passing them.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
📚 Learning: 2026-02-24T19:22:48.358Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/omnichannel/omnichannel-send-pdf-transcript.spec.ts:66-67
Timestamp: 2026-02-24T19:22:48.358Z
Learning: In Playwright end-to-end tests (e.g., under apps/meteor/tests/e2e/...), prefer locating elements by translated text (getByText) and ARIA roles (getByRole) over data-qa attributes. If translation values change, update the corresponding test locators accordingly. Never use data-qa locators. This guideline applies to all Playwright e2e test specs in the repository and helps keep tests robust to UI text changes and accessible semantics.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.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:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • packages/message-types/src/registrations/common.ts
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
  • packages/message-types/src/MessageTypes.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 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:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • packages/message-types/src/registrations/common.ts
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
  • packages/message-types/src/MessageTypes.ts
📚 Learning: 2026-03-06T18:10:15.268Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39397
File: packages/gazzodown/src/code/CodeBlock.spec.tsx:47-68
Timestamp: 2026-03-06T18:10:15.268Z
Learning: In tests (especially those using testing-library/dom/jsdom) for Rocket.Chat components, the HTML <code> element has an implicit ARIA role of 'code'. Therefore, screen.getByRole('code') or screen.findByRole('code') will locate <code> elements even without a role attribute. Do not flag findByRole('code') as invalid in reviews; prefer using the implicit role instead of adding role="code" unless necessary for accessibility.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts
  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx
  • packages/message-types/src/registrations/common.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.tsx
  • packages/message-types/src/MessageTypes.ts
📚 Learning: 2026-03-27T14:52:56.865Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 39892
File: apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx:150-155
Timestamp: 2026-03-27T14:52:56.865Z
Learning: In Rocket.Chat, there are two different `ModalBackdrop` components with different prop APIs. During review, confirm the import source: (1) `rocket.chat/fuselage` `ModalBackdrop` uses `ModalBackdropProps` based on `BoxProps` (so it supports `onClick` and other Box/DOM props) and does not have an `onDismiss` prop; (2) `rocket.chat/ui-client` `ModalBackdrop` uses a narrower props interface like `{ children?: ReactNode; onDismiss?: () => void }` and handles Escape keypress and outside mouse-up, and it does not forward arbitrary DOM props such as `onClick`. Flag mismatched props (e.g., `onDismiss` passed to the fuselage component or `onClick` passed to the ui-client component) and ensure the usage matches the correct component being imported.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.tsx
🔇 Additional comments (9)
.changeset/sparkly-regions-drive.md (1)

1-4: LGTM!

packages/message-types/src/MessageTypes.ts (1)

7-7: LGTM!

packages/message-types/src/registrations/common.ts (1)

115-115: LGTM!

apps/meteor/client/lib/normalizeThreadMessage.tsx (1)

1-6: LGTM!

Also applies to: 26-28, 57-60

apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx (1)

4-4: LGTM!

Also applies to: 17-20

apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx (1)

7-7: LGTM!

Also applies to: 22-25

apps/meteor/client/lib/normalizeThreadMessage.spec.tsx (1)

1-4: LGTM!

Also applies to: 19-20, 33-34, 43-44, 56-70, 81-104

apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.ts (1)

1-20: LGTM!

Also applies to: 51-56

apps/meteor/client/views/room/contextualBar/Threads/hooks/useNormalizedThreadTitleHtml.spec.ts (1)

1-72: LGTM!

Comment thread .changeset/sparkly-regions-drive.md Outdated

@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.

All reported issues were addressed across 1 file (changes from recent commits).

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread .changeset/sparkly-regions-drive.md Outdated
dougfabris and others added 2 commits July 21, 2026 17:07
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
tassoevan
tassoevan previously approved these changes Jul 21, 2026

@hacktron-app hacktron-app Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

1 issue found across 1 file

Severity Count
HIGH 1

View full scan results

tassoevan
tassoevan previously approved these changes Jul 21, 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.

All reported issues were addressed across 59 files (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread packages/i18n/src/locales/en.i18n.json
@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch from 3c5099b to 246a281 Compare July 22, 2026 15:03
tassoevan
tassoevan previously approved these changes Jul 22, 2026

@coderabbitai coderabbitai 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.

Actionable comments posted: 5

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/i18n/src/locales/be-BY.i18n.json`:
- Line 1479: Update the message_removed locale entry to use the consistent
Belarusian wording “паведамленне выдалена”, matching the existing
Message_removed entry.

In `@packages/i18n/src/locales/de.i18n.json`:
- Line 2753: Update the message_removed translation value to capitalize the
German noun, using “Nachricht entfernt” while preserving the existing key and
lowercase wording structure.

In `@packages/i18n/src/locales/fi.i18n.json`:
- Around line 2819-2820: Update the Finnish locale entries so Message_removed
returns the capitalized translation "Viesti poistettu", while message_removed
remains "viesti poistettu".

In `@packages/i18n/src/locales/it.i18n.json`:
- Around line 1848-1849: Update the Message_removed translation to sentence case
while preserving the lowercase message_removed translation in
packages/i18n/src/locales/it.i18n.json lines 1848-1849. Apply the same
distinction in packages/i18n/src/locales/gl.i18n.json line 183 by making
Message_removed sentence-cased and retaining the lowercase value.

In `@packages/i18n/src/locales/uk.i18n.json`:
- Around line 1892-1893: Update the Message_removed translation value to begin
with an uppercase Ukrainian character, while leaving the lowercase
message_removed variant unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: ea03022a-5ba7-499e-aa1e-90edac951f39

📥 Commits

Reviewing files that changed from the base of the PR and between 3c5099b and 246a281.

📒 Files selected for processing (59)
  • packages/i18n/src/locales/af.i18n.json
  • packages/i18n/src/locales/ar.i18n.json
  • packages/i18n/src/locales/az.i18n.json
  • packages/i18n/src/locales/be-BY.i18n.json
  • packages/i18n/src/locales/bg.i18n.json
  • packages/i18n/src/locales/bs.i18n.json
  • packages/i18n/src/locales/ca.i18n.json
  • packages/i18n/src/locales/cs.i18n.json
  • packages/i18n/src/locales/cy.i18n.json
  • packages/i18n/src/locales/da.i18n.json
  • packages/i18n/src/locales/de-AT.i18n.json
  • packages/i18n/src/locales/de.i18n.json
  • packages/i18n/src/locales/el.i18n.json
  • packages/i18n/src/locales/en.i18n.json
  • packages/i18n/src/locales/eo.i18n.json
  • packages/i18n/src/locales/es.i18n.json
  • packages/i18n/src/locales/fa.i18n.json
  • packages/i18n/src/locales/fi.i18n.json
  • packages/i18n/src/locales/fr.i18n.json
  • packages/i18n/src/locales/gl.i18n.json
  • packages/i18n/src/locales/he.i18n.json
  • packages/i18n/src/locales/hi-IN.i18n.json
  • packages/i18n/src/locales/hr.i18n.json
  • packages/i18n/src/locales/hu.i18n.json
  • packages/i18n/src/locales/id.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/km.i18n.json
  • packages/i18n/src/locales/ko.i18n.json
  • packages/i18n/src/locales/ku.i18n.json
  • packages/i18n/src/locales/lo.i18n.json
  • packages/i18n/src/locales/lt.i18n.json
  • packages/i18n/src/locales/lv.i18n.json
  • packages/i18n/src/locales/mn.i18n.json
  • packages/i18n/src/locales/ms-MY.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/ro.i18n.json
  • packages/i18n/src/locales/ru.i18n.json
  • packages/i18n/src/locales/sk-SK.i18n.json
  • packages/i18n/src/locales/sl-SI.i18n.json
  • packages/i18n/src/locales/sq.i18n.json
  • packages/i18n/src/locales/sr.i18n.json
  • packages/i18n/src/locales/sv.i18n.json
  • packages/i18n/src/locales/ta-IN.i18n.json
  • packages/i18n/src/locales/th-TH.i18n.json
  • packages/i18n/src/locales/tr.i18n.json
  • packages/i18n/src/locales/ug.i18n.json
  • packages/i18n/src/locales/uk.i18n.json
  • packages/i18n/src/locales/vi-VN.i18n.json
  • packages/i18n/src/locales/zh-HK.i18n.json
  • packages/i18n/src/locales/zh-TW.i18n.json
  • packages/i18n/src/locales/zh.i18n.json
  • packages/message-types/src/registrations/common.ts
🚧 Files skipped from review as they are similar to previous changes (38)
  • packages/i18n/src/locales/bs.i18n.json
  • packages/i18n/src/locales/da.i18n.json
  • packages/i18n/src/locales/af.i18n.json
  • packages/i18n/src/locales/ug.i18n.json
  • packages/i18n/src/locales/lv.i18n.json
  • packages/i18n/src/locales/fr.i18n.json
  • packages/i18n/src/locales/sr.i18n.json
  • packages/i18n/src/locales/pt.i18n.json
  • packages/i18n/src/locales/cy.i18n.json
  • packages/i18n/src/locales/sv.i18n.json
  • packages/i18n/src/locales/nl.i18n.json
  • packages/i18n/src/locales/hi-IN.i18n.json
  • packages/i18n/src/locales/zh-HK.i18n.json
  • packages/i18n/src/locales/sq.i18n.json
  • packages/i18n/src/locales/bg.i18n.json
  • packages/i18n/src/locales/he.i18n.json
  • packages/i18n/src/locales/lt.i18n.json
  • packages/i18n/src/locales/pl.i18n.json
  • packages/i18n/src/locales/hu.i18n.json
  • packages/i18n/src/locales/ru.i18n.json
  • packages/i18n/src/locales/ar.i18n.json
  • packages/i18n/src/locales/sk-SK.i18n.json
  • packages/i18n/src/locales/es.i18n.json
  • packages/i18n/src/locales/pt-BR.i18n.json
  • packages/i18n/src/locales/ta-IN.i18n.json
  • packages/i18n/src/locales/zh.i18n.json
  • packages/i18n/src/locales/el.i18n.json
  • packages/i18n/src/locales/ca.i18n.json
  • packages/i18n/src/locales/ja.i18n.json
  • packages/message-types/src/registrations/common.ts
  • packages/i18n/src/locales/mn.i18n.json
  • packages/i18n/src/locales/lo.i18n.json
  • packages/i18n/src/locales/th-TH.i18n.json
  • packages/i18n/src/locales/nb.i18n.json
  • packages/i18n/src/locales/fa.i18n.json
  • packages/i18n/src/locales/zh-TW.i18n.json
  • packages/i18n/src/locales/cs.i18n.json
  • packages/i18n/src/locales/ku.i18n.json
📜 Review details
⏰ Context from checks skipped due to timeout. (3)
  • GitHub Check: 📦 Build Packages
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
⚠️ CI failures not shown inline (3)

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ✅ **Correct target version**
🔇 Additional comments (13)
packages/i18n/src/locales/az.i18n.json (1)

1459-1459: LGTM!

packages/i18n/src/locales/de-AT.i18n.json (1)

1460-1460: LGTM!

packages/i18n/src/locales/ms-MY.i18n.json (1)

1461-1461: LGTM!

packages/i18n/src/locales/nn.i18n.json (1)

3263-3266: LGTM!

packages/i18n/src/locales/ro.i18n.json (1)

1457-1459: LGTM!

packages/i18n/src/locales/sl-SI.i18n.json (1)

1454-1454: LGTM!

packages/i18n/src/locales/tr.i18n.json (1)

1744-1744: LGTM!

packages/i18n/src/locales/vi-VN.i18n.json (1)

1549-1549: LGTM!

packages/i18n/src/locales/en.i18n.json (1)

3714-3715: LGTM!

packages/i18n/src/locales/eo.i18n.json (1)

1457-1457: LGTM!

packages/i18n/src/locales/ka-GE.i18n.json (1)

1982-1984: LGTM!

packages/i18n/src/locales/km.i18n.json (1)

1722-1724: LGTM!

packages/i18n/src/locales/ko.i18n.json (1)

2156-2156: LGTM!

Comment thread packages/i18n/src/locales/be-BY.i18n.json
Comment thread packages/i18n/src/locales/de.i18n.json Outdated
Comment thread packages/i18n/src/locales/fi.i18n.json Outdated
Comment thread packages/i18n/src/locales/it.i18n.json Outdated
Comment thread packages/i18n/src/locales/uk.i18n.json Outdated
@jessicaschelly jessicaschelly added the stat: QA assured Means it has been tested and approved by a company insider label Jul 22, 2026
@dougfabris
dougfabris force-pushed the fix/normalize-removed-thread branch from 246a281 to 65bd1bf Compare July 22, 2026 15:35
@dougfabris dougfabris modified the milestones: 8.8.0, 8.7.0 Jul 22, 2026
@dougfabris
dougfabris requested a review from tassoevan July 22, 2026 15:37

@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.

All reported issues were addressed across 2 files (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
@dougfabris dougfabris modified the milestones: 8.7.0, 8.8.0 Jul 23, 2026
@dionisio-bot
dionisio-bot Bot added this pull request to the merge queue Jul 23, 2026
@github-merge-queue
github-merge-queue Bot removed this pull request from the merge queue due to failed status checks Jul 23, 2026
@tassoevan
tassoevan added this pull request to the merge queue Jul 23, 2026
@github-merge-queue
github-merge-queue Bot removed this pull request from the merge queue due to failed status checks Jul 23, 2026
@dougfabris dougfabris added stat: QA assured Means it has been tested and approved by a company insider and removed stat: QA assured Means it has been tested and approved by a company insider labels Jul 23, 2026
@dionisio-bot
dionisio-bot Bot added this pull request to the merge queue Jul 23, 2026
Merged via the queue into develop with commit 6edcdd7 Jul 23, 2026
99 of 101 checks passed
@dionisio-bot
dionisio-bot Bot deleted the fix/normalize-removed-thread branch July 23, 2026 14:54
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: bug

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants