Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package uhttpmock for openSUSE:Factory 
checked in at 2024-03-20 21:12:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/uhttpmock (Old)
 and      /work/SRC/openSUSE:Factory/.uhttpmock.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "uhttpmock"

Wed Mar 20 21:12:35 2024 rev:11 rq:1159537 version:0.10.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/uhttpmock/uhttpmock.changes      2022-10-13 
15:45:23.079117355 +0200
+++ /work/SRC/openSUSE:Factory/.uhttpmock.new.1905/uhttpmock.changes    
2024-03-20 21:13:33.092199588 +0100
@@ -1,0 +2,8 @@
+Tue Mar  5 08:23:46 UTC 2024 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Update to version 0.10.0:
+  + Bugs fixed:
+    - Add PATCH request method.
+    - Add CONNECT request method.
+
+-------------------------------------------------------------------

Old:
----
  uhttpmock-0.9.0.tar.bz2

New:
----
  uhttpmock-0.10.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ uhttpmock.spec ++++++
--- /var/tmp/diff_new_pack.d2227A/_old  2024-03-20 21:13:33.560216785 +0100
+++ /var/tmp/diff_new_pack.d2227A/_new  2024-03-20 21:13:33.560216785 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package uhttpmock
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 # Copyright (c) 2013 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:           uhttpmock
-Version:        0.9.0
+Version:        0.10.0
 Release:        0
 Summary:        HTTP web service mocking library
 License:        LGPL-2.1-or-later

++++++ uhttpmock-0.9.0.tar.bz2 -> uhttpmock-0.10.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/NEWS new/uhttpmock-0.10.0/NEWS
--- old/uhttpmock-0.9.0/NEWS    2022-09-28 14:44:47.000000000 +0200
+++ new/uhttpmock-0.10.0/NEWS   2024-03-04 11:08:55.000000000 +0100
@@ -1,3 +1,11 @@
+Overview of changes from uhttpmock 0.9.0 to uhttpmock 0.10.0
+============================================================
+
+* Bugs fixed:
+  - !11 Add PATCH request method
+  - !12 Add CONNECT request method
+
+
 Overview of changes from uhttpmock 0.5.5 to uhttpmock 0.9.0
 ===========================================================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/libuhttpmock/uhm-server.c 
new/uhttpmock-0.10.0/libuhttpmock/uhm-server.c
--- old/uhttpmock-0.9.0/libuhttpmock/uhm-server.c       2022-09-28 
14:44:47.000000000 +0200
+++ new/uhttpmock-0.10.0/libuhttpmock/uhm-server.c      2024-03-04 
11:08:55.000000000 +0100
@@ -844,6 +844,12 @@
        } else if (strncmp (trace, "PUT", strlen ("PUT")) == 0) {
                method = SOUP_METHOD_PUT;
                trace += strlen ("PUT");
+       } else if (strncmp (trace, "PATCH", strlen ("PATCH")) == 0) {
+               method = "PATCH";
+               trace += strlen ("PATCH");
+       } else if (strncmp (trace, "CONNECT", strlen ("CONNECT")) == 0) {
+               method = "CONNECT";
+               trace += strlen ("CONNECT");
        } else {
                g_warning ("Unknown method ‘%s’.", trace);
                goto error;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uhttpmock-0.9.0/meson.build 
new/uhttpmock-0.10.0/meson.build
--- old/uhttpmock-0.9.0/meson.build     2022-09-28 14:44:47.000000000 +0200
+++ new/uhttpmock-0.10.0/meson.build    2024-03-04 11:08:55.000000000 +0100
@@ -1,5 +1,5 @@
 project('uhttpmock', 'c',
-  version: '0.9.0',
+  version: '0.10.0',
   default_options: [
     'warning_level=2',
     'c_std=gnu99',

Reply via email to