More fixes to History.md.

This commit is contained in:
David Glasser
2012-10-01 18:06:58 -07:00
parent 547c93e465
commit d7f45f9d86

View File

@@ -1,14 +1,20 @@
## vNEXT
* Upgrade SockJS from 0.3.1 to 0.3.3, which includes our fix to make
long-polling sessions work on iOS 6.
* Fix connection failure on iOS6. SockJS 0.3.3 includes this fix.
* The new `preserve-inputs` package, included by default in new Meteor apps,
restores the pre-v0.4.0 behavior of "preserving" all form input elements by ID
and name during re-rendering; users who want more precise control over
preservation can still use the APIs added in v0.4.0.
* A few changes to the `Meteor.absoluteUrl` function:
- Added a `replaceLocalhost` option.
- The `ROOT_URL` environment variable is respected by `meteor run`.
- It is now included in all apps via the `meteor` package. Apps that
explicitly added the now-deprecated `absolute-url` smart package will log a
deprecation warning.
* Upgrade Node from 0.8.8 to 0.8.11.
* If a Handlebars helper function `foo` returns null, you can now run do
@@ -17,7 +23,7 @@
* If you pass a non-scalar object to `Session.set`, an error will now be thrown
(matching the behavior of `Session.equals`). #215
* HTML pages are now served with a charset=utf-8 Content-Type header. #264
* HTML pages are now served with a `charset=utf-8` Content-Type header. #264
* The contents of `<select>` tags can now be reactive even in IE 7 and 8.
@@ -27,13 +33,6 @@
* Fix a race condition in the `spiderable` package which could include garbage
in the spidered page.
* A few changes to the `Meteor.absoluteUrl` function:
- Added a `replaceLocalhost` option.
- The `ROOT_URL` environment variable is respected by `meteor run`.
- It is now included in all apps via the `meteor` package. Apps that
explicitly added the now-deprecated `absolute-url` smart package will log a
deprecation warning.
* The REPL run by `admin/node.sh` no longer crashes Emacs M-x shell on exit.
* Refactor internal `reload` API.