Jesse L. Zamora

Results 18 issues of Jesse L. Zamora

This appears to be a bug that has arisen from using Swift 6.0 now. This block of code in `AMQPConnectionConfiguration` is adding a second `/` character to the vhost, since...

I have been using the SDK generator to try and build SDKs against Debian 12 Bookworm to be able to cross compile for the Raspberry Pi. This is something I...

Right now, if you do the following on Ubuntu 22.04: `swift run swift-sdk-generator make-linux-sdk --swift-version 5.10.1-RELEASE --host x86_64-unknown-linux-gnu` The generator will still download the OSX package for the Swift 5.10.1,...

Although version 0.9.0 states that Swift 6 support was added, it doesn't actually build on the latest Swift 6.0 snapshot (2024-06-22). ``` ~/myapp/.build/checkouts/swift-otel/Sources/OTel/Tracing/Processing/Batch/OTelBatchSpanProcessor.swift:95:34: error: pattern that the region based isolation...

I hope this can be considered as a general improvement for the library. After testing with Heaptrack when trying to track down a memleak in my application, I found an...

Consider the following example: ```swift import ServiceLifecycle var count = 0 let maxCount = 1_000_000 print("Counting up to \(maxCount) elements...") while count < maxCount { // Create an arbitrary stream...

Allows this to be compiled with the static Swift 6.0 SDK that uses Musl instead of Glibc.

I put this against #189 since it adds some documentation to help with common issues people run into. But primarily, this PR sets `--host-toolchain` on macOS by default, since most...

documentation

Since the Swift SDK Generator is becoming more and more useful for generating Swift SDKs for various Linux versions and architectures, one thing I think would be very useful is...

Consider the following example: ```swift import Foundation import FoundationNetworking struct TestError: Error { let reason: String } extension URLSession { func data(for request: URLRequest) async throws -> (Data, URLResponse) {...