Skip to content

chore: Merge 4.76.0 into master - #7615

Merged
diegolmello merged 31 commits into
masterfrom
release/4.76.0
Aug 31, 2026
Merged

chore: Merge 4.76.0 into master#7615
diegolmello merged 31 commits into
masterfrom
release/4.76.0

Conversation

@diegolmello

Copy link
Copy Markdown
Member

Proposed changes

Release 4.76.0. Merge develop into master at commit a83a801.

Issue(s)

https://rocketchat.atlassian.net/browse/NATIVE-1504

How to test or reproduce

Not applicable. Release merge only.

Screenshots

Not applicable.

Types of changes

  • Bugfix (non-breaking change which fixes an issue)
  • Improvement (non-breaking change which improves a current function)
  • New feature (non-breaking change which adds functionality)
  • Documentation update (if none of the other choices apply)

Checklist

  • I have read the CONTRIBUTING doc
  • I have signed the CLA
  • Lint and unit tests pass locally with my changes
  • I have added tests that prove my fix is effective or that my feature works (if applicable)
  • I have added necessary documentation (if applicable)
  • Any dependent changes have been merged and published in downstream modules

Further comments

None.

Rohit3523 and others added 30 commits August 2, 2026 18:07
* chore: replace ESLint with Oxlint

Migrate linting from ESLint 8 to Oxlint. `pnpm lint` drops from ~1min to
~0.6s and 17 eslint packages are removed from devDependencies.

Config lives in `.oxlintrc.json`, generated with `@oxlint/migrate` from the
old `.eslintrc.js` and then tuned:

- `eslint-plugin-react-native` is loaded through `jsPlugins`, since Oxlint has
  no built-in equivalent.
- `import/extensions` is off. Its old options (`js: 'warning'`, ...) were not
  valid values for the rule, so it never reported anything under ESLint.
- `no-unused-vars` sets `caughtErrors: 'none'` to match the ESLint 8 default.
- `import/no-cycle` and the React Compiler rules report as warnings. They
  surface findings ESLint never showed, so they are not gated yet.

Rules with no Oxlint equivalent are dropped: `no-restricted-syntax` (the ban
on `React.*` member syntax), `import/order`, `import/no-unresolved` and
`import/named`.

ESLint 8 skipped dot-directories, so files under `.rnstorybook/` and
`.maestro/` were never linted. Oxlint does lint them, which surfaced four
violations that are fixed here.

The CI workflow keeps its filename and job id so branch protection checks
stay valid.

* chore: replace Prettier with Oxfmt

Migrate formatting from Prettier 2.8.8 to Oxfmt via `oxfmt --migrate prettier`.

- `.oxfmtrc.json` carries every previous Prettier option unchanged (tabs,
  single quotes, printWidth 130, no trailing comma, avoid arrow parens,
  bracketSameLine) plus the `.prettierignore` patterns as `ignorePatterns`.
  `sortPackageJson` is disabled to match previous behavior.
- `.prettierrc.js` and `.prettierignore` removed; `prettier` dropped from
  devDependencies.
- `prettier-lint` script renamed to `format-lint` and now runs `oxfmt`.
- 44 files reformatted: Oxfmt follows Prettier 3 style, so nested ternaries
  and `extends`/type-argument wrapping indent differently than under
  Prettier 2. No semantic changes.
- prettier.yml still ran `eslint --fix`, missed in the Oxlint migration; it
  now runs `oxfmt` and `oxlint --fix`. `react/exhaustive-deps` is allowed
  there because its autofix rewrites dependency arrays, which changes
  behavior and must not land unreviewed from CI.
- Workflow filename kept as prettier.yml to avoid disturbing branch
  protection checks, same as eslint.yml.

Verified: `pnpm lint` exit 0 (0 errors), `tsc` clean, 217/217 suites and
2032/2032 tests pass, `oxfmt --check` clean.

* chore: update lockfile for oxfmt
* chore: bump TypeScript to 6.0

Baseline hop ahead of the TypeScript 7.0 (native compiler) migration, so the
7.0 cut is a version swap against a config that is already 7.0-shaped.

TypeScript 6.0 raises both `moduleResolution: node10` and `baseUrl` as errors
rather than warnings, and `ignoreDeprecations: "6.0"` stops working in 7.0, so
clearing them properly is the only route:

- `moduleResolution` -> `bundler` (Metro is a bundler), which requires an
  esnext-shaped `module`.
- `baseUrl` removed. Exactly one import relied on it; it is now relative.
- `types` enumerated, since a resolution mode that honours package `exports`
  no longer auto-includes every `@types` package. `@types/node` becomes an
  explicit devDependency.

Honouring `exports` also stranded the bundled `.d.ts` of three dependencies
whose maps expose only JavaScript. Each gets a `types` condition via
patch-package; this is visible to the type checker only, as Metro ignores that
condition. A `paths` mapping was tried first and rejected, because the
jest-expo resolver reads `paths` and then loads those `.d.ts` files at runtime.

The inherited block of commented-out option documentation is dropped.

* chore: migrate typecheck to TypeScript 7.0

Replaces TypeScript 6.0.3 with the native Go compiler. The version is pinned
exactly, since the platform binaries ship as version-matched optional
dependencies; the lockfile records the linux-x64 target CI resolves.

Typecheck wall time drops from 5.77s on 5.9.3 to ~1.0s. No configuration
change was required: the 6.0 hop already left tsconfig in a 7.0-shaped state,
and the default parallelism saturates without `--checkers`.

`@react-navigation/core` needs a patch to type-check. TypeScript 7.0.2
resolves the mutual recursion between `StaticParamList` and
`ParamListForScreens` eagerly where earlier versions defer it, reports the
alias as circular, and degrades it to a non-generic symbol -- surfacing as
`TS2315: Type 'StaticParamList' is not generic` at our call sites. The patch
drops a `FlatType<>` wrapper from the alias, which only flattens intersections
for editor display, so the type is unchanged and the misfire stops.
* fix: delete background taller than its row on server items

* chore: code improvements

---------

Co-authored-by: Diego Mello <diegolmello@gmail.com>
* fix: UIKit block messages rendering with smaller font size

* fix: snapshot
* fix: Quote has no effect on older thread messages

* fix: Quote has no effect on older thread messages

* chore: e2e test

* fix: e2e test

* chore: format code and fix lint issues

* fix(MessageComposer): resolve quoted thread messages and guard stale lookups

* fix: test

---------

Co-authored-by: OtavioStasiak <OtavioStasiak@users.noreply.github.com>
* fix: test

* fix: room last messa test

* fix: jumptomessage test

* chore: remove comments

* fix: jump to message e2e test iOS

* remove unused comment
…7546)

* fix(db): move sendMessage reads and prepares inside the writer lock

* fix: test improvements

* chore: remove comments
* feat: tabular numbers across the app, upgrade Inter to 4.1

* update snapshot
…7554)

* fix(e2ee): re-fetch subscription inside the write in toggleRoomE2EE

* code improvements

* removed unused comment
* fix: run handleDelete finds and prepares inside the writer lock

* chore: reuse mockWMDB
* fix: re-fetch message inside the write in getThreadName

* fix: re-fetch message inside the write in getThreadName

* chore: new test cases

* remove unecessary async
…7548)

* fix(db): move decryptPendingMessages prepares inside the writer lock

* code improvements

* chore: new test case encryption

* chore: format code and fix lint issues

---------

Co-authored-by: OtavioStasiak <OtavioStasiak@users.noreply.github.com>
… and touch not working (#7533)

* fix: in-app notification buttons ignoring taps on Android

* fix: Decline and Accept invisible on the incoming call notification
…7599)

The reusable workflows build-android.yml and build-ios.yml declare
pull-requests: write on their upload jobs. GitHub validates these at
call time regardless of job conditionals, so build-develop.yml
(caller) must grant the permission or the workflow fails validation.
build-pr.yml already grants it; this mirrors that.
@coderabbitai

coderabbitai Bot commented Aug 31, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 358 files, which is 58 over the limit of 300.

To get a review, reduce the PR to 300 files or fewer by splitting it into smaller PRs or changing its base branch.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 29431bae-00ee-485a-9ef3-df235fa88016

📥 Commits

Reviewing files that changed from the base of the PR and between 347b61d and a83a801.

⛔ Files ignored due to path filters (62)
  • android/app/src/main/assets/fonts/Inter-Bold.otf is excluded by !**/*.otf
  • android/app/src/main/assets/fonts/Inter-Medium.otf is excluded by !**/*.otf
  • android/app/src/main/assets/fonts/Inter-Regular.otf is excluded by !**/*.otf
  • android/app/src/main/assets/fonts/Inter-SemiBold.otf is excluded by !**/*.otf
  • app/containers/BackgroundContainer/__snapshots__/index.test.tsx.snap is excluded by !**/*.snap
  • app/containers/Button/__snapshots__/Button.test.tsx.snap is excluded by !**/*.snap
  • app/containers/Chip/__snapshots__/Chip.test.tsx.snap is excluded by !**/*.snap
  • app/containers/CollapsibleText/__snapshots__/CollapsibleText.test.tsx.snap is excluded by !**/*.snap
  • app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap is excluded by !**/*.snap
  • app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap is excluded by !**/*.snap
  • app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap is excluded by !**/*.snap
  • app/containers/List/__snapshots__/List.test.tsx.snap is excluded by !**/*.snap
  • app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap is excluded by !**/*.snap
  • app/containers/MediaCallHeader/__snapshots__/MediaCallHeader.test.tsx.snap is excluded by !**/*.snap
  • app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap is excluded by !**/*.snap
  • app/containers/MessageComposer/components/Attachments/__snapshots__/AttachmentActionSheet.test.tsx.snap is excluded by !**/*.snap
  • app/containers/NewMediaCall/__snapshots__/CreateCall.test.tsx.snap is excluded by !**/*.snap
  • app/containers/NewMediaCall/__snapshots__/FilterHeader.test.tsx.snap is excluded by !**/*.snap
  • app/containers/NewMediaCall/__snapshots__/PeerItem.test.tsx.snap is excluded by !**/*.snap
  • app/containers/NewMediaCall/__snapshots__/PeerList.test.tsx.snap is excluded by !**/*.snap
  • app/containers/NewMediaCall/__snapshots__/SelectedPeer.test.tsx.snap is excluded by !**/*.snap
  • app/containers/Passcode/Base/__snapshots__/Base.test.tsx.snap is excluded by !**/*.snap
  • app/containers/ReactionsList/__snapshots__/ReactionsList.test.tsx.snap is excluded by !**/*.snap
  • app/containers/RoomHeader/__snapshots__/RoomHeader.test.tsx.snap is excluded by !**/*.snap
  • app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap is excluded by !**/*.snap
  • app/containers/SearchBox/__snapshots__/SearchBox.test.tsx.snap is excluded by !**/*.snap
  • app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap is excluded by !**/*.snap
  • app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap is excluded by !**/*.snap
  • app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap is excluded by !**/*.snap
  • app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap is excluded by !**/*.snap
  • app/containers/UnreadBadge/__snapshots__/UnreadBadge.test.tsx.snap is excluded by !**/*.snap
  • app/containers/markdown/__snapshots__/Markdown.test.tsx.snap is excluded by !**/*.snap
  • app/containers/message/components/__tests__/__snapshots__/Message.test.tsx.snap is excluded by !**/*.snap
  • app/containers/message/components/stories/__tests__/__snapshots__/leaves.test.tsx.snap is excluded by !**/*.snap
  • app/views/CallView/__snapshots__/index.test.tsx.snap is excluded by !**/*.snap
  • app/views/CallView/components/Dialpad/__snapshots__/Dialpad.test.tsx.snap is excluded by !**/*.snap
  • app/views/CallView/components/__snapshots__/CallActionButton.test.tsx.snap is excluded by !**/*.snap
  • app/views/CallView/components/__snapshots__/CallerInfo.test.tsx.snap is excluded by !**/*.snap
  • app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap is excluded by !**/*.snap
  • app/views/CreateChannelView/RoomSettings/__snapshots__/SwitchItem.test.tsx.snap is excluded by !**/*.snap
  • app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap is excluded by !**/*.snap
  • app/views/NewMessageView/__snapshots__/Item.test.tsx.snap is excluded by !**/*.snap
  • app/views/NewServerView/components/ServersHistoryItem/__snapshots__/ServersHistoryItem.test.tsx.snap is excluded by !**/*.snap
  • app/views/RoomActionsView/components/__snapshots__/CallSection.test.tsx.snap is excluded by !**/*.snap
  • app/views/RoomInfoView/components/__snapshots__/RoomInfoABAC.test.tsx.snap is excluded by !**/*.snap
  • app/views/RoomInfoView/components/__snapshots__/RoomInfoViewAvatar.test.tsx.snap is excluded by !**/*.snap
  • app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap is excluded by !**/*.snap
  • app/views/ThreadMessagesView/__snapshots__/Item.test.tsx.snap is excluded by !**/*.snap
  • app/views/__snapshots__/ChangePasscodeView.test.tsx.snap is excluded by !**/*.snap
  • app/views/__snapshots__/ScreenLockedView.test.tsx.snap is excluded by !**/*.snap
  • ios/Inter.ttf is excluded by !**/*.ttf
  • ios/Podfile.lock is excluded by !**/*.lock
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
  • android/app/src/main/assets/fonts/Inter-Bold.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-Bold_italic.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-Medium.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-Medium_italic.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-Regular.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-Regular_italic.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-SemiBold.ttf is excluded by !**/*.ttf
  • android/app/src/main/assets/fonts/Inter-SemiBold_italic.ttf is excluded by !**/*.ttf
  • app/containers/UIKit/__snapshots__/Button.test.tsx.snap is excluded by !**/*.snap
📒 Files selected for processing (358)
  • .eslintignore
  • .eslintrc.js
  • .github/README.md
  • .github/workflows/build-android.yml
  • .github/workflows/build-develop.yml
  • .github/workflows/build-ios.yml
  • .github/workflows/build-pr.yml
  • .github/workflows/e2e-build-android.yml
  • .github/workflows/e2e-build-ios.yml
  • .github/workflows/eslint.yml
  • .github/workflows/generate-changelog.yml
  • .github/workflows/maestro-android.yml
  • .github/workflows/maestro-ios.yml
  • .github/workflows/organize_translations.yml
  • .github/workflows/prettier.yml
  • .gitignore
  • .maestro/scripts/data-setup.js
  • .maestro/tests/room/jump-to-message.yaml
  • .maestro/tests/room/room-last-message-thread-50-plus.yaml
  • .maestro/tests/room/room.yaml
  • .prettierignore
  • .prettierrc.js
  • .rnstorybook/generateSnapshots.tsx
  • .rnstorybook/main.ts
  • .rnstorybook/preview.tsx
  • CLAUDE.md
  • CONTRIBUTING.md
  • android/app/build.gradle
  • app/AppContainer.tsx
  • app/containers/ActionSheet/ActionSheet.tsx
  • app/containers/ActionSheet/BottomSheetContent.tsx
  • app/containers/ActionSheet/Handle.tsx
  • app/containers/ActionSheet/Item.tsx
  • app/containers/ActionSheet/Provider.tsx
  • app/containers/AltTextLabel.tsx
  • app/containers/AudioPlayer/styles.ts
  • app/containers/CustomIcon/index.tsx
  • app/containers/Header/components/HeaderBackButton.tsx
  • app/containers/Header/components/HeaderButton/HeaderButtonItem.tsx
  • app/containers/Header/components/HeaderContainer/index.tsx
  • app/containers/Header/components/HeaderTitle/index.tsx
  • app/containers/Header/index.tsx
  • app/containers/InAppNotification/IncomingCallNotification/index.tsx
  • app/containers/InAppNotification/IncomingCallNotification/style.tsx
  • app/containers/InAppNotification/index.tsx
  • app/containers/List/ListContainer.tsx
  • app/containers/List/ListHeader.tsx
  • app/containers/List/ListIcon.tsx
  • app/containers/List/ListInfo.tsx
  • app/containers/List/ListItem.tsx
  • app/containers/List/ListSection.tsx
  • app/containers/List/ListSeparator.tsx
  • app/containers/LoginServices/LoginServices.test.tsx
  • app/containers/LoginServices/serviceLogin.ts
  • app/containers/MediaCallHeader/MediaCallHeader.tsx
  • app/containers/MediaCallHeader/components/Collapse.tsx
  • app/containers/MediaCallHeader/components/EndCall.tsx
  • app/containers/MediaCallHeader/components/Subtitle.tsx
  • app/containers/MediaCallHeader/components/Timer.tsx
  • app/containers/MediaCallHeader/components/Title.tsx
  • app/containers/MessageComposer/MessageComposer.test.tsx
  • app/containers/MessageComposer/MessageComposer.tsx
  • app/containers/MessageComposer/MessageComposerContainer.tsx
  • app/containers/MessageComposer/components/Attachments/ComposerAttachments.tsx
  • app/containers/MessageComposer/components/Autocomplete/Autocomplete.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteCannedResponse.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteEmoji.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteItemLoading.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompletePreview.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteSlashCommand.tsx
  • app/containers/MessageComposer/components/Autocomplete/AutocompleteUserRoom.tsx
  • app/containers/MessageComposer/components/Autocomplete/styles.ts
  • app/containers/MessageComposer/components/Buttons/ActionsButton.tsx
  • app/containers/MessageComposer/components/Buttons/BaseButton.tsx
  • app/containers/MessageComposer/components/Buttons/MicOrSendButton.tsx
  • app/containers/MessageComposer/components/CancelEdit.tsx
  • app/containers/MessageComposer/components/EmojiSearchbar.tsx
  • app/containers/MessageComposer/components/MessageComposerContent.tsx
  • app/containers/MessageComposer/components/Quotes/Quote.tsx
  • app/containers/MessageComposer/components/Quotes/Quotes.tsx
  • app/containers/MessageComposer/components/RecordAudio/ReviewButton.tsx
  • app/containers/MessageComposer/components/SendThreadToChannel.tsx
  • app/containers/MessageComposer/components/Toolbar/Container.tsx
  • app/containers/MessageComposer/components/Toolbar/Default.tsx
  • app/containers/MessageComposer/components/Toolbar/EmojiKeyboard.tsx
  • app/containers/MessageComposer/components/Toolbar/Markdown.tsx
  • app/containers/MessageComposer/components/Toolbar/Toolbar.tsx
  • app/containers/MessageComposer/components/Unfocused/Left.tsx
  • app/containers/MessageComposer/components/Unfocused/Right.tsx
  • app/containers/MessageComposer/context.tsx
  • app/containers/MessageComposer/helpers/prepareQuoteMessage.test.ts
  • app/containers/MessageComposer/helpers/prepareQuoteMessage.ts
  • app/containers/MessageComposer/hooks/useAutoSaveDraft.ts
  • app/containers/MessageComposer/hooks/useAutocomplete.ts
  • app/containers/MessageComposer/hooks/useCanUploadFile.ts
  • app/containers/MessageComposer/hooks/useChooseMedia.ts
  • app/containers/MessageComposer/hooks/useEmojiKeyboard.tsx
  • app/containers/MessageComposer/hooks/useIOSBackSwipeHandler.ts
  • app/containers/MessageComposer/hooks/useMessage.ts
  • app/containers/MessageErrorActions.tsx
  • app/containers/NewMediaCall/VoipCallLifecycle.integration.test.tsx
  • app/containers/RoomHeader/RoomHeader.tsx
  • app/containers/RoomItem/RoomItem.tsx
  • app/containers/ServerItem/SwipeableDeleteItem/Actions.tsx
  • app/containers/ServerItem/SwipeableDeleteItem/Touchable.tsx
  • app/containers/ServerItem/Touchable.tsx
  • app/containers/Status/StatusRows.tsx
  • app/containers/TextInput/FormTextInput.tsx
  • app/containers/UIKit/Actions.tsx
  • app/containers/UIKit/MessageBlock.tsx
  • app/containers/UIKit/UiKitMessage.stories.tsx
  • app/containers/UIKit/index.tsx
  • app/containers/markdown/Markdown.stories.tsx
  • app/containers/markdown/components/Heading.tsx
  • app/containers/markdown/components/Inline.tsx
  • app/containers/markdown/components/Timestamp.tsx
  • app/containers/markdown/components/inline/Bold.tsx
  • app/containers/markdown/components/inline/Italic.tsx
  • app/containers/markdown/components/inline/Strike.tsx
  • app/containers/markdown/components/mentions/AtMention.tsx
  • app/containers/markdown/components/mentions/Hashtag.tsx
  • app/containers/markdown/contexts/MarkdownContext.ts
  • app/containers/markdown/index.tsx
  • app/containers/markdown/styles.ts
  • app/containers/message/__tests__/index.test.tsx
  • app/containers/message/components/Attachments/AttachedActions.tsx
  • app/containers/message/components/Attachments/Attachments.tsx
  • app/containers/message/components/Attachments/Audio.tsx
  • app/containers/message/components/Attachments/CollapsibleQuote.tsx
  • app/containers/message/components/Attachments/Image/Button.tsx
  • app/containers/message/components/Attachments/Image/Container.tsx
  • app/containers/message/components/Attachments/Image/Image.tsx
  • app/containers/message/components/Attachments/Image/ImageBadge.tsx
  • app/containers/message/components/Attachments/Quote.tsx
  • app/containers/message/components/Attachments/Reply.tsx
  • app/containers/message/components/Attachments/Video.tsx
  • app/containers/message/components/Blocks.ts
  • app/containers/message/components/Broadcast.tsx
  • app/containers/message/components/CallButton.tsx
  • app/containers/message/components/Content/ContentWrapper.tsx
  • app/containers/message/components/Content/EncryptedContent.tsx
  • app/containers/message/components/Content/IgnoredContent.tsx
  • app/containers/message/components/Content/InfoContent.tsx
  • app/containers/message/components/Content/MarkdownContent.tsx
  • app/containers/message/components/Content/PreviewContent.tsx
  • app/containers/message/components/Content/index.tsx
  • app/containers/message/components/Discussion.tsx
  • app/containers/message/components/Emoji.tsx
  • app/containers/message/components/Layout/BlocksLayout.tsx
  • app/containers/message/components/Layout/ContentLayout.tsx
  • app/containers/message/components/Layout/DiscussionLayout.tsx
  • app/containers/message/components/Layout/JitsiLayout.tsx
  • app/containers/message/components/Layout/PreviewLayout.tsx
  • app/containers/message/components/Layout/StandardLayout.tsx
  • app/containers/message/components/Layout/index.tsx
  • app/containers/message/components/Message/CompactMessage.tsx
  • app/containers/message/components/Message/FullMessage.tsx
  • app/containers/message/components/Message/Message.tsx
  • app/containers/message/components/MessageAccessibleIndex.tsx
  • app/containers/message/components/MessageAvatar.tsx
  • app/containers/message/components/OverlayComponent.tsx
  • app/containers/message/components/Preview.tsx
  • app/containers/message/components/Reactions.tsx
  • app/containers/message/components/RepliedThread.tsx
  • app/containers/message/components/RightIcons/Edited.tsx
  • app/containers/message/components/RightIcons/Encrypted.tsx
  • app/containers/message/components/RightIcons/MessageError.tsx
  • app/containers/message/components/RightIcons/Pinned.tsx
  • app/containers/message/components/RightIcons/ReadReceipt.tsx
  • app/containers/message/components/RightIcons/Translated.tsx
  • app/containers/message/components/RightIcons/index.tsx
  • app/containers/message/components/Thread.tsx
  • app/containers/message/components/Time.tsx
  • app/containers/message/components/Touchable/MessageActionTouchable.tsx
  • app/containers/message/components/Touchable/MessageTouchable.tsx
  • app/containers/message/components/Touchable/Touch.tsx
  • app/containers/message/components/Urls.tsx
  • app/containers/message/components/User.tsx
  • app/containers/message/components/WidthAwareView.tsx
  • app/containers/message/components/__tests__/Blocks.test.tsx
  • app/containers/message/components/__tests__/Content.test.tsx
  • app/containers/message/components/__tests__/Quote.test.tsx
  • app/containers/message/components/__tests__/RepliedThread.test.tsx
  • app/containers/message/components/__tests__/Reply.test.tsx
  • app/containers/message/components/__tests__/Thread.test.tsx
  • app/containers/message/docs/ARCHITECTURE.md
  • app/containers/message/hooks/__tests__/useMessageAccessibilityHint.test.tsx
  • app/containers/message/hooks/__tests__/useMessageAccessibilityLabel.test.tsx
  • app/containers/message/hooks/useFile.tsx
  • app/containers/message/hooks/useMediaAutoDownload.tsx
  • app/containers/message/hooks/useMessageAccessibilityActions.ts
  • app/containers/message/hooks/useMessageAccessibilityHint.ts
  • app/containers/message/index.tsx
  • app/containers/message/stores/MessageActionStore.tsx
  • app/containers/message/stores/MessageRoomStore.tsx
  • app/containers/message/stores/MessageStore.tsx
  • app/containers/message/stores/__tests__/MessageStore.test.tsx
  • app/definitions/ILoggedUser.ts
  • app/definitions/ITeam.ts
  • app/definitions/rest/helpers/index.ts
  • app/definitions/rest/v1/groups.ts
  • app/definitions/utils.ts
  • app/lib/database/interfaces.ts
  • app/lib/database/services/Message.ts
  • app/lib/encryption/encryption.test.ts
  • app/lib/encryption/encryption.ts
  • app/lib/encryption/helpers/toggleRoomE2EE.ts
  • app/lib/hooks/useCustomEmoji.ts
  • app/lib/hooks/useNewMediaCall/useNewMediaCall.test.tsx
  • app/lib/hooks/usePreviewFormatText/usePreviewFormatText.test.ts
  • app/lib/hooks/useShortnameToUnicode/useShortnameToUnicode.test.ts
  • app/lib/hooks/useSubscription.ts
  • app/lib/methods/canOpenRoom.ts
  • app/lib/methods/getPermalinks.ts
  • app/lib/methods/getThreadName.ts
  • app/lib/methods/handleMediaDownload.test.ts
  • app/lib/methods/handleMediaDownload.ts
  • app/lib/methods/helpers/mergeSubscriptionsRooms.ts
  • app/lib/methods/loadMessagesForRoom.test.ts
  • app/lib/methods/roomTypeToApiType.ts
  • app/lib/methods/search.test.ts
  • app/lib/methods/sendMessage.ts
  • app/lib/methods/subscriptions/room.test.ts
  • app/lib/methods/subscriptions/room.ts
  • app/lib/services/restApi.ts
  • app/lib/services/voip/MediaSessionInstance.test.ts
  • app/lib/services/voip/getPeerAutocompleteOptions.ts
  • app/reducers/login.ts
  • app/sagas/__tests__/deepLinking.test.ts
  • app/sagas/deepLinking.js
  • app/stacks/InsideStack.tsx
  • app/stacks/MasterDetailStack/ModalContainer.tsx
  • app/stacks/MasterDetailStack/index.tsx
  • app/stacks/OutsideStack.tsx
  • app/stacks/ShareExtensionStack.tsx
  • app/views/AddChannelTeamView.tsx
  • app/views/AdminPanelView/index.tsx
  • app/views/CallView/components/CallButtons.tsx
  • app/views/CallView/components/Dialpad/DialpadButton.tsx
  • app/views/CallView/index.tsx
  • app/views/CannedResponsesListView/CannedResponseItem.tsx
  • app/views/DirectoryView/hooks/useDirectorySearch.ts
  • app/views/LanguageView/index.tsx
  • app/views/ModalBlockView.tsx
  • app/views/RoomActionsView/components/CallSection.stories.tsx
  • app/views/RoomActionsView/components/CallSection.test.tsx
  • app/views/RoomInfoEditView/index.tsx
  • app/views/RoomInfoView/components/RoomInfoButtons.stories.tsx
  • app/views/RoomInfoView/components/RoomInfoButtons.test.tsx
  • app/views/RoomInfoView/components/RoomInfoButtons.tsx
  • app/views/RoomView/List/hooks/useMessages.test.tsx
  • app/views/RoomView/List/hooks/useScroll.ts
  • app/views/RoomView/List/index.tsx
  • app/views/RoomView/RoomProviders.tsx
  • app/views/RoomView/components/HeaderCallButton.tsx
  • app/views/RoomView/index.test.tsx
  • app/views/RoomView/index.tsx
  • app/views/RoomsListView/components/Container.tsx
  • app/views/RoomsListView/components/Header.tsx
  • app/views/RoomsListView/components/ListHeader.tsx
  • app/views/RoomsListView/components/SectionHeader.tsx
  • app/views/RoomsListView/components/ServersList.tsx
  • app/views/RoomsListView/components/TabletHeader.tsx
  • app/views/RoomsListView/contexts/RoomsSearchProvider.tsx
  • app/views/RoomsListView/hooks/useGetItemLayout.ts
  • app/views/RoomsListView/hooks/useHeader.tsx
  • app/views/RoomsListView/hooks/useRefresh.ts
  • app/views/RoomsListView/hooks/useSearch.ts
  • app/views/RoomsListView/hooks/useSubscriptions.ts
  • app/views/RoomsListView/index.tsx
  • app/views/SelectServerView.tsx
  • app/views/SettingsView/index.tsx
  • app/views/SidebarView/components/Admin.tsx
  • app/views/SidebarView/components/CustomStatus.tsx
  • app/views/SidebarView/components/Profile.tsx
  • app/views/SidebarView/components/Stacks.tsx
  • app/views/SidebarView/components/SupportedVersionsWarnItem.tsx
  • app/views/SidebarView/index.tsx
  • app/views/StatusView/ClearAfterPicker/ClearAfterSheetContent.tsx
  • app/views/StatusView/ClearAfterPicker/DatePickerSheetContent.tsx
  • app/views/StatusView/ClearAfterPicker/index.tsx
  • app/views/StatusView/FooterComponent.tsx
  • app/views/StatusView/index.tsx
  • app/views/Styles.ts
  • babel.config.js
  • ios/RocketChat.xcodeproj/project.pbxproj
  • ios/RocketChatRN/Info.plist
  • ios/ShareRocketChatRN/Info.plist
  • jest.config.js
  • package.json
  • patches/@rocket.chat+message-parser+0.31.31.patch
  • patches/react-native-notifier+1.6.1.patch
  • tsconfig.json
  • .github/scripts/__tests__/changed-runner.test.js
  • .github/scripts/__tests__/coverage.test.js
  • .github/scripts/__tests__/fixtures/flows/no-tag.yaml
  • .github/scripts/__tests__/fixtures/scenario-catalog.json
  • .github/scripts/__tests__/select-impacted-shards.test.js
  • .github/scripts/__tests__/validate-test-map.test.js
  • .github/scripts/e2e-changed.sh
  • .github/scripts/select-impacted-shards.sh
  • .github/scripts/testlib/fixtures/maps/clean-pass/.maestro/tests/foo.yaml
  • .github/scripts/testlib/fixtures/maps/clean-pass/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/clean-pass/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/clean-pass/app/sagas/foo.js
  • .github/scripts/testlib/fixtures/maps/clean-pass/app/stacks/bar.tsx
  • .github/scripts/testlib/fixtures/maps/clean-pass/app/views/Foo/placeholder.txt
  • .github/scripts/testlib/fixtures/maps/dangling-glob/.maestro/tests/.gitkeep
  • .github/scripts/testlib/fixtures/maps/dangling-glob/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/dangling-glob/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/dangling-glob/app/views/.gitkeep
  • .github/scripts/testlib/fixtures/maps/decoupled-gap/.maestro/tests/.gitkeep
  • .github/scripts/testlib/fixtures/maps/decoupled-gap/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/decoupled-gap/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/decoupled-gap/app/sagas/foo.js
  • .github/scripts/testlib/fixtures/maps/decoupled-gap/app/views/.gitkeep
  • .github/scripts/testlib/fixtures/maps/orphan-flow/.maestro/tests/orphan.yaml
  • .github/scripts/testlib/fixtures/maps/orphan-flow/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/orphan-flow/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/orphan-flow/app/views/.gitkeep
  • .github/scripts/testlib/fixtures/maps/prefix-collision/.maestro/tests/some.yaml
  • .github/scripts/testlib/fixtures/maps/prefix-collision/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/prefix-collision/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/prefix-collision/app/views/SomeView/placeholder.txt
  • .github/scripts/testlib/fixtures/maps/prefix-collision/app/views/SomeViewExtra/placeholder.txt
  • .github/scripts/testlib/fixtures/maps/stale-global/.maestro/tests/.gitkeep
  • .github/scripts/testlib/fixtures/maps/stale-global/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/stale-global/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/stale-global/app/views/.gitkeep
  • .github/scripts/testlib/fixtures/maps/stale-global/patches/some.patch
  • .github/scripts/testlib/fixtures/maps/uncovered-view/.maestro/tests/.gitkeep
  • .github/scripts/testlib/fixtures/maps/uncovered-view/.sniffler/config.json
  • .github/scripts/testlib/fixtures/maps/uncovered-view/.sniffler/test-map.json
  • .github/scripts/testlib/fixtures/maps/uncovered-view/app/views/SomeView/placeholder.txt
  • .github/scripts/testlib/runScript.js
  • .github/scripts/validate-test-map.js
  • .maestro/tests/assorted/channel-deeplink.yaml
  • .maestro/tests/room/quote-thread-message.yaml
  • .maestro/tests/uikit/button-kit.yaml
  • .oxfmtrc.json
  • .oxlintrc.json
  • .sniffler/config.json
  • .sniffler/test-map.json
  • app/containers/LoginServices/__tests__/serviceLogin.test.ts
  • app/containers/MessageErrorActions.test.tsx
  • app/containers/UIKit/Button.stories.tsx
  • app/containers/UIKit/Button.test.tsx
  • app/containers/UIKit/Button.tsx
  • app/lib/database/__tests__/mockedWatermelonDB.tsx
  • app/lib/database/services/Message.test.ts
  • app/lib/encryption/helpers/toggleRoomE2EE.test.ts
  • app/lib/methods/canOpenRoom.test.ts
  • app/lib/methods/getThreadName.test.ts
  • app/lib/methods/sendMessage.test.ts
  • patches/@hookform+resolvers+2.9.11.patch
  • patches/@react-navigation+core+7.21.1.patch
  • patches/js-base64+3.6.1.patch

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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.

@julio-rocketchat

Copy link
Copy Markdown
Member

/layne exception-approve all reason: the script is not malicious nor built dynamically. Command execution is fine here

@rc-layne

rc-layne Bot commented Aug 31, 2026

Copy link
Copy Markdown

✅ Bulk exception request accepted for all current blocking findings by @julio-rocketchat: "the script is not malicious nor built dynamically. Command execution is fine here". Re-running scan...

@diegolmello
diegolmello merged commit 0332c78 into master Aug 31, 2026
19 of 22 checks passed
@diegolmello
diegolmello deleted the release/4.76.0 branch August 31, 2026 16:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants