Matt McCutchen
Matt McCutchen
Unfortunately, I think I found another fundamental problem to rival #63. :( For instant writes, the `Transact.prototype.{insert,update,remove}` methods and their helpers initiate various asynchronous operations and proceed without waiting for...
The return values and exception propagation behavior for insert, update, and remove are currently inconsistent and undocumented. They should be changed to match the original Meteor collection API as far...
This package could support upserts. Starting an issue thread to collect information. As per [my remarks here](https://github.com/JackAdams/meteor-transactions/issues/80#issue-207007249), if we're willing to represent an upsert in the history as either an...
Starting an issue thread for this enhancement that is already on the roadmap: The update and remove methods should support arbitrary selectors (not just a specific ID) and update should...
This package could support `update` calls that replace the entire document, e.g., `collection.update("myId", {a: 1, b: 2})`. The first thing to decide is how such an operation is represented in...
If `update` is called with the ID of a document that doesn't exist, it logs a message but goes on and adds an item for the nonexistent document to the...
For my app, I wanted reads (i.e., `find` and `findOne`) to reflect uncommitted changes in the current transaction, like in a real transactional database, without having to use instant mode...
If a document is inserted in one transaction and updated in a second transaction, and then I try to undo both transactions in reverse order, the undo of the insertion...
If I receive a direct message while I'm offline on Clowdr, I'd like an option for it to generate an email to me. Perhaps I could also enable this for...
I'd like to browse or search other users' profiles for similar research interests, hobbies, etc. Trying to find all of their names and hover over each one is a pain....