Skip to content

Commit

Permalink
Master v0.10.0 (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
iyangsj authored Apr 26, 2024
1 parent f410451 commit e46f20d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,43 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.10.0] - 2024-04-26

### Added
- Add support for responding to key updates
- Add datagram packetization layer PMTU discovery
- Improve API for stream creation
- Limit configuration value of type varint
- Add pacing_rate to PathStats
- tquic_server: output stats when server connection is closed
- Add workflow and plot tools for fct testing

### Fixed
- Fix the issue where bbr3 cannot exit slow start due to high packet loss rate

### Security
- Limit memory consuption for tracking closed stream ids


## [v0.9.0] - 2024-04-10

### Added
- Improve FFI for quic_tls_config_t
- Update the handling of probe timeout to conform with RFC 9002
- Update limit of the output buffer for Connection::send()
- Add plot tools for goodput and interop testing

### Changed
- Change `quic_config_set_tls_config()` in FFI
- Change `quic_tls_config_select_methods_t` in FFI

### Fixed
- Fix NewToken frame in qlog
- Fix the unit test case `conn_write_qlog` that fails with low probability

### Security
- limit the number of queued RETIRE_CONNECTION_ID frames


## [v0.9.0] - 2024-04-10

Expand Down Expand Up @@ -182,6 +219,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Provide example clients and servers.


[v0.10.0]: https://github.com/tencent/tquic/compare/v0.9.0...v0.10.0
[v0.9.0]: https://github.com/tencent/tquic/compare/v0.8.1...v0.9.0
[v0.8.1]: https://github.com/tencent/tquic/compare/v0.8.0...v0.8.1
[v0.8.0]: https://github.com/tencent/tquic/compare/v0.7.0...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tquic"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
rust-version = "1.70.0"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tquic_tools"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
rust-version = "1.70.0"
license = "Apache-2.0"
Expand All @@ -23,7 +23,7 @@ rand = "0.8.5"
statrs = "0.16"
jemallocator = { version = "0.5", package = "tikv-jemallocator" }
signal-hook = "0.3.17"
tquic = { path = "..", version = "0.9.0"}
tquic = { path = "..", version = "0.10.0"}

[lib]
crate-type = ["lib"]
Expand Down

0 comments on commit e46f20d

Please sign in to comment.