From 0a5800eb67f5789d4d6b2786af5999b20b9a07e0 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Fri, 14 Mar 2014 16:29:24 -0700 Subject: [PATCH] History pass --- History.md | 47 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 55efed0461f..dca21e22b6e 100644 --- a/History.md +++ b/History.md @@ -1,17 +1,25 @@ ## v.NEXT +* Support oplog tailing on queries with the `limit` option. All queries + except those containing `$near` or `$where` selectors or the `skip` + option can now be used with the oplog driver. + * Add hooks to login process. This allows for rate limiting login attempts, logging an audit trail, account lockout flags, etc. See: http://docs.meteor.com/#accounts_validLoginAttempt #1815 -* Add support for HTML email in `Accounts.emailTemplates`. #1785 +* Change the `Accounts.registerLoginHandler` API for custom login + methods. Login handlers now require a name and no longer have to deal + with generating resume tokens. See + https://github.com/meteor/meteor/blob/devel/packages/accounts-base/accounts_server.js + for details. OAuth based login handlers using the + `Oauth.registerService` packages are not affected. -* Use "faye-websocket" (0.7.2) npm module instead of "websocket" (1.0.8) for - server-to-server DDP. +* Add support for HTML email in `Accounts.emailTemplates`. #1785 -* minimongo: Support {a: {$elemMatch: {x: 1, $or: [{a: 1}, {b: 1}]}}} #1875 +* minimongo: Support `{a: {$elemMatch: {x: 1, $or: [{a: 1}, {b: 1}]}}}` #1875 -* minimongo: Support {a: {$regex: '', $options: 'i'}} #1874 +* minimongo: Support `{a: {$regex: '', $options: 'i'}}` #1874 * minimongo: Fix sort implementation with multiple sort fields which each look inside an array. eg, ensure that with sort key `{'a.x': 1, 'a.y': 1}`, the @@ -19,9 +27,38 @@ `{a: [{x: 0, y: 5}, {x: 1, y: 3}]}`, because the 3 should not be used as a tie-breaker because it is not "next to" the tied 0s. +* Use `faye-websocket` (0.7.2) npm module instead of `websocket` (1.0.8) for + server-to-server DDP. + +* Update Google OAuth package to use new `profile` and `email` scopes + instead of deprecated URL-based scopes. #1887 + +* Add `_throwFirstError` option to `Deps.flush`. + +* Make `facts` package data available on the server as + `Facts._factsByPackage`. + +* Fix issue where `LESS` compilation error could crash the `meteor run` + process. #1877 + +* Fix crash caused by empty HTTP host header in `meteor run` development + server. #1871 + +* Fix appcache size calculation to avoid erronious warnings. #1847 + +* Remove unused `Deps._makeNonReactive` wrapper function. Call + `Deps.nonreactive` directly instead. + +* Avoid setting the `oplogReplay` on non-oplog collections. Doing so + caused mongod to crash. + +* Add startup message to `test-in-console` to ease automation. #1884 + * Upgraded dependencies - amplify: 1.1.2 (from 1.1.0) +XXX list contributors + ## v0.7.1.2