aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-05-04 12:45:08 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-05-04 12:45:08 +0200
commitcc69659217d19af5635638a0fbd4f0702f79bac4 (patch)
tree434bcd011a3227a1231de2d04600130205c4f359
parent2b362570e5dd9f01e3c7d6963cc5ae30124cdf8d (diff)
Bump version: 1.0.0.45-2b362-dirty → 1.1.01.1.0
-rw-r--r--debian/changelog62
-rw-r--r--openbsc/configure.ac26
2 files changed, 75 insertions, 13 deletions
diff --git a/debian/changelog b/debian/changelog
index ab33e8ea1..a157b2e89 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,65 @@
+openbsc (1.1.0) unstable; urgency=medium
+
+ [ Neels Hofmeyr ]
+ * debian/rules: show testsuite.log when tests are failing
+ * vty: skip installing cmds now always installed by default
+ * vty: skip installing cmds now always installed by default
+ * sms.db: silence libdbi warnings on out-of-range index
+ * fix build: gprs_ra_id_by_bts(): ensure to init all values
+ * backport support for 3-digit MNC with leading zeros
+ * Migrate from OpenSSL to osmo_get_rand_id()
+
+ [ Harald Welte ]
+ * osmo-bsc: Print NOTICE message on unimplemented BSSMAP UDT
+ * osmo-bsc-sccplite: Implement incoming RESET procedure
+ * mgcp_transcoding_test: Add LIBOSMOABIS_CFLAGS
+ * sysinfo: Fix regression causing missing L2 Pseudo-Length in SI5/SI6
+ (Closes: #3059)
+
+ [ Pau Espin Pedrol ]
+ * Use type bool for boolean fields in gsm48_si_ro_info
+ * vty: Add cmd to configure 3g Early Classmark Sending
+ * mgcp_protocol: Don't print osmux stats if it is off
+ * bsc: Improve handling of paging_request return value
+ * bsc: paging: Fix losing paging messages for BTS
+ * libbsc: set_net_mcc_mnc_apply: Fix memleak on parsing incorrect mcc mnc
+ * bsc_nat: ctrl: fix memleak on reply receival
+ * bsc_nat: forward_to_bsc: remove one level of indentation
+ * bsc_nat: forward_to_bsc: Fix memleak on send failure
+ * bsc_nat: Drop redundant ccon ptr in bsc_cmd_list
+ * bsc_nat: ctrl: Fix crash on receveing bsc reply
+ * nat: Add jitter buffer on the uplink receiver
+ * smpp_smsc_conf: Fix heap-use-after-free
+ * chan_alloc.c: Fix log var formatting issues
+ * mgcp: switch to new osmux output APIs
+ * debian/changelog: change last release for unreleased to unstable
+
+ [ Max ]
+ * Fix tests after rate_ctr change
+
+ [ Vadim Yanitskiy ]
+ * libmsc: add support for both comp128v2 and comp128v3
+ * gsm_04_80.h: use '#pragma once' instead of includes
+ * gsm_04_80.h: cosmetic: whitespace fix
+ * src/libmsc/ussd.c: drop useless forward declaration
+
+ [ Stefan Sperling ]
+ * Make "waiting indicator" of IMMEDIATE ASSIGN REJECT dynamic.
+ * bts chan_load: ignore unusable BTS
+ * Add stat items for the BTS's channel load average and T3122.
+ * Add support for Access Control Class ramping.
+ * fix a format string error in bts_update_t3122_chan_load()
+ * fix initialization of acc ramping
+ * only log actual access control class ramping changes
+ * ensure that acc_ramp_init() is only called once
+ * trigger acc ramping based on trx rf-locked state
+ * rename helper functions in the acc ramp code to avoid confusion
+ * trigger acc ramping on state-changed-event reports
+ * only trigger acc ramping if trx 0 is usable and unlocked
+ * fix handling of state changes in acc ramping
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Fri, 04 May 2018 12:45:08 +0200
+
openbsc (1.0.0) unstable; urgency=medium
[ Holger Hans Peter Freyther ]
diff --git a/openbsc/configure.ac b/openbsc/configure.ac
index 7183fda48..2c3045ae9 100644
--- a/openbsc/configure.ac
+++ b/openbsc/configure.ac
@@ -39,19 +39,19 @@ AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
AC_SUBST(LIBRARY_DL)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.9.5)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.3.0)
-PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.9.5)
-PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.2.0)
-PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.6.4)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.0.1)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.11.0)
+PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.5.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.2.0)
# Enabke/disable the NAT?
AC_ARG_ENABLE([nat], [AS_HELP_STRING([--enable-nat], [Build the BSC NAT. Requires SCCP])],
[osmo_ac_build_nat="$enableval"],[osmo_ac_build_nat="no"])
if test "$osmo_ac_build_nat" = "yes" ; then
- PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 0.0.2)
+ PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 0.9.0)
fi
AM_CONDITIONAL(BUILD_NAT, test "x$osmo_ac_build_nat" = "xyes")
AC_SUBST(osmo_ac_build_nat)
@@ -60,7 +60,7 @@ AC_SUBST(osmo_ac_build_nat)
AC_ARG_ENABLE([osmo-bsc], [AS_HELP_STRING([--enable-osmo-bsc], [Build the Osmo BSC])],
[osmo_ac_build_bsc="$enableval"],[osmo_ac_build_bsc="no"])
if test "$osmo_ac_build_bsc" = "yes" ; then
- PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 0.0.6)
+ PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 0.9.0)
fi
AM_CONDITIONAL(BUILD_BSC, test "x$osmo_ac_build_bsc" = "xyes")
AC_SUBST(osmo_ac_build_bsc)
@@ -69,7 +69,7 @@ AC_SUBST(osmo_ac_build_bsc)
AC_ARG_ENABLE([smpp], [AS_HELP_STRING([--enable-smpp], [Build the SMPP interface])],
[osmo_ac_build_smpp="$enableval"],[osmo_ac_build_smpp="no"])
if test "$osmo_ac_build_smpp" = "yes" ; then
- PKG_CHECK_MODULES(LIBSMPP34, libsmpp34 >= 1.12)
+ PKG_CHECK_MODULES(LIBSMPP34, libsmpp34 >= 1.13.0)
AC_DEFINE(BUILD_SMPP, 1, [Define if we want to build SMPP])
fi
AM_CONDITIONAL(BUILD_SMPP, test "x$osmo_ac_build_smpp" = "xyes")
@@ -95,9 +95,9 @@ AC_SUBST(osmo_ac_mgcp_transcoding)
AC_ARG_ENABLE([iu], [AS_HELP_STRING([--enable-iu], [Build 3G support, aka IuPS and IuCS interfaces])],
[osmo_ac_iu="$enableval"],[osmo_ac_iu="no"])
if test "x$osmo_ac_iu" = "xyes" ; then
- PKG_CHECK_MODULES(LIBASN1C, libasn1c) # TODO version?
- PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap) # TODO version?
- PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran) # TODO version?
+ PKG_CHECK_MODULES(LIBASN1C, libasn1c >= 0.9.31)
+ PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap >= 0.3.0)
+ PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 0.9.0)
AC_DEFINE(BUILD_IU, 1, [Define if we want to build IuPS and IuCS interfaces support])
fi
AM_CONDITIONAL(BUILD_IU, test "x$osmo_ac_iu" = "xyes")