Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aws-c-io for openSUSE:Factory checked in at 2025-02-20 16:41:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-c-io (Old) and /work/SRC/openSUSE:Factory/.aws-c-io.new.1873 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-io" Thu Feb 20 16:41:34 2025 rev:18 rq:1247335 version:0.15.5 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-c-io/aws-c-io.changes 2025-02-06 22:06:43.397325986 +0100 +++ /work/SRC/openSUSE:Factory/.aws-c-io.new.1873/aws-c-io.changes 2025-02-20 16:43:00.640643267 +0100 @@ -1,0 +2,6 @@ +Wed Feb 19 11:49:42 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 0.15.5 + * Add PQ_DEFAULT enum to aws_tls_cipher_pref by @alexw91 in (#707) + +------------------------------------------------------------------- Old: ---- v0.15.4.tar.gz New: ---- v0.15.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-c-io.spec ++++++ --- /var/tmp/diff_new_pack.JgowoD/_old 2025-02-20 16:43:01.932697339 +0100 +++ /var/tmp/diff_new_pack.JgowoD/_new 2025-02-20 16:43:01.936697507 +0100 @@ -21,7 +21,7 @@ %define library_version 1.0.0 %define library_soversion 0unstable Name: aws-c-io -Version: 0.15.4 +Version: 0.15.5 Release: 0 Summary: I/O and TLS package AWS SDK for C License: Apache-2.0 ++++++ v0.15.4.tar.gz -> v0.15.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-io-0.15.4/include/aws/io/tls_channel_handler.h new/aws-c-io-0.15.5/include/aws/io/tls_channel_handler.h --- old/aws-c-io-0.15.4/include/aws/io/tls_channel_handler.h 2025-01-29 00:10:24.000000000 +0100 +++ new/aws-c-io-0.15.5/include/aws/io/tls_channel_handler.h 2025-02-11 21:12:12.000000000 +0100 @@ -43,6 +43,9 @@ */ AWS_IO_TLS_CIPHER_PREF_PQ_TLSV1_2_2024_10 = 7, + /* Recommended default policy with post-quantum algorithm support. This policy may change over time. */ + AWS_IO_TLS_CIPHER_PREF_PQ_DEFAULT = 8, + AWS_IO_TLS_CIPHER_PREF_END_RANGE = 0xFFFF }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-io-0.15.4/source/s2n/s2n_tls_channel_handler.c new/aws-c-io-0.15.5/source/s2n/s2n_tls_channel_handler.c --- old/aws-c-io-0.15.4/source/s2n/s2n_tls_channel_handler.c 2025-01-29 00:10:24.000000000 +0100 +++ new/aws-c-io-0.15.5/source/s2n/s2n_tls_channel_handler.c 2025-02-11 21:12:12.000000000 +0100 @@ -272,6 +272,8 @@ return true; case AWS_IO_TLS_CIPHER_PREF_PQ_TLSV1_2_2024_10: return true; + case AWS_IO_TLS_CIPHER_PREF_PQ_DEFAULT: + return true; #endif default: @@ -1535,6 +1537,10 @@ /* No-Op, if the user configured a minimum_tls_version then a version-specific Cipher Preference was set */ break; + case AWS_IO_TLS_CIPHER_PREF_PQ_DEFAULT: + /* The specific PQ policy used here may change over time. */ + security_policy = "AWS-CRT-SDK-TLSv1.2-2023-PQ"; + break; case AWS_IO_TLS_CIPHER_PREF_PQ_TLSv1_0_2021_05: security_policy = "PQ-TLS-1-0-2021-05-26"; break;