github RocketChat/Rocket.Chat 6.0.0-rc.0

latest releases: 6.13.0-rc.0, 6.7.9, 6.8.7...
pre-release19 months ago

2023-02-18 · 18 ️️️⚠️ · 12 🎉 · 13 🚀 · 54 🐛 · 135 🔍 · 54 👩‍💻👨‍💻

⚠️ BREAKING CHANGES

  • ENTERPRISE: Limit presence statuses to 200 concurrent users when running monolith to keep performance (#27854)

  • FIX: VideoConference Ringer working intermittently on microservices (#27703)

  • IMPROVE: SMTP warning for invitations (#27713)

    • TC-347 - SMTP warning for invitations flow

    • Create rest endpoint for sendInvitationEmail

    • Use endpoint in-place of removed Meteor method

  • NEW: Custom roles upsell modal (#27707)

    image

    Also changed the edit role button:
    image

  • Drop support for MongoDB 4.2 and deprecate MongoDB 4.4 (#27891)

    As per MongoDB Lifecycle Schedules (mongodb.com/support-policy/lifecycles) we're removing official support to MongoDB version 4.2 that is close to reach end of life (April 2023).

    We recommend upgrading to MongoDB 5.0+, though 4.4 is still a supported version.

    Here are official docs on how to upgrade to some of the supported versions:

    mongodb.com/docs/v4.4/release-notes/4.4-upgrade-replica-set
    mongodb.com/docs/manual/release-notes/5.0-upgrade-replica-set
    mongodb.com/docs/manual/release-notes/6.0-upgrade-replica-set

  • Freeze Custom Roles (#27481)

    This PR moves role creation and update to enterprise folder

    --

    • Removed method authorization:saveRole

    • Moved /v1/roles.create/ and /v1/roles.update to enterprise edition

    • Changed message for delete a custom role in community edition

  • Limit underscore usage and remove underscore.string (even from integration script sandboxes) (#28037)

    Underscore.js is quite outdated and we're not using it in a way that take advantage of modularization, bloating the client bundle. This PR aims to limit its usage across the application.

    break: if you are used to have scripts, and they are using underscore, please pay attention probably you need to update them

  • Marketplace standalone page and app request flow (#27389)

    Remove marketplace from the admin menu (on both the file system and the UI), change it into a standalone page, expose its use to end-users, and create an app request flow that allows end-users to ask for app installations in their workspaces directly through Rocket Chats UI.

    Demo loom: https://www.loom.com/share/643ba3432225418e96c10041f386ff48

    Jira tasks and ADRs

    All tasks, descriptions, and designs of work done in this PR can be found on the tasks below, which also double down as simplified ADRs.

    MKP-147 - Remove marketplace from the admin menu and put it on its own page

    MKP-68 - Create an enterprise option on the new marketplace sidebar

    MKP-150 - Implement the SideNav of the new marketplace page

    MKP-151 - Brainstorm and implement the new marketplace routes

    MKP-179 - Retrieve number of requested apps and make it available for components

    MKP-181 - Implement requested option on marketplace sidebar

    MKP-184 - Create requested apps page

    MKP-185 - Implement requested apps list layout and logic

    MKP-180 - Implement requested apps option to home screen kebab menu

    MKP-188 - Implement the requested apps tab on app details page

    MKP-187 - Implement visualized requests system on apps list tags and app requests tab

    MKP-164 - ALL view the app's technical documentation page

    MKP-197 - Rocket.cat notification for admins when an app is requested

    MKP-224 - After i click submit request in the modal the modal is not closing

  • Move Multiple Department Creation to EE & [NEW] Department Archive (#27753)

    [BREAK] Move Multiple Department Creation to EE: Limit max department creation to 1 in Community edition, existing departments will still function as before.

    [NEW] 📁 Department archival: Adds the ability to archive departments, archived departments are disabled and cannot be edited, but will still show in historical data (current chats, directory, chat info, etc...). This offers an alternative to department deletion.

  • Move read-receipts to EE and threads check marks improvements (#27074)

    • Improvement: add read receipts for messages in threads only when the thread is open;

    • Move read-receipts feature to EE (under the message-read-receipt module). The chat.getMessageReadReceipts endpoint and getReadReceipts Meteor method are now EE only.

  • Remove Chatpal (#28012)

  • Remove legacy FB Messenger integration (#27760)

    Legacy FB messenger integration has been removed in favour of the new and enhanced FB App integration. Click here for more info

  • Remove less theming (#27647)

  • Remove message view mode from User Preferences (#27867)

    Since the view mode setting in User preferences -> Messages -> View Mode does not work with the new messages template it will be removed

    It was removed from every file and it was created a migration to remove from user obj in DB

  • Removed deprecated settings for Legacy Messages, Marked, Snippet Messages, Autolinker and IssueLinks (#27902)

    Removed Settings:

    • Markdown_Parser

    • Markdown_Headers

    • Markdown_SupportSchemesForLink

    • Markdown_Marked_GFM

    • Markdown_Marked_Tables

    • Markdown_Marked_Breaks

    • Markdown_Marked_Pedantic

    • Markdown_Marked_SmartLists

    • Markdown_Marked_Smartypants

    • Message_AllowSnippeting

    • Message_Attachments_GroupAttach

    • Message_ShowEditedStatus

    • Message_ShowFormattingTips

    • Accounts_Default_User_Preferences_useLegacyMessageTemplate

    • AutoLinker

    • AutoLinker_StripPrefix

    • AutoLinker_Urls_Scheme

    • AutoLinker_Urls_www

    • AutoLinker_Urls_TLD

    • AutoLinker_UrlsRegExp

    • AutoLinker_Email

    • AutoLinker_Phone

    • IssueLinks_Enabled

    • IssueLinks_Template

    • API_EmbedDisabledFor

  • Unify monolith and microservices intercommunication on same technology and limit to Enterprise only (#27969)

    This change removes the old DDP Matrix communication by Moleculer based breaker over TCP, simplifying code maintenance, allowing better reliability, performance and monitoring.

    It requires a license to enable communication among servers as the rest of the Moleculer implementation.

    Community Edition will loose ephemeral events as Typing indication and others when running multiple instances.

  • Update Meteor to 2.9.1 and NodeJS to 14.21.2 (#27639)

  • Upgrade to version 6.0 can be done only from version 5.x (#28098)

🎉 New features

  • EE: Omnichannel Priorities & SLAs (#27083 by @henit-chobisa & @lingohub[bot])

  • EE: PDF Chat transcript for Omnichannel conversations (#27572)

  • Attachment Files Redesign (#27470)

    • Replace File attachments to use MessageGenericPreview

    • Move File attachments to the /MessageList folder

    • Refactor Video, Image, and Audio Attachments to use MessageGenericPreview

    • New component MessageCollapsible

    • Refactored the OEmbedCollpsible component to use MessageCollapsible

    • Refactored the AttachmentSize component to include different style

    • Added descriptionMd property to the MessageAttachment object to use the new parser in descriptions

    • Added size and format to attachment object at sendFileMessage.ts

    • Changed maxWidth and maxHeight of AttachmentContext to be the same as the OEmbed sizes

    OLD:
    image

    NEW:
    image

  • Bridge to get all users crated by app and also delete them (#27877)

    We're working on MS Teams bridge, to make it usable we have created a new method for the apps engine to create new users and we'll also need to delete all when we uninstall the app. Therefore, we created this bridge to cover the action of deleting users on the app side.

  • Emojis rendering properly on quote message previews (#27972)

    image

  • Homepage new block (#27540)

    • Create a new admin homepage block that includes:
      • Button to go to /admin/Layout setting
      • Button to show and hide the custom content to the user (a badge on top indicates if the custom content is hidden or not)
      • Button to show and hide the other blocks (add users, create channel) on the homepage (EE only button)

    New homepage block admin view:
    Screen Shot 2023-02-10 at 14 28 40

    Normal user view:
    Screen Shot 2023-02-10 at 17 12 39

    • Changes on the /admin/Layout settings:
      • text and homepage settings small changes
      • add Layout_Home_Custom_Block_Visible setting to show or hide custom content

    Admin Homepage Content settings page:

    Screen Shot 2023-02-10 at 15 29 18
  • Matrix federation events coverage expansion + bug fixes (#27763)

    • Disables not supported features in federated channels (#27204)

    • Add support for the whole Matrix Markdown spec (#27725)

    • Allow federated rooms with the same name per different servers when they have a contact between them (#27559)

    • Matrix Federation send message when multiple users are involved was not working (#27327)

    • Allow the room owner to set roles on federated rooms, following a specific and different approach as normal rooms (available on docs) (#27633)

    • E2E Tests (PS: they don't run on CI) (#27578 #27282 #27115)

    • Disables admin actions disallowed for federated users/rooms (#27251)

    FED-81

  • New Message Composer (#27566)

  • Permission to bypass message editing and removing limits (#27644)

    This PR adds a new permission called bypass-time-limit-edit-and-delete, to bypass the time limit when editing or deleting a message, the purpose of this PR is to remove the limitation for bots that cannot change the message after the specified time.

  • Rocket.cat message for users when an app previously requested is installed (#27672)

  • Upload service (#27543)

  • Warning Popup reinforcing Zapier deprecation on Integrations Admin settings (#27744)

    Warning being displayed on Zapier settings, above Zapier itself:

    warning

🚀 Improvements

  • Audit (#27994)

  • Authorize search of custom fields on users.list (#27423)

    This PR allows users to filter and search for custom fields on the users.list endpoint

  • Emoji picker for large amount of custom emojis (#27745)

  • Increase read receipt size (#27665)

    increase from 11px to 1rem (16px)
    image

  • Livechat Persian translation (#27825 by @pouyadarabi)

  • Play selected notification sounds as preview while changing sound settings (#24205 by @try-catch-stack)

  • Registration Experience (#27820)

    If you didn't register when you initially setup your server. Its now easier to register.

    Disconnecting and reconnecting your workspace from the cloud is now also easier

  • Require acceptance when setting new E2E Encryption key for another user (#27556)

    Change the end to end encryption flow to require an acceptance from the user when receiving a new key.

    1. Changes API e2e.updateGroupKey to set the new key to an auxiliary property named E2ESuggestedKey

    2. Adds new API e2e.acceptSuggestedGroupKey to be called to accept the suggested key and save it to the final property E2EKey

    3. Adds new API e2e.rejectSuggestedGroupKey to be called to reject the suggested key and clear the E2ESuggestedKey

  • SAML and OAuth role sync to support id and name (#27405)

    This PR allows the sync of roles by either name or id.

  • Save toPhone when receiving SMSs (#27656)

  • Setup Wizard Flow for airgapped environment (#28018)

    image
    image

  • Spanish home translation (#27898 by @nYCSTs)

    Update translation of home page to Spanish. The page had some untranslated texts.
    image

  • User data download overhaul (#26358)

    It migrates modules to TypeScript, as well adapts the code to the current version of Node.

🐛 Bug fixes

  • "Jump to first unread" banner does not always appear when the first unread message is outside of the visible screen (#27941)

  • ENTERPRISE: DDP streamer sending data to destroyed streams (#27929)

  • *.files endpoints returning hidden files (#27617)

  • Access to localStorage in Livechat (#27627 by @jschirrmacher)

    This fixes access to localStorage in LiveChat, if the user has third party coockies disabled.

  • Add the possibility of danger style prop to close button on UiKit contextual-bar component (#27533)

    image
  • Announcement banner link opening in the same page (#27554)

    Channel Announcements that contain links are opening on the same page instead of a new page/tab causing render issues, especially on the desktop client.

    The fix was simple to add a hook for the dompurify library to add the target and rel attributes to keep the _blank behavior.

    Also, it introduced some parsers settings to inlineWithoutBreaks variant to avoid breaking messages at Announcements and other places that uses this variant.

  • Anonymous user buttons (#27551)

    When the server accepts an anonymous user to join and chat without login, two buttons appears: one for Login and the other to send messages without login.

    The component was rewritten to use the fuselage Design System and native hooks to perform actions.

    image

  • App page showing version undefined for apps not in marketplace (#27766)

    The app page is not showing the correct version of apps that are installed in the workspace but not in the Marketplace.

    This PR changes the behavior so that the page shows the version that is installed in the workspace; otherwise, it shows the version in the marketplace

  • Auto Translate not working on new message template (#27317)

    • Fix auto translate not working on new message template;

    • Fix a bug that the auto-translate icon was showing for users who didn't have enabled.

    • Show translated quote messages;

    • Remove translation provider for end users.

    • Translate the ThreadMessagePreview component

  • Black screen when try to open a chat with a non-existent department (#27609)

  • Broken settings check for updates (#27779)

  • Comunity users accessing exclusive ee endpoints in omnichannel section (#27876)

  • Custom fields does not appear on the registration form (#28031)

  • Custom languages not being applied to i18next (#27557)

  • Disable video call on read-only rooms for not allowed users (#27789)

    Jira Issue [VC-58]

  • Discussion visibility when inside a private team. (#27601)

    Create discussions as private when the public channel is inside a private team.

  • E2EE initial banner not showing (#27574)

  • Embedded layout opening sidebar (#27892)

    In the embedded layout view, certain actions were opening the sidebar due to the missing query param mandatory to the embedded layout view (?layout=embedded)

    In addition to this issue, the user was able to navigate to different pages in the embedded layout causing them to get stuck on some other pages other than the Room page. Because of the reported issue, I removed some actions that redirect the user to other pages such as: "Reply in Direct Message"

  • Emoji rendering on reactions (#27863)

  • Empty DMs go to sidebar's top after updating user preferences (#27912)

    • Do not use _updatedAt as lm field when merging info from subscriptions and rooms (since this field is updated along with the user preferences).
  • Fix emoji appearance on sidebar (#27580)

    The emojis appear in plain text format in the side-bar (As seen in the below issues)
    By this PR, it should be fixed

    This is how it looks now (As shown on the sidebar, it's appearing as an emoji not plaintext)
    image

  • Fix Login with Show default form disabled (#27475)

  • Fix typo when create discussion modal opens (#24982)

    Fixed typo when discussion modal opens. Now it says - Help keep an overview of what's going on!

    Screenshot 2022-03-29 at 6 59 45 PM

  • Google Cloud Storage storage type (#26851 by @carlosrodrigues94)

    Google Cloud Storage now requires a "project ID" to be filled.

    Useful links:

    https://googleapis.dev/nodejs/storage/latest/global.html#StorageOptions
    https://support.google.com/googleapi/answer/7014113?hl=en

  • Ignored messages reactivity (#27279)

  • Invalid regex on search fields crashes UI (#27942)

  • IPostMessageReacted return field named isReacted instead isRemoved (#27561 by @Nabhag8848)

  • Marketplace app status initially disabled (#27330)

    Jira task: MKP-20

    Currently, the only apps engine statuses considered enabled in the UI are the auto-enabled and manually-enabled statuses, this causes a UX problem in which the app will be considered disabled for the first few seconds of its lifecycle, upon the first installation in a workspace, since it will have the apps engine status of initialized. This PR adds the initialized status to the appEnabledStatuses list and solves this problem.
    Demo gif:
    disabled_status_issue_solution\

  • Message Actions menu does not close upon choosing an action (#27328)

  • Message for VideoConf on SidebarItemExtended (#27626)

    Jitsi Issue: [VC-30]

    before

    Screen Shot 2022-12-23 at 11 38 24

    after

    Screen Shot 2022-12-23 at 11 36 09

  • Message-parser link issues (#27947)

    The changes were made in the fuselage repository. This PR just update the message-parser package version
    Check the changes in this PR:
    RocketChat/fuselage#962

  • Missing placeholders from encrypted channel preview messages now with expected behavior (#27699)

    Referent to [TC-259]

    Clipboard screenshot
    Note that now the file uses isE2EEMessage() function and the useTranslation internal hook.

  • Move Omni startup to be EE wrapped (#28020)

  • New users aren't mapped to rooms with OAuth groups/channels map (#27000 by @carlosrodrigues94)

    This change deals with the problem with the new users coming from key cloak, this users were not being mapped to the correct channels on RC.

  • Not all messages in chat conversations are available when forwarding between agents or departments. (#27816)

  • Omnichannel call provider option (#27466)

    Jira Issue: [VC-38]

  • OmnichannelRoomIconProvider order breaking VideoConfPopup (#27740)

    Jira Issue [VC-39]

  • Option to Join Read-Only Channels (#27488 by @henit-chobisa)

  • Pagination not working on current chats (#27432)

  • Reduce re-subscription on notify-room/user-activity stream event (#27911)

    Whenever something changed the room subscription, it would trigger a re-subscription to notify-room/user-activity.

  • Register Workspace UI fixes and fix doc link (#28021)

  • Registration and Login placeholders not being used (#27558)

  • Remove invalid settings at startup (#27653)

  • Remove unnecessary permissions check on app permissions review modal (#27329)

    Jira task: MKP-166

    Removed an unnecessary check that verified if the app permissions list was an array and threw an error if it wasn't. This check has become unnecessary ever since the app permission review modal changed to show a default list of permissions in case the app happened to not have one and that's what caused those "random" undefined toasts that showed every once in a while.
    Demo gif:
    undefined_toast

  • RoomLeader status not working (#27576)

    It also fixes some visual issues

    before

    image

    after

    image

  • Save button does not stay disabled in Notification Preferences for no change on mute group option (#27513 by @xareyli)

    Added default value for "Mute @ALL and @here mentions" option

  • Showing thumbnails on files list (#23301 by @carlosrodrigues94)

  • Showing Workspace Section For User Having LiveChat Manager Permission (#27188)

  • Team mention highlight EE (#27493)

    The team Mentioned highlighted with the char @ was not working in Enterprise Edition using the new message parser.

    I added validation to the filter by type: 'team' and fixed the title to include the team name on mouse hover.

    Previous:
    image

    NOW:
    image

  • Toast notification ignoring 403 errors (#27624)

  • Tokens usage (#27541)

  • Unintended "Reply on thread" button showing on thread's first message (#27716)

    Referent to TC-128

    Before:

    image

    After:

    image

  • Unread Message count not displayed for new messages in Omni-Rooms (#27539)

  • Video Conf Message Blocks not always updating when running on micro services (#27764)

🔍 Minor changes
  • Bump version to 6.0.0-develop (#27598)

  • Chore: Threads as React components (#27524)

  • Chore: desktop icon instead of computer icon (#27959)

  • Chore: add e2e test coverage for Video Conference (#27075 by @lingohub[bot])

    Jira Issue: [VC-49]

  • Chore: Add E2E tests to Triggers view (#27413)

  • Chore: Add Eslint rules to tests (#28074)

  • Chore: Add hint (description) to CodeSettingInput after label (#27843)

    • Added hint (description) to CodeSettingInput after label

    • Created a storybook story for that scenario

    • add a checker to not add hint to<MemoizedSetting /> if the inputType is code

    Before:
    image

    After:
    image

  • Chore: Add quote message option back on live chat rooms (#28038)

  • Chore: Add spacing adjustments Home page (#27367)

    • Spacings adjustments in homepage
  • Chore: Add surface-light background to AppRow (#27765)

    In light of the recent changes to the fuselage color system, the AppRow went from having a default background color of white to not having a color. Because of this, I've added the bg='surface-light' prop to the Wrapper box of the component.
    Before:
    image

    After:
    image

  • Chore: Added Enterprise Options to Login customization (#27855)

  • Chore: Adjust ProgressBar usage (#27832)

  • Chore: AppsTable UI Tweaks (#27629)

    before

    Kapture 2022-12-23 at 16 00 51

    after

    Kapture 2022-12-23 at 15 59 21

  • Chore: Aria busy indicators (#27978)

  • Chore: Bump message-parser version and fix typerrors (#27643)

    Bumping message-parser version and fix gazzodown package errors.

  • Chore: Change bundle tags color and refactor app details page header styles (#27293)

    Increased the right side margin of the app avatar, removed the 'by' substring from the app author metadata, and changed the font scale and colors for the metadata section and short description.
    Demo image:
    image

  • Chore: change colors to dark theme on Marketplace (#27532)

    Fixed some bugs on the new dark theme in the Marketplace page. The new version looks like this now:

    new-version

  • Chore: Change Omnichannel aggregations to run on a secondary (#25346)

  • Chore: CI improvements (#28076)

  • Chore: Composer missing Slash Command preview (#27652)

  • Chore: Composer Quote Component (#27604)

    before

    Screen Shot 2022-12-26 at 11 01 17

    after

    image

  • Chore: Composer Styling (#27620)

  • Chore: Composer wrapper around the textarea (#27658)

  • Chore: Convert UserTable on Directory to TS (#27534 by @nYCSTs)

    Rewrote the UserTable component to TS.

  • Chore: Create service template (#27519)

  • Chore: Custom emoji empty state (#27641)

    It also replace useEndpointData in favor of useQuery

    before

    Screen Shot 2022-12-26 at 15 43 59

    after

    Screen Shot 2022-12-26 at 15 43 08

  • Chore: Custom Sounds Empty State (#27632)

    It also replace useEndpointData in favor of useQuery

    before

    Screen Shot 2022-12-23 at 17 32 35

    after

    Screen Shot 2022-12-23 at 17 31 50

  • Chore: Deprecate unused omnichannel API (#27538)

  • Chore: Do not rely on external service on tests (#27874)

  • Chore: e2e changes tests (#27987)

  • Chore: E2E tests small corrections (#28066)

  • Chore: EmojiPicker Wrapper Styles (#28049)

  • Chore: ExportMessages missing icon (#27628)

  • Chore: FileItem hover color (#27600)

  • Chore: Fix babel config related to TypeScript declare usage (#28029)

  • Chore: Fix e2e EE tests not working reliably (#28061)

  • Chore: fix e2e Omnichannel tests (#28097)

  • Chore: fix EmailInbox intermittent e2e tests (#27573)

  • Chore: Fix homepage grid items style (#27527)

    • Change homepage card border-radius from 4px to 8px
  • Chore: Improve ts-node startup time with swc (#27686)

  • Chore: improve global setup e2e (#28087)

  • Chore: Improve service's licence check (#27872)

  • Chore: improve some e2e selectors (#27936)

  • Chore: Invites Empty State (#27631)

    It also replace useEndpointData in favor of useQuery

    before

    Screen Shot 2022-12-23 at 16 49 45

    after

    Screen Shot 2022-12-23 at 16 48 27

  • Chore: KeyboardShortCut color (#27599)

  • Chore: Livechat convert emoji to ts (#27425)

  • Chore: Message search changes (#28001)

  • Chore: Migrate cached collections to TypeScript (#27909)

  • Chore: move PaletteStyleTag (#28086)

  • Chore: Move service definitions to core services package (#27546)

  • Chore: Move service shutdown logic to each service (#27690)

  • Chore: Notify Marketplace on App Install (#27925)

    Notifies Rocket.Chat's Marketplace of an app install action. This correlates with the app request flow.

  • Chore: OAuth authorization pages reconditioned (#28085)

  • Chore: Omnichannel Sidebar icons alignment (#27501)

  • Chore: QoL improvements to Omnichannel E2E tests (#28075)

  • Chore: Reduce Less usage in theming (#27689)

    This PR is a preparation for a coming breaking change on layout colors.

  • Chore: Refactor AudioMessageRecorder (#28019)

    [DSA-11]

    Kapture 2023-02-13 at 17 24 54

  • Chore: Refactor VideoMessageRecorder (#27850)

    Jira Issue: [DSA-2]

    before

    after

  • Chore: Refactor Composer Collapsed Formatters and Actions (#28039)

    [DSA-19]

    Kapture 2023-02-14 at 14 05 19

  • Chore: Refactor Composer Dropdown (#27931)

    Screen Shot 2023-02-01 at 17 59 31

  • Chore: Refactor Composer Popup (#28013)

  • Chore: Refactor CreateChannelModal (#27469)

    Jira Issue: [UFR-11]

    • Replace useForm

    • Improve UI validations on Modal

    • Add ToastBar message on creating a channel

    • Fixes topic field not being added properly

  • Chore: Refactor Directory Tables (#27646)

    It also replaces useEndpointData in favor of useQuery

  • Chore: Refactor e2e selectors to use roles (#27582)

  • Chore: Refactor message subcomponents (#27630)

  • Chore: Refactor other kinds of message - Phase 1 (#27712)

    It pays some technical debts on APIs consumed by message-related components.

  • Chore: Refactor other kinds of message - Phase 2 (#27927)

    Migrate "Starred Messages", "Pinned Messages", and "Mentions" from Blaze templates to React components.

  • Chore: Refactor useThemeMode in favor of userPreferences (#28063)

  • Chore: Remove body template (#28064)

  • Chore: Remove medium prop from ButtonGroup (#27784)

  • Chore: Remove method meteor call on message action (#26213)

  • Chore: Remove old tooltip usage (#26882)

  • Chore: Remove Sidebar from Blaze (#27571)

  • Chore: Remove unused Blaze templates after message rewrite (#28025)

  • Chore: Remove unused templates and bump fuselage (#27606)

  • Chore: Replace borders to default (#27667)

  • Chore: Restrict ChatMessages API - Phase 2 (#27457)

    It split ChatMessages service class into a collection of smaller objects, in a composition pattern fashion. Additionally, it loosens its dependency on the DOM tree and assumes almost all methods are asynchronous.

  • Chore: Restrict legacy message events (#27691)

    This PR aims to fix conflicts between the legacy messages and the new ones, specially click events on threads.

  • Chore: RoomAutocomplete Debounce Query (#28083)

  • Chore: Service cap (#28022)

  • Chore: Set missing colors (#27817)

  • Chore: Settings regenerator on migration (#27661)

  • Chore: Show different labels based on the call originator on direct calls (#27729)

    Jira Issue: [VC-26]

  • Chore: Sidebar theme (#27426)

  • Chore: SlashCommands Preview (#28065)

  • Chore: Sync develop with master (#28043 by @carlosrodrigues94 & @ostjen)

  • Chore: test turbo cache action (#28082)

  • Chore: Token refactor (#27655)

  • Chore: TwoFactorPass Modals icon misalignment (#27591)

    before

    Screen Shot 2022-12-20 at 21 05 24

    after

    Screen Shot 2022-12-20 at 21 04 29
  • Chore: Update color tokens (#27704)

    Jira issues:
    DSA-25
    DSA-26
    DSA-27
    DSA-28
    DSA-30

    • Fix ScreenshotCarousel tokens

    • Replace ScreenshotCarousel Button with IconButton secondary

    • Fix UsagePieGraph tokens

    • Fix Page.tsx tokens

    • Fix VoipFooter tokens

    • Fix DeviceIcon token

    • Fix SidebarFooterWatermark token

    • Fix PaletteDark button hover bg color

    • Fix MessageComposerActionsDivider token

    • Fix room Announcement colors

    • Apply surface-room

    • Replace all deprecated Box color tokens usage

    • Replace all deprecated Box bg tokens usage

  • Chore: Update ESlint rules of client code (#27427)

  • Chore: Update Some Composer Icons (#27862)

    Jira Issue [DSA-20]

    before

    Screen Shot 2023-01-26 at 18 09 19

    after

    Screen Shot 2023-01-26 at 18 08 28

  • Chore: Update tsconfig base target to es2020 (#27552)

    The base files are not split into two other files, a "client" and a "server" file. Both extends the new base one. Packages should extend either "client" or "server" ones:

    graph TD;
      base[tsconfig.base.json]-->client[tsconfig.base.client.json];
      base-->server[tsconfig.base.server.json];
      server-->s1["@rocket.chat/models"];
      server-->s2["@rocket.chat/ddp-streamer"];
      server-->s3[...];
      client-->c1["@rocket.chat/ui-theming"];
      client-->c2["@rocket.chat/fuselage-ui-kit"];
      client-->c3[...];
    

    Important changes:

    • The client config target have been bumped to es2015 (it was es5 before)

    • The server config target have been bumped to es2020

    • The default value for jsx is react-jsx

    • Raised "noUnusedLocals": true to a base config, so had to remove a bunch of imports to React that were not being used

  • Chore: Upgrade mongodb typings (#27424)

    It upgrades the mongodb package to overcome the circular reference issue of IMessage.

  • Chore: Upgrade EE license for CI (#27682)

  • Chore: use useQuery in place of deprecated useEndpointData (#27673 by @Dnouv)

    Chore done:
    useEndpointData -> useEndpoint for:

    • /apps/meteor/client/views/admin/
      • apps
      • customEmoji
      • customSounds
      • customUserStatus
      • integrations
      • invites
      • oauthApps
      • permissions
      • rooms
      • users
  • Chore: Wait message to not be Busy (#28000)

  • Chore(deps): Bump thehanimo/pr-title-checker from 1.3.4 to 1.3.6 (#27884 by @dependabot[bot])

  • i18n: Language update from LingoHub 🤖 on 2022-12-05Z (#27450)

  • i18n: Language update from LingoHub 🤖 on 2022-12-22Z (#27618)

  • i18n: Language update from LingoHub 🤖 on 2023-01-09Z (#27705)

  • i18n: Language update from LingoHub 🤖 on 2023-01-23Z (#27814)

  • i18n: Update Hungarian translation (#27575 by @urbalazs)

  • Merge master into develop & Set version to 5.5.0-develop (#27452)

  • Regression: 0 appearing on sidebar on specific occasions (#28056)

    Fixed faulty logic

  • Regression: Add button-icon-disabled-color to the palette (#27522)

  • Regression: Add support for 2FA errors to Meteor.callAsync (#27767)

  • Regression: Add tshow to composer params (#27602)

  • Regression: Broken room and message composer events (#27754)

    It hotfixes two issues:

    1. user card not opening on clicking in user mentions;

    2. slash commands inside threads sending results to the main room.

  • Regression: Client crashing when updating CachedChatSubscription (#28062)

    Currently the typing of 'ISubscription' is a little off from reality. The property ts is optional, and this can cause crashes when trying to access ts's properties.

    I decided to avoid changing the type definitions for ISubscription this time, since it will probably impact many other places, and that's not the scope of this task.

  • Regression: Client-side checks for message deletion (#27590)

  • Regression: Composer fix join room action (#27657)

  • Regression: Composer Toolbox overlapping borders (#27714)

  • Regression: DateRangePicker errors (#28015)

    The date range picker for Yesterday, This Week, Previous Week, and This Month in the Message Audit page, was not selecting the correct date range and it was causing form validation issues.

    Error Evidence:
    Clipboard   - February 10, 2023 6_12 PM
    Clipboard   - February 10, 2023 6_10 PM
    Clipboard   - February 10, 2023 6_09 PM
    Clipboard   - February 10, 2023 6_08 PM

  • Regression: Disable video message when composer is in use (#28073)

  • Regression: Emoji picker styling (#28046)

    Before

    image

    After

    image
  • Regression: fix api tests (#28067)

  • Regression: fix close flextab on click outside the container (#27857)

  • Regression: Fix composer restore (#27642)

  • Regression: Fix file upload on collapsed composer menu (#28071)

  • Regression: Fix go to ThreadList hook (#27663)

  • Regression: Fix missing Formatting items (#28044)

  • Regression: Fix presence broadcast not re-enabling (#28017)

  • Regression: Fix write stream error on user data export (#27683)

  • Regression: Formatted text rendered by UI Kit (#28060)

  • Regression: Message > messageActionDefault> Copy and Report (#28040)

    This regression was probably generated by the Attachments rewrite.

    Issue 1: When selecting the action Copy on the message toolbox with Attachment Messages (messages with files/images)
    The copied content was empty because was getting from an empty prop.

    Previous output:
    output2

    Current output:
    output1

    Issue 2: When selecting the action Report the reported message was showing an unformatted message (with markdown tokens)

    Previous output:
    output4

    Current output:
    output3

  • Regression: message box issues (#27495)

    It fixes some problems introduced/exposed after refactoring the ChatMessages API.

  • Regression: Missing contexts on contextual bar (#27734)

    It should fixes crashes on starred, pinned, and mentioned messages while those are migrating from Blaze to React.

  • Regression: more message box issues (#27499)

    It handles issues regarding editing messages.

  • Regression: Open Thread (#27640)

  • Regression: Rectifying thread layout (#27680)

    This PR fixes:

    • the size and scrolling area of the list of messages;

    • the margin and general style of "Also send to channel" checkbox;

    • the size of link previews.

  • Regression: Scroll bars in sidebar (#28091)

  • Regression: Sidebar collapsing on extra small views (#27651)

    before

    Screen Shot 2022-12-27 at 10 39 21

    after

    Screen Shot 2022-12-27 at 10 38 10
  • Regression: Undefined default message context (#27870)

    It fixes some contextual bar tabs (e.g. "Mentions").

  • Regression: upserting data into cached collections (#27965)

    This one should get rid of "grey" (temporary) messages.

👩‍💻👨‍💻 Contributors 😍

👩‍💻👨‍💻 Core Team 🤓

Don't miss a new Rocket.Chat release

NewReleases is sending notifications on new releases.