Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aws-c-http for openSUSE:Factory checked in at 2024-11-18 20:00:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-c-http (Old) and /work/SRC/openSUSE:Factory/.aws-c-http.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-http" Mon Nov 18 20:00:35 2024 rev:11 rq:1224795 version:0.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-c-http/aws-c-http.changes 2024-11-14 16:08:52.779257088 +0100 +++ /work/SRC/openSUSE:Factory/.aws-c-http.new.2017/aws-c-http.changes 2024-11-18 20:00:44.059937747 +0100 @@ -1,0 +2,6 @@ +Thu Nov 14 12:36:20 UTC 2024 - John Paul Adrian Glaubitz <[email protected]> + +- Update to version 0.9.2 + * Update for event loop API changes by @bretambrose in (#491) + +------------------------------------------------------------------- Old: ---- v0.9.1.tar.gz New: ---- v0.9.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-c-http.spec ++++++ --- /var/tmp/diff_new_pack.VPkayr/_old 2024-11-18 20:00:45.143983001 +0100 +++ /var/tmp/diff_new_pack.VPkayr/_new 2024-11-18 20:00:45.147983168 +0100 @@ -19,7 +19,7 @@ %define library_version 1.0.0 %define library_soversion 1_0_0 Name: aws-c-http -Version: 0.9.1 +Version: 0.9.2 Release: 0 Summary: C99 implementation of the HTTP/1.1 and HTTP/2 specifications License: Apache-2.0 ++++++ v0.9.1.tar.gz -> v0.9.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-http-0.9.1/tests/test_connection.c new/aws-c-http-0.9.2/tests/test_connection.c --- old/aws-c-http-0.9.1/tests/test_connection.c 2024-11-07 19:34:23.000000000 +0100 +++ new/aws-c-http-0.9.2/tests/test_connection.c 2024-11-12 19:54:34.000000000 +0100 @@ -10,14 +10,12 @@ #include <aws/common/clock.h> #include <aws/common/condition_variable.h> -#include <aws/common/log_writer.h> +#include <aws/common/hash_table.h> #include <aws/common/logging.h> #include <aws/common/string.h> #include <aws/common/thread.h> -#include <aws/common/uuid.h> #include <aws/io/channel_bootstrap.h> #include <aws/io/event_loop.h> -#include <aws/io/logging.h> #include <aws/io/socket.h> #include <aws/io/tls_channel_handler.h> #include <aws/testing/aws_test_harness.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-http-0.9.1/tests/test_connection_manager.c new/aws-c-http-0.9.2/tests/test_connection_manager.c --- old/aws-c-http-0.9.1/tests/test_connection_manager.c 2024-11-07 19:34:23.000000000 +0100 +++ new/aws-c-http-0.9.2/tests/test_connection_manager.c 2024-11-12 19:54:34.000000000 +0100 @@ -134,15 +134,6 @@ aws_mutex_unlock(&tester->lock); } -static struct aws_event_loop *s_new_event_loop( - struct aws_allocator *alloc, - const struct aws_event_loop_options *options, - void *new_loop_user_data) { - (void)new_loop_user_data; - - return aws_event_loop_new_default(alloc, options->clock); -} - static int s_cm_tester_init(struct cm_tester_options *options) { struct cm_tester *tester = &s_tester; @@ -170,7 +161,11 @@ clock_fn = options->mock_table->aws_high_res_clock_get_ticks; } - tester->event_loop_group = aws_event_loop_group_new(tester->allocator, clock_fn, 1, s_new_event_loop, NULL, NULL); + struct aws_event_loop_group_options elg_options = { + .loop_count = 1, + .clock_override = clock_fn, + }; + tester->event_loop_group = aws_event_loop_group_new(tester->allocator, &elg_options); struct aws_host_resolver_default_options resolver_options = { .el_group = tester->event_loop_group,
