Christian Schramm
f080fb20e4
Added $and tests
2012-11-28 10:48:16 -08:00
Christian Schramm
7f89f059e5
Added test for $or and $nor
2012-11-28 10:48:16 -08:00
David Glasser
6d1c0a7c93
Merge branch 'master' into devel
2012-11-27 10:32:57 -08:00
David Glasser
067113a37d
Merge branch 'release-0.5.2'
2012-11-27 10:31:34 -08:00
David Glasser
6635ae1007
History.md update for 0.5.2.
v0.5.2
2012-11-27 08:46:09 -08:00
David Glasser
0757e96e6d
Fix use of cursor.observe at server-side startup.
...
A block that wasn't allowed to yield called _Mongo::_createSynchronousCursor,
which certainly can yield (it waits on a Future) but doesn't actually end up
needing to yield unless it is called during the initial connection to
Mongo... eg, during startup.
Fixes #507 (reported by paulreimer).
2012-11-27 08:45:01 -08:00
David Glasser
68db80f500
Update version number to 0.5.2.
2012-11-27 08:43:29 -08:00
David Glasser
aa35967021
Show failed test names at the top of the window.
...
Not styled at all. Feel free to improve.
2012-11-26 20:45:15 -08:00
David Greenspan
99b659a810
jsparse: line numbers in error messages
2012-11-26 18:28:07 -08:00
David Greenspan
e8826efb1e
jsparse: allow trailing comma in obj lit per ES5
...
(we should probably catch this in future linter)
2012-11-26 12:14:51 -08:00
David Glasser
87ef7b692a
accounts-ui: use correct 'where' in package.js.
...
It doesn't really matter though: 'where' only affects on_use and 'less' doesn't
have an on_use.
2012-11-25 20:25:31 -05:00
David Glasser
965d96615a
When updating the dev bundle in a checkout, don't delete it until after we've
...
successfully downloaded the new one.
Previously, if you're working offline, checkout an old version of meteor with a
different dev bundle, and run 'meteor', you would be left with no dev bundle at
all and it would be difficult to do any further work even after checking out a
different branch.
2012-11-24 16:42:23 -05:00
David Glasser
d073e5ddfc
Fix use of cursor.observe at server-side startup.
...
A block that wasn't allowed to yield called _Mongo::_createSynchronousCursor,
which certainly can yield (it waits on a Future) but doesn't actually end up
needing to yield unless it is called during the initial connection to
Mongo... eg, during startup.
Fixes #507 (reported by paulreimer).
2012-11-23 19:49:23 -05:00
David Glasser
2d04e07b7a
wordplay: update idle status correctly.
...
Fixes #505 , reported by pbkracker.
2012-11-23 11:03:31 -05:00
David Greenspan
ae492fc793
jsparse: support ES5 line continuations
2012-11-22 16:54:07 -08:00
David Greenspan
44b4c9ed61
jsparse: allow keywords as property names per ES5
2012-11-22 16:54:07 -08:00
David Greenspan
48ef995206
.return to ['return'] for JS parsability
2012-11-21 20:51:13 -08:00
David Greenspan
ad7098307d
Fix jsparse hex literals
...
(so 0xabc doesn't parse 0 and then error)
2012-11-21 20:50:48 -08:00
David Greenspan
95f0278cb9
semicolons
2012-11-21 19:42:10 -08:00
Nick Martin
9b8eb41f04
Add comment about how remembering passwords doesn't work.
2012-11-20 19:31:29 -08:00
Avital Oliver
8d9420d255
Rename local variables (to camel case)
2012-11-20 15:16:47 -08:00
Avital Oliver
35df034a7d
Add IntelliJ IDEA and SublimeEdit extensions to .gitignore
2012-11-20 15:14:58 -08:00
Nick Martin
9e540d8479
Merge branch 'master' into devel
...
Conflicts:
admin/generate-dev-bundle.sh
2012-11-20 08:05:11 -08:00
Nick Martin
16cf8a2621
Merge branch 'release-0.5.1'
2012-11-20 08:03:06 -08:00
David Glasser
ba76b0fd6d
Follow-up to 426a72fe: make sure loggingIn goes away in the case of a half-complete login method.
v0.5.1
2012-11-19 21:08:41 -08:00
David Glasser
f4573dbb1b
Add a sleep function (useful for introducing latency in manual debugging).
2012-11-19 20:34:48 -08:00
David Glasser
426a72fe24
Don't display logging-in animation in onReconnect.
2012-11-19 20:33:39 -08:00
Avital Oliver
7cc88dc75e
accounts-ui: show messages in all dropdowns
2012-11-19 20:29:02 -08:00
Avital Oliver
dcdd6da47f
accounts-ui: show messages in all dropdowns
2012-11-19 20:28:41 -08:00
David Glasser
974f0be4a4
Expand failed tests by default.
2012-11-19 20:01:48 -08:00
Avital Oliver
59bab69fcc
accounts-ui: don't display message twice
2012-11-19 19:34:42 -08:00
Avital Oliver
1da3ef978a
accounts-ui: don't display message twice
2012-11-19 19:34:26 -08:00
David Glasser
738e8f43fa
Meteor.loggingIn now true during the beginPasswordExchange part of
...
Meteor.loginWithPassword.
2012-11-19 16:42:17 -08:00
Nick Martin
3b97c9199f
Use absoluteUrl in tests so that tests pass when you visit them via something other than 'localhost' (e.g., when testing IE using an VM)
2012-11-19 14:49:45 -08:00
Nick Martin
49758b50d7
Fix typo in changelog.
2012-11-19 14:18:26 -08:00
Nick Martin
46c14a7405
Workaround new underscore failure in IE8.
2012-11-19 14:18:04 -08:00
Nick Martin
5a668893f5
Revert node-progress back to 0.0.5 to deal with regression. Also bump http-proxy to 0.8.5, with the maxSockets regression fixed.
2012-11-19 13:06:00 -08:00
David Glasser
5b066c77a0
Remove stray debugging log from previous commit.
2012-11-17 17:53:00 -08:00
David Glasser
637692db31
Add filename and line number to test failures using a v8 stack trace API.
...
This works for server tests (Node uses v8) or for client tests in Chrome. Uses
a simple heuristic to guess which line in the stack trace is most likely to be
the actual high-level assertion. Adjustments to this heuristic and
implementations for other browsers are welcome :)
2012-11-17 17:46:57 -08:00
David Glasser
c1c1fd9b8f
Fix bug where half-completed wait methods could block future method execution.
2012-11-16 21:07:51 -08:00
David Glasser
1eec537e12
Clean up History.md for 0.5.1.
2012-11-16 19:26:15 -08:00
Avital Oliver
646b3576cd
accounts-ui fixes related to the introduction of {{loggingIn}}
...
- Correctly position certain elements
- Reduce flicker/things moving around in various cases
- Force dropdown to open in case there is a message to display
2012-11-16 17:25:52 -08:00
Avital Oliver
0af26570c3
accounts-ui fixes related to the introduction of {{loggingIn}}
...
- Correctly position certain elements
- Reduce flicker/things moving around in various cases
- Force dropdown to open in case there is a message to display
2012-11-16 17:24:45 -08:00
David Glasser
e93e35ce08
Improve test isolation in livedata_tests.
2012-11-16 16:57:16 -08:00
David Glasser
6c19b05d05
Release notes improvements.
2012-11-16 12:17:31 -08:00
David Glasser
3f17883ed1
First draft of release notes for 0.5.1.
2012-11-16 11:21:42 -08:00
David Glasser
56f66e8c27
Notes for 0.5.1 History.md. Needs to be turned into English.
2012-11-16 00:16:38 -08:00
David Glasser
1852834ef7
Note that our problem with http-proxy 0.8.3 is fixed in 0.8.5.
...
We've already built a dev bundle for this round though, so not worth actually
upgrading yet.
2012-11-15 23:53:45 -08:00
Nick Martin
83386b23d9
Bump version number to 0.5.1.
2012-11-15 23:14:19 -08:00
Nick Martin
0619101839
Comment on dependencies in license file.
2012-11-15 23:09:21 -08:00