Commit Graph

11062 Commits

Author SHA1 Message Date
Nick Martin
5b17ef1a30 Version bump for rc.6 release/METEOR@0.9.4-rc.6 2014-10-10 20:37:54 -07:00
Nick Martin
80eebe86ba Merge remote-tracking branch 'origin/behind-proxy' into 0.9.4 2014-10-10 20:29:28 -07:00
Justin SB
6bff6020be Add install-sdk to "cordova builds with server options" test 2014-10-10 19:50:34 -07:00
Slava Kim
8e919e41b5 Whitespace 2014-10-10 19:48:13 -07:00
ekatek
395438b216 do not call semver.compare on package version
This is a regression caused by the SQL merge. Sorry for not catching it earlier!
We should not be calling semver on meteor package versions outside of the package
version parser package.
2014-10-10 17:29:00 -07:00
David Glasser
fb7921ade2 Support $HTTPS_PROXY in Node DDP client.
This should mean that you can access the package server from behind a
corporate firewall.

I tested this by setting up a Linux machine that doesn't have access to
packages.meteor.com:

   $ sudo iptables -A OUTPUT -d 54.225.216.115 -j DROP
   $ sudo iptables -A OUTPUT -d 184.72.252.20 -j DROP
   $ sudo iptables -A OUTPUT -d 23.23.114.56 -j DROP

I confirmed that these commands both fail:

  $ curl https://packages.meteor.com/
  $ ./meteor search asdf   # when it needs to sync first

I bought a proxy server from Proxy Bonanza and confirmed that setting
the environment variable HTTPS_PROXY to
   https://PROXYUSERNAME:PROXYPASSWORD@PROXYIP:PROXYPORT/
made both of the commands above succeed.

Fixes #2515.
2014-10-10 14:49:05 -07:00
David Glasser
ac0014d852 factor out creation of socket 2014-10-10 14:46:51 -07:00
Slava Kim
4d41c4c7cd Fix failing meteor build self-test 2014-10-10 14:36:43 -07:00
Slava Kim
50338758a4 Bring backwards-compatibility to meteor bundle
This commit introduces some conviluted logic to keep the old behavior of the
meteor bundle command. Hopefully we will drop it soon so we will simplify the
logic.
2014-10-10 13:55:28 -07:00
Justin SB
c1cedff917 Add a sleep to the CSS HCP test 2014-10-10 04:45:40 -07:00
Justin SB
4c082bb87a Add install-sdk into cordova self-test 2014-10-10 02:55:38 -07:00
Nick Martin
94c79151fa Change URL to install wiki. 2014-10-10 01:13:43 -07:00
Emily Stark
cc3fbff888 Clean up error handling for meteor build tarball creation.
Write errors to `Console.stderr`, and exit 1 instead of going on to do
the mobile builds (if any) and exiting 0.
2014-10-09 22:31:15 -07:00
Emily Stark
99228d7c7b Clean up tarball in old-cli-test.
If we don't clean up the tarball, then the following command (`meteor
build`) fails ("Couldn't create tarball"), but for some reason still
exits with code 0. So we then go on to successfully untar the output of
`meteor build`. If we clean up the tarball from `meteor bundle`, we at
least catch the failure by trying to untar a nonexistent file.
2014-10-09 22:21:32 -07:00
Emily Stark
141f3cdf3d Switch to single quotes in 'publish-and-search' selftest 2014-10-09 21:53:29 -07:00
David Glasser
7126e17109 Allow any number of spaces by || in constraints
Previously, exactly one was required, but this was not explicitly
documented.
2014-10-09 21:20:14 -07:00
Sashko Stubailo
a0bf883d93 Bump versions 2014-10-09 20:33:25 -07:00
Sashko Stubailo
3952dbfda5 Update todos release/METEOR@0.9.4-rc.5 2014-10-09 20:26:47 -07:00
Sashko Stubailo
8ae1301832 Bump versions release/METEOR@0.9.4-rc.4 2014-10-09 20:11:53 -07:00
Sashko Stubailo
0fc25c2b27 Merge branch 'devel' into 0.9.4
Conflicts:
	packages/templating/templating.js
2014-10-09 20:08:42 -07:00
Justin SB
7236af674c Throttle yields, so we don't slow down in case of rapid calls to yield
This restores the behavior I lost when I removed Patience
2014-10-09 19:58:39 -07:00
Avital Oliver
f2b65cc055 Fix ce98ea08d5 on IE8
Array.prototype.indexOf isn't defined on IE8
2014-10-09 19:46:09 -07:00
ekatek
b7782ca455 now that we have a command to set latest version, we can not set it until it is there 2014-10-09 19:13:07 -07:00
ekatek
0fc7f60dcc helper admin method to set the readme on the latest mainline release 2014-10-09 19:13:07 -07:00
ekatek
07ee30ffed automatically set readmes when publishing packages as partof a release with a valid gittag 2014-10-09 19:13:07 -07:00
Sashko Stubailo
f77570662c Bump meteor-tool.. again release/METEOR@0.9.4-rc.3 2014-10-09 16:54:12 -07:00
Sashko Stubailo
18f77ab2ee Bump netroute 2014-10-09 16:52:49 -07:00
Sashko Stubailo
ac7ed9627f Bump meteor-tool 2014-10-09 16:49:18 -07:00
Sashko Stubailo
5dc03c53ec Bump package versions 2014-10-09 16:45:54 -07:00
Nick Martin
cafb427aa7 Bump versions for 0.9.4-rc.2 2014-10-09 16:42:30 -07:00
Emily Stark
a3f07028e2 Check a selftest Error to 'selftest.fail' 2014-10-09 16:35:11 -07:00
Sashko Stubailo
1b675f6fc6 Merge branch '0.9.4' of github.com:meteor/meteor into 0.9.4 2014-10-09 16:28:29 -07:00
Sashko Stubailo
38b437b676 Update todos to newest code with touchwipe 2014-10-09 16:28:15 -07:00
ekatek
f00643dbae move the check for local package up release/TEST@0.9.4-proc-test2 release/TEST@0.9.4-proc-test 2014-10-09 16:26:19 -07:00
Justin SB
96bccec0ac Throttle yields, so we don't slow down in case of rapid calls to yield
This restores the behavior I lost when I removed Patience
2014-10-09 15:48:40 -07:00
Slava Kim
ce98ea08d5 Explicitly ban some names for Templates.
Fixes the test failure on IEs because for IEs 'name' is not a magical property
on functions.
2014-10-09 15:24:44 -07:00
Slava Kim
bae041b39c Explicitly ban some names for Templates.
Fixes the test failure on IEs because for IEs 'name' is not a magical property
on functions.
2014-10-09 15:22:19 -07:00
Slava Kim
000af3ad2e Update checkout apps to the head of official track by default 2014-10-09 14:28:31 -07:00
ekatek
d07f4f1abf do not print unstable version warning if the version is local 2014-10-09 13:13:45 -07:00
Slava Kim
9be657f862 Update checkout apps to the head of official track by default 2014-10-09 12:30:57 -07:00
Justin SB
ab36433972 Bump the timeout for waiting for the emulator to start
On first boot, it can take more than 2 minutes.
2014-10-09 12:28:42 -07:00
Justin SB
60a9da1606 Parse the curl progress to output it cleanly
Not the greatest solution technically, but it improves UX.
2014-10-09 12:28:42 -07:00
Sashko Stubailo
3dc5537a40 Merge branch '0.9.4' of github.com:meteor/meteor into 0.9.4 2014-10-09 12:27:17 -07:00
Sashko Stubailo
3dab2c9b50 First pass at History.md 2014-10-09 12:27:02 -07:00
Justin SB
bff1cec3dd Bump the timeout for waiting for the emulator to start
On first boot, it can take more than 2 minutes.
2014-10-09 12:11:12 -07:00
Avital Oliver
0dc9149d85 Hide springboard progress bar when complete
Fixes https://app.asana.com/0/802778796897/17391461309554

Apparently Console.enableProgressBar is written to do nothing if Console
is not in pretty mode.
2014-10-09 11:46:14 -07:00
Avital Oliver
5af5a98342 Hide springboard progress bar when complete
Fixes https://app.asana.com/0/802778796897/17391461309554

Apparently Console.enableProgressBar is written to do nothing if Console
is not in pretty mode.
2014-10-09 11:46:05 -07:00
Justin SB
e0876ece3a Parse the curl progress to output it cleanly
Not the greatest solution technically, but it improves UX.
2014-10-09 11:45:43 -07:00
Sashko Stubailo
cce7939271 Run jsdoc script 2014-10-09 11:27:44 -07:00
Sashko Stubailo
e1c745aab6 Merge branch 'devel' into 0.9.4 2014-10-09 11:27:28 -07:00