endgame
endgame
Actually, I can also get a `Left` using `trying S3._NoSuchKey` on the released `amazonka-2.0`. Here is what S3 is sending these days (from the trace-level log): ``` [ServiceError] { service...
A big part of the problem is that we're using `HashMap` all over the place. #872 will largely fix this, once we start being able to track declaration order in...
#523 might be another related laziness bug; I suspect we might have to force something during `send`. https://www.snoyman.com/blog/2017/01/foldable-mapm-maybe-and-recursive-functions/ makes me suspect we might want/need to provide a "force and ignore...
I don't think it makes sense to have this open any more - amazonka 2.0 dropped the MTL-style constraints, which should make it significantly easier to mock via one's mechanism...
I suspect that what libraries like `amazonka-s3-streaming` would want to do is parameterise themselves over a function `AWSRequest a => a -> m (AWSResponse a)` (either directly, or through an...
I have built this package using `base64-bytestring-1.2.0.1`. As a Hackage Trustee, I have published a new revision with `base64-bytestring >= 1.0 && < 1.3`. Related PR: #39
I have built this package using `base64-bytestring-1.2.0.1`. As a Hackage Trustee, I have published a new revision with `base64-bytestring >= 1.0 && < 1.3`. Can you update this PR? Related...
I suspect it's because it's not being added to the sdist. Try adding `extra-source-files: config.json` to the top-level stanza in the cabal file?
Happy to re-licence but my changes are absolutely trivial. They're only a handful of lines and even GNU would accept changes of that size without copyright paperwork.
I think `Divisible` falls out from `ApplicativateProfunctor`. For contravariant functors, it's this: ```haskell class Contravariant f => Divisible f where divide :: (a -> (b, c)) -> f b ->...