osmith has uploaded this change for review.

View Change

Bump version: 1.12.1.47-87507-dirty → 1.13.0

Change-Id: I9685a47a15b4636306dd1162c4aae27a6ae1022a
---
M TODO-RELEASE
M configure.ac
M debian/changelog
M debian/control
4 files changed, 76 insertions(+), 14 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/19/39519/1
diff --git a/TODO-RELEASE b/TODO-RELEASE
index 193735c..0ed7189 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,4 +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-sigtran >2.0.1 Use API osmo_ss7_route_get_dest_as(), osmo_ss7_instance_get_id(), osmo_ss7_as_get_asp_protocol()
diff --git a/configure.ac b/configure.ac
index ef43aa6..f580e4b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -61,14 +61,14 @@
AC_SUBST(osmo_ac_meas_vis)

dnl checks for libraries
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.10.0)
-PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.10.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0)
-PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.6.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.5.0)
-PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.9.0)
-PKG_CHECK_MODULES(LIBOSMOMGCPCLIENT, libosmo-mgcp-client >= 1.13.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.11.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.11.0)
+PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.11.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.11.0)
+PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 2.0.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.6.0)
+PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 2.1.0)
+PKG_CHECK_MODULES(LIBOSMOMGCPCLIENT, libosmo-mgcp-client >= 1.14.0)

dnl checks for header files
AC_HEADER_STDC
diff --git a/debian/changelog b/debian/changelog
index d0f2d5b..8b1ad98 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,66 @@
+osmo-bsc (1.13.0) unstable; urgency=medium
+
+ [ Pau Espin Pedrol ]
+ * bs11: Mark global private variables as static
+ * bs11: Move model struct further down in the file
+ * Convert bts->depends_on from bitmask to llist
+ * Introduce typedef for bts->nr gsm_bts_nr_t
+ * tests/vty: Validate allocating all possible BTS
+ * Initial support for >256 BTS
+ * rsl_rx_pchan_rqd(): Clean up code path
+ * pcu_tx_rach_ind(): Avoid forwarding chan_rqd to PCU if not expected
+ * pcu_info_update(): Simplify code path with early return
+ * Log unsupported PCUIF for bts > 255
+ * Remove unused function gsm_bts_by_lac()
+ * bsc_vty: Use gsm_bts_num() in ho_or_as()
+ * Clarify code around bts->loc_list
+ * bts: Make sure bts_location entries in bts->loc_list are freed
+ * bts: Remove from net->bts_list during talloc destructor
+ * bts: Remove acc timers during talloc destructor
+ * gsm_bts_num(): use hashtable to lookup bts
+ * tests/ctrl/osmo-bsc-neigh-test.cfg: Fix duplicate <LAC,CI> between bts1 and bts2
+ * Introduce hashtable to lookup bts by LAC
+ * Introduce hashtable to lookup bts by CI
+ * Introduce hashtable to lookup bts by <LAC,CI>
+ * bsc_ctrl: Use new libosmo-sigtran API osmo_ss7_route_get_dest_as()
+ * lb: Avoid using osmo_ss7_instance private field
+ * Use new libosmo-sigtran API osmo_ss7_instance_get_id()
+ * Use new libosmo-sigtran API osmo_ss7_instances_llist_entry()
+ * bsc_sccplite_msc_send(): Fix msgb leak
+ * Use new libosmo-sigtran API osmo_ss7_as_get_asp_protocol()
+ * Use new libosmo-sigtran API osmo_ss7_as_select_asp()
+ * jenkins.sh: libosmo-netif no longer depends on libosmo-abis
+ * abis: Fix reusing bts->*_link while it is being destroyed
+ * ipaccess-proxy: Fix wrong cb function passed
+ * Drop use of libosmo-abis osmocom/abis/ipaccess.h
+ * ipaccess-config: Use own e1_input ipaccess driver
+ * ipaccess-config: Remove unused function ipaccess_bts_handle_ccm()
+ * Drop unneeded use of abis/ipa.h header
+ * jenkins.sh: No need to build libosmo-sigtran with doxygen
+ * Fix BTS nr >255 wrapping up during bts allocation
+ * Use correct bts_nr field during MO init
+ * cbsp_link: set name on stream
+
+ [ Oliver Smith ]
+ * contrib/jenkins: libosmo-sccp -> libosmo-sigtran
+
+ [ Philipp Maier ]
+ * pcu_sock: do not receive a TXT ind. with PCU_VERSION for a specific BTS
+
+ [ Csaba Sipos ]
+ * nokia_site: add some missing message IDs
+ * nokia_site: add missing element names
+ * nokia_site: change RSL bootstrap logic
+ * nokia_site: introduce hopping control for Nokia *Site
+
+ [ Neels Hofmeyr ]
+ * drop unused function decl abis_nm_rx()
+
+ [ csaba.sipos ]
+ * nokia_site: add reset_type attribute
+
+ -- Oliver Smith <osmith@sysmocom.de> Wed, 12 Feb 2025 13:02:16 +0100
+
osmo-bsc (1.12.1) unstable; urgency=medium

[ Vadim Yanitskiy ]
diff --git a/debian/control b/debian/control
index c81ea89..f46ac2c 100644
--- a/debian/control
+++ b/debian/control
@@ -12,11 +12,11 @@
python3-minimal,
libcdk5-dev,
libtalloc-dev,
- libosmocore-dev (>= 1.10.0),
- libosmo-sigtran-dev (>= 1.9.0),
- libosmo-abis-dev (>= 1.6.0),
- libosmo-netif-dev (>= 1.5.0),
- libosmo-mgcp-client-dev (>= 1.13.0),
+ libosmocore-dev (>= 1.11.0),
+ libosmo-sigtran-dev (>= 2.1.0),
+ libosmo-abis-dev (>= 2.0.0),
+ libosmo-netif-dev (>= 1.6.0),
+ libosmo-mgcp-client-dev (>= 1.14.0),
osmo-gsm-manuals-dev (>= 1.6.0)
Standards-Version: 3.9.8
Vcs-Git: https://gitea.osmocom.org/cellular-infrastructure/osmo-bsc

To view, visit change 39519. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I9685a47a15b4636306dd1162c4aae27a6ae1022a
Gerrit-Change-Number: 39519
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>