blob: 79cc2397ee123f1f656fe238d42563019f7c05e3 [file] [log] [blame]
Tommy Carpenter53786ca2020-02-28 09:17:46 -05001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. SPDX-License-Identifier: CC-BY-4.0
3.. Copyright (C) 2020 AT&T Intellectual Property
4
5Release Notes
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -04006=============
Tommy Carpenter53786ca2020-02-28 09:17:46 -05007
8All notable changes to this project will be documented in this file.
9
10The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
11and this project adheres to `Semantic Versioning <http://semver.org/>`__.
12
13.. contents::
14 :depth: 3
15 :local:
16
Lott, Christopher (cl778h)e2e3e432020-04-22 09:52:23 -040017[1.0.2] - 2020-04-22
18--------------------
19* Upgrade to RMR version 3.8.0
20
21
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040022[1.0.1] - 2020-04-10
23--------------------
Tommy Carpenter3a6ac012020-04-06 14:42:57 -040024
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040025* Publish API documentation using Sphinx autodoc, which required
26 changes so Sphinx can run when the RMR .so file is not available,
27 such as during a ReadTheDocs build.
28* Create new subpackage rmr/rmrclib with the C library loaded via
29 ctypes.
30* Extend sphinx configuration to mock the new rmrclib subpackage
31* Add method to get constants from RMR library and detect mock
32 objects to work around a bug in Sphinx 3.0.0.
33* Split test files into test_rmr and test_rmrclib.
34* Add function to define argtype and restype values for library functions
35* Configure intersphinx link for RMR man pages at ReadTheDocs.io
36
37
38[1.0.0] - 4/6/2020
39------------------
40
41* Python rmr has been moved into this repo. The module name has NOT
42 changed in order to make the transition for repos very easy. The
43 only transition needed should be prefixing rmr with ricxappframe in
44 import statements, and to include this rather than rmr in setup.
Tommy Carpenter3a6ac012020-04-06 14:42:57 -040045
46
Tommy Carpenter09894e32020-04-02 19:45:19 -040047[0.7.0] - 4/2/2020
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040048------------------
Tommy Carpenter09894e32020-04-02 19:45:19 -040049
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040050* RMRXapps by default now implement the rmr healthcheck probe;
51 users can also override it with a more complex handler if they
52 wish
53* Fix a bug in the unit tests where a payload mismatch wouldn't
54 actually fail the test (would now)
Tommy Carpenter09894e32020-04-02 19:45:19 -040055
56
Tommy Carpenter3423ff52020-03-23 09:17:47 -040057[0.6.0] - 3/23/2020
58-------------------
Tommy Carpenter3423ff52020-03-23 09:17:47 -040059
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040060* Switch to SI95 for rmr
Tommy Carpenter3423ff52020-03-23 09:17:47 -040061
62
Tommy Carpenter0f8305b2020-03-18 10:34:28 -040063
64[0.5.0] - 3/18/2020
65-------------------
Tommy Carpenter0f8305b2020-03-18 10:34:28 -040066
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040067* All xapps (via the base class) now have a logger attribute that can
68 be invoked to provide mdc logging. It is a passthrough to the RIC
69 mdc logger for python (untouched, no value in an API on top at the
70 current time).
Tommy Carpenter0f8305b2020-03-18 10:34:28 -040071
72
Tommy Carpenter5b582d62020-03-17 17:41:42 -040073[0.4.1] - 3/17/2020
74-------------------
Tommy Carpenter5b582d62020-03-17 17:41:42 -040075
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040076* Switch tox to use py38
77* switch to latest builders
Tommy Carpenter5b582d62020-03-17 17:41:42 -040078
79
Tommy Carpenter1c9ce6b2020-03-13 09:36:36 -040080[0.4.0] - 3/13/2020
81-------------------
Tommy Carpenter1c9ce6b2020-03-13 09:36:36 -040082
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040083* Minor breaking change; switches the default behavior RE
84 threading for RMRXapps. The default is not to return execution,
85 but the caller (in `run`) can choose to loop in a thread.
86* Add Dockerized examples
Tommy Carpenter1c9ce6b2020-03-13 09:36:36 -040087
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040088
89[0.3.0] - 3/10/2020
90-------------------
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040091
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -040092* Large change to the "feel" of this framework: rather than subclass
93 instantiation, xapps now use initialization and registration
94 functions to register handlers
95* rmr xapps can now register handlers for specific message types (and
96 they must prodive a default callback); if the user does this then
97 "message to function routing" is now handled by the framework itself
98* RMRXapp now runs the polling loop in a thread, and returns execution
99 back to the caller. The user is then free to loop, or do nothing,
100 and call stop() when they want.
101* Raises tox coverage minimum to 70 from 50 (currently at 86)
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -0400102
Tommy Carpenter99a0b482020-03-03 10:21:24 -0500103[0.2.0] - 3/3/2020
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -0400104------------------
Tommy Carpenter99a0b482020-03-03 10:21:24 -0500105
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -0400106* now allows for RMRXapps to call code before entering the infinite
107 loop
108* stop is now called before throwing NotImplemented in the case where
109 the client fails to provide a must have callback; this ensures there
110 is no dangling rmr thread
111* stop now calls rmr_close to correctly free up any port(s)
112* (breaking) renames `loop` to `entrypoint` since the function does
113 not have to contain a loop (though it most likely does)
114* Changes wording around the two types of xapps (docs only)
115* Uses a new version of rmr python that crashes when the rmr mrc fails
116 to init, which prevents an xapp trying to use an unusable rmr
117* more unit test code coverage
118* Adds more fields to setup like long_desc and classifiers so the pypi
119 page looks nicer
120* Removes a bad release file (will be added back in subseq. commit)
Tommy Carpenter99a0b482020-03-03 10:21:24 -0500121
Tommy Carpenter53786ca2020-02-28 09:17:46 -0500122[0.1.0] - 2/27/2020
123-------------------
Tommy Carpenter53786ca2020-02-28 09:17:46 -0500124
Lott, Christopher (cl778h)f55e4d82020-04-10 16:02:11 -0400125* Initial commit