Matthew Fenwick
Matthew Fenwick
Fixes https://github.com/cult-of-coders/redis-oplog/issues/381
We are using `SyntheticMutator` to trigger reactivity for some bulk mutations using `rawCollection` that bypass that normal hooks. e.g. ```js bulkItems.forEach((item) => SyntheticMutator.insert(Items, item)); ``` We recently set a `globalRedisPrefix`...
We have a shared service that produces data consumed by multiple, single namespace apps. These consuming apps set their namespace in `globalRedisPrefix` in `settings.json`, which applies to both collection **and...
Fixes https://github.com/cult-of-coders/redis-oplog/issues/379
## Bug Report ### Steps - Create a `` with `icon` set in the options. - Select an option (or pass in a controlled selected value). ### Expected Result The...
The underlying [meteor-collection-hooks](https://github.com/Meteor-Community-Packages/meteor-collection-hooks) performs two `fetch()`s on `update()` for any collection with an `after.update` hook defined. - the [first](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/blob/master/update.js#L38) to get the ids of all docs matching the selector -...
Fixes #12457 by tracking the path of `visited` importing modules in a stack when checking hot module acceptance, and using this stack for circular dependency checks rather than using the...