From 3cabf1a29a67f40fcaba1a9c5a656dfe4a435da9 Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Tue, 5 May 2020 14:35:50 -0400 Subject: [PATCH] Upgrade to RMR version 4.0.2 Bump qp-d version to 1.0.4. Issue-ID: RICAPP-103 Signed-off-by: Lott, Christopher (cl778h) Change-Id: Ieb62df59185b27dcf5a027ba1aa42ac617ea14ec --- Dockerfile | 4 ++-- docs/release-notes.rst | 56 ++++++++++++++++++++++++-------------------------- setup.py | 2 +- 3 files changed, 30 insertions(+), 32 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab5518b..ecbf1c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,9 +18,9 @@ FROM python:3.8-alpine # RMR setup RUN mkdir -p /opt/route/ # copy rmr files from builder image in lieu of an Alpine package -COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.2 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.2 /usr/local/lib64/librmr* /usr/local/lib64/ # rmr_probe replaced health_ck -COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.2 /usr/local/bin/rmr_probe /usr/local/bin/rmr_probe +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.2 /usr/local/bin/rmr* /usr/local/bin/ ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64 COPY tests/fixtures/local.rt /opt/route/local.rt ENV RMR_SEED_RT /opt/route/local.rt diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 9260783..d8fe173 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -10,9 +10,11 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `__ and this project adheres to `Semantic Versioning `__. -.. contents:: - :depth: 3 - :local: + +[1.0.4] - 2020-05-05 +-------------------- + +* Upgrade to RMR version 4.0.2 [1.0.3] - 2020-04-22 @@ -20,60 +22,56 @@ and this project adheres to `Semantic Versioning `__. * Upgrade to RMR version 3.8.2 + [1.0.2] - 4/8/2020 ------------------ -:: - * Upgrade to xapp frame 1.0.0 which includes rmr python +* Upgrade to xapp frame 1.0.0 which includes rmr python [1.0.1] - 4/3/2020 ------------------ -:: - * Docker now builds with an empty route file so rmr starts; it will not even start properly without this - * Change how fake_sdl is activated for docker convienence - * Create dev guide file - * Add instructions on how to test the rmr healthcheck in a running container - * Update to xapp frame 0.7.0 (which has rmr healthchecks) +* Docker now builds with an empty route file so rmr starts; it will not even start properly without this +* Change how fake_sdl is activated for docker convienence +* Create dev guide file +* Add instructions on how to test the rmr healthcheck in a running container +* Update to xapp frame 0.7.0 (which has rmr healthchecks) [1.0.0] - 4/1/2020 ------------------ -:: - * This release is seen as the first complete implementation of QPD, although likely fixes and enhancements are needed - * Implement the rmr messaging - * Add tests for various bad scenarios like UE IDs not existing and Cell data not existing - * Fix UE IDs to be strings as they are in the req slides +* This release is seen as the first complete implementation of QPD, although likely fixes and enhancements are needed +* Implement the rmr messaging +* Add tests for various bad scenarios like UE IDs not existing and Cell data not existing +* Fix UE IDs to be strings as they are in the req slides [0.2.0] - 3/27/2020 ------------------- -:: - * Implement SDL calls and testing - * Small cleanups +* Implement SDL calls and testing +* Small cleanups [0.1.0] - 3/26/2020 ------------------- -:: - * Implement the core business logic of the data merge +* Implement the core business logic of the data merge + [0.0.2] - 3/25/2020 ------------------- -:: - * Move to SI95 - * Move to Xapp frame 0.6.0 - * Move to py38 - * Remove unneeded stuff from setup.py since this is a docker component and not a pypi library - * Add some mock data for future development +* Move to SI95 +* Move to Xapp frame 0.6.0 +* Move to py38 +* Remove unneeded stuff from setup.py since this is a docker component and not a pypi library +* Add some mock data for future development + [0.0.1] - 3/17/2020 ------------------- -:: - * inital skeleton creation +* inital skeleton creation diff --git a/setup.py b/setup.py index 1f0c501..965997d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ from setuptools import setup, find_packages setup( name="qpdriver", - version="1.0.3", + version="1.0.4", packages=find_packages(exclude=["tests.*", "tests"]), author="Tommy Carpenter", description="QP Driver Xapp for traffic steering", -- 2.16.6