diff --git a/HISTORY.md b/HISTORY.md index f6a6e666a9c..752be2d650d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,13 @@ # History +## 0.48.2, 2016-Dec-20 + +- Add button to refresh aouth services +- Fix download on electron +- Fix issue creating users with username from OAuth +- Fix message when username field not exists in OAuth data +- Fix OAuth global variable + ## 0.48.1, 2016-Dec-13 - Now uses NodeJS 4.7.0 - Fix integration payload JSON.parse diff --git a/app.json b/app.json index 2b703091f2a..e4d3a3c577c 100644 --- a/app.json +++ b/app.json @@ -6,7 +6,7 @@ "keywords": ["meteor", "social", "community", "chat"], "website": "https://rocket.chat", "env": { - "BUILDPACK_URL": "https://github.com/RocketChat/heroku-buildpack-meteor.git", + "BUILDPACK_URL": "https://github.com/RocketChat/meteor-buildpack-horse.git", "HEROKU_APP_NAME": { "description": "Please re-enter your App Name from the top.", "required": true diff --git a/server/startup/migrations/v071.1.js b/server/startup/migrations/v071.1.js new file mode 100644 index 00000000000..e915c13cac6 --- /dev/null +++ b/server/startup/migrations/v071.1.js @@ -0,0 +1,6 @@ +RocketChat.Migrations.add({ + version: 71.1, + up: function() { + ServiceConfiguration.configurations.remove({}); + } +});