Jesse

Results 38 issues of Jesse

From the documentation: https://github.com/smrchy/rsmq#quitcallback > Disconnect the redis client. This is only useful if you are using rsmq within a script and want node to be able to exit. Our...

Why doesn't this create regular migrations? It seems like it creates it's own migration format and requires it's own special command to execute. Why not just create migrations using the...

Is there any way to wait for `response` event to fire after calling `inject()`? In my testing, `response` events seem to fire asynchronously after `inject()` which makes testing them extremely...

support

npm advisory: https://www.npmjs.com/advisories/1179 `npm list` output: Looks like of the two culprits, `[email protected]` is the more problematic one.

Looks like https://www.npmjs.com/advisories/1587 was released on December 8th 2020. Versions of `fast-csv` before 4.3.6 are affected if they use `ignoreEmpty`, which this code appears to use here: https://github.com/bhushankumarl/amazon-mws/blob/32b0eb0152243b26150ec8419ba1db6019c9d1a2/lib/AmazonMwsResource.js#L157

Provide simple way to run this locally. This addresses #1 and #4.

feature request: `beforeBulkUpdate` and `afterBulkUpdate` hooks Currently, using Sequelize's `Model.update()` does not leave a paper trail. It should. (using `instance.update()` works fine today and that should stay the same)

feature request: bulkCreate hook Currently, using Sequelize bulkCreate does not leave a paper trail. It should.

This appears to be related to https://github.com/sequelize/sequelize/issues/10717 If the `revisionModel` is `Revisions`, sequelize 5 has a bug and lowercases the table name as `revisions` in queries. This breaks `sequelize-paper-trail`. I've...