Commit Graph

7511 Commits

Author SHA1 Message Date
Ben Newman
af97b5b301 Bump versions for Meteor patch release 1.3.2.2. 2016-04-18 11:14:44 -04:00
Jamie Loberman
322d606b56 Remove handle.stop() after update (#6819)
Removed handle.stop() so that live query continues to run after the first code push, and newer versions continue to download.
2016-04-16 05:45:43 +02:00
Ben Newman
7a6026516e Bump versions for Meteor patch release 1.3.2.1. 2016-04-15 17:10:41 -04:00
Ben Newman
baa3f6a152 Merge branch 'master' into devel 2016-04-15 12:47:42 -04:00
Ben Newman
83c2f7a790 Bump package versions for the official 1.3.2 release. 2016-04-15 11:05:16 -04:00
Tom Coleman
a06ff81de5 Merge pull request #5680 from mitar/batch-process-updates
Process DDP updates in batches
2016-04-14 10:16:25 -07:00
Ben Newman
295e3d7819 Fix less plugin tests. 2016-04-14 12:45:50 -04:00
Ben Newman
f5ced99eb2 Bump package versions for 1.3.2-rc.6 release. 2016-04-13 19:59:33 -04:00
Ben Newman
cd8bc10b1d Allow .less files in imports/ directories to be imported.
Because the files are in an imports/ directory, they are still considered
lazy, so they will not be applied to the document unless imported from JS.

Related: #6037
2016-04-13 19:52:20 -04:00
Ben Newman
4826b323a1 Bump package versions for 1.3.2-rc.5 release. 2016-04-12 12:29:05 -04:00
Ben Newman
d8bed6d491 Bump package versions for 1.3.2-rc.4 release. 2016-04-11 19:36:25 -04:00
Jesse Rosenberger
e59c7ebc8e Fix Match.Optional to work as it did previously in Meteor 1.2
`Match.Optional` is still only supposed to "pass" if the value is `null`
or the specified type.  The new `Match.Maybe` allows `undefined` or
`null` in addition to the specified types. `Match.Optional` is on the
track toward deprecation, however to not break existing code it was
*supposed* to stay working the same as before. (per #3876).

There weren't tests in place to make sure that `Match.Optional` kept
working the same, and the code didn't actually make it keep working the
same.  Hopefully extra tests will make this better.

`.Maybe` has some additional bugs, but should be addressed separately
(see #6271)

Fixes #6735
2016-04-11 18:26:35 -04:00
Ben Newman
787e7e129c Merge pull request #6736 from abernix/check-match-optional-fix
Fix `Match.Optional` to work as it did previously in Meteor 1.2
2016-04-11 18:24:51 -04:00
Ben Newman
901e4a5c01 Bump package versions for 1.3.1-rc.2 release. 2016-04-11 13:59:22 -04:00
Ben Newman
7722ace625 Bump package versions for 1.3.2-rc.1 release. 2016-04-10 19:55:11 -04:00
Ben Newman
201e0f11f6 Make accounts-password depend on the newest version of npm-bcrypt. 2016-04-10 19:51:59 -04:00
Ben Newman
5db9e2cdcd Upgrade packages/non-core/npm-bcrypt and republish.
Developers using Meteor 1.3+ should really just `npm install bcrypt`
instead of using this wrapper package.
2016-04-10 19:51:59 -04:00
Ben Newman
41b58b32d9 Bump package versions for 1.3.2-rc.0 release. 2016-04-08 19:47:29 -04:00
skirunman
be7773f076 Document Meteor.defer
- Mention similarity to calling Meteor.setTimeout
- Run JSDoc script
2016-04-08 09:44:11 -04:00
skirunman
4afbabd0dc Document Meteor.defer
- Mention similarity to calling Meteor.setTimeout
- Run JSDoc script
2016-04-07 11:30:43 -07:00
Ben Newman
5a78420b10 Upgrade meteor-babel versions to 0.9.2. 2016-04-07 13:51:24 -04:00
Ben Newman
ddb7f86bbd Use meteor-babel-helpers package in babel-runtime. 2016-04-07 13:51:23 -04:00
Ben Newman
b3a83bd118 Install reliable stubs for all Package[name] objects.
If a Meteor package had a file called index.js, the runtime module system
would resolve "meteor/<name>" to "/node_modules/meteor/<name>/index.js",
instead of falling back to Package[<name>] as expected.

Installing a stub for Package[<name>] at /node_modules/meteor/<name>.js
means the runtime module system no longer needs the fallback, and will no
longer be confused by index.js files.

Fixes #6590.
2016-04-07 13:05:52 -04:00
Ben Newman
6f8a9cd711 Load jquery as a peer dependency if installed by app.
Fixes #6626.
2016-04-07 13:05:51 -04:00
Ben Newman
b535ce9eb8 Eliminate jquery dependency from check package.
Part of #6626.
Fixes #6563.
2016-04-07 13:05:51 -04:00
Ben Newman
37659529ca Eliminate check package dependency from babel-compiler. 2016-04-07 13:05:51 -04:00
Marcelo Schmidt
a290346af6 Remove _.once and add cache to getPool
Subsequent calls to getPool will return the cached value, until process.env.MAIL_URL changes and getPool is called again.
2016-04-07 16:31:24 +02:00
Jesse Rosenberger
eb909e82cf Fix Match.Optional to work as it did previously in Meteor 1.2
`Match.Optional` is still only supposed to "pass" if the value is `null`
or the specified type.  The new `Match.Maybe` allows `undefined` or
`null` in addition to the specified types. `Match.Optional` is on the
track toward deprecation, however to not break existing code it was
*supposed* to stay working the same as before. (per #3876).

There weren't tests in place to make sure that `Match.Optional` kept
working the same, and the code didn't actually make it keep working the
same.  Hopefully extra tests will make this better.

`.Maybe` has some additional bugs, but should be addressed separately
(see #6271)

Fixes #6735
2016-04-07 13:21:29 +03:00
Ben Newman
80ae68989b Merge branch 'release-1.3.1' 2016-04-04 14:51:03 -04:00
Joseph Orbegoso Pea
441fc9871f Update Blaze.remove docs.
* Update Blaze.remove docs.

* Update view.js
2016-04-03 23:02:04 -07:00
Ben Newman
117863fcdd Bump package versions for the official 1.3.1 release. 2016-04-03 20:26:26 -04:00
Ben Newman
ccbbb006f8 Bump package versions for 1.3.1-rc.3 release. 2016-04-02 21:08:51 -04:00
Ben Newman
9c01610b1f Bump package versions for 1.3.1-rc.1 release. 2016-04-01 21:39:32 -04:00
Ben Newman
bff3f0c9ea Bump package versions for 1.3.1-rc.0 release. 2016-04-01 20:01:45 -04:00
Ben Newman
c8d12aed4e Bump meteor-babel version to 0.8.4. 2016-04-01 18:48:44 -04:00
Sashko Stubailo
9239a9498f Merge pull request #6573 from tarunbatra/documentation-patch
Fix spelling mistake in underscore package
2016-03-29 10:38:41 -07:00
Ben Newman
2ccb7467c9 Merge branch 'master' into devel 2016-03-28 18:35:58 -04:00
Martijn Walraven
c2ce133665 Bump launch-screen package version
Forgot to bump launch-screen package version for
#335836931875f367da5c12d9e08132f4a773e35e
2016-03-28 06:19:23 +02:00
Ben Newman
23c1deb2f2 Bump package versions for official 1.3 release. 2016-03-27 22:15:16 -04:00
Martijn Walraven
3358369318 Fix bug in launch-screen that disabled holding it beyond a 6s timeout
The default behavior meant that the launch screen would always be
released twice on a single hold: once when the template is rendered,
and once after a 6s timeout. So additional holds would not have any
effect beyond that timeout.
2016-03-27 13:52:29 +02:00
Ben Newman
79829702a0 Bump package versions for 1.3-rc.13 release 2016-03-26 12:46:46 -04:00
Ben Newman
c14cd9aed5 Bump package versions for 1.3-rc.12 release 2016-03-24 16:08:56 -04:00
Ben Newman
5ea76e34bc Bump package versions for 1.3-rc.11 release 2016-03-24 14:19:23 -04:00
Ben Newman
005b97a122 Bump package versions for 1.3-rc.10 release 2016-03-24 11:55:22 -04:00
Tom Coleman
2e26768709 Merge branch 'release-1.3-new-docs' into release-1.3 2016-03-24 19:08:11 +11:00
Ben Newman
8490ea05d7 Avoid spurious missing module warning in promise package. 2016-03-23 20:26:26 -04:00
Ben Newman
11f136228e Revert dynamic meteor-node-stubs import.
Importing meteor-node-stubs in a statically analyzable way is important to
ensure all the aliases for built-in Node modules get set up properly. This
does *not* mean that all meteor-node-stubs/defs/* modules will be imported
unconditionally.

Part of #6562.
2016-03-23 19:57:10 -04:00
Ben Newman
11cbd89e1b Print helpful warnings about unresolved modules. 2016-03-23 18:55:24 -04:00
Martijn Walraven
7650bb0a01 Bump package versions for 1.3-rc.9 release 2016-03-23 18:55:23 -04:00
Tarun Batra
fa8ecf3936 Fix spelling mistake in underscore package 2016-03-23 17:19:19 +05:30