Skip to content

Commit

Permalink
Release 0.63.2 (RocketChat#10476)
Browse files Browse the repository at this point in the history
* [FIX] Even TypeErrors with SAML (RocketChat#10475)

* Bump version to 0.63.2
  • Loading branch information
graywolf336 committed Apr 17, 2018
1 parent 79c023e commit 05ae7d6
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM rocketchat/base:8

ENV RC_VERSION 0.63.1
ENV RC_VERSION 0.63.2

MAINTAINER buildmaster@rocket.chat

Expand Down
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.63.1
ENV RC_VERSION 0.63.2

MAINTAINER buildmaster@rocket.chat

Expand Down
18 changes: 18 additions & 0 deletions .github/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -12207,5 +12207,23 @@
"web-flow"
]
}
],
"0.63.2": [
{
"pr": "10475",
"title": "[FIX] Even TypeErrors with SAML",
"userLogin": "graywolf336",
"contributors": [
"graywolf336"
]
},
{
"pr": "10408",
"title": "add redhat dockerfile to master",
"userLogin": "geekgonecrazy",
"contributors": [
"geekgonecrazy"
]
}
]
}
2 changes: 1 addition & 1 deletion .sandstorm/sandstorm-pkgdef.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (

appVersion = 62, # Increment this for every release.

appMarketingVersion = (defaultText = "0.63.1"),
appMarketingVersion = (defaultText = "0.63.2"),
# 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.63.1
RC_VERSION=0.63.2
fi

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

# 0.63.2
`2018-04-17 · 1 🐛 · 1 🔍`

### 🐛 Bug fixes

- Even TypeErrors with SAML ([#10475](https://github.com/RocketChat/Rocket.Chat/pull/10475))

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

- add redhat dockerfile to master ([#10408](https://github.com/RocketChat/Rocket.Chat/pull/10408))

</details>

# 0.63.1
`2018-04-07 · 5 🐛 · 3 👩‍💻👨‍💻`

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.63.1",
"version": "0.63.2",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
Expand Down
4 changes: 2 additions & 2 deletions packages/meteor-accounts-saml/saml_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,9 @@ SAML.prototype.validateResponse = function(samlResponse, relayState, callback) {
attributes.forEach(function(attribute) {
const value = self.getElement(attribute, 'AttributeValue');
if (typeof value[0] === 'string') {
profile[attribute.$.Name] = value[0];
profile[attribute.$.Name.value] = value[0];
} else {
profile[attribute.$.Name] = value[0]._;
profile[attribute.$.Name.value] = value[0]._;
}
});
}
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.63.1"
"version": "0.63.2"
}

0 comments on commit 05ae7d6

Please sign in to comment.