Skip to content

Commit

Permalink
Merge pull request #24884 from RocketChat/release-4.5.3
Browse files Browse the repository at this point in the history
Release 4.5.3
  • Loading branch information
sampaiodiego authored Mar 22, 2022
2 parents ed2cb3f + 38a85e0 commit 4798f47
Show file tree
Hide file tree
Showing 31 changed files with 669 additions and 281 deletions.
2 changes: 1 addition & 1 deletion .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 4.5.2
ENV RC_VERSION 4.5.3

MAINTAINER buildmaster@rocket.chat

Expand Down
148 changes: 132 additions & 16 deletions .github/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -71299,11 +71299,11 @@
"npm_version": "6.14.15",
"apps_engine_version": "1.31.0",
"mongo_versions": [
"'3.6'",
"'4.0'",
"'4.2'",
"'4.4'",
"'5.0'"
"3.6",
"4.0",
"4.2",
"4.4",
"5.0"
],
"pull_requests": []
},
Expand All @@ -71312,11 +71312,11 @@
"npm_version": "6.14.15",
"apps_engine_version": "1.31.0",
"mongo_versions": [
"'3.6'",
"'4.0'",
"'4.2'",
"'4.4'",
"'5.0'"
"3.6",
"4.0",
"4.2",
"4.4",
"5.0"
],
"pull_requests": [
{
Expand Down Expand Up @@ -71481,11 +71481,11 @@
"npm_version": "6.14.15",
"apps_engine_version": "1.31.0",
"mongo_versions": [
"'3.6'",
"'4.0'",
"'4.2'",
"'4.4'",
"'5.0'"
"3.6",
"4.0",
"4.2",
"4.4",
"5.0"
],
"pull_requests": [
{
Expand Down Expand Up @@ -71572,6 +71572,122 @@
]
}
]
},
"4.5.3": {
"node_version": "14.18.3",
"npm_version": "6.14.15",
"apps_engine_version": "1.31.0",
"mongo_versions": [
"3.6",
"4.0",
"4.2",
"4.4",
"5.0"
],
"pull_requests": [
{
"pr": "24901",
"title": "[FIX] Custom script not being fired",
"userLogin": "ggazzo",
"milestone": "4.5.3",
"contributors": [
"ggazzo"
]
},
{
"pr": "24877",
"title": "Chore: Fix MongoDB versions on release notes",
"userLogin": "sampaiodiego",
"milestone": "4.5.3",
"contributors": [
"sampaiodiego",
"web-flow"
]
},
{
"pr": "24864",
"title": "[FIX] Disable voip button when call is in progress",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman"
]
},
{
"pr": "24863",
"title": "[FIX] Broken build caused by PRs modifying same file differently",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman",
"tiagoevanp"
]
},
{
"pr": "24838",
"title": "[FIX] [VOIP] SidebarFooter component ",
"userLogin": "tiagoevanp",
"description": "- Improve the CallProvider code;\r\n- Adjust the text case of the VoIP component on the FooterSidebar;\r\n- Fix the bad behavior with the changes in queue's name.",
"milestone": "4.5.3",
"contributors": [
"tiagoevanp"
]
},
{
"pr": "24837",
"title": "[IMPROVE] Standarize queue behavior for managers and agents when subscribing",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman"
]
},
{
"pr": "24829",
"title": "[FIX] Show only enabled departments on forward",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman"
]
},
{
"pr": "24799",
"title": "[FIX] Wrong param usage on queue summary call",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman"
]
},
{
"pr": "24789",
"title": "[FIX] VoIP button gets disabled whenever user status changes",
"userLogin": "amolghode1981",
"milestone": "4.5.3",
"contributors": [
"amolghode1981"
]
},
{
"pr": "24752",
"title": "[FIX] Show call icon only when user has extension associated",
"userLogin": "KevLehman",
"milestone": "4.5.3",
"contributors": [
"KevLehman"
]
},
{
"pr": "24748",
"title": "[IMPROVE] UX - VoIP Call Component",
"userLogin": "tiagoevanp",
"milestone": "4.5.3",
"contributors": [
"tiagoevanp"
]
}
]
}
}
}
}
2 changes: 1 addition & 1 deletion .houston/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const getMongoVersion = async function({ version, git }) {
return [];
}

return mongoMatch[1].replace(/"/g, '').replace(/ /g, '').split(',');
return mongoMatch[1].replace(/["' ]/g, '').split(',');
} catch (e) {
console.error(e);
}
Expand Down
2 changes: 1 addition & 1 deletion .snapcraft/resources/prepareRocketChat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

curl -SLf "https://releases.rocket.chat/4.5.2/download/" -o rocket.chat.tgz
curl -SLf "https://releases.rocket.chat/4.5.3/download/" -o rocket.chat.tgz

tar xf rocket.chat.tgz --strip 1

Expand Down
2 changes: 1 addition & 1 deletion .snapcraft/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# 5. `snapcraft snap`

name: rocketchat-server
version: 4.5.2
version: 4.5.3
summary: Rocket.Chat server
description: Have your own Slack like online chat, built with Meteor. https://rocket.chat/
confinement: strict
Expand Down
Loading

0 comments on commit 4798f47

Please sign in to comment.