Renato Athaydes
Renato Athaydes
Thanks for the PR @Gleethos . I will release a fix as soon as possible. Sorry the delay.
Quite a few people seem to be interested in the contents of the `aggregated_report.json` file for this purpose... I initially added that file in order to be able to aggregate...
Was this ever solved? Do we now have a standard way to make a bundle explicitly unresolvable?
It also seems that I can't even change the value of the Server header: ``` server.serverHeader = 'Dart'; ``` I still get: ``` server: dart:io with Shelf ```
As of 1.3.2, the header changed to `x-powered-by`... but it seems it still can't be removed?! Really?
I am currently using this middleware to set the value to the empty String: ```dart shelf.Response _cleanHeaders(shelf.Response response) { return response.change(headers: const {'x-powered-by': ''}); } ``` setting the value to...
I will do that in exchange for you guys also letting me fix https://github.com/dart-lang/shelf/issues/270. Deal?
This error also happens when the content-type is `text/html` (even when the HTML content says it's encoded as utf-8), and `image/svg+xml` (which also declares utf-8 in the content), for example....
@cskau-g the interpretation that HTTP uses ISO for text content is outdated and that requirement has been removed from the HTTP spec: [Appendix B of RFC-7231](https://tools.ietf.org/html/rfc7231#appendix-B): ``` The default charset...
It's already done, but I am having some trouble making tests run in CI. https://github.com/renatoathaydes/rawhttp/actions I am actually writing a blog post to investigate in detail the differences between Nashorn...