Commit Graph

19647 Commits

Author SHA1 Message Date
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
Ben Newman
255732630d Merge pull request #9063 from zimme/zimme/reactive-dict
Add destroy to reactive-dict
2017-10-06 10:59:54 -04:00
Ben Newman
db500526d6 Merge branch 'devel' into zimme/reactive-dict 2017-10-06 10:59:09 -04:00
Simon Fridlund
af758c0727 Update History.md
Add note about the new api of `reactive-dict`.
2017-10-04 20:56:14 +02:00
Simon Fridlund
7e5f93355c Bump version of reactive-dict 2017-10-04 20:35:29 +02:00
Jesse Rosenberger
f7570327be Merge pull request #9169 from ecwyne/patch-5
fix typo
2017-10-04 17:52:12 +03:00
Simon Fridlund
23fad4e3e3 Add test for reactive-dict's destroy method 2017-10-04 00:51:16 +02:00
Eric Wyne
4d4d5afb5c fix typo 2017-10-02 11:41:42 -07:00
Ben Newman
e85c69680d Combine all isopackets to share transitive dependencies. (#9168)
By my calculations, the sum of the sizes of the individual isopackets was
152MB, and the size of the combined isopacket is now just 36MB. That
remarkable difference goes to show how much duplication of transitive
dependencies was happening before this change.

That's a savings of 116MB for the (uncompressed) size of the meteor-tool
package. In Meteor 1.5.x, the meteor-tool package is about 544MB, but in
Meteor 1.6 it's considerably smaller: 373MB. In other words, this change
should reduce those sizes to 428MB (-21%) and 257MB (-31%), respectively.
2017-10-02 13:41:39 -04:00
Jesse Rosenberger
efcc6945ba Update the modules test app to Meteor 1.5.2.2. 2017-10-02 17:47:12 +03:00
Ben Newman
201c767b31 Merge branch 'master' into devel 2017-09-29 18:03:46 -04:00
Ben Newman
450e6b4ae0 Merge pull request #9151 from meteor/release-1.5.2.2
Release 1.5.2.2
2017-09-29 18:03:10 -04:00
Ben Newman
807bfa560c Bump package versions for the official 1.5.2.2 release. release/METEOR@1.5.2.2 2017-09-29 17:14:38 -04:00
Ben Newman
2df59ba229 Mention another 1.5.2.2 bug fix in History.md and update date. 2017-09-29 17:13:22 -04:00
Ben Newman
ee43eba7b3 Bump package versions for 1.5.2.2-rc.1 release. release/METEOR@1.5.2.2-rc.1 2017-09-29 14:09:16 -04:00
Ben Newman
4420e4526f Bump $BUNDLE_VERSION to 4.8.41 before rebuilding dev bundle. 2017-09-29 13:51:51 -04:00
Ben Newman
ea1800d065 Include Node headers and node.lib in dev bundle on Windows.
Fixes #9153.
2017-09-29 13:51:24 -04:00
Jesse Rosenberger
24b9ea4a08 Update History.md with miscellaneous changes in Meteor 1.5.2.2. 2017-09-28 21:22:37 +03:00
Jesse Rosenberger
e1180c0377 Bump package versions for 1.5.2.2-rc.0 release. release/METEOR@1.5.2.2-rc.0 2017-09-28 20:53:08 +03:00
Jesse Rosenberger
cdc5c5101f Bump $BUNDLE_VERSION to 4.8.40 before rebuilding dev bundle. 2017-09-28 19:18:50 +03:00
Jesse Rosenberger
8bda1309b4 Bump $NODE_BUILD_NUMBER to 111 before rebuilding dev bundle. 2017-09-28 19:17:37 +03:00
Jesse Rosenberger
56b3706432 Bump package versions for 1.5.2.2-rc.0 release. 2017-09-28 19:15:22 +03:00
Jesse Rosenberger
01b5487aab Merge pull request #9148 from hwillson/issue-9140
Make sure Accounts login only sets 1 onReconnect callback
2017-09-28 19:05:31 +03:00
Jesse Rosenberger
8a627c1b75 Move comment about DESTDIR/PORTABLE=1 into place. 2017-09-28 17:44:28 +03:00
Ben Newman
462a29702d Make Npm.require import built-in modules first. 2017-09-28 17:21:17 +03:00
Jesse Rosenberger
573ccb95a3 Bump $BUNDLE_VERSION to 4.8.39 before rebuilding dev bundle. 2017-09-28 17:13:41 +03:00
Jesse Rosenberger
576490d3f9 Bump $NODE_BUILD_NUMBER to 106 before rebuilding dev bundle. 2017-09-28 17:08:20 +03:00
Jesse Rosenberger
c10c5c161b Don't strip the top directory when extracting our Node tarball.
Thanks to changes in the `build-node-for-dev-bundle.sh` script done in
0583e5883c, we now build a tarball which
is identical to the structure provided by Node.js themselves.

While generally we are using the main Node releases, this will allow
our users to (if need be), use a tarball directly in place of their own
in production without additional changes.  Similarly, the only change
we need to make now when building the dev bundle is to use a different
URL.
2017-09-28 16:29:20 +03:00
Hugh Willson
c5f642cb86 Make sure Accounts login only sets 1 onReconnect callback
The changes added in
d854a4b9ba
fixed a long standing issue where the Accounts system was
overwriting other DDP `connection.onReconnect` callbacks,
that were potentially set by developers (and vice-versa -
developers could overwrite the `onReconnect` callback registered
by the Accounts system, which impacted logging back in after
reconnecting). Unfortunately these changes are also registering a
new duplicate `onReconnect` callback to be called, after every
login. These duplicate callbacks pile up and are all called when
reconnecting, which eventually breaks user logins.

The changes in this commit make sure that any previously set
Accounts login `onReconnect` callback is first removed, before
adding a new callback. This ensures the Accounts system is only
ever setting one `onReconnect` callback after logging in.

Fixes #9140.
2017-09-28 08:55:16 -04:00
Ben Newman
96bc29295a Don't extract bin/node (we'll do this on Jenkins). 2017-09-27 20:56:25 -04:00
Jesse Rosenberger
0583e5883c Changes to Node.js build script. 2017-09-27 17:25:18 -04:00
Jesse Rosenberger
c21e4f5b7e Use a Meteor-hosted version of ICU.
SourceForge is currently down and without this ICU (International
Components for Unicode), we can't build the Node binary.
2017-09-27 17:18:54 +03:00
Jesse Rosenberger
b29cb48f63 Merge pull request #9137 from hwillson/issue-9098
Update cordova-ios to 4.5.1, to add in iOS 11 / Xcode 9 support
2017-09-27 16:52:38 +03:00
Hugh Willson
95382397dd Add PR number and link to History.md 2017-09-26 15:12:06 -04:00
Hugh Willson
1ab30946d8 Update cordova-ios to 4.5.1, to add in iOS 11 / Xcode 9 support
Fixes #9098.
Fixes #9126.
2017-09-26 14:08:04 -04:00
Ben Newman
164e6901fb Update banners.json to recommend 1.4.4.4 and 1.5.2.1. 2017-09-26 12:46:15 -04:00
Ben Newman
cf45eb0f8c Update the modules test app to Meteor 1.5.2.1. 2017-09-26 12:29:04 -04:00
Ben Newman
9184ed2dc8 Merge branch 'master' into devel 2017-09-26 12:26:28 -04:00
Ben Newman
36e48b13bf Merge pull request #9133 from meteor/release-1.5.2.1
Release 1.5.2.1
2017-09-26 12:25:54 -04:00
Ben Newman
c2918963d7 Mention allow-deny updates in History.md.
[ci skip]
2017-09-26 12:14:31 -04:00
Ben Newman
369afe74a6 Bump ecmascript patch version to republish compile-ecmascript plugin.
When the ecmascript package version was last bumped in
18e4c172f2, it appears that
babel-compiler@6.20.0 had not yet been published, so ecmascript was
published with a copy of that compiler plugin that did not support the
"env" property of .babelrc files (#8963).

Bumping again and republishing in hopes of fixing that problem.
2017-09-26 11:46:09 -04:00
Ben Newman
04fdd68ed5 Add date to 1.5.2.1 release in History.md.
[ci skip]
2017-09-26 11:01:01 -04:00
Ben Newman
ef3ad82a04 Bump minimongo patch version to 1.3.2. 2017-09-26 10:50:57 -04:00
Hugh Willson
f0931d740f Add missing let statment to the $elemMatch subMatcher function (#9134)
The `subMatcher` function `let` statment was missing
(dropped during the latest minimongo refactoring - see
fe576f60ce).
This turned `subMatcher` into a global function, which caused
several minimongo issues.

Fixes #9111.
2017-09-26 10:30:47 -04:00
Ben Newman
cc47ba4a6f Update dynamic-import test app to Meteor 1.5.2.1. 2017-09-25 20:24:49 -04:00
Ben Newman
a92fd202dc Bump package versions for the official 1.5.2.1 release. release/METEOR@1.5.2.1 2017-09-25 18:18:40 -04:00
Ben Newman
33b2c54266 Slight wording tweak to History.md. 2017-09-25 18:17:24 -04:00
Ben Newman
750d11e853 Merge branch 'master' into release-1.5.2.1 2017-09-25 17:36:31 -04:00
Ben Newman
a0cf07e604 Bump package versions for 1.5.2.1-rc.2 release. release/METEOR@1.5.2.1-rc.2 2017-09-25 16:57:01 -04:00