Skip to content

Commit

Permalink
History pass
Browse files Browse the repository at this point in the history
  • Loading branch information
n1mmy committed Mar 14, 2014
1 parent 0d4b220 commit 0a5800e
Showing 1 changed file with 42 additions and 5 deletions.
47 changes: 42 additions & 5 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,64 @@
## 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
document `{a: [{x: 0, y: 4}]}` sorts before
`{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

Expand Down

0 comments on commit 0a5800e

Please sign in to comment.