WillAbides

Results 38 comments of WillAbides

There is [another workaround](https://github.com/docker/for-mac/issues/6288#issuecomment-1146255481) in the related Docker Desktop issue that doesn't require using an old Docker Desktop. Edit "$HOME/Library/Group Containers/group.com.docker/settings.json" and update `deprecatedCgroupv1` to `true`. This requires Docker Desktop...

Maybe I shouldn't have deleted .circleci yet. I hate seeing those ❌.

I have a need for this as well. @alecthomas, you said "Seems reasonable though", but that was a while ago. Before I start diving into this, are you still open...

This can be closed per the discussion in #2896. The main premise of this issue is still true, addOptions does fail to do any URL checks when `opts` is nil....

Thanks for the feature request. I spent some time looking into this, and it isn't straight forward. First off, there isn't a good way to get the completion for the...

I know what you mean, and it's not just jsoniter. I exited early in all the parsers where that was available, so rjson and jsonparser are also exiting early. I...

We could simplify this by changing testJSONMarshal to this: ```go // Test whether the marshaling of v produces JSON that corresponds // to the want string. func testJSONMarshal(t *testing.T, v...

I considered adding `WithHTTPClient` when working on #2904. I ended up not doing it because it could result in unexpected behavior when used after `NewTokenClient` or `Client.WithAuthToken` because those modify...

@gmlewis I'm not sure this will make a good first issue considering the compatibility issues I mentioned above.

I think I have something that will work for this. We could add `WithRoundTripper` instead of `WithClient`. The http client would have a Transport that first adds the auth header...