32
loading...
This website collects cookies to deliver better user experience
npm i -g meteor
ensureIndex
method in MongoDB 5, we are making first step towards this MongoDB release by deprecating our own _ensureIndex
method on collections and replacing it with createIndex
. createIndex
as you were using _ensureIndex
before. Behind the scenes Collection _ensureIndex
is using the same implementation as createIndex
so both are safe to use.Email.customTransport
which allows you to override the sending functionality with your own handling. This way you can stop sending emails via SMTP that you set in MAIL_URL
env var and instead use API provided specifically by the service you use. Read the docs for more details.Meteor.settings.packages.email
to set options for sending to known services without the need for MAIL_URL
env var and you having to find all the details. You just need to provide the name of the known service, user and password in the settings and the package is going to take care of the rest.MAIL_URL
env var is still going to work and we have no plans to deprecate it.reify
reduces the overhead of import
statements and some uses of export ... from
, especially when a module is imported a large number of times or re-exports a large number of exports from other modules.SERVER_MERGE
, NO_MERGE
and NO_MERGE_NO_HISTORY
to choose from.SERVER_MERGE
: Default Meteor behavior, nothing new here.NO_MERGE_NO_HISTORY
: Should only be chosen for special use cases like send-and-forget queues.NO_MERGE
: Remembers only the IDs sent to the client and applies new rules when adding, updating, and removing documents into Minimongo.meteor add vuejs:vue3
webapp
package now allows you to create a runtime config hooks that get called when runtime config is set or changes.__meteor_runtime_config__
variable that initializes Meteor at runtime.Meteor server can only be configured to serve a single ROOT_URL
.
Cordova applications are build-time configured with a specific ROOT_URL
.
cordova-plugin-meteor-webapp
will fail the update if the ROOT_URL
from the server does not match the build time configured ROOT_URL
of the Cordova application.webapp
has now a few hooks for dynamically configuring __meteor_runtime_config__
on the server.WebApp.addRuntimeConfigHook
WebApp.addUpdatedConfigHook
WebApp.decodeRuntimeConfig
WebApp.encodeRuntimeConfig
facebook-oauth
now features a new login handler hook same as the one for Google package which should make it easier for you to retrieve data if you are using React Native and similar tools. Read moremeteor update
in your app directory!