Commit Graph

4354 Commits

Author SHA1 Message Date
Nick Martin
49939f90e5 Missed one release/0.6.5-rc15 2013-08-08 20:14:45 -07:00
Slava Kim
fd17e3337a Google login popup window has reasonable height.
So the 'use different account' and 'login' buttons are visible without
scrolling.
2013-08-08 16:39:21 -07:00
Slava Kim
6b85ce5cf8 Oauth popup window always has scrollbars.
Pass additional url argument 'scrollbars' set to 'yes' in order to achieve it in
Firefox and IE
2013-08-08 16:22:45 -07:00
Nick Martin
1e749672c7 Change annotations to exactly match npm module name for easier automation. 2013-08-07 23:55:39 -07:00
Nick Martin
431d880160 First pass at updating license file. 2013-08-07 23:18:13 -07:00
Nick Martin
e47c14d481 Fixup DDP.connect docs. 2013-08-07 21:14:11 -07:00
Nick Martin
1be3c1e547 Upgrade to newly release mongodb 1.3.17, instead of using git version. release/0.6.5-rc14 2013-08-07 14:38:35 -07:00
Nick Martin
83a34947ee Fix regression: display stdout/stderr in the meteor-is-crashed page in development mode. 2013-08-07 12:11:39 -07:00
Nick Martin
39b879d1e6 update history for new changes. release/0.6.5-rc13 2013-08-06 16:45:05 -07:00
Nick Martin
7e9eb48a9f Merge branch 'devel' into release-0.6.5 2013-08-06 16:41:44 -07:00
Nick Martin
a9a99ceafd followon to previous commit: actually use whitelist instead of blacklist for package name contents. 2013-08-06 15:55:06 -07:00
Nick Martin
e7bb166a02 Check for invalid package names early in the codepath.
We already don't work with packages that contain '.' in the name, this just moves the error up and makes it clearer.
2013-08-06 15:24:06 -07:00
Emily Stark
dfd2068d4f Merge branch 'job-tags' into devel release/galaxy-5 2013-08-06 12:59:23 -07:00
Emily Stark
9d577ae58c Specify securePort for admin apps.
Otherwise they bind to 4433 by default, which conflicts with normal proxy
running on the same machine.
2013-08-06 12:58:29 -07:00
Emily Stark
6decfd43d6 Use setting to select which proxy service to bind to 2013-08-06 12:58:29 -07:00
Nick Martin
6e565bf26e Add missing package usage. Fixes #1284. 2013-08-06 12:53:33 -07:00
Nick Martin
d70c3d54e0 Use soon-to-be-released mongo driver version 1.3.16. It includes a fix for a connection storm that impacted production hosting. 2013-08-06 12:16:11 -07:00
Nick Martin
017407301d Also skip logging test on old safari that doesn't support it. 2013-08-06 11:59:06 -07:00
Tim Haines
723e4b5b50 Attach response object to accounts generated errors resulting from HTTP failures 2013-08-06 11:37:05 -07:00
Nick Martin
cda92d79fa Add note about is_client and is_server, since tripped me up for an hour. 2013-08-05 20:18:51 -07:00
Slava Kim
56c1eb3ee8 Merge branch 'check-path' into devel
Small improvements to 'check' package:

- Match.Integer matches 32-bit integers.
- Match.Error shows full path of sub-object where error occurred.
- Better docs for Match.Optional.
2013-08-05 16:22:37 -07:00
Slava Kim
e16738e920 Better docs for Match.Optional. 2013-08-05 16:14:59 -07:00
Slava Kim
580de65f62 Grammar corrections. Comments moving. 2013-08-05 13:26:43 -07:00
David Glasser
3a267f1fdc Fix error on upgrading from pre-engine app. Fixes #1280. 2013-08-03 23:04:16 -04:00
David Glasser
f872459c48 history notes 2013-08-02 23:19:05 -07:00
David Glasser
997fbf33f6 Re-enable cli-test with fake warehouse. 2013-08-02 18:41:15 -07:00
David Glasser
cd5044b6f3 Update docs to 0.6.5-rc12. Link to EJSON binary. 2013-08-02 18:17:38 -07:00
David Glasser
ce73cfaa7a Update examples to 0.6.5-rc12. 2013-08-02 18:15:29 -07:00
David Glasser
70883fdc42 Remove "write to the global" coffeescript instructions.
As part of a docs pass we will explain the new way to use coffeescript globals.

(In short: in a package, anything declared with `api.export` becomes
package-level and exported. If you want something package-level and not
exported, or app-level, there's an object `share` and you can assign to fields
on it.)
release/0.6.5-rc12
2013-08-02 17:13:49 -07:00
David Glasser
bfb8fd34a9 Merge branch 'release-0.6.5' into devel
Conflicts:
	packages/less/plugin/compile-less.js
2013-08-02 17:11:41 -07:00
David Glasser
c1f8c7f0e5 Don't crash if we lack permission to write out .build. 2013-08-02 17:09:43 -07:00
David Glasser
5bd85ccc37 Make support for unipackages in local package dirs explicit, but scary. 2013-08-02 16:53:55 -07:00
David Glasser
063c446263 Put a space after the "this timestamp isn't actually from the Log call" question
mark.
2013-08-02 16:29:10 -07:00
Slava Kim
67129c7e70 Nick's comments.
Don't duplicate the logic.
2013-08-02 15:22:49 -07:00
David Glasser
c3d1f7bbd2 Don't fail if stylus or less files are in a non-client-specific place.
Make the plugin's arch check less sketchy.

Improve less and stylus error handling.
2013-08-02 15:16:53 -07:00
David Glasser
c22f681d9c Fix a test in IE8; elsewhere make it actually test what it's trying to test. 2013-08-02 14:57:30 -07:00
David Greenspan
9deb7bc944 make LESS error messages work 2013-08-02 14:29:36 -07:00
Slava Kim
ffc31748f5 Make docs for Match.Optional more truthy about undefined in an object. 2013-08-02 14:25:03 -07:00
Slava Kim
86022fb06e Docs for Match.Integer 2013-08-02 14:25:03 -07:00
Slava Kim
1023a97e07 Add Match.Integer match for 32-bit integers. #1171 2013-08-02 14:22:00 -07:00
David Glasser
6e67c755e1 clear all sockjs handlers 2013-08-02 13:47:10 -07:00
David Glasser
aa6315e109 minor improvements to a livedata test 2013-08-02 13:46:54 -07:00
Slava Kim
cd3d87625f Remove duplication in error of unknown key.
"Unknown key in field Y" instead of "Unknown key Y in field Y"
2013-08-02 12:41:29 -07:00
Slava Kim
ec05981a1a Improve comment. Cleaner way to construct path string. 2013-08-02 12:37:44 -07:00
David Glasser
0e785039ae Avoid using Meteor.absoluteUrl for client-side tests.
This way tests can pass both when ran against localhost or against a
10.0.2.2-style hostname for VMs.
2013-08-02 11:47:59 -07:00
David Glasser
558bcb8877 Don't print a doubled slash if it's included in ROOT_URL.
This should not affect how Meteor.absoluteUrl actually works since it adds a
slash to the end of the root URL if it doesn't have one already.
2013-08-02 11:40:55 -07:00
David Glasser
8e4be18c88 Use json package in sockjs client.
Because sockjs-client doesn't think it's loading in a closure, it ALWAYS ends up
redefining JSON to non-native code, and sockjs-client does not want to change
this:
  https://github.com/sockjs/sockjs-client/issues/123

Fixes #1162.
2013-08-02 11:22:03 -07:00
David Glasser
e712d78cfb Export JSON from json package.
Make sure to use the built-in JSON if it exists.

Fixes #1204.
2013-08-02 11:19:08 -07:00
David Glasser
af5efd2996 Better error (with watching!) for missing source files. 2013-08-02 11:18:31 -07:00
David Glasser
392daa0a99 Detect symlink cycles in app dirs. 2013-08-02 10:59:41 -07:00