Efim Bogdanovsky
Efim Bogdanovsky
If anyone stumbles across this issue in the future, and the issue has not yet been addressed by that time, - then you may try the following dirty workaround: -...
@gpotter2 It's okay. Thank you!
I apologize, is this issue referring to this (`seneca.options`) method? https://github.com/senecajs/seneca/blob/master/lib/api.js#L56
A quick workaround would be to pass a function wrapping the Seneca instance, instead of passing the Seneca instance directly: ```js const Seneca = require('seneca') function my_plugin(options) { } const...
I was able to track down the offending line: https://github.com/senecajs/seneca/blob/master/lib/plugin.ts#L554
@rjrodger Is it currently planned for the implementation of such message validation system to support union types? E.g. if, as a user, I want to match on ‘:foo‘ when it's...
@rjrodger Could you please provide an example code snippet to showcase the feature?
Should the implementation be dependency-free or can we use a MIT-licensed package, like `moment`, to implement the date functions?
We could certainly try to downcase charset values selectively, e.g. `multipart/form-data; boundary=----LOREMIPSUM; charset=UTF-8` would become `multipart/form-data; boundary=----LOREMIPSUM; charset=utf-8`. To do so reliably, however, - we would need fast-content-type-parse to return...
This would be the general idea: https://github.com/fastify/fastify/pull/4717 https://github.com/fastify/fast-content-type-parse/pull/11 What do you think?