Anton Maminov

Results 55 comments of Anton Maminov

https://github.com/mamantoha/crest/commit/dc846c37a671f0f409cc95429e57362dfd7cb8d6?diff=unified#diff-3994e7f5f940813c595702c024b0e5f7R49

Crystal code to reproduce the issue: ```crystal require "http/client" require "uri" url = "https://api.github.com" uri = URI.parse(url) path = "/repos/crystal-lang/crystal" headers = HTTP::Headers.new headers.add("Accept", "application/vnd.github.mercy-preview+json") client = HTTP::Client.new(uri) resp =...

Adding this line fixes this issue: ```crystal client.compress = false ``` :tada:

Still exists in Crystal 0.25 :crying_cat_face:

Still exists in Crystal 0.26 :crying_cat_face:

Still exists in Crystal 0.29 :crying_cat_face:

Still exists in Crystal 1.1.0 :crying_cat_face:

@cyangle still exists ``` crystal -v Crystal 1.3.0-dev [6ce66047c] (2021-12-07) LLVM: 10.0.0 Default target: x86_64-unknown-linux-gnu ```

@jubishop yes, you can create it with Clear migrations For example: ```crystal class CreateUsers include Clear::Migration def change(direction) direction.up do create_table(:users) do |t| t.column :provider, :string, null: false t.column :provider_id,...