Commit Graph

141 Commits

Author SHA1 Message Date
David Glasser
5d65352c47 publish-release: S3 gives us a Buffer. 2013-07-30 19:58:41 -07:00
David Glasser
9fba51960c Clean up arch name in buildinfo when generating hashes.
Publish release manifests separately by platform and check they are the same in
publish-release.
2013-07-30 19:43:40 -07:00
David Glasser
c9aa2ac16b release process: export env var used by subcommand 2013-07-30 19:17:55 -07:00
David Glasser
2a750e64de build-package-tarballs chooses version based on buildinfo.json. 2013-07-30 15:32:06 -07:00
David Glasser
d21d0bffff ... and keep updating awssum. 2013-07-29 11:14:31 -07:00
David Glasser
127fdb3f7c Update awssum. 2013-07-29 11:12:30 -07:00
David Glasser
e3c18578e3 Call upgraders at "meteor update" time.
Add "app-packages" to the list of upgraders in a release JSON.
2013-07-29 10:57:06 -07:00
David Glasser
7f545db79e Also include awssum update 2013-07-26 19:04:13 -07:00
David Glasser
4e222d8e26 The standard app packages are brought in explicitly now.
.meteor/packages in new apps now contains "standard-app-packages", which implies
the standard set of packages like mongo-livedata. There is no special-casing in
initFromAppDir.  This line has been added to all the examples, etc.

There's a new concept of "upgraders".  "meteor run-upgrader app-packages" will
add standard-app-packages to the app, as well as all of the package in the app's
packages/ directory (an unrelated change since 0.6.4). This will be integrated
soon with "meteor update"; run-upgrader is essentially for testing.

project.add_package no longer adds packages that are already there.
2013-07-26 19:02:12 -07:00
David Glasser
0cbbfb4d5e update awssum 2013-07-25 18:54:40 -07:00
Emily Stark
bd7e0d768c Merge branch 'master' into devel
Conflicts:
	History.md
	docs/.meteor/release
	packages/mongo-livedata/.npm/package/npm-shrinkwrap.json
	packages/mongo-livedata/package.js
2013-07-19 16:05:29 -07:00
Emily Stark
6d6a0977e2 Update banner and notices to 0.6.4.1 2013-07-19 15:32:57 -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
f29e4a37c9 Switch bootstrap tarballs to CNAME for CloudFront. 2013-07-18 08:06:27 -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
1e002707a2 Rename "build version" to "built by" in other places too. 2013-07-17 00:02:58 -07:00
David Glasser
4afb7129f0 Allow bundler-test and watch-test to be run from anywhere. 2013-07-16 12:48:26 -07:00
David Glasser
c37ed42b80 Move buildVersion into buildinfo.json, and drop that file from built tarballs. 2013-07-16 09:16:32 -07:00
David Glasser
71065615be Update to linker-compatible awssum. 2013-07-15 12:45:21 -07:00
David Glasser
02a123a47c Introduce concept of "build version" to unipackages.
We bump the "build version" of the tools precisely when we want to rebuild all
packages.  This handles the "I ran meteor update, I may need to rebuild my
app/$PACKAGE_DIRS packages" case, as well as ensuring that warehouse package
version numbers are incremented when we need to rebuild all packages (but not on
EVERY tools directory change).
2013-07-15 12:36:02 -07:00
David Glasser
ec6abfb2f9 Release unipackages instead of source trees. 2013-07-15 11:19:51 -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
4e4e5add87 chmod +x and fix bug in new script 2013-06-10 15:47:56 -07:00
David Glasser
e72c7472a8 Restore copy from jenkins script, this time for dev bundle 2013-06-10 13:18:32 -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
226c19ba6a Merge submodule metadata from devel too 2013-06-10 12:23:36 -07:00
David Glasser
99ce3fa4f3 Merge branch 'devel' into linker
Conflicts:
	packages/livedata/stream_server.js
2013-06-10 12:12:47 -07:00
Nick Martin
5beeaab682 banner text tweak. 2013-06-10 11:34:35 -07:00
Nick Martin
659cc1403b metadata updates for 0.6.4 2013-06-06 21:48:48 -07:00
David Glasser
6d4ebcb885 Use newer awssum 2013-05-30 14:05:22 -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
David Glasser
75149b75f3 Upgrade node-http-proxy to 0.10.1.
Intentionally not choosing 0.10.2, which has a websocket proxying Node 0.10
semi-fix which I found to sometimes corrupt data (on Node 0.10). See my analysis
on https://github.com/nodejitsu/node-http-proxy/pull/402

I do not know whether or not the PR corrupts data on 0.8, but it isn't necessary
there, so I'm going to hold off on taking that change until the promised future
complete rewrite of http-proxy to use the new 0.10 streams API.
2013-05-28 14:17:53 -07:00
David Glasser
34c42d76b5 Upgrade Connect to 2.x.
Set $NODE_ENV appropriately (to 'development' in 'meteor run' and 'production'
otherwise) so that connect doesn't send stack traces over the network in
production.
2013-05-28 12:23:11 -07:00
David Glasser
15e190f073 Upgrade to Underscore 1.4.4. 2013-05-28 12:15:47 -07:00
David Glasser
5545a62985 Upgrade to Underscore 1.4.4. 2013-05-24 16:27:21 -07:00
David Glasser
957729c8ce Get run-tools-tests.sh passing.
In addition to minor "make the tests match the code" changes, there's also:

 - missing require('tar') in tarball download code
 - fix an fd leak in the bundler that was causing EMFILE on mac
 - switch run.js to listening for 'exit' to 'close' so that the end
   of stdout/err can be read
 - some concerningly necessary deletions of .build directories

Also, the version of cli-test.sh that runs against a fixed release is disabled,
since we're not building releases with the new package format for now.
2013-05-17 18:19:20 -07:00
Avital Oliver
3f9e08cbbb 0.6.3.1 2013-05-15 15:06:51 -07:00