Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cowsql for openSUSE:Factory checked 
in at 2025-09-22 16:41:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cowsql (Old)
 and      /work/SRC/openSUSE:Factory/.cowsql.new.27445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cowsql"

Mon Sep 22 16:41:16 2025 rev:4 rq:1306520 version:1.15.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/cowsql/cowsql.changes    2025-02-06 
22:09:32.880309901 +0100
+++ /work/SRC/openSUSE:Factory/.cowsql.new.27445/cowsql.changes 2025-09-22 
16:42:03.863422959 +0200
@@ -1,0 +2,6 @@
+Thu Sep 18 14:53:18 UTC 2025 - Christoph G <[email protected]>
+
+- update to 1.15.9
+  * don't define double as float_t
+
+-------------------------------------------------------------------

Old:
----
  cowsql-1.15.8.tar.gz

New:
----
  cowsql-1.15.9.tar.gz

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

Other differences:
------------------
++++++ cowsql.spec ++++++
--- /var/tmp/diff_new_pack.LryOQf/_old  2025-09-22 16:42:04.271440102 +0200
+++ /var/tmp/diff_new_pack.LryOQf/_new  2025-09-22 16:42:04.275440270 +0200
@@ -19,7 +19,7 @@
 
 %define lname libcowsql0
 Name:           cowsql
-Version:        1.15.8
+Version:        1.15.9
 Release:        0
 Summary:        Embeddable, replicated and fault tolerant SQL engine
 License:        LGPL-3.0-only WITH LGPL-3.0-linking-exception

++++++ cowsql-1.15.8.tar.gz -> cowsql-1.15.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cowsql-1.15.8/.github/workflows/build-and-test.yml 
new/cowsql-1.15.9/.github/workflows/build-and-test.yml
--- old/cowsql-1.15.8/.github/workflows/build-and-test.yml      2025-02-02 
10:08:06.000000000 +0100
+++ new/cowsql-1.15.9/.github/workflows/build-and-test.yml      2025-07-11 
12:18:16.000000000 +0200
@@ -40,6 +40,6 @@
       run: make code-coverage-capture
 
     - name: Upload coverage to Codecov
-      uses: codecov/codecov-action@v3
+      uses: codecov/codecov-action@v5
       with:
         verbose: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cowsql-1.15.8/.github/workflows/linting.yml 
new/cowsql-1.15.9/.github/workflows/linting.yml
--- old/cowsql-1.15.8/.github/workflows/linting.yml     2025-02-02 
10:08:06.000000000 +0100
+++ new/cowsql-1.15.9/.github/workflows/linting.yml     2025-07-11 
12:18:16.000000000 +0200
@@ -10,7 +10,7 @@
 
     steps:
     - uses: actions/checkout@v4
-    - uses: DoozyX/[email protected]
+    - uses: DoozyX/[email protected]
       with:
         source: 'src test include'
         exclude: 'test/lib/munit.*'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cowsql-1.15.8/configure.ac 
new/cowsql-1.15.9/configure.ac
--- old/cowsql-1.15.8/configure.ac      2025-02-02 10:08:06.000000000 +0100
+++ new/cowsql-1.15.9/configure.ac      2025-07-11 12:18:16.000000000 +0200
@@ -1,5 +1,5 @@
 AC_PREREQ(2.60)
-AC_INIT([libcowsql], [1.15.8], [https://github.com/cowsql/cowsql])
+AC_INIT([libcowsql], [1.15.9], [https://github.com/cowsql/cowsql])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([ac])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cowsql-1.15.8/src/lib/serialize.h 
new/cowsql-1.15.9/src/lib/serialize.h
--- old/cowsql-1.15.8/src/lib/serialize.h       2025-02-02 10:08:06.000000000 
+0100
+++ new/cowsql-1.15.9/src/lib/serialize.h       2025-07-11 12:18:16.000000000 
+0200
@@ -37,7 +37,7 @@
  * Basic type aliases to used by macro-based processing.
  */
 typedef const char *text_t;
-typedef double float_t;
+typedef double cowsql_float;
 typedef uv_buf_t blob_t;
 
 /**
@@ -143,7 +143,7 @@
        return sizeof(int64_t);
 }
 
-COWSQL_INLINE size_t float__sizeof(const float_t *value)
+COWSQL_INLINE size_t float__sizeof(const cowsql_float *value)
 {
        (void)value;
        return sizeof(double);
@@ -190,7 +190,7 @@
        *cursor += sizeof(int64_t);
 }
 
-COWSQL_INLINE void float__encode(const float_t *value, void **cursor)
+COWSQL_INLINE void float__encode(const cowsql_float *value, void **cursor)
 {
        *(uint64_t *)(*cursor) = ByteFlipLe64(*(uint64_t *)value);
        *cursor += sizeof(uint64_t);
@@ -273,7 +273,7 @@
        return 0;
 }
 
-COWSQL_INLINE int float__decode(struct cursor *cursor, float_t *value)
+COWSQL_INLINE int float__decode(struct cursor *cursor, cowsql_float *value)
 {
        size_t n = sizeof(double);
        if (n > cursor->cap) {

Reply via email to