Pier-Luc Gendreau

Results 69 comments of Pier-Luc Gendreau

Yeah, without their new JIT plugin it's barely usable

Tangentially related, did you follow any specific instructions to publish a signed build on the Mac App Store?

As you can see in my original post, this doesn't seem like it is the same problem as I'm using `PluginBuilder::default().build()`. Also, I'm not trying to nor do I want...

Awesome, thanks for the detailed explanation!

Is this still being worked on? Are there any blockers? Can anything be done to help?

Glad it's working for you! :) I think [preMiddleware](https://florianholzapfel.github.io/express-restify-mongoose/#premiddleware) should cover that use case, ``` preMiddleware: (req, res, next) => { if (["delete", "put"].includes(req.method.toLowerCase())) { return res.sendStatus(403) } next() }...

Awesome! I'll take a look at the tests, the one's checking for errors depend on the specific MongoDB/Mongoose versions so as long as Travis passes, we're fine.

Since the package is so closely coupled to MongoDB, would it make sense to align the method names with Mongo's? ``` get -> find getone -> findOne ``` And so...

As far as I can remember, the only reason we don't use `insertMany` is that it didn't exist back then.

The "code smells" are bogus, I'm tempted to remove this workflow 🤔