Peter Neyens
Peter Neyens
Did I miss something, or do we need something else? I tried to come up with a simple but not too trivial example of using `Reader` / `Kleisli` as target...
Small clean up to use `mapChunks` instead of an implementation using `repeatPull`.
Don't uri encode the key in the transit endpoints. This is consistent with how dynamic uris are created within `Vaults` ([example](https://github.com/Banno/vault4s/blob/605c76d28219ff301295c347e03a2f460dfe1f31/core/src/main/scala/com/banno/vault/Vault.scala#L78)).
This is a follow up of https://github.com/http4s/http4s/pull/7230. We changed to a more performant way to turn the outgoing frames `Queue` into a `Stream`, but since we only publish frames as...
Refactor changes are somewhat controversial, so I am not sure they are appreciated (especially in projects with work in multiple branches. So feel free to reject this PR or suggest...
An attempt to make it easier to change the `PubSubState` implementation or add multiple implementations. This is somewhat of a follow up of https://github.com/profunktor/redis4cats/pull/966. For some context: I am exploring...
The main goal is to reduce the overhead we add when we have a lot of subscriptions. - Avoid locking for `subscribe` and `unsubscribe`. We should be able to subscribe...
To use the `Transit`/`TransitClient` methods we currently need a token, which `VaultClient` doesn't expose. This forces the usage of the deprecated `Vault` methods when vault transit functionality is needed. If...