tadejg

Results 11 comments of tadejg

@renerocksai PR #182 is ready to be merged. I only updated `HttpListener` as that's what I need at the moment, but I may submit PRs for the other listeners in...

Btw there aren't any breaking changes. From the user perspective, everything works as it did before, you can just create multiple instances and `udata` is actually populated into the request...

@renerocksai what's the ETA on this getting merged?

+1 same issue here. I'm using Zig 0.15.1 with branch zig-0.15.1 (master branch also doesn't work). I'm on x86_64 linux. Looks like CI caught the issue a few commits ago,...

> https://github.com/vrischmann/zig-sqlite-demo works fine with zig 0.15.1; please create a reproducer that I can easily clone and test myself, I can't help you with just this report. This demo app...

**UPDATE:** I found that building with `--release=safe` (or `-Doptimize=ReleaseSafe`; also fast release) works as expected. The issue only appears with `-Doptimize=Debug`

@vrischmann if it helps, here's a Dockerfile which reproduces the issue. ```Dockerfile FROM ubuntu:25.10 RUN apt update && apt install -y ca-certificates git wget xz-utils ARG ZIG_VERSION="0.15.1" RUN wget -O...

@vrischmann I also noticed you switched to dynamic linking for 0.15.1. What was the reasoning behind that? I'd prefer to keep it static, if possible.