Commit Graph

19664 Commits

Author SHA1 Message Date
Ben Newman
d464b72d7a Bump package versions for 1.6-beta.23 release. release/METEOR@1.6-beta.23 2017-08-17 10:29:56 -04:00
Ben Newman
6804aedc6c Merge branch 'release-1.5.2' into release-1.6 2017-08-17 10:19:46 -04:00
Ben Newman
27d3584b79 Bump package versions for 1.5.2-beta.11 release. release/METEOR@1.5.2-beta.11 2017-08-17 10:11:04 -04:00
Ben Newman
d2213f0288 Merge branch 'devel' into release-1.5.2 2017-08-17 10:08:20 -04:00
Ben Newman
70ab06aa94 Undo coffeescript-related changes made on release-1.5.2.
This will make it easier to merge devel into release-1.5.2, since devel
now contains the final verison of these changes, as implemented by
@GeoffreyBooth in #9018.

Revert "Bump coffeescript package version to 1.13.0."
This reverts commit d727ad02a7.

Revert "Move coffeescript and coffeescript-test-helper packages back into core. (#8960)"
This reverts commit eb3c7dd344.

Revert "Split coffeescript package into coffeescript / coffeescript-compiler."
This reverts commit 8344cbf59d.

Revert "Instructions for how to test the coffeescript package"
This reverts commit 491cbc3bfe.
2017-08-17 10:05:28 -04:00
Ben Newman
65c8b481e2 Specify a few more version constraints in coffeescript packages.
Small follow-up to #9018.

Note (especially @GeoffreyBooth): these version constraints do two things:
(1) specify a minimum version, and (2) fix the major version. In other
words, the coffeescript package should not need to be republished when we
publish new minor versions of these core packages in Meteor 1.5.2 or 1.6.

When/if we publish a new major version of these packages, the coffeescript
package can simply bump its version constraints, but that probably won't
happen any time soon. I think that's reasonable because a major version
bump suggests there are some significant changes that need to be
acknowledged by dependent packages.
2017-08-17 09:44:13 -04:00
Ben Newman
568e695eeb Merge pull request #9018 from GeoffreyBooth/coffeescript-compiler-split-2
Split coffeescript package, take 2.
2017-08-17 08:53:19 -04:00
Geoffrey Booth
4bd17e3f30 Fix syntax of api.mainModule 2017-08-16 12:37:31 -07:00
Ben Newman
8822e90f87 Bump package versions for 1.6-beta.22 release. release/METEOR@1.6-beta.22 2017-08-16 14:17:03 -04:00
Ben Newman
52e695ddd2 Bump $BUNDLE_VERSION to 8.4.0 before rebuilding dev bundle. 2017-08-16 14:10:09 -04:00
Ben Newman
82db51f216 Upgrade Node to version 8.4.0.
Most notable new feature: HTTP/2 support!

https://nodejs.org/en/blog/release/v8.4.0/
2017-08-16 14:09:13 -04:00
Ben Newman
f04545accf Merge pull request #9021 from meteor/abernix/fix-windows-npm-1.6
Changes to npm installation methods for npm@5 / Meteor 1.6.
2017-08-16 11:38:55 -04:00
Jesse Rosenberger
d86b0c712e Be more considerate of interactive environments and expired tokens. (#9015)
If a login token is expired, or no longer valid, make sure that Meteor doesn't
just sit there at a login prompt that the user can't see.

This currently only applies if `headless` mode is enabled, though a follow-up
to this commit might consider setting `headless = true` automatically
in a CI environment using environment variables such as: `CI`, `TRAVIS`,
`JENKINS_URL`, etc., as the npm-registry-client does in a similar way.

See: https://github.com/npm/npm-registry-client/pull/129/files

Fixes #8839.
2017-08-16 11:21:53 -04:00
Jesse Rosenberger
5626ad7dee JUnit support for meteor self-test test runner. (#9014) 2017-08-16 11:21:07 -04:00
Jesse Rosenberger
fe9401a5ef Observe requirements for running .cmd scripts on Windows.
The `child_process` documentation indicates that .cmd scripts (such as
the `npm.cmd` script for npm) must be started within a shell, such as
cmd.exe.

While it was tempting to switch this to use `child_process`'s `spawn`,
which supports a `shell` option, it would have required us to buffer
our own stdout/stderr output via `data` event handlers.

Ref: https://nodejs.org/api/child_process.html#child_process_spawning_bat_and_cmd_files_on_windows
2017-08-16 00:59:07 +03:00
Jesse Rosenberger
f68de59464 Stop setting NPM_CONFIG_PREFIX in getEnv.
This was causing problems with `npm@5`, but realistically it may not be
be necessary anymore since `npm@5` has a much smarter global,
self-healing `cacache`.
2017-08-15 14:16:53 -07:00
Geoffrey Booth
6a612f4213 Fix coffeescript-compiler version; make more ecmascript-y 2017-08-15 18:19:48 +00:00
Geoffrey Booth
27c6a52d35 Fix coffeescript / coffeescript-compiler dependency versions 2017-08-15 16:52:40 +00:00
Geoffrey Booth
89af934b54 Fix coffeescript package version to same as coffeescript-compiler; update documentation 2017-08-15 16:40:27 +00:00
Ben Newman
b290bcaa1b Bump package versions for 1.6-beta.21 release. release/METEOR@1.6-beta.21 2017-08-15 12:27:21 -04:00
Ben Newman
f405c443fe Move coffeescript to non-core so we don't have to publish a beta.
@GeoffreyBooth and I are still deciding exactly what to do with the
coffeescript package in #8960, but in the meantime I need to publish
another 1.6 beta, and I'd like to avoid publishing a beta version of
coffeescript along with it.
2017-08-15 12:26:57 -04:00
Geoffrey Booth
dd6a0f703b Move all coffeescript* packages back into non-core 2017-08-15 10:23:54 +00:00
Ben Newman
3677e17a23 Bump coffeescript package version to 1.13.0.
This Meteor package version does not need to track the npm version of the
coffeescript package, and probably should not change as often as the
version of the packages/non-core/coffeescript-compiler package.
2017-08-15 10:22:53 +00:00
Geoffrey Booth
13fb390bc7 Move coffeescript and coffeescript-test-helper packages back into core. (#8960)
They depend on core packages like caching-compiler, but coffeescript-compiler
can remain in non-core, so it can update more frequently as npm coffeescript
gets updated.
2017-08-15 10:21:18 +00:00
Geoffrey Booth
e4c0240179 Split coffeescript package into coffeescript / coffeescript-compiler. 2017-08-15 10:21:17 +00:00
Geoffrey Booth
0d65440fe0 Instructions for how to test the coffeescript package 2017-08-15 10:21:16 +00:00
Geoffrey Booth
7b8a5f3ab8 Bump CoffeeScript version 2017-08-15 10:21:16 +00:00
Ben Newman
8e10361721 Bump package versions for 1.6-beta.20 release. 2017-08-14 22:53:13 -04:00
Ben Newman
f53288efb7 Merge branch 'release-1.5.2' into release-1.6 2017-08-14 22:37:58 -04:00
Ben Newman
3c98a605ad Merge branch 'devel' into release-1.5.2 2017-08-14 22:35:15 -04:00
Ben Newman
34b0237364 Avoid api.export("process") in modules package.js.
Declaring a package-local variable called `process` in the `modules`
package causes uglify-js not to replace `process.env.NODE_ENV` with a
string literal value in any `node_modules` contained by the `modules`
package, which causes React Dev Tools to display a warning.
2017-08-14 22:32:19 -04:00
Ben Newman
d727ad02a7 Bump coffeescript package version to 1.13.0.
This Meteor package version does not need to track the npm version of the
coffeescript package, and probably should not change as often as the
version of the packages/non-core/coffeescript-compiler package.
2017-08-14 18:34:55 -04:00
Geoffrey Booth
eb3c7dd344 Move coffeescript and coffeescript-test-helper packages back into core. (#8960)
They depend on core packages like caching-compiler, but coffeescript-compiler
can remain in non-core, so it can update more frequently as npm coffeescript
gets updated.
2017-08-14 18:07:04 -04:00
Geoffrey Booth
8344cbf59d Split coffeescript package into coffeescript / coffeescript-compiler. 2017-08-14 13:40:09 -04:00
Geoffrey Booth
491cbc3bfe Instructions for how to test the coffeescript package 2017-08-14 13:40:09 -04:00
Geoffrey Booth
eb78811070 Bump CoffeeScript version 2017-08-14 13:40:09 -04:00
Ben Newman
86b82169d0 Replace for-in loops in minimongo package with Object.keys/forEach.
This fixes a problem reported by @arggh:
https://github.com/meteor/meteor/pull/8913#issuecomment-322048927

The problem appears to have been introduced by this commit:
2c5094fa0c

The reason this commit was problematic is that it turned several
Object.keys/forEach loops into for-in loops, which caused a few unchanged
return statements to take on a new meaning: instead of "continuing" the
loop by returning from the forEach callback function, the return
statements now returned from the enclosing function:
2c5094fa0c (commitcomment-23638205)
2c5094fa0c (commitcomment-23638216)

Besides this refactoring hazard, what else is wrong with for-in loops?

First, for-in loops iterate over not only own but also inherited keys,
which makes them not exactly equivalent to Object.keys/forEach, which
iterates over only own keys. Another way to address that problem is to
initialize this.queries to Object.create(null) instead of {} (which I've
also done in this commit), so that there is no prototype chain.

Second, for-in loops are a trigger for deoptimization in V8:
https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#5-for-in

Since 2c5094fa0c was supposed to be about
improving performance, and these changes introduced some logical problems
as well, I think it's best that we avoid for-in loops.
2017-08-14 13:35:35 -04:00
Ben Newman
2dabbf0b60 Make timing of minimongo observeChanges test more reliable. 2017-08-14 12:30:16 -04:00
Ben Newman
9ba9a359f5 Update Blaze submodule to latest master version.
Specifically, this version corresponds to the branch
https://github.com/meteor/blaze/commits/revert-html5-tests, which is based
on the current master branch tip
621608c823
with one additional commit:
6a82100e09.

cc @mitar @abernix
2017-08-14 12:19:36 -04:00
Lee Pender
092c0af3dc Add sizes necessary for legacy iOs icon support. (#9012) 2017-08-14 11:31:26 -04:00
Ben Newman
3bdc0bb4eb Move standard-minifiers self-test timeout *after* slow run.match. 2017-08-11 19:36:32 -04:00
Ben Newman
a7e8e27ca7 Move standard-minifiers self-test timeout *after* slow run.match. 2017-08-11 19:36:01 -04:00
Ben Newman
73b43690ef Bump package versions for 1.6-beta.19 release. release/METEOR@1.6-beta.19 2017-08-11 17:28:19 -04:00
Ben Newman
688d9211b7 Fix Mongo hint test by waiting for collection.createIndex Promise. 2017-08-11 16:28:33 -04:00
Ben Newman
fff7d62b38 Fix Mongo hint test by waiting for collection.createIndex Promise. 2017-08-11 16:28:15 -04:00
Jesse Rosenberger
073fb0c1fd Remove duplicated import of ../tool-env/install-runtime.js.
From the d16552112e merge of `release-1.5.2`.
2017-08-11 22:53:32 +03:00
Ben Newman
0b9ea6e2c5 Merge branch 'release-1.5.2' into release-1.6 2017-08-11 15:52:26 -04:00
Ben Newman
18c14ec899 Bump package versions for 1.5.2-beta.10 release. release/METEOR@1.5.2-beta.10 2017-08-11 15:26:02 -04:00
Ben Newman
0e723593a6 Merge branch 'devel' into release-1.5.2 2017-08-11 15:23:39 -04:00
Ben Newman
93d0c5f2ba Merge pull request #9007 from meteor/immediately-dirty-optimistic-functions
Immediately dirty optimistic functions when relevant paths modified.
2017-08-11 15:22:49 -04:00