Simon Whitty
Simon Whitty
I've also [added AsyncTimeoutSequence](https://github.com/swhitty/swift-timeout/pull/5) which is a simpler version of what you may need; Each iteration has its own timeout to return the next element; ```swift for try await val...
Seeing the same on Azure Pipelines since 9/25 (macOS 14, Xcode 15.4 / 16) The Azure Pipelines images appear to have regressed with the introduction of `20240923.101`: ``` Current agent...
I also see main thread checker issues within `enrichScrope:` [8.26.0](https://github.com/getsentry/sentry-cocoa/releases/tag/8.26.0) but only _after_ calling `SentrySDK.close()`.
Do you think this is a bug where clients do not send `Connection: keep-alive` and FlyingFox is closing the connection too early? Out of interest which HTTP Client were you...
Nice, this looks really flexible. Do you have any idea on how you would expose the route & parameters to a handler? These are the options I can see; 1....
Hi @chazeon, I think this is a great idea and happy to add this support. I have recently updated `NilCodingStrategy` and `IntDecodingStrategy` to be `Sendable` so I would just expect...
snake_case is now supported on main branch https://github.com/swhitty/KeyValueCoder/pull/12 Update: available in [0.8.0 release](https://github.com/swhitty/KeyValueCoder/releases/tag/0.8.0)
`DateEncoding/DecodingStrategy` is now supported on main branch https://github.com/swhitty/KeyValueCoder/pull/14 Update: Available in the[ 0.9.0 release](https://github.com/swhitty/KeyValueCoder/releases/tag/0.9.0)
Can also be reproduced within other types with `static func` ```swift struct LoadingState { static func loaded(_ m: Model) -> Self { ... } func loaded() { } } extension...