Skip to content

Commit

Permalink
Merge pull request #27392 from RocketChat/release-5.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Nov 29, 2022
2 parents 358b0e2 + e146797 commit 161f960
Show file tree
Hide file tree
Showing 7 changed files with 115 additions and 5 deletions.
79 changes: 79 additions & 0 deletions .github/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -95655,6 +95655,85 @@
]
}
]
},
"4.8.7": {
"node_version": "14.18.3",
"npm_version": "6.14.15",
"mongo_versions": [
"3.6",
"4.0",
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
"5.0.8": {
"node_version": "14.19.3",
"npm_version": "6.14.17",
"mongo_versions": [
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
"5.1.5": {
"node_version": "14.19.3",
"npm_version": "6.14.17",
"mongo_versions": [
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
"5.2.1": {
"node_version": "14.19.3",
"npm_version": "6.14.17",
"mongo_versions": [
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
"5.3.3": {
"node_version": "14.19.3",
"npm_version": "6.14.17",
"mongo_versions": [
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
"5.3.4": {
"node_version": "14.19.3",
"npm_version": "6.14.17",
"mongo_versions": [
"4.2",
"4.4",
"5.0"
],
"pull_requests": [
{
"pr": "27391",
"title": "[FIX] Thread messages being included in the room history even though they are not displayed",
"userLogin": "dougfabris",
"contributors": [
"dougfabris"
]
},
{
"pr": "27340",
"title": "Release 5.3.3",
"userLogin": "ggazzo",
"contributors": [
"ggazzo"
]
}
]
}
}
}
31 changes: 31 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,38 @@

# 5.3.4
`2022-11-28 · 1 🐛 · 1 🔍 · 2 👩‍💻👨‍💻`

### Engine versions
- Node: `14.19.3`
- NPM: `6.14.17`
- MongoDB: `4.2, 4.4, 5.0`

### 🐛 Bug fixes


- Thread messages being included in the room history even though they are not displayed ([#27391](https://github.com/RocketChat/Rocket.Chat/pull/27391))

<details>
<summary>🔍 Minor changes</summary>


- Release 5.3.3 ([#27340](https://github.com/RocketChat/Rocket.Chat/pull/27340))

</details>

### 👩‍💻👨‍💻 Core Team 🤓

- [@dougfabris](https://github.com/dougfabris)
- [@ggazzo](https://github.com/ggazzo)

# 5.3.3
`2022-11-24 · 1 🐛 · 1 👩‍💻👨‍💻`

### Engine versions
- Node: `14.19.3`
- NPM: `6.14.17`
- MongoDB: `4.2, 4.4, 5.0`

### 🐛 Bug fixes


Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/.docker/Dockerfile.rhel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM registry.access.redhat.com/ubi8/nodejs-12

ENV RC_VERSION 5.3.3
ENV RC_VERSION 5.3.4

MAINTAINER buildmaster@rocket.chat

Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/app/ui-utils/client/lib/RoomHistoryManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class RoomHistoryManagerClass extends Emitter {
({ ls } = subscription);
}

const result = await callWithErrorHandling('loadHistory', rid, ts, limit, ls);
const result = await callWithErrorHandling('loadHistory', rid, ts, limit, ls, false);

this.unqueue();

Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/app/utils/rocketchat.info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "5.3.3"
"version": "5.3.4"
}
2 changes: 1 addition & 1 deletion apps/meteor/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rocket.chat/meteor",
"description": "The Ultimate Open Source WebChat Platform",
"version": "5.3.3",
"version": "5.3.4",
"private": true,
"author": {
"name": "Rocket.Chat",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rocket.chat",
"version": "5.3.3",
"version": "5.3.4",
"description": "Rocket.Chat Monorepo",
"main": "index.js",
"private": true,
Expand Down

0 comments on commit 161f960

Please sign in to comment.