mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'master' into devel
This commit is contained in:
13
History.md
13
History.md
@@ -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
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
11
docs/lib/appcache-config.js
Normal file
11
docs/lib/appcache-config.js
Normal 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
|
||||
});
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.8.1.1
|
||||
0.8.1.2
|
||||
|
||||
@@ -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'.
|
||||
|
||||
@@ -132,6 +132,9 @@
|
||||
{
|
||||
"release": "0.8.1.1"
|
||||
},
|
||||
{
|
||||
"release": "0.8.1.2"
|
||||
},
|
||||
{
|
||||
"release": "NEXT"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user