[Spice-commits] 2 commits - CHANGELOG.md configure.ac .gitlab-ci.yml meson.build

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Oct 12 08:31:20 UTC 2022


 .gitlab-ci.yml |    1 +
 CHANGELOG.md   |   15 +++++++++++++++
 configure.ac   |    2 +-
 meson.build    |    2 +-
 4 files changed, 18 insertions(+), 2 deletions(-)

New commits:
commit c7b313ba31ebf02d7173551ee8dd6710b7676441
Author: Frediano Ziglio <freddy77 at gmail.com>
Date:   Tue Sep 13 14:59:22 2022 +0100

    build: Prepare for 0.15.1 release
    
    Lot of build and compatibility updates since 0.15.
    See CHANGELOG.md.
    
    Signed-off-by: Frediano Ziglio <freddy77 at gmail.com>

diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc803bcf..f59cb770 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+Major Changes in 0.15.1:
+========================
+
+* Fix some compatibility issues with FreeBSD
+* Fix some minor issue with build
+* Improve packaging with Meson
+* Lot of C++ improves (clang-tidy)
+* Fix some compatibility with no-Glibc libraries (like Musl)
+* Fix minor leaks shutting down library
+* Add Doxygen file to distribution
+* Fix a longstanding issue related to surface updates where wrong surfaces were possibly used
+* Fix compatibility with OpenSSL 3
+* Updates and fixes for CI
+* Use more random connection IDs to fix possible issues with proxies
+
 Major Changes in 0.15:
 ======================
 
diff --git a/configure.ac b/configure.ac
index 4e88b2ea..b2038a54 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@ AC_PREREQ([2.57])
 #
 dnl TODO see server/spice-char.h TODO comment for API breakage
 m4_define([SPICE_CURRENT], [15])
-m4_define([SPICE_REVISION], [1])
+m4_define([SPICE_REVISION], [2])
 m4_define([SPICE_AGE], [14])
 
 AC_INIT(spice, [m4_esyscmd(build-aux/git-version-gen .tarball-version)],
diff --git a/meson.build b/meson.build
index 333ad44c..ef8b41ad 100644
--- a/meson.build
+++ b/meson.build
@@ -32,7 +32,7 @@ run_command('build-aux/meson/check-spice-common', check : true)
 #
 #
 spice_server_current = 15
-spice_server_revision = 1
+spice_server_revision = 2
 spice_server_age = 14
 spice_server_so_version = '@0 at .@1 at .@2@'.format(spice_server_current - spice_server_age,
                                                spice_server_age,
commit f9682ed12100fca6a7e923bc9956fbbf002aa63d
Author: Frediano Ziglio <freddy77 at gmail.com>
Date:   Wed Aug 3 15:14:54 2022 +0100

    Temporary workaround issue with gstreamer1-plugins-good package
    
    Downgrading this package seems to solve Valgrind tests.
    
    Signed-off-by: Frediano Ziglio <freddy77 at gmail.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f9ad4a29..ea222951 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -74,6 +74,7 @@ check-valgrind:
     dnf install valgrind
     gstreamer1-libav gstreamer1-plugins-ugly gstreamer1-plugins-good gstreamer1-plugins-bad-free
     -y
+  - dnf downgrade -y gstreamer1-plugins-good-1.20.0-1.fc36
   - >
     CFLAGS='-O2 -pipe -g -D_FORTIFY_SOURCE=0'
     CXXFLAGS='-O2 -pipe -g -D_FORTIFY_SOURCE=0'


More information about the Spice-commits mailing list