This bug is similar to #19284 In Ruby 2.7 this works fine ``` docker run --rm -it -e RUBY_GC_HEAP_INIT_SLOTS=1 ruby:2.7 ruby -e 'puts "hello, world!"' hello, world! ``` On Ruby 3.1 I get a segfault ``` docker run --rm -it ...xfalcox (Rafael Silva)
An issue caused by this bug was first reported at Discourse support community at https://meta.discourse.org/t/unicode-username-results-in-error-loading-profile-page/173182?u=falco. The issue is that in Greek, there are two ways to dow...xfalcox (Rafael Silva)
Sorry to insist on this, but what about other languages like python and nodejs working fine while ruby fails with "407 Proxy authentication required"? From an user point of view it's a unexpected behavior, since ruby reads the string,...xfalcox (Rafael Silva)
I've sent the patch because this behavior is the expected since many unix tools (curl, wget, apt-get) and programming languagues (nodejs, python) respect the environment variable http_proxy. This makes very hard to use some ruby tools...xfalcox (Rafael Silva)
Get user and pass from http_proxy variable when specified, so that NET::HTTP can handle connections behind authenticated proxies automatically. I'm new, so please correct me if this isn't the correct way to go. Also, I've open a PR...xfalcox (Rafael Silva)