Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ exclude = ["spikes/*"]
resolver = "3"

[workspace.package]
version = "0.1.0-alpha.3"
version = "0.1.0-alpha.4"
edition = "2024"
rust-version = "1.97.1"
license = "MIT"
repository = "https://github.com/PerryTS/turnloop"

[workspace.dependencies]
turnloop-io = { path = "crates/turnloop-io", version = "0.1.0-alpha.3" }
turnloop-wasi-random = { path = "crates/turnloop-wasi-random", version = "0.1.0-alpha.3" }
turnloop = { path = "crates/turnloop", version = "0.1.0-alpha.3" }
turnloop-io = { path = "crates/turnloop-io", version = "0.1.0-alpha.4" }
turnloop-wasi-random = { path = "crates/turnloop-wasi-random", version = "0.1.0-alpha.4" }
turnloop = { path = "crates/turnloop", version = "0.1.0-alpha.4" }
turnloop-contract = { path = "crates/turnloop-contract", version = "0.1.0-alpha.2" }
libc = "0.2.175"
futures-io = "0.3.31"
Expand All @@ -38,9 +38,9 @@ serde_json = "1"
getrandom = "0.4"
loom = "=0.7.2"
gungraun = "=0.19.4"
turnloop-tls = { path = "protocols/turnloop-tls", version = "0.1.0-alpha.3" }
turnloop-http = { path = "protocols/turnloop-http", version = "0.1.0-alpha.3" }
turnloop-zstd-decoder = { path = "protocols/turnloop-zstd-decoder", version = "0.1.0-alpha.3" }
turnloop-tls = { path = "protocols/turnloop-tls", version = "0.1.0-alpha.4" }
turnloop-http = { path = "protocols/turnloop-http", version = "0.1.0-alpha.4" }
turnloop-zstd-decoder = { path = "protocols/turnloop-zstd-decoder", version = "0.1.0-alpha.4" }
http = "1"
url = "2"
httparse = "1"
Expand Down
15 changes: 15 additions & 0 deletions crates/turnloop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0-alpha.4](https://github.com/PerryTS/turnloop/compare/turnloop-v0.1.0-alpha.3...turnloop-v0.1.0-alpha.4) - 2026-09-15

### Other

- A Windows socket duplicate inherits its IOCP association
- Hand a quiescent transport's descriptor back to the host
- Assert a floor, not an exact size, for kernel-chosen socket buffers
- Refuse an unappliable accept default at the accept, not only at listen
- Document the keep-alive partial-failure contract
- Point the socket-option docs at DESIGN 7.7 and simplify a test helper
- Report a creation-time nodelay WASI cannot apply, and cover the option surface
- Add a typed socket-option API on live handles
- Normalize WASI deadline-event accounting (I02) ([#28](https://github.com/PerryTS/turnloop/pull/28))
- Normalize WASI deadline-event accounting (I02)

## [0.1.0-alpha.3](https://github.com/PerryTS/turnloop/compare/turnloop-v0.1.0-alpha.2...turnloop-v0.1.0-alpha.3) - 2026-09-15

### Other
Expand Down
7 changes: 7 additions & 0 deletions protocols/turnloop-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0-alpha.4](https://github.com/PerryTS/turnloop/compare/turnloop-mongodb-v0.1.0-alpha.3...turnloop-mongodb-v0.1.0-alpha.4) - 2026-09-15

### Other

- Compressed MongoDB and MySQL commands allocate nothing on WASI (I03) ([#29](https://github.com/PerryTS/turnloop/pull/29))
- Reuse one deflate state for compressed MongoDB and MySQL commands

## [0.1.0-alpha.3](https://github.com/PerryTS/turnloop/compare/turnloop-mongodb-v0.1.0-alpha.2...turnloop-mongodb-v0.1.0-alpha.3) - 2026-09-15

### Other
Expand Down
8 changes: 8 additions & 0 deletions protocols/turnloop-mysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0-alpha.4](https://github.com/PerryTS/turnloop/compare/turnloop-mysql-v0.1.0-alpha.3...turnloop-mysql-v0.1.0-alpha.4) - 2026-09-15

### Other

- Compressed MongoDB and MySQL commands allocate nothing on WASI (I03) ([#29](https://github.com/PerryTS/turnloop/pull/29))
- Lane report and MySQL compression note for tl-i03
- Reuse one deflate state for compressed MongoDB and MySQL commands

## [0.1.0-alpha.3](https://github.com/PerryTS/turnloop/compare/turnloop-mysql-v0.1.0-alpha.2...turnloop-mysql-v0.1.0-alpha.3) - 2026-09-15

### Other
Expand Down
6 changes: 6 additions & 0 deletions protocols/turnloop-tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0-alpha.4](https://github.com/PerryTS/turnloop/compare/turnloop-tls-v0.1.0-alpha.3...turnloop-tls-v0.1.0-alpha.4) - 2026-09-15

### Other

- Hand a quiescent transport's descriptor back to the host

## [0.1.0-alpha.3](https://github.com/PerryTS/turnloop/compare/turnloop-tls-v0.1.0-alpha.2...turnloop-tls-v0.1.0-alpha.3) - 2026-09-15

### Other
Expand Down