Emily Stark
1180597f06
bump dev bundle; upgrade node
2014-06-16 18:17:21 -07:00
Torgny Bjers
816641caad
Adding = to long options for MongoDB compilation
...
References meteor/meteor#2163
2014-05-22 15:57:54 -07:00
Felix Rabe
3431c66c16
Fix occurrences of "cd dirname $0"
...
They are not safe for spaces in paths. There might be other places to look for trouble.
I've run the following command to produce this commit: (on OS X, copy-and-pasting the below exactly)
find . -type f -name '*.sh' -print0 | # Find all .sh files
xargs -0 fgrep -H -- '`' | # See all places with backticks in them
fgrep 'cd `dirname $0' | # I deemed these problematic (variable assignments are safe)
cut -d ':' -f 1 | # Take the <file> from <file>:<line> produced by "grep -H"
tr '\n' '\0' | # Also here, spaces can be problematic - always do "xargs -0"!
xargs -0 -- sed -i '' 's/cd `dirname $0`/cd "`dirname "$0"`"/g'
The significance of adding the two levels of "'s can be verified by running the following in your Terminal:
$ node -e 'console.log(process.argv.splice(1))' -- `echo 1 2`
[ '1', '2' ]
$ node -e 'console.log(process.argv.splice(1))' -- "`echo 1 2`"
[ '1 2' ]
$ node -e 'console.log(process.argv.splice(1))' -- "`echo "1 2"`"
[ '1 2' ]
2014-05-07 17:51:09 -07:00
David Glasser
f2e2a781cc
Update Node to 0.10.28 which includes our npm fix
2014-05-02 10:59:37 -07:00
David Glasser
000c71ec30
A better version of our patch
...
However, the better version involves taking some changes from a version
of npm not yet released with Node.
2014-04-30 18:03:53 -07:00
David Glasser
94074c0dcd
new dev bundle: with npm/npm#5137
...
We should be able to remove our "npm install --force" workaround after
this.
2014-04-30 18:03:53 -07:00
Nick Martin
714e513b99
Upgrade Node.js from 0.10.25 to 0.10.26
2014-04-07 22:56:41 -07:00
Nick Martin
4a1a6816d3
Bump openssl version used for mongo. Add node-aes-gcm.
...
The previous version of openssl (1.0.1f) was vulnerable to the 'heartbleed'
attack, though Meteor did not use this version in a way that opened
it to attack. The build of openssl here is used only for mongod, not
node, and was used only as a client, not a server. But lets upgrade anyway.
2014-04-07 22:50:43 -07:00
David Glasser
0791b31b30
dev bundle: fork node-http-proxy to fix #1871
2014-03-03 23:15:41 -08:00
David Glasser
28227b783c
new dev bundle, fixing an eachline bug
2014-02-13 18:48:07 -08:00
David Glasser
d54aae78f8
new dev bundle (0.3.31) with newer source-map
...
Fixes #1782 .
This dev bundle also drops optimist from the dev bundle (previously
committed, not built until now).
2014-02-11 16:16:36 -08:00
David Glasser
153d84cb9f
Drop optimist from the dev bundle
...
The tool no longer uses it. Simplify webapp_server to do a dumb check
for a flag instead of using optimist.
ctl-helper still uses optimist; ideally it should use our parser from
main.js instead.
Also, remove a debugging "|| true" that was causing "LISTENING" to be
output even without --keepalive.
I am not actually planning to rebuild the dev bundle just to drop
optimist.
2014-02-07 18:26:29 -08:00
Naomi Seyfer
b32e1d3c78
Update dev bundle to include heapdump, 0.3.30
2014-02-03 17:41:02 -08:00
David Glasser
604cd853f3
Update http-proxy to 1.0.2 from our fork of 1.0.1
...
Only real change is changing a bad console.log into invoking our error
handler, which we need for not printing too much junk in the runner
https://github.com/nodejitsu/node-http-proxy/commit/daad4703
2014-01-28 11:57:36 -08:00
David Glasser
291c2ecad7
Upgrade kexec, drop shell-quote
...
We only used shell-quote to workaround kexec's lack of a feature added
in this version.
2014-01-27 09:52:50 -08:00
David Glasser
d4e0cff766
Use a fork of http-proxy with two PRs
2014-01-23 12:23:16 -08:00
David Glasser
a7d10d650d
Update Node to 0.10.25. Remove bug workaround.
2014-01-23 12:15:29 -08:00
David Glasser
4f34ac0d6e
Various dev bundle upgrades
...
* http-proxy: 1.0.1 (from a pre-release fork of 1.0)
* Node: 0.10.24 (from 0.10.22)
* semver: 2.2.1 (from 2.1.0)
* request: 2.33.0 (from 2.27.0)
* fstream: 0.1.25 (from 0.1.24)
* tar: 0.1.19 (from 0.1.18)
* eachline: 2.4.0 (from 2.3.3)
* source-map: 0.1.31 (from 0.1.30)
* source-map-support: 0.2.5 (from 0.2.3)
* mongo: 2.4.9 (from 2.4.8)
* openssl in mongo: 1.0.1f (from 1.0.1e)
Have not yet updated the various minimum Node version requirements.
2014-01-23 12:09:40 -08:00
Nick Martin
24a80d49b1
Preemptively add bcrypt to the dev bundle. We think we may want it soon.
2013-12-10 15:36:46 -08:00
Nick Martin
1b08ac2d9d
Upgrade to stock Node 0.10.22.
...
This discards our fix for stream pausing. We'll monkey patch it in
at startup instead of relying on a custom build.
2013-12-10 15:27:40 -08:00
Nick Martin
db624dd162
New dev bundle: mongo with startup speed boost.
...
Also upgrade to 2.4.8 while we're at it.
(In the meteor/mongo repository, we've created an ssl-2.4.8 branch, and
also added a backported-from-Mongo-2.5 change to poll the repl set
config more often on startup.)
2013-12-10 12:45:53 -08:00
David Glasser
cd873c0e47
Drop handlebars from the dev bundle.
2013-12-02 17:15:37 -08:00
David Glasser
088b6d37ac
Build a fork of Node.
2013-11-13 01:08:49 -08:00
Nick Martin
f4e21c0d37
Bump node version from 0.10.20 to 0.10.21 for Meteor 0.6.6.2 release.
2013-10-20 22:02:25 -07:00
David Glasser
0be428b731
Build mongo with -j4 on Mac too.
2013-10-08 17:14:32 -07:00
David Glasser
c4b1e6b324
Hopefully fix ECONNRESET errors again.
2013-10-08 16:31:36 -07:00
David Glasser
0f0542efb1
Replace byline npm module with eachline.
...
Node 0.10-compatible versions of byline (eg 3.1.2) drop empty lines.
2013-10-03 15:52:20 -07:00
David Glasser
c03879f780
Upgrade lots of dev bundle NPM modules.
...
Needs a license review.
2013-10-03 15:52:19 -07:00
David Glasser
664339fdb3
Yet another Node version bump: to 0.10.20. Fixes tls read bug.
2013-10-03 15:52:19 -07:00
David Glasser
6c1f92e891
Might as well use the version that just got released (0.10.19).
2013-09-24 23:31:47 -07:00
David Glasser
411c6cf8f4
Update to Node 0.10.18, bumping dev bundle version. Use caronte.
2013-09-24 17:13:37 -07:00
Nick Martin
ca080b1477
bump mongo and dev bundle version.
2013-09-23 20:53:09 -07:00
David Glasser
94810814d6
No longer use NPM progress module.
2013-07-19 10:42:56 -07:00
David Glasser
c1667c7d0c
Move clean-css and uglify-js from dev bundle to a new minifiers package.
...
This will make it much easier to upgrade them and test new versions.
(They are still called from the bundler, so changes to how we access them (eg
source map support) will require modifying tools, but just "upgrade to new
version" now is much easier.)
2013-07-18 10:31:52 -07:00
David Glasser
59bec95724
Add a comment about new Uglify version.
2013-07-18 10:17:49 -07:00
David Glasser
88d12e76e6
Upgrade Underscore to 1.5.1.
...
A cursory glance at the diff suggests that this will not affect anything we do
in Meteor.
2013-07-17 12:21:38 -07:00
David Glasser
46871d3fa6
Update more NPM packages.
...
- clean-css: 0.8.3 - 1.0.11
- progress: 0.0.5 - 1.0.0 (includes the bug fix we requested)
Don't try to install source-map twice, oops.
2013-07-17 12:10:25 -07:00
David Glasser
625aed5ea3
Upgrade fibers to 1.0.1. Specify the tested Node version in more places.
...
Dev bundle version not yet bumped.
Fixes #1153 .
2013-07-17 11:48:10 -07:00
David Glasser
b7f6a093a4
dev bundle: use source-map version which took our PR.
...
Point to a slightly refactored version of source-map-support.
Have not yet bumped dev bundle version.
2013-07-17 11:43:23 -07:00
David Glasser
3205e33537
using source maps in JSImage.load now probably works
2013-07-12 10:11:31 -07:00
David Glasser
177a5684c9
checkpoint for using source maps in jsimage.load
...
syntax error parsing is broken, will fix
2013-07-12 10:11:31 -07:00
David Glasser
01a1bc8d6b
On server, parse source maps less often.
2013-07-12 10:11:30 -07:00
David Glasser
91142a5636
Upgrade to newer source-map (same as what node-source-map-support uses).
2013-07-12 10:11:28 -07:00
David Glasser
32aa96c232
Add node-source-map-support to dev bundle.
2013-07-12 10:11:28 -07:00
Geoff Schmidt
2a0f7afa7d
Add 'source-map' to dev_bundle and bump dev_bundle version.
...
(Consider this a preliminary version number, subject to
change, until this branch is actually merged.)
2013-07-12 10:11:28 -07:00
Slava Kim
82552022d8
Update dev_bundle's mongodb binaries
...
- Dev_bundle generation: Compile mongodb binaries (mongo, mongod) with ssl
support, statically linking compiled openssl libs.
- meteor mongo website: parse mongo url and pass ssl flag to mongo shell in case
of "?ssl=true" in mongo url from mother/galaxy.
- added script to generate all mongodb binaries with ssl support on linux
platform.
2013-07-10 12:42:29 -07:00
David Glasser
e07445cd75
Merge branch 'devel' into linker
...
This pulls the Node upgrade, which needs a different dev bundle version number
here
Conflicts:
meteor
tools/server/server.js
2013-06-10 16:58:03 -07:00
David Glasser
870b0c5065
Bump MIN_NODE_VERSION.
2013-06-10 15:52:30 -07:00
David Glasser
3c5c9579df
Update Node to 0.8.24 and MongoDB to 2.4.4.
...
Have not yet tweaked MIN_NODE_VERSION.
We are still avoiding Node 0.10 because http-proxy has bugs with websocket
proxying on Node 0.10.
2013-06-10 12:32:58 -07:00
David Glasser
8a7b1ddf35
Merge branch 'devel' into linker.
...
Conflicts:
meteor
packages/absolute-url/.gitignore
packages/accounts-base/package.js
packages/accounts-oauth/package.js
packages/audit-argument-checks/.gitignore
packages/coffeescript/.gitignore
packages/coffeescript/package.js
packages/localstorage-polyfill/.gitignore
packages/oauth1/package.js
packages/oauth2/package.js
packages/random/random.js
scripts/generate-dev-bundle.sh
tools/packages.js
tools/run.js
tools/server/server.js
2013-05-28 15:10:48 -07:00