Aleksey Levenstein
Aleksey Levenstein
Add explanation how to use scoped npm package as an adapter https://github.com/hubotio/hubot/issues/1544
We recently upgraded `@slack/socket-mode` to `1.3.1` to address https://github.com/slackapi/node-slack-sdk/issues/1495, but it seems there're still some unhandled scenarios where it wouldn't reconnect automatically. This time the pattern is exactly the same...
## Description https://github.com/octokit/types.ts/pull/399 fixed routes autocompletion, but request options resolution was broken as a result. TypeScript selected second non generic overload once `{}` was provided as the `options` parameter. This...
### Is your enhancement related to a problem? Please describe. Currently it is not possible to provide custom headers for schema requests, which prevents loading schema from private repos. E.g....
Support skipping api version (in addition to already supported skip by kind and apiVersion/kind) Closes https://github.com/yannh/kubeconform/issues/169
Currently `-skip` allows providing a `kind` or `version/kind` https://github.com/yannh/kubeconform/blob/ee7c49858007a5644743c458fb31113c0d6a921c/pkg/validator/validator.go#L107-L111 In some cases it would be handy to be able to skip all resources from the api version altogether e.g. ```...
We often bump into race condition where resource status [won't be read](https://github.com/kubernetes/client-go/blob/5a0a4247921dd9e72d158aaa6c1ee124aba1da80/rest/request.go#L614) because context is [reaching the deadline](https://cs.opensource.google/go/x/time/+/refs/tags/v0.5.0:rate/rate.go;l=275). This results in `Unknown` status being returned. This PRs treats this edge...
Can flow distinguish between field declaration using constant and indexer declaration? ``` const A = 'a'; const B = 'b'; type Foo = { [A]: string, [B]: string, } ```...
With changes introduced in https://github.com/ruby/ruby/pull/3701 `String` methods now return `String` instances when called on a subclass instance. Also mentioned here https://rubyreferences.github.io/rubychanges/3.0.html#string-always-returning-string. This breaks https://github.com/mmb/meme_captain/blob/fb0c6bee922db968e599a24bc8d9221e87edbf34/lib/meme_captain/meme.rb#L36 because `upcase` now returns `String` instead...
Adjust Candidate method signature as it is a bit misleading. It never returns an error actually and depending on linter config one might need to explicitly ignore it. It is...