Commit Graph

16989 Commits

Author SHA1 Message Date
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
Tom Freudenberg
be9ba6b565 Finalize replacement NPM@3 at generate-dev-bundle.sh script 2016-06-23 05:59:48 +02:00
Tom Freudenberg
4cd91f67fa Fix error on accessing empty releaseRecordForConstraints var
When running meteor from checkout this var is defined to be null.
	Accessing var instance attribute will raise an exception
2016-06-23 02:01:32 +02:00
Ben Newman
4d21240f3b Update banners.json to encourage updating to Meteor 1.3.4. 2016-06-22 19:19:37 -04:00
Ben Newman
d71ebb6c28 Merge pull request #7263 from meteor/release-1.3.4
Release 1.3.4
2016-06-22 23:04:24 +00:00
Ben Newman
887cf9670b Bump package versions for the official 1.3.4 release. release/METEOR@1.3.4 2016-06-22 16:56:05 -04:00
Ben Newman
9435db8c9e Update History.md to reflect changes in Meteor 1.3.4. 2016-06-22 15:57:21 -04:00
Ben Newman
36354b1cc0 Bump package versions for 1.3.4-rc.2 release. release/METEOR@1.3.4-rc.2 2016-06-22 15:26:37 -04:00
Ben Newman
6c55961d98 Revert "Tolerate UNKNOWN errors in files.statOrNull on Windows."
This reverts commit 7ea260dac2.

The original reporter of #7243 says the problem has gone away (see
https://github.com/meteor/meteor/issues/7243#issuecomment-227643684), and
I would rather not hide UNKNOWN errors if we can help it.
2016-06-22 15:26:37 -04:00
Ben Newman
8507d44717 Flatten the files.withCache hierarchy.
It turns out throwing away cached results collected during nested
file.withCache calls was not a good idea.
2016-06-22 15:12:30 -04:00
Ben Newman
b14fb05128 In node_modules directories, cache packageSource._findSources.
This caching vastly reduces the amount of work _findSources must do when
the server restarts, at the small cost of ignoring new files added within
node_modules subdirectories. Even if you have to restart the server when
you add a file to node_modules (super rare), that's still MUCH better than
waiting for _findSources to rescan the node_modules directory every time
the server restarts.

Part of #7253 and #7008.
2016-06-22 14:45:11 -04:00
Ben Newman
a2e380d154 Cache files.{stat,lstat,realpath,readdir} hierarchically.
Passing a function to files.withCache invokes the function and causes the
results of these four files.* methods to be cached for the duration of the
function invocation.

Part of #7253 and #7008.
2016-06-22 14:41:54 -04:00
Ben Newman
9a5907b911 Merge branch 'devel' into release-1.3.4 2016-06-22 13:22:44 -04:00
Zoltan Olah
8f86d08827 Merge pull request #7143 from mitar/timeouts
Set timeout for HTTP requests
2016-06-22 08:59:38 +10:00
Zoltan Olah
5d5cfca5b0 Merge pull request #7256 from workflow/1-3-3-1-facebook-auth-type-checking-error-in-facebook-package-1-2-7-B-#7255
Adds truthiness check b4 accessing property in facebook package. Fixes #7255
2016-06-22 08:41:34 +10:00
Ben Newman
9d17aa44c6 Bump package versions for 1.3.4-rc.1 release. release/METEOR@1.3.4-rc.1 2016-06-21 13:45:12 -04:00
Ben Newman
7ea260dac2 Tolerate UNKNOWN errors in files.statOrNull on Windows.
Fixes #7243.
2016-06-21 13:40:15 -04:00
Ben Newman
d60a0b90ee Make it possible to uninstall Meteor on Windows.
If this works, the uninstall command should be:

  misexec /x {1B1B4C6E-371D-4027-80AB-27922ABD7EE4}
2016-06-21 11:05:32 -04:00
Tomas Brambora
95ba1ed841 Reload: detect href ending with #.
Fixes #7239.
2016-06-21 11:05:32 -04:00
Ben Newman
fc8fe51c15 Merge pull request #7261 from realyze/devel
Reload: detect href ending with `#`.
2016-06-21 14:28:22 +00:00
Zoltan Olah
1a06eefc14 Removes install.sh - added by mistake 2016-06-21 15:59:08 +10:00
Zoltan Olah
f10873aab3 Moves install.sh into /scripts 2016-06-21 15:26:34 +10:00
Zoltan Olah
dbd28d2354 Adds web install script 2016-06-21 15:21:20 +10:00
Tomas Brambora
51c4565aa9 Implemented @banjamn suggestions. 2016-06-21 08:51:58 +10:00
Ben Newman
b83e4d3061 Avoid crashing when proxying invalid requests. 2016-06-20 18:31:13 -04:00
Ben Newman
d270b2ab97 Bump package versions for 1.3.4-rc.0 release. release/METEOR@1.3.4-rc.0 2016-06-20 18:00:15 -04:00
Ben Newman
b7fd3b0737 Upgrade http request npm dependency to 2.72.0. 2016-06-20 18:00:14 -04:00
Ben Newman
998f5d4ed2 Bump $BUNDLE_VERSION to 0.6.15 before rebuilding dev bundle. 2016-06-20 16:29:31 -04:00
Ben Newman
e025d3054a Upgrade meteor-babel and reify to latest versions.
The bulk of this diff is due to flattening npm-shrinkwrap.json files
because we're now using npm@3 instead of npm@2.
2016-06-20 16:26:17 -04:00
Ben Newman
a569cf9807 Bump $BUNDLE_VERSION to 0.6.14 before rebuilding dev bundle. 2016-06-20 15:59:08 -04:00
Ben Newman
e9ed66e385 Install npm dependencies without creating package.json files.
With npm@3, we can get away with using only npm-shrinkwrap.json files.
2016-06-20 15:43:51 -04:00
Ben Newman
5f85d61f41 Upgrade npm to 3.9.6. 2016-06-20 14:54:39 -04:00
Tomas Brambora
b8cf2b67bf Reload: detect href ending with #.
Fixes #7239 .
2016-06-20 19:29:32 +10:00
Workflow
654939e092 Adds truthness check b4 accessing property in facebook package. Fixes #7255 2016-06-19 22:30:36 +08:00
Ben Newman
9897092a7c Merge pull request #7237 from meteor/release-1.3.3.1
Release 1.3.3.1
2016-06-17 22:49:08 +00:00
Ben Newman
fd0c6ddc56 Update History.md with changes in Meteor 1.3.3.1. 2016-06-17 18:47:09 -04:00
Ben Newman
9c0f4e6d6a Bump package versions for the official 1.3.3.1 release. release/METEOR@1.3.3.1 2016-06-17 15:29:20 -04:00
Ben Newman
f9879fb18c Use npm-node-aes-gcm@0.1.5_1 in oauth-encryption. 2016-06-17 14:43:05 -04:00
Ben Newman
ac18ec3d2b Try bumping the npm-node-aes-gcm version again to publish on Windows.
Part of: #7217
2016-06-17 14:43:05 -04:00
Ben Newman
bae9133e91 Merge pull request #7220 from Hongbo-Miao/patch-1
Fix DDPRateLimiter README.md: change `method` property to `name`.
2016-06-17 18:07:54 +00:00
Ben Newman
fbfa1b560c Merge pull request #7245 from jdivy/provide-headless-option-in-regular-tests
Allow `--headless` option for `test` and `test-packages`.

The `--headless` option was initially implemented only for `self-test`,
but it makes sense for other kinds of tests, too.
2016-06-17 18:05:59 +00:00