Skip to content

Commit

Permalink
Merge pull request #12499 from RocketChat/release-0.71.1
Browse files Browse the repository at this point in the history
Release 0.71.1
  • Loading branch information
sampaiodiego authored Oct 31, 2018
2 parents b77359c + 4c87d58 commit e73dc78
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 7 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/rhscl/nodejs-8-rhel7

ENV RC_VERSION 0.71.0
ENV RC_VERSION 0.71.1

MAINTAINER buildmaster@rocket.chat

Expand Down
14 changes: 14 additions & 0 deletions .github/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -20365,6 +20365,20 @@
]
}
]
},
"0.71.1": {
"node_version": "8.11.3",
"npm_version": "5.6.0",
"pull_requests": [
{
"pr": "12487",
"title": "[FIX] Email sending with GDPR user data",
"userLogin": "sampaiodiego",
"contributors": [
"sampaiodiego"
]
}
]
}
}
}
4 changes: 2 additions & 2 deletions .sandstorm/sandstorm-pkgdef.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ const pkgdef :Spk.PackageDefinition = (

appTitle = (defaultText = "Rocket.Chat"),

appVersion = 111, # Increment this for every release.
appVersion = 112, # Increment this for every release.

appMarketingVersion = (defaultText = "0.71.0"),
appMarketingVersion = (defaultText = "0.71.1"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.

Expand Down
2 changes: 1 addition & 1 deletion .travis/snap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then
RC_VERSION=$TRAVIS_TAG
else
CHANNEL=edge
RC_VERSION=0.71.0
RC_VERSION=0.71.1
fi

echo "Preparing to trigger a snap release for $CHANNEL channel"
Expand Down
15 changes: 15 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@

# 0.71.1
`2018-10-31 · 1 🐛 · 1 👩‍💻👨‍💻`

### Engine versions
- Node: `8.11.3`
- NPM: `5.6.0`

### 🐛 Bug fixes

- Email sending with GDPR user data ([#12487](https://github.com/RocketChat/Rocket.Chat/pull/12487))

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

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

# 0.71.0
`2018-10-27 · 2 ️️️⚠️ · 5 🎉 · 5 🚀 · 21 🐛 · 8 🔍 · 20 👩‍💻👨‍💻`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "0.71.0",
"version": "0.71.1",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-lib/rocketchat.info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.71.0"
"version": "0.71.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const sendEmail = function(userId) {
}
const userData = RocketChat.models.Users.findOneById(userId);

if (!userData || userData.emails || userData.emails[0] || userData.emails[0].address) {
if (!userData || !userData.emails || !userData.emails[0] || !userData.emails[0].address) {
return;
}
const emailAddress = `${ userData.name } <${ userData.emails[0].address }>`;
Expand Down

0 comments on commit e73dc78

Please sign in to comment.