Commit Graph

17030 Commits

Author SHA1 Message Date
Ben Newman
95589c3978 Bump package versions for 1.3.4.2-rc.0 release. release/METEOR@1.3.4.2-rc.0 2016-07-07 10:33:27 -04:00
Ben Newman
e0fe60426f Merge branch 'devel' into release-1.3.4.2 2016-07-07 10:29:32 -04:00
Ben Newman
f42e8ecc78 Merge pull request #7348 from meteor/7266-add-retrying-to-installer
Add retrying to installer
2016-07-07 13:48:29 +00:00
Tom Coleman
3022186923 Slightly DRY-ed the install script 2016-07-07 14:09:55 +10:00
Ben Newman
f812762353 Infer dev_bundle for meteor {npm,node} from .meteor/release.
Fixes #7338.
Fixes #7297.
2016-07-06 21:00:40 -04:00
Ben Newman
b5f731cbf7 Bump package versions for 1.3.4.2-beta.0 release. 2016-07-06 21:00:40 -04:00
Ben Newman
8e4dbc84a1 Update packages/promise npm-shrinkwrap.json. 2016-07-06 21:00:40 -04:00
Ben Newman
435ac930d8 Bump $BUNDLE_VERSION to 0.6.16 before rebuilding dev bundle. 2016-07-06 21:00:40 -04:00
Ben Newman
9c37dbf3e5 Only write .meteor-portable files in npm package directories.
Also clean up any existing misplaced .meteor-portable files.

Fixes #7296.
2016-07-06 21:00:39 -04:00
Ben Newman
c91a95cbef Make sure meteor shell options JSON is parsed separately.
Also don't ignore the `error` parameter passed to the readJSONFromStream
callback function.

Fixes #7312.
2016-07-06 21:00:39 -04:00
Ben Newman
1783559b56 Use ES2015 syntax to import JsFile and CssFile. 2016-07-06 21:00:39 -04:00
Ben Newman
27ac47aa14 Upgrade meteor-babel and reify to latest versions. 2016-07-06 21:00:38 -04:00
Ben Newman
9d417303c1 Symlink .meteor/local/plugin-cache in temporary test directory.
Because the cache directories are shared instead of copied, the results
now have a chance of surviving multiple invocations of `meteor test`.

This significantly reduces rebuild times when testing a large app; for
example, the meteor/tools/tests/apps/modules app now takes less than 10
seconds to rebuild (after restarting the process, not after a file change)
instead of 60 seconds or more.
2016-07-06 21:00:38 -04:00
Ben Newman
9865322d4c Compute prodPackageNames lazily. 2016-07-06 21:00:38 -04:00
Ben Newman
94f9ebbdd8 Don't call nonexistent writeHead method of net.Socket objects. 2016-07-06 21:00:38 -04:00
Ben Newman
ad997e9d4d Tolerate non-string results from path.* functions.
In particular, path.isAbsolute returns a boolean value.
2016-07-06 21:00:37 -04:00
Ben Newman
7c27f966d4 Only retry tarball download 10 times, and add a 5 second delay.
Hammering the server 98 times after a 404 seems excessive.
2016-07-06 15:08:05 -04:00
Ben Newman
876e122e63 Ensure launch-meteor temporary files always get cleaned up. 2016-07-06 14:31:59 -04:00
Ben Newman
10773b36a1 Different .part files for different $TARBALL_URLs. 2016-07-06 14:26:19 -04:00
Ben Newman
5640fc3290 Make curl arguments slightly more readable. 2016-07-06 14:09:29 -04:00
Tom Coleman
2860ab29ca Use sh compatible code (so we can have the exact same snippet as the installer).
See https://github.com/meteor/meteor/pull/7348#discussion_r69518729
2016-07-06 13:18:10 -04:00
Tom Coleman
4fbae084ec Add retrying loop code to installer.
This is code as seen on install.meteor.com, seems to be working there (https://github.com/meteor/meteor/issues/6960#issuecomment-229817525)
2016-07-06 13:18:10 -04:00
Tom Coleman
866614802e Merge pull request #7357 from meteor/mquandalle-fix-path-minifiers-css
Mquandalle fix path minifiers css
2016-07-06 11:37:28 +10:00
Tom Coleman
89aeac5623 Use a reproduced pathRelative in css minifier
We can't use Plugin.fs here so we'll keep replicating stuff.
2016-07-06 09:05:22 +10:00
Ben Newman
4185fd63fd Merge pull request #7343 from meteor/laosb-fix-7292
Relative path resolves to project directory when use METEOR_LOCAL_DIR.
2016-07-05 22:39:18 +00:00
Tom Coleman
a7b8c1e638 Revert "Bump bundle version"
I accidentally cherry-picked and pushed this to devel

This reverts commit c91844f581.
2016-07-04 12:25:39 +10:00
Tom Coleman
c91844f581 Bump bundle version 2016-07-04 12:23:23 +10:00
Wexpo Lyu
5aaf1877f9 Update the code using files. 2016-07-04 06:19:36 +08:00
Wexpo Lyu
2e73838926 Relative path resolves to project directory.
Fixing #7292
2016-07-03 12:41:18 +08:00
Ben Newman
f19241c60b Merge pull request #7316 from meteor/7149-CSS-respect-CDN-settings
Publish CSS documents for autoupdate after rewriting for #7149.
2016-06-29 14:39:16 +00:00
Tom Coleman
4be08cb01f Publish CSS documents for autoupdate after rewriting for #7149
Previously we did not take the JsCssRewriteHook (i.e. CDN host)
into account when doing CSS-only "version-refreshable" HCP.

It is not possible on the client to rewrite CSS urls to take the
hook into account (as it is a function), so instead, we just
publish those CSS URLs post-transform.
2016-06-29 16:21:42 +10:00
Zoltan Olah
424d8e2167 History.md for #7307 2016-06-29 09:18:12 +10:00
Gabriel Rubens
cbb9e219d7 Include test for App.appendToConfig 2016-06-29 09:18:12 +10:00
Gabriel Rubens
2be5bedc19 Update App.appendToConfig to use a raw string 2016-06-29 09:18:12 +10:00
Gabriel Rubens
3797ab014e Implement App.appendToConfig 2016-06-29 09:18:12 +10:00
Tom Coleman
8bdbcb7199 Marginally more helpful message to install phantom for self-test 2016-06-29 08:24:58 +10:00
Tom Coleman
c8b52c3c31 Merge branch 'fix-path-minifiers-css' of https://github.com/mquandalle/meteor into mquandalle-fix-path-minifiers-css 2016-06-29 08:17:33 +10:00
Ben Newman
d023789e10 Merge pull request #7285 from meteor/release-1.3.4.1
Release 1.3.4.1
2016-06-24 16:12:18 +00:00
Martijn Walraven
238623ca74 Avoid building Cordova project when no run targets are specified
Fixes #7271.
2016-06-24 15:19:09 +02:00
Zoltan Olah
67100f7207 Update Roadmap.md 2016-06-24 13:57:47 +10:00
Ben Newman
256edd499b Bump package versions for the official 1.3.4.1 release. release/METEOR@1.3.4.1 2016-06-23 18:33:11 -04:00
Ben Newman
ab92f1eaea Bump package versions for 1.3.4.1-rc.0 release. release/METEOR@1.3.4.1-rc.0 2016-06-23 12:32:50 -04:00
Ben Newman
9f42da9cd4 Update History.md with changes in 1.3.4.1. 2016-06-23 12:02:23 -04:00
Ben Newman
12e563664b Disable the HTTP timeout for the Galaxy upload POST. 2016-06-23 11:49:57 -04:00
Ben Newman
df77c39908 Bump default HTTP timeout to 60 seconds, and allow disabling. 2016-06-23 11:49:23 -04:00
Ben Newman
7cd32daab4 Add an explanation of Meteor 1.3.2.4 to History.md.
Answers #7284.
2016-06-23 11:27:41 -04:00
Ben Newman
19d1c5beeb Merge pull request #7281 from pradel/fix-twitter-login
Check options exist in twitter package.
2016-06-23 13:56:44 +00:00
Ben Newman
4d145b6ad4 Merge pull request #7276 from 4commerce-technologies-AG/devel-fix-check-releaseRecordForConstraints
Fix error on accessing empty releaseRecordForConstraints var.
2016-06-23 13:55:47 +00:00
Ben Newman
e026205ec5 Merge pull request #7279 from 4commerce-technologies-AG/devel-fix-generate-dev-bundle
Finalize replacement NPM@3 at generate-dev-bundle.sh script.
2016-06-23 13:53:09 +00:00
Pradel Léo
e8783e95ac Check options exist on twitter package 2016-06-23 11:29:26 +02:00