Cédric Belin

Results 34 comments of Cédric Belin

Is this issue still valid? It seems that Tinkerbell libs are now using GitHub Actions.

This is also a problem when you use Composer's [autoloader optimization](https://getcomposer.org/doc/articles/autoloader-optimization.md). I frequently get timeout errors because the generation takes more than 5 minutes (i.e. the [default Composer timeout](https://getcomposer.org/doc/06-config.md#process-timeout)). And...

Same issue here: Genghis is not working with IE11. In the JS console, I can see the following error: "jQuery is undefined". The related call is located in the HEAD...

All HTTP requests get a `200` status code, except for `scripts.js`: a `404` code is returned, and the MIME type is marked as `application/json`. If a use Chrome or Firefox,...

Some more info: if I try to download the file manually (typing `http://my.genghis.vhost/assets/script.js?v=2.3.11` in IE address bar), the content seems OK (400 Kb containing Modernizr, Backbone, etc.). If I create...

We still don't have easy/obvious access to the connection object and the `ident`/`value` methods...

We don't need external libraries. Convert any date to UTC timezone (aka "Use The Platform"): ```js // This date uses your local timezone. const date = new Date; // Convert...

Hmmm... 🤔 The data class could implement a dedicated static method, let's say `customValidate(data, errors)`, that would be called by the `validate()` method if it exists. The check for its...

Note that the `unparsedBody` symbol can be used directly (i.e. without first importing it). Like this: ```js const rawBody = ctx.request.body[Symbol.for("unparsedBody")]; ```