From 357b5532b56ab9bd47d7858459d29913906a4ec2d38dd645e3f1bddacf6ddb1f Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 28 Dec 2023 21:09:27 +0000 Subject: [PATCH] - update to 1.1.0: * Extract ngtcp2_frame_chain to its own file * Refactor ringbuf * Fix typo * Rename reset stream flags * Remove unused ngtcp2_conn_resched_frames * crypto: Fix bug that retry token AAD does not include QUIC version * cmake: re-add two missing includes * Bump clang to 15 * quictls: Prefetch objects to workaround 3.x perf regression * Bump clang-format to 15 * Bump quictls to 3.1.4+quic * Deprecate NGTCP2_PROTO_VER_MIN and NGTCP2_PROTO_VER_MAX * ngtcp2_conn_write_datagram conveniently accepts single buffer * windows: Fix warnings * ptlsclient, ptlsserver: Support hq * h09client: Use util::write_token * Cpp ext * Use __FILE_NAME__ instead of __FILE__ * examples: Rename extend_max_streams_bidi to extend_max_local_streams_bidi * Define varint identifiers as macros * Limit the number of NEW_CONNECTION_ID frames that are in-flight * Make frame type of type uint64_t * Fix doc * Fix assertion failure * Eliminate floating point computations * Bump actions/github-script from 6 to 7 * client: Optimize a bit * Revert ignoring loss signal during startup * Rework app_limited OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/ngtcp2?expand=0&rev=11 --- ngtcp2-1.0.1.tar.xz | 3 --- ngtcp2-1.0.1.tar.xz.asc | 6 ------ ngtcp2-1.1.0.tar.xz | 3 +++ ngtcp2-1.1.0.tar.xz.asc | 6 ++++++ ngtcp2.changes | 38 ++++++++++++++++++++++++++++++++++++++ ngtcp2.spec | 2 +- 6 files changed, 48 insertions(+), 10 deletions(-) delete mode 100644 ngtcp2-1.0.1.tar.xz delete mode 100644 ngtcp2-1.0.1.tar.xz.asc create mode 100644 ngtcp2-1.1.0.tar.xz create mode 100644 ngtcp2-1.1.0.tar.xz.asc diff --git a/ngtcp2-1.0.1.tar.xz b/ngtcp2-1.0.1.tar.xz deleted file mode 100644 index 37314f0..0000000 --- a/ngtcp2-1.0.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:21c898fa5543d3f2dc203fd0a300a8a7cb70fec21ad7f7a3ec6e119ba4850451 -size 590100 diff --git a/ngtcp2-1.0.1.tar.xz.asc b/ngtcp2-1.0.1.tar.xz.asc deleted file mode 100644 index 22347a1..0000000 --- a/ngtcp2-1.0.1.tar.xz.asc +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iF0EABECAB0WIQT087kUdNHrKYib0O9+hAPV1nPDZgUCZTZdfAAKCRB+hAPV1nPD -Zh3JAJ9xspGAE3+6xsFjSnV6rDF1FY7pJgCglgnMPztLiqG12q/YP3IF8SaPavE= -=2ZYO ------END PGP SIGNATURE----- diff --git a/ngtcp2-1.1.0.tar.xz b/ngtcp2-1.1.0.tar.xz new file mode 100644 index 0000000..e5a2612 --- /dev/null +++ b/ngtcp2-1.1.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803eeb4a626d37a7512eacd6f419dbc4bb8ddbc1e105310c0fe9c322b4a1f7de +size 595536 diff --git a/ngtcp2-1.1.0.tar.xz.asc b/ngtcp2-1.1.0.tar.xz.asc new file mode 100644 index 0000000..c5a2e0d --- /dev/null +++ b/ngtcp2-1.1.0.tar.xz.asc @@ -0,0 +1,6 @@ +-----BEGIN PGP SIGNATURE----- + +iF0EABECAB0WIQT087kUdNHrKYib0O9+hAPV1nPDZgUCZWLplQAKCRB+hAPV1nPD +ZmhfAKDV8QplWPIWTKFldesv5KZ1HU78agCfZTg3O8j2WhJNltxdVgiX3gkHh4k= +=i3nN +-----END PGP SIGNATURE----- diff --git a/ngtcp2.changes b/ngtcp2.changes index 2777b56..6baff90 100644 --- a/ngtcp2.changes +++ b/ngtcp2.changes @@ -1,3 +1,41 @@ +------------------------------------------------------------------- +Thu Dec 28 21:08:21 UTC 2023 - Dirk Müller + +- update to 1.1.0: + * Extract ngtcp2_frame_chain to its own file + * Refactor ringbuf + * Fix typo + * Rename reset stream flags + * Remove unused ngtcp2_conn_resched_frames + * crypto: Fix bug that retry token AAD does not include QUIC version + * cmake: re-add two missing includes + * Bump clang to 15 + * quictls: Prefetch objects to workaround 3.x perf regression + * Bump clang-format to 15 + * Bump quictls to 3.1.4+quic + * Deprecate NGTCP2_PROTO_VER_MIN and NGTCP2_PROTO_VER_MAX + * ngtcp2_conn_write_datagram conveniently accepts single buffer + * windows: Fix warnings + * ptlsclient, ptlsserver: Support hq + * h09client: Use util::write_token + * Cpp ext + * Use __FILE_NAME__ instead of __FILE__ + * examples: Rename extend_max_streams_bidi to extend_max_local_streams_bidi + * Define varint identifiers as macros + * Limit the number of NEW_CONNECTION_ID frames that are in-flight + * Make frame type of type uint64_t + * Fix doc + * Fix assertion failure + * Eliminate floating point computations + * Bump actions/github-script from 6 to 7 + * client: Optimize a bit + * Revert ignoring loss signal during startup + * Rework app_limited + * Remove unused strmq_nretrans + * autotools: Check wolfSSL_is_quic is available + * wolfSSL: Add more build options + * h09client: Fix uninitialized variable + ------------------------------------------------------------------- Tue Nov 7 12:58:47 UTC 2023 - Dirk Müller diff --git a/ngtcp2.spec b/ngtcp2.spec index e1ebacd..c796bb1 100644 --- a/ngtcp2.spec +++ b/ngtcp2.spec @@ -21,7 +21,7 @@ %global gnutls_soname libngtcp2_crypto_gnutls %global gnutls_sover 8 Name: ngtcp2 -Version: 1.0.1 +Version: 1.1.0 Release: 0 Summary: Implementation of the IETF QUIC protocol License: MIT