meteor-feature-requests icon indicating copy to clipboard operation
meteor-feature-requests copied to clipboard

A tracker for Meteor issues that are requests for new functionality, not bugs.

Results 100 meteor-feature-requests issues
Sort by recently updated
recently updated
newest added

The biggest performance issue with oplog tailing is that if you have a query of the form `{complete: true, listId: 'foo'}`, and you see an oplog update `{$set: {complete: true}}`...

Project:Minimongo
Project:Mongo Driver

If all indexes for your mongo database are defined inside your meteor application (using `_ensureIndex`). It would be useful if Meteor could have an option (e.g. through a setting or...

Project:Minimongo
Project:Mongo Driver

Collection methods (insert, update, upsert and remove) return a promise instead of value, and don't take callbacks anymore. Eg - ```javascript Tasks.insert({ title: 'Buy a Unicorn' }, function( error, id...

Project:Minimongo
Project:Mongo Driver

I sometimes run Meteor apps in a Docker environment, where `docker-compose` manages a MongoDB instance running as a separate Docker container. Since both the Meteor app container and the Mongo...

Project:Mongo Driver

In my current project, I have multiple subscriptions, publishing their content to the same collection on the client side (since they are also managed on the same collection on the...

Project:Minimongo

Migrated from: meteor/meteor#5579 **Check to see if a similar feature request already exists or has been closed before.** Did not find any related open / closed feature requests in this...

Project:Mongo Driver

Migrated from: meteor/meteor#8621 Related: #27 --- @hwillson in meteor/meteor#8621: As part of the Meteor support for non browser environment discussions in [#8615](https://github.com/meteor/meteor/issues/8615), it was suggested (and PR encouraged) that a...

pull-requests-encouraged
Project:DDP

My rebuild times are very inconsistent and the biggest culprit seems to be `other _buildLocalPackages` inside the `prepareProjectForBuild` step. It would be great to have a more detailed profiling, since...

I would like to have the ability to have a more flexible meteor debug system, specifically what I'm missing currently is the ability to allow external IPs to connect via...

Currently a new collection's `idGeneration` options allow either the default Meteor String _id or a Mongo ObjectID with a ranomd 24byte hex String: ```javascript switch (options.idGeneration) { case 'MONGO': this._makeNewID...

Project:Minimongo
Project:Mongo Driver