-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/single-contact-id' into feat/search-create-edit
- Loading branch information
Showing
40 changed files
with
867 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@rocket.chat/meteor': minor | ||
--- | ||
|
||
Adds methods to the Apps-Engine to interact with unread messages to enhance message capabilities on Apps. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@rocket.chat/meteor': minor | ||
--- | ||
|
||
Introduces a new featured action on the room header for action buttons using the non-default category to enhance user accessibility. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@rocket.chat/meteor': patch | ||
--- | ||
|
||
Fixes an issue where a thread message was not scrolled to view when it was opened using its link. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@rocket.chat/meteor': patch | ||
--- | ||
|
||
Fixed Twilio request validation by accepting URLs with query strings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@rocket.chat/meteor": minor | ||
"@rocket.chat/i18n": patch | ||
"@rocket.chat/ui-composer": minor | ||
--- | ||
|
||
Adds a warning to inform users they are about to send unencrypted messages in an E2E Encrypted room if they have the `Unencrypted messages in encrypted rooms` setting enabled. | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,11 @@ jobs: | |
|
||
- uses: rharkor/[email protected] | ||
|
||
- name: Restore turbo build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: turbo-build | ||
path: .turbo/cache | ||
- name: Cache TypeCheck | ||
uses: actions/cache@v3 | ||
if: matrix.check == 'ts' | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,6 +138,11 @@ jobs: | |
|
||
- uses: rharkor/[email protected] | ||
|
||
- name: Restore turbo build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: turbo-build | ||
path: .turbo/cache | ||
- run: yarn build | ||
# if we are testing a PR from a fork, we need to build the docker image at this point | ||
- uses: ./.github/actions/build-docker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,11 @@ jobs: | |
|
||
- uses: rharkor/[email protected] | ||
|
||
- name: Restore turbo build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: turbo-build | ||
path: .turbo/cache | ||
- name: Unit Test | ||
run: yarn testunit | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,6 +174,50 @@ jobs: | |
- name: Build Rocket.Chat Packages | ||
run: yarn build | ||
|
||
- name: Store turbo build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: turbo-build | ||
path: .turbo/cache | ||
overwrite: true | ||
include-hidden-files: true | ||
|
||
deploy-preview: | ||
runs-on: ubuntu-latest | ||
needs: [release-versions, packages-build] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: rharkor/[email protected] | ||
if: github.event.action != 'closed' | ||
|
||
- name: Setup NodeJS | ||
uses: ./.github/actions/setup-node | ||
if: github.event.action != 'closed' | ||
with: | ||
node-version: 14.21.3 | ||
deno-version: 1.37.1 | ||
cache-modules: true | ||
install: true | ||
- name: Restore turbo build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: turbo-build | ||
path: .turbo/cache | ||
- name: Build | ||
if: github.event.action != 'closed' | ||
run: | | ||
yarn turbo run build-preview | ||
yarn turbo run .:build-preview-move | ||
npx indexifier .preview --html --extensions .html > .preview/index.html | ||
- uses: rossjrw/pr-preview-action@v1 | ||
with: | ||
source-dir: .preview | ||
preview-branch: gh-pages | ||
umbrella-dir: pr-preview | ||
action: auto | ||
|
||
build: | ||
name: 📦 Meteor Build - coverage | ||
needs: [release-versions, packages-build] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js | ||
uses: actions/[email protected].3 | ||
uses: actions/[email protected].4 | ||
with: | ||
node-version: '20.15.1' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.