Commit Graph

19997 Commits

Author SHA1 Message Date
Ben Newman
5d7058dc17 Bump package versions for 1.6-rc.9 release. release/METEOR@1.6-rc.9 2017-10-13 13:54:47 -04:00
Ben Newman
b6d955ba11 Bump $BUNDLE_VERSION to 8.7.1 before rebuilding dev bundle. 2017-10-13 13:39:34 -04:00
Ben Newman
fffc9931fb Merge branch 'devel' into release-1.6 2017-10-13 13:31:48 -04:00
Jesse Rosenberger
ce27323caf logging: Guard against log color being undefined.
The 'info' log facility uses the default color, which is not present in
`LEVEL_COLORS`, thus `undefined` and unable to be `slice`d.

(As reported by @brucejo75).

Refs: https://github.com/meteor/meteor/pull/8728#issuecomment-336324674
Refs: meteor/meteor#9170
2017-10-13 14:12:17 +03:00
Ben Newman
621504efaf Merge branch 'devel' into release-1.6 2017-10-12 20:31:50 -04:00
Ben Newman
525cbc33b3 Fix Mongo authentication errors by upgrading mongodb[-core].
Fixes #9219.
2017-10-12 20:24:05 -04:00
Jesse Rosenberger
0454f23c8c Remove duplicate Node headers in Unix dev bundle.
This was accomplished in 67b76abc78 by
@benjamn, but a merge commit from devel to release-1.6 inadvertently
removed half of it.  Prior to this commit, the new headers have been
used, but the old headers were still in place and taking up room.
2017-10-13 01:43:37 +03:00
Ben Newman
cdeaf2cc61 Merge branch 'devel' into release-1.6 2017-10-12 18:28:50 -04:00
Ben Newman
8b65b6e86f Revert to source-map@0.5.7 in coffeescript-compiler to fix #9217. 2017-10-12 18:24:15 -04:00
Ben Newman
fdaa0f5145 Bump package versions for 1.6-rc.8 release. release/METEOR@1.6-rc.8 2017-10-12 17:42:21 -04:00
Ben Newman
f011bf2acc Don't add //#sourceURL comment to dynamic modules.
Dynamic modules get a dynamic //#sourceURL when they are evaluated:
948d9628f8/packages/dynamic-import/client.js (L103)
2017-10-12 17:42:21 -04:00
Ben Newman
948d9628f8 Add //#sourceURL comments to assist with source mapping on Windows.
Fixes #9166 (👋 @brucejo75).
2017-10-12 17:28:17 -04:00
Ben Newman
abd91ac7c5 Use files.rm_recursive_async to implement meteor reset.
This should hopefully prevent ENOTEMPTY errors on Windows.
2017-10-12 16:46:10 -04:00
Ben Newman
5154835c73 Allow asynchronous meteor command implementations. 2017-10-12 16:45:04 -04:00
Ben Newman
979ac73df1 Merge branch 'devel' into release-1.6 2017-10-12 14:17:26 -04:00
Ben Newman
01e4c9cfd8 Update to official versions of mongodb[-core] with @glasser's fixes.
Previously:
https://github.com/meteor/meteor/pull/9200
https://github.com/meteor/meteor/issues/8598
2017-10-12 14:13:07 -04:00
Ben Newman
2692f99f7a Merge branch 'devel' into release-1.6 2017-10-12 13:49:27 -04:00
Ben Newman
2dcc10c2cc Avoid matching exact language falsy destructuring error. 2017-10-12 12:44:41 -04:00
Ben Newman
3b93934217 Bump package versions for 1.6-rc.7 release. release/METEOR@1.6-rc.7 2017-10-12 11:23:36 -04:00
Ben Newman
074f09d829 Bump $BUNDLE_VERSION to 8.7.0 before rebuilding dev bundle. 2017-10-12 10:47:39 -04:00
Ben Newman
eebc70b1e0 Upgrade Node to version 8.7.0.
https://nodejs.org/en/blog/release/v8.7.0/
2017-10-12 10:47:37 -04:00
Geoffrey Booth
b2ec292fd2 Update another test to reflect new extension for imported CoffeeScript files 2017-10-12 10:26:05 -04:00
Geoffrey Booth
9447caf684 Update test to reflect new extension for imported CoffeeScript files 2017-10-12 10:26:05 -04:00
Geoffrey Booth
9da4605677 Update dependencies 2017-10-12 10:26:05 -04:00
Geoffrey Booth
0707a18954 Keep the same outputFilePath as the inputFilePath was, to prevent Meteor from adding a second layer of exports, to prevent a circular dependency; see https://github.com/meteor/meteor/issues/9176#issuecomment-334942137 2017-10-12 10:26:05 -04:00
Geoffrey Booth
4494d53ec5 Bump coffeescript packages versions 2017-10-12 10:26:05 -04:00
Jesse Rosenberger
5210f0cff0 Merge pull request #9207 from meteor/hwillson-code-of-conduct-tweaks
Rename .md & replace "Apollo" with "meteor" in CoC
2017-10-12 09:44:38 +03:00
Ben Newman
5da7ebdfe7 Make rate limiter tests more tolerant of slight timing variations.
This package contains some of the most fragile tests in the entire
codebase, in large part because the author did not account for the
nondeterminism of JS timers across platforms and test runs.
2017-10-11 21:08:41 -04:00
Ben Newman
f9df851134 Use module.watch live bindings to solve #9176.
Further explanation / discussion:
https://github.com/meteor/meteor/issues/9176#issuecomment-335913296

Another (complementary) solution to the same problem: #9190
2017-10-11 21:08:41 -04:00
Hugh Willson
42b3051f77 Fix case of remaining policy files 2017-10-11 14:52:27 -04:00
Hugh Willson
9caf9fd583 Adjust policy doc filenames to use capital snake case 2017-10-11 14:47:21 -04:00
Hugh Willson
23caffa394 Replace ReactDOM.render with ReactDOM.hydrate (#9204)
As of React 16, using `ReactDOM.render` in the manner
demonstrated in the `server-render` README will cause a
React deprecation warning. Switching to `ReactDOM.hydrate`
will avoid this. From the React docs:

> Using ReactDOM.render() to hydrate a server-rendered
> container is deprecated and will be removed in React 17.
> Use hydrate() instead.

Source: https://reactjs.org/docs/react-dom.html#render
2017-10-11 11:41:34 -04:00
Amitosh Swain Mahapatra
a39917730f Switch to bright colors on Windows Powershell (#9170)
* Switch to bright colors on Powershell

Fixes #9118
2017-10-11 11:23:27 -04:00
Hugh Willson
68fae209cd Replace Apollo references with Meteor 2017-10-11 06:37:01 -04:00
Thea Lamkin
e2352e4588 Create code-of-conduct.md
Based on Apollo Code of Conduct: https://github.com/apollographql/apollo/blob/master/CODE-OF-CONDUCT.md
2017-10-10 20:02:59 -07:00
Ben Newman
7315c7ea59 Regression test for #9185 (fixed by #9187). 2017-10-10 14:52:15 -04:00
Ben Newman
49db3bd0cc Merge branch 'devel' into release-1.6 2017-10-10 11:41:29 -04:00
Ben Newman
5a6cb704ad Bump minimongo package version to 1.3.3 to republish. 2017-10-10 11:37:27 -04:00
Hugh Willson
9d59fe4835 Adjust to use template literals instead of string concatenation 2017-10-10 11:34:12 -04:00
seke
25679cef8d Fix for https://github.com/meteor/meteor/issues/9167 2017-10-10 11:34:12 -04:00
Ben Newman
a3bba3a21d Bump accounts-password package version to 1.4.1 to republish. 2017-10-10 11:08:45 -04:00
Golfo Vasiliou
c5035f5e4b Changed ambiguous error message (#9161)
Fixes #9019
2017-10-10 11:07:32 -04:00
Ben Newman
40ecbb27f2 Bump package versions for 1.6-rc.6 release. release/METEOR@1.6-rc.6 2017-10-10 10:05:36 -04:00
Ben Newman
305a1e3942 Merge branch 'devel' into release-1.6 2017-10-10 10:02:00 -04:00
Ben Newman
8b319f11e9 Reinstate meteor debug help text, but recommend --inspect-brk. 2017-10-10 09:52:02 -04:00
Ben Newman
7485d50ff6 Support --inspect and --inspect-brk for all meteor test/run commands. (#9201)
The syntax of these flags is the same as the equivalent Node.js options:
https://nodejs.org/en/docs/inspector/#command-line-options

When no port value is provided, the default is 9229.

Two notable differences:

  * The flags affect the server process spawned by the parent build
    process, rather than affecting the build process itself.

  * The --inspect-brk flag causes the server process to pause just after
    server code has loaded but before it begins to execute. This timing is
    more useful than the Node.js --inspect-brk behavior, which is to pause
    on the first instruction executed by the process, since that is too
    early to set any useful breakpoints.

Implements https://github.com/meteor/meteor-feature-requests/issues/194.
2017-10-10 09:23:46 -04:00
Jesse Rosenberger
9e3945dc9a Add missing character to circle.yml configuration.
This was preventing the proper group name from being displayed on test
group "2", though the test was still working properly.

Refs: https://github.com/meteor/meteor/pull/9190 where it was spotted.
2017-10-10 10:23:17 +03:00
David Glasser
e4367acdf1 npm-mongo: use fork of mongodb-core for #8598 (#9200) 2017-10-09 21:22:25 -04:00
skirunman
8279f12377 Fix iOS icon and launch screen sizes (#9198) 2017-10-09 21:08:57 -04:00
David Glasser
008cb568ba npm-mongo: use fork of mongodb-core for #8598 (#9200) 2017-10-09 21:02:36 -04:00