From 521fe02d41a2ef1251a90f9a65a52881add94874 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 12 Feb 2025 12:17:52 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.8.0.15-74e4-dirty=20?= =?UTF-8?q?=E2=86=92=201.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I1acb428ed42dd2217a734bedd286bbc60d0cc526 --- TODO-RELEASE | 3 --- configure.ac | 10 +++++----- debian/changelog | 27 +++++++++++++++++++++++++++ debian/control | 6 +++--- src/gsupclient/Makefile.am | 2 +- 5 files changed, 36 insertions(+), 12 deletions(-) diff --git a/TODO-RELEASE b/TODO-RELEASE index f14e8b58..0ed7189a 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,6 +7,3 @@ # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. #library what description / commit summary line -libosmo-gsup-client new API osmo_gsup_client_{get,set}_data(), - osmo_gsup_client_get_rem_addr(), osmo_gsup_client_get_rem_port(), - osmo_gsup_client_is_connected(), osmo_gsup_client_get_ipaccess_unit() \ No newline at end of file diff --git a/configure.ac b/configure.ac index 31ba8708..48f4c581 100644 --- a/configure.ac +++ b/configure.ac @@ -41,11 +41,11 @@ PKG_PROG_PKG_CONFIG([0.20]) PKG_CHECK_MODULES(TALLOC, [talloc >= 2.0.1]) -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.10.0) -PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.11.0) +PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 2.0.0) PKG_CHECK_MODULES(SQLITE3, sqlite3) diff --git a/debian/changelog b/debian/changelog index 66b4a805..dbf1ec11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,30 @@ +osmo-hlr (1.9.0) unstable; urgency=medium + + [ Vadim Yanitskiy ] + * subscriber-create-on-demand: rework configuration + * subscriber-create-on-demand: add mode for MSISDN=IMSI + + [ Alexander Couzens ] + * gsupclient: Introduce gsup_client_mux + * gsupclient: add missing SPDX line + * debian/copyright: add gsup_client under GPLv2+ + + [ Pau Espin Pedrol ] + * gsup: Replace deprecated ipa_msg_push_header() + * jenkins.sh: libosmo-netif no longer depends on libosmo-abis + * Drop use of libosmo-abis osmocom/abis/ipaccess.h + * gsup_client: Add new APIs to avoid users accessing struct fields + * gsup_client: Avoid double memset 0 + * Drop unneeded use of abis/ipa.h header + * jenkins.sh: Use --disable-doxygen configure param + + [ Mychaela N. Falconia ] + * vty: always emit reject-cause lines in saved config + * change default reject cause to plmn-not-allowed + * change default no-proxy reject cause to net-fail + + -- Oliver Smith Wed, 12 Feb 2025 12:17:52 +0100 + osmo-hlr (1.8.0) unstable; urgency=medium [ Vadim Yanitskiy ] diff --git a/debian/control b/debian/control index 956e273c..ca7df2e5 100644 --- a/debian/control +++ b/debian/control @@ -7,9 +7,9 @@ Build-Depends: debhelper (>= 10), dh-autoreconf, autotools-dev, python3-minimal, - libosmocore-dev (>= 1.10.0), - libosmo-abis-dev (>= 1.6.0), - libosmo-netif-dev (>= 1.5.0), + libosmocore-dev (>= 1.11.0), + libosmo-abis-dev (>= 2.0.0), + libosmo-netif-dev (>= 1.6.0), libsqlite3-dev, sqlite3, osmo-gsm-manuals-dev (>= 1.6.0) diff --git a/src/gsupclient/Makefile.am b/src/gsupclient/Makefile.am index ab9c478f..7611f6e7 100644 --- a/src/gsupclient/Makefile.am +++ b/src/gsupclient/Makefile.am @@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read chapter "Library interface versions" of the libtool documentation # before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html -LIBVERSION=1:0:1 +LIBVERSION=2:0:2 AM_CFLAGS = -Wall $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)/include \ $(TALLOC_CFLAGS) $(LIBOSMOCORE_CFLAGS) $(LIBOSMOABIS_CFLAGS)