Nathan Harris
Nathan Harris
From the [_Introducing: "SwiftCurrency"_](https://forums.swift.org/t/introducing-swiftcurrency/34388) thread on the Swift forums: It is desired to conform `AnyCurrency` to `Codable`. The question remains, how should the value encoded/decoded?: - Should it be a...
## Goal To remove reliance on `Foundation`, which leaves us [vulnerable to bugs introduced between Swift versions](https://bugs.swift.org/browse/SR-12036) and more control over a nicer API for currency formatting instead of [`Foundation.NumberFormatter`](https://developer.apple.com/documentation/foundation/numberformatter)....
Precious metal gold are defined in ISO 4217 with the prefix `X` followed by it's element symbol. For example | Metal | ISO code | |------|-----------| | Gold | XAU...
Two of the graduation paths for the [SSWG Incubation process](https://github.com/swift-server/sswg/blob/master/process/incubation.md#graduation-criteria) out of sandbox are: > - Document that it is being used successfully in production by at least three independent...
## Feature request Integration with Swift ecosystem libraries to support network layer tracing & instrumentation with [**SwiftLog**](https://github.com/apple/swift-log/) and [**SwiftTracing**](https://github.com/apple/swift-distributed-tracing/) At the very least supporting the `Baggage` common currency from [**InstrumentationBaggage**](https://github.com/apple/swift-distributed-tracing-baggage/)...
## Description Different logging backends support different "levels of metadata", allowing users to specify essentially indexed metadata vs. standard "extra metadata". For example, Sentry allows users to attach data explicitly...
I have my [own test helpers for validating logging behavior in my library](https://github.com/Mordil/RediStack/blob/master/Tests/RediStackIntegrationTests/RedisLoggingTests.swift) after writing tests for #243... the test helpers are much nicer than what I wrote. It'd be...
Adds initializers and methods to create Logger instances with metadata inline. ### Motivation: Frequently it's needed to create copies of loggers, or a new logger, with attached metadata or specific...
### Use case Generated operations files are always `@_exported import Apollo API` and it's causing conflicts throughout our codebase with `Object` and Realm's definition of `Object`, and our GraphQL Scalar...