Stan Hu

Results 77 issues of Stan Hu

I'm trying to use Wal-E in this way: ``` /--- Cascaded Secondary (replication slot postgres-03) Primary ------ postgres-01 (Wal-E) --- \--- Cascaded Secondary (replication slot postgres-02) ``` There is one...

**Describe the idea** Suppose you have a Rails middleware that does this: ```ruby def call(env) return [200, { 'Content-Type' => 'text/plain' }, 'hi'] end ``` Since `'hi'` does not respond...

enhancement
Status: Backlog

As mentioned in https://github.com/redis/hiredis-rb/pull/81, the test for the native extension seems to be failing at the moment. From https://github.com/redis/hiredis-rb/runs/7707432485?check_suite_focus=true: ``` [ [ SubstrateSegfaultHandler caught a segfault in thread 0x000055c1fbb29300 ]...

cexts

Right now the loggers only have access to the `request` and `response_body`, but it would be nice to have access to the status code as well. For now, we're working...

premailer v1.16.0 has a number of fixes: https://github.com/premailer/premailer/blob/master/CHANGELOG.md

The test was breaking because the ordering of the messages was changed, but the content did not.

- github.com/kataras/iris: CVE-2021-23772 - github.com/microcosm-cc/bluemonday: CVE-2021-42576

Buggy SSH clients, such as gpg-agent v2.2.4 and OpenSSH v7.6 shipped in Ubuntu 18.04, may send `ssh-rsa-512` as the public key algorithm but actually include an `rsa-sha` signature. If RFC...

Prior to Rack v2.1.0, `Rack::Response` would call `to_s` on each of the `body` parts: https://github.com/rack/rack/blob/85684323f8f58409e717af91e446d257d496f8b8/lib/rack/response.rb#L40-L43. That means if Grape returned `[nil]`, Rack would handle this gracefully. This is no longer...

bug?

Going back to our discussion in https://github.com/ruby-grape/grape/pull/2040#issuecomment-615483919, I've found it a bit tedious dealing with optional `Array[Integer]`, `Array[String]`, etc. types. Suppose I have an API with an optional parameter: ```ruby...

discuss!