Bump version to 3.16.0-rc.1

pull/22485/head 3.16.0-rc.1
Diego Sampaio 5 years ago
parent 3ea95fdba3
commit adaefd43f7
No known key found for this signature in database
GPG Key ID: E060152B30502562
  1. 2
      .docker/Dockerfile.rhel
  2. 99
      .github/history.json
  3. 2
      .snapcraft/resources/prepareRocketChat
  4. 2
      .snapcraft/snap/snapcraft.yaml
  5. 60
      HISTORY.md
  6. 2
      app/utils/rocketchat.info
  7. 2
      package-lock.json
  8. 2
      package.json

@ -1,6 +1,6 @@
FROM registry.access.redhat.com/ubi8/nodejs-12
ENV RC_VERSION 3.16.0-rc.0
ENV RC_VERSION 3.16.0-rc.1
MAINTAINER buildmaster@rocket.chat

@ -61313,18 +61313,6 @@
"d-gubert"
]
},
{
"pr": "22018",
"title": "[IMPROVE] Update system messages' behavior in rooms",
"userLogin": "matheusbsilva137",
"description": "- Update room's `lastMessage` when its \"Hide System Messages\" setting is updated;\r\n- Display system messages in the last message field (in the sidebar, using the extended view) -- iff the system message sent is not hidden in the room;\r\n- Send an alert to the room members when a system message is sent -- iff the system message sent is not hidden in the room;\r\n- Properly update a room's `lastMessage` field when the previous `lastMessage` is deleted -- system messages can now be set as last messages.",
"contributors": [
"matheusbsilva137",
"web-flow",
"pierre-lehnen-rc",
"sampaiodiego"
]
},
{
"pr": "22223",
"title": "[IMPROVE] Missing tests to `fname` and `prid` in the `rooms.createDiscussion` endpoint",
@ -61938,6 +61926,91 @@
]
}
]
},
"3.15.1": {
"node_version": "12.22.1",
"npm_version": "6.14.1",
"apps_engine_version": "1.26.0",
"mongo_versions": [
"3.4",
"3.6",
"4.0",
"4.2"
],
"pull_requests": [
{
"pr": "22432",
"title": "Release 3.15.1",
"userLogin": "sampaiodiego",
"contributors": [
"sampaiodiego",
"gabriellsh"
]
},
{
"pr": "22290",
"title": "[FIX] Attachments and avatars not rendered if deployed on subfolder",
"userLogin": "gabriellsh",
"milestone": "3.15.1",
"contributors": [
"gabriellsh",
"tassoevan",
"web-flow"
]
},
{
"pr": "22395",
"title": "[FIX] Setup wizard infinite loop when on subfolder.",
"userLogin": "gabriellsh",
"milestone": "3.15.1",
"contributors": [
"gabriellsh",
"tassoevan",
"web-flow"
]
},
{
"pr": "22257",
"title": "[FIX] Support DISABLE_PRESENCE_MONITOR env var in new DB watchers",
"userLogin": "sampaiodiego",
"milestone": "3.14.5",
"contributors": [
"sampaiodiego"
]
}
]
},
"3.16.0-rc.1": {
"node_version": "12.22.1",
"npm_version": "6.14.1",
"apps_engine_version": "1.27.0-alpha.5237",
"mongo_versions": [
"3.4",
"3.6",
"4.0",
"4.2"
],
"pull_requests": [
{
"pr": "22169",
"title": "[FIX] Chore: `team.addMembers` doesn't add member to main team room",
"userLogin": "lucassartor",
"description": "Fix `team.addMembers` endpoint as it currently doesn't work properly. The API call is adding members to a team's channels but not to the main team room.",
"contributors": [
"lucassartor",
"web-flow"
]
},
{
"pr": "22415",
"title": "[FIX] Apps not syncing status correctly on HA setups",
"userLogin": "d-gubert",
"description": "FIxes erros where, on HA setups, instances that DID NOT originate the action of uninstalling and updating an app would maintain the wrong status of apps when they received the notification of these events via Streamer.",
"contributors": [
"d-gubert"
]
}
]
}
}
}
}

@ -1,6 +1,6 @@
#!/bin/bash
curl -SLf "https://releases.rocket.chat/3.16.0-rc.0/download/" -o rocket.chat.tgz
curl -SLf "https://releases.rocket.chat/3.16.0-rc.1/download/" -o rocket.chat.tgz
tar xf rocket.chat.tgz --strip 1

@ -7,7 +7,7 @@
# 5. `snapcraft snap`
name: rocketchat-server
version: 3.16.0-rc.0
version: 3.16.0-rc.1
summary: Rocket.Chat server
description: Have your own Slack like online chat, built with Meteor. https://rocket.chat/
confinement: strict

@ -1,8 +1,27 @@
# 3.16.0 (Under Release Candidate Process)
## 3.16.0-rc.1
`2021-06-22 · 2 🐛 · 2 👩💻👨💻`
### 🐛 Bug fixes
- Apps not syncing status correctly on HA setups ([#22415](https://github.com/RocketChat/Rocket.Chat/pull/22415))
FIxes erros where, on HA setups, instances that DID NOT originate the action of uninstalling and updating an app would maintain the wrong status of apps when they received the notification of these events via Streamer.
- Chore: `team.addMembers` doesn't add member to main team room ([#22169](https://github.com/RocketChat/Rocket.Chat/pull/22169))
Fix `team.addMembers` endpoint as it currently doesn't work properly. The API call is adding members to a team's channels but not to the main team room.
### 👩💻👨💻 Core Team 🤓
- [@d-gubert](https://github.com/d-gubert)
- [@lucassartor](https://github.com/lucassartor)
## 3.16.0-rc.0
`2021-06-21 · 5 🎉 · 14 🚀 · 41 🐛 · 20 🔍 · 22 👩💻👨💻`
`2021-06-21 · 5 🎉 · 13 🚀 · 41 🐛 · 20 🔍 · 22 👩💻👨💻`
### 🎉 New features
@ -99,13 +118,6 @@
Previously when any data changed on subscriptions or rooms we were getting fresh data from database, to also remove undesired fields, but sometimes the data that changed was not relevant so we were sending the whole object everytime **without** the fields that actually changed. This change aims to reduce this overhead and also send less data to clients.
- Update system messages' behavior in rooms ([#22018](https://github.com/RocketChat/Rocket.Chat/pull/22018))
- Update room's `lastMessage` when its "Hide System Messages" setting is updated;
- Display system messages in the last message field (in the sidebar, using the extended view) -- iff the system message sent is not hidden in the room;
- Send an alert to the room members when a system message is sent -- iff the system message sent is not hidden in the room;
- Properly update a room's `lastMessage` field when the previous `lastMessage` is deleted -- system messages can now be set as last messages.
### 🐛 Bug fixes
@ -381,6 +393,38 @@
- [@thassiov](https://github.com/thassiov)
- [@tiagoevanp](https://github.com/tiagoevanp)
# 3.15.1
`2021-06-21 · 3 🐛 · 1 🔍 · 3 👩💻👨💻`
### Engine versions
- Node: `12.22.1`
- NPM: `6.14.1`
- MongoDB: `3.4, 3.6, 4.0, 4.2`
- Apps-Engine: `1.26.0`
### 🐛 Bug fixes
- Attachments and avatars not rendered if deployed on subfolder ([#22290](https://github.com/RocketChat/Rocket.Chat/pull/22290))
- Setup wizard infinite loop when on subfolder. ([#22395](https://github.com/RocketChat/Rocket.Chat/pull/22395))
- Support DISABLE_PRESENCE_MONITOR env var in new DB watchers ([#22257](https://github.com/RocketChat/Rocket.Chat/pull/22257))
<details>
<summary>🔍 Minor changes</summary>
- Release 3.15.1 ([#22432](https://github.com/RocketChat/Rocket.Chat/pull/22432))
</details>
### 👩💻👨💻 Core Team 🤓
- [@gabriellsh](https://github.com/gabriellsh)
- [@sampaiodiego](https://github.com/sampaiodiego)
- [@tassoevan](https://github.com/tassoevan)
# 3.15.0
`2021-05-28 · 8 🎉 · 12 🚀 · 62 🐛 · 47 🔍 · 34 👩💻👨💻`

@ -1,3 +1,3 @@
{
"version": "3.16.0-rc.0"
"version": "3.16.0-rc.1"
}

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "Rocket.Chat",
"version": "3.16.0-rc.0",
"version": "3.16.0-rc.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,7 +1,7 @@
{
"name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "3.16.0-rc.0",
"version": "3.16.0-rc.1",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"

Loading…
Cancel
Save