Skip to content

Releases: mliezun/caddy-snake

v0.1.1

17 Aug 20:13
Compare
Choose a tag to compare

Fixes null-termination on strings when copying a Python bytes buffer into a C buffer.

Full Changelog: v0.1.0...v0.1.1

v0.1.0

17 Aug 00:20
2a1d30c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.8...v0.1.0

v0.0.7

05 Jun 21:49
c5fa380
Compare
Choose a tag to compare
v0.0.7 Pre-release
Pre-release

What's Changed

  • Use lowercase headers in ASGI by @mliezun in #18
  • Simple implementation of ASGI lifespan protocol by @mliezun in #16

Library updates

  • Bump github.com/jackc/pgx/v4 from 4.18.0 to 4.18.2 by @dependabot in #24
  • Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 by @dependabot in #26
  • Bump golang.org/x/net from 0.17.0 to 0.23.0 by @dependabot in #23

Full Changelog: v0.0.6...v0.0.7

v0.0.6

04 May 22:09
Compare
Choose a tag to compare
v0.0.6 Pre-release
Pre-release

What's Changed

Full Changelog: v0.0.5...v0.0.6

v0.0.4

24 Feb 17:01
Compare
Choose a tag to compare
v0.0.4 Pre-release
Pre-release

Changelog

  • Fixed SEGFAULT issue when WSGI module cannot be imported.
  • Solved issue #4. Host and port are now parsed correctly.
  • The environ key SCRIPT_NAME is always passed as empty to WSGI apps now.

Full Changelog: v0.0.3...v0.0.4

v0.0.3

22 Feb 21:32
296637a
Compare
Choose a tag to compare
v0.0.3 Pre-release
Pre-release

CHANGELOG

Python3 compatibility with older versions

  • Use python c api functions that are compatible with multiple versions.
  • Also check that we're compiling agains an accepted version, otherwise it aborts compilation.
  • Added tests to check it compiles and runs with all supported python versions.

v0.0.2

19 Feb 19:11
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

CHANGELOG

  • Fixed setting custom headers by user #1.
  • Updated Readme with correct instructions on how to build #2, contributed by @gnat.
  • Multiple WSGI apps can be served at the same time. See examples.