diff --git a/History.md b/History.md index d552d4f6dd..ab2a3105e6 100644 --- a/History.md +++ b/History.md @@ -21,21 +21,21 @@ * Throw an error in `{{foo bar}}` if `foo` is missing or not a function. * Cursors returned from template helpers for #each should implement - `observeChanges` method and don't have to be Minimongo cursors - (allows new custom data stores for Blaze like Miniredis) + the `observeChanges` method and don't have to be Minimongo cursors + (allowing new custom data stores for Blaze like Miniredis). * Remove warnings when {{#each}} iterates over a list of strings, numbers, or other items that contains duplicates. #1980 #### Meteor Accounts -* Fix OAuth popup flow in mobile apps that don't support `window.opener` - (such as iOS Chrome). #2302 - * Fix regression in 0.8.2 where an exception would be thrown if `Meteor.loginWithPassword` didn't have a callback. Callbacks to `Meteor.loginWithPassword` are now optional again. #2255 +* Fix OAuth popup flow in mobile apps that don't support + `window.opener`. #2302 + * Fix "Email already exists" error with MongoDB 2.6. #2238 @@ -59,18 +59,18 @@ if there are errors on the page. Add the `reload-safetybelt` package to your app if you want to include this code. -* Add `WebAppInternals.addStaticJs()` for adding static JavaScript code - to be served in the app, inline if allowed by `browser-policy`. - * On the server, `Meteor.startup(c)` now calls `c` immediately if the server has already started up, matching the client behavior. #2239 -* Make the `tinytest/run` method return immediately, so that `wait` - method calls from client tests don't block on server tests completing. - * Add support for server-side source maps when debugging with `node-inspector`. +* Add `WebAppInternals.addStaticJs()` for adding static JavaScript code + to be served in the app, inline if allowed by `browser-policy`. + +* Make the `tinytest/run` method return immediately, so that `wait` + method calls from client tests don't block on server tests completing. + * Log errors from method invocations on the client if there is no callback provided.