Commit Graph

7378 Commits

Author SHA1 Message Date
Ben Newman
60d51889a9 Bump package versions for 1.3-beta.12 release 2016-02-29 21:49:52 -05:00
Ben Newman
b355f13efc Implement babel-runtime/helpers/toArray.
Fixes #6355.
2016-02-29 20:47:59 -05:00
Ben Newman
5c47891489 Allow custom stubs to override meteor-node-stubs.
Part of #6056.
2016-02-29 19:45:52 -05:00
Ben Newman
efe53de492 Set process.platform to "browser" on the client. 2016-02-28 14:33:22 -05:00
Ben Newman
63e4e6c99c Make sure require("process") works on the server. 2016-02-28 14:03:01 -05:00
Ben Newman
2fa65685d6 Install stubs for Node built-in modules automatically.
The implementation of these stubs is controlled by an optional npm package
called meteor-node-stubs, so we can keep iterating on them after releasing
Meteor 1.3, if we need to.

Fixes #6056.
2016-02-27 18:41:23 -05:00
Ben Newman
97819a74bb Don't export the ECMAScript namespace on the client. 2016-02-27 17:20:56 -05:00
Ben Newman
292824da3f Update babel-compiler dependencies.
The meteor-babel update includes a change to ignore .babelrc files, which
fixes #6016.

The check update just seemed like a good idea.
2016-02-26 12:36:57 -05:00
Ben Newman
34bf992dcc Upgrade the install package. 2016-02-26 12:36:57 -05:00
Martijn Walraven
74768614b2 Print Cordova hot code push errors to browser console 2016-02-26 16:53:08 +01:00
Martijn Walraven
e1a31ad237 Update cordova-plugin-meteor-webapp dependency to 0.9.1 2016-02-26 16:48:28 +01:00
Zoltan Olah
3e59f7110e Merge branch 'devel' into release-1.3 2016-02-25 14:34:09 -08:00
Zoltan Olah
6cf92a266d Merge pull request #3860 from zol/ssr-hooks
POC for adding hooks to boilerplate generation for loading page and/or SSR
2016-02-25 14:23:51 -08:00
Zoltan Olah
1928322649 Merge pull request #5141 from brianlukoff/devel
Add methods of the form BrowserPolicy.content.allow<ContentType>BlobUrl() to BrowserPolicy
2016-02-25 13:54:30 -08:00
Tom Coleman
597255fb9b Updated to jsdoc 3.4.0 and use @class name to make it work the same 2016-02-24 18:48:15 +01:00
Martijn Walraven
9bd85c37c2 Update cordova-plugin-meteor-webapp dependency to 0.9.0 2016-02-24 16:43:11 +01:00
Martijn Walraven
d0c0a489af Rename WebAppCordova to WebAppLocalServer 2016-02-24 12:57:46 +01:00
Ben Newman
0efd8b7bef Allow JSX syntax in .js files compiled with ecmascript.
Fixes #6151.
2016-02-23 18:32:32 -05:00
Tom Coleman
afb0741e08 Fix unhelpful error message when user has no unverified email
#6253
2016-02-24 10:25:27 +11:00
Ben Newman
cebe9e838e Provide a polyfill for process.nextTick.
Fixes #6167.
Fixes #6198.
Part of #6055.
2016-02-19 20:06:05 -05:00
Ben Newman
3ff259f528 Export Buffer and process from modules instead of meteor-env-{dev,prod}. 2016-02-19 20:06:04 -05:00
Ben Newman
d475a45580 Implement meteorInstall.addExtension.
This paves the way for enabling additional optional file extensions
beyond .js and .json, such as .coffee, .ts, and .jsx.

Part of #6151.
2016-02-19 18:25:27 -05:00
Avital Oliver
66d59bcba7 Improve Blaze automatic URLs blocking
Now also blocks against `vbscript:` URLs in addition to `javascript:` URLs
2016-02-18 18:40:43 -08:00
Martijn Walraven
d922c816be Bump package versions for 1.3-beta.11 release 2016-02-18 14:26:48 +01:00
Martijn Walraven
1a9d814391 Bump package versions for 1.3-beta.10 release 2016-02-18 09:16:17 +01:00
Martijn Walraven
406612a63b Rename standard-minifiers-css to standard-minifier-css in package.js 2016-02-18 08:11:39 +01:00
Avital Oliver
af6b9df244 Merge branch 'release-1.3' into app-tests 2016-02-17 21:48:42 -08:00
Avital Oliver
40d3356626 Merge pull request #6255 from meteor/deregisterHelper
Added a `Template.deregisterHelper`
2016-02-17 17:42:50 -08:00
Avital Oliver
bc6c7c55db Re-add .npm directories 2016-02-17 12:23:15 -08:00
Avital Oliver
2bc981ca01 Remove meteor-mocha; It's a standalone package now 2016-02-17 12:22:24 -08:00
Avital Oliver
eadeb72e16 Merge branch 'devel' into release-1.3 2016-02-17 12:15:51 -08:00
Tom Coleman
727d0b93b5 Added a Template.deregisterHelper 2016-02-17 22:08:53 +11:00
Ben Newman
9e682d6d68 Add back regenerator dependency in babel-runtime package. 2016-02-16 16:46:16 -05:00
Martijn Walraven
752c8e16c5 Bump package versions for 1.3-beta.9 release 2016-02-16 21:42:23 +01:00
Martijn Walraven
f8d164aad2 Merge branch 'cordova-improvements' into release-1.3 2016-02-16 21:29:36 +01:00
Martijn Walraven
90ac906f92 Update cordova-plugin-meteor-webapp dependency 2016-02-16 21:23:10 +01:00
Martijn Walraven
786cf9abd6 Make force-ssl production only
Fixes #1442 and #3382
2016-02-16 20:38:12 +01:00
Martijn Walraven
63454bfe08 Add Access-Control-Allow-Origin header to force-ssl redirect 2016-02-16 19:57:59 +01:00
Avital Oliver
83922dfc3a Start support for unit tests.
You can now run `meteor test-app --unit` to load just test files
and their dependencies.

Also, `Meteor.isIntegrationTest` and `Meteor.isUnitTest` are now
available on the client side of your apps. This can be used to
only run some tests in either mode.

TODO: Find unit tests inside imports/ directories even if they're
not explicitly imported.
2016-02-16 09:32:05 -08:00
Avital Oliver
4592c74a60 Now both test-app and test-packages work 2016-02-16 08:27:00 -08:00
Lewis Wright
7a80a8c851 Add Match.Maybe
Fixes #3876
2016-02-16 00:01:17 -08:00
Avital Oliver
0deeda7be2 Merge branch 'release-1.3' into app-tests 2016-02-15 22:22:48 -08:00
Avital Oliver
3150b9c850 WIP 2: Unbreak meteor test-packages 2016-02-15 22:20:37 -08:00
Ben Newman
c368d98593 Support __filename and __dirname.
Part of #6055.
Fixes #6022.
2016-02-13 16:09:40 -05:00
Ben Newman
90541281ed Polyfill Buffer constructor for app node_modules. 2016-02-12 16:58:12 -05:00
Martijn Walraven
362cc03d90 Bump package versions for 1.3-cordova-beta.5 release 2016-02-12 09:57:02 +01:00
Martijn Walraven
574779ca6f Update core Cordova plugin dependencies 2016-02-12 09:49:27 +01:00
Martijn Walraven
8653851c0a Update cordova-plugin-meteor-webapp dependency 2016-02-12 09:44:19 +01:00
Martijn Walraven
73e610ed57 Bump package versions for 1.3-cordova-beta.4 release 2016-02-11 13:33:43 +01:00
Martijn Walraven
389ccbc57a Update cordova-plugin-meteor-webapp dependency 2016-02-11 13:25:53 +01:00