Merge branch 'master' into devel

This commit is contained in:
Emily Stark
2014-05-12 17:15:42 -07:00
11 changed files with 37 additions and 12 deletions

View File

@@ -26,6 +26,19 @@
Patches contributed by GitHub users awwx
## v.0.8.1.2
* Fix memory leak (introduced in 0.8.1) by making sure to unregister
sessions at the server when they are closed due to heartbeat timeout.
* Add `credentialSecret` argument to `Google.retrieveCredential`,
`Facebook.retrieveCredential`, etc., which is needed to use them as of
0.8.1. #2118
* Fix 0.8.1 regression that broke apps using a `ROOT_URL` with a path
prefix. #2109
## v0.8.1.1
* Fix 0.8.1 regression preventing clients from specifying `_id` on insert. #2097

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -0,0 +1,11 @@
// Turn off appcache on Safari. Apparently Safari 7's AppCache is
// totally busted. In particular, this fact combined with our
// "RELOAD_SAFETYBELT" strategy causes infinite reloads in Safari at
// times.
//
// See http://stackoverflow.com/questions/22888945/safari-7-application-cache-does-not-work
if (Meteor.isServer) {
Meteor.AppCache.config({
safari: false
});
}

View File

@@ -1,5 +1,5 @@
// While galaxy apps are on their own special meteor releases, override
// Meteor.release here.
if (Meteor.isClient) {
Meteor.release = Meteor.release ? "0.8.1.1" : undefined;
Meteor.release = Meteor.release ? "0.8.1.2" : undefined;
}

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -1 +1 @@
0.8.1.1
0.8.1.2

View File

@@ -1,7 +1,5 @@
=> Meteor 0.8.1.1: OAuth security fix, bug fixes and new features for
Blaze, improved latency compensation, and more.
=> Meteor 0.8.1.2: Fix regressions from 0.8.1, including a memory
leak in DDP heartbeats.
This release is being downloaded in the background. Update your
project to Meteor 0.8.1.1 by running 'meteor update'. If you haven't
yet upgraded to 0.8.x, we've backported the security fix to a new
0.7.2.2 release as well.
project to Meteor 0.8.1.2 by running 'meteor update'.

View File

@@ -132,6 +132,9 @@
{
"release": "0.8.1.1"
},
{
"release": "0.8.1.2"
},
{
"release": "NEXT"
}