9
0
Fork 0

Bump version: 1.0.0.45-2b362-dirty → 1.1.0

Change-Id: I04ccac3ce79b58d5ef0b3c0503ef38708dac05ff
This commit is contained in:
Pau Espin 2018-05-04 12:45:08 +02:00
parent 2b362570e5
commit cc69659217
2 changed files with 75 additions and 13 deletions

62
debian/changelog vendored
View File

@ -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 ]

View File

@ -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")