blob: 46de05460c86aaacf8dc7757722b3627d5251d6e [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
6===============
7
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
Tommy Carpenter09894e32020-04-02 19:45:19 -040017[0.7.0] - 4/2/2020
18-------------------
19::
20
21 * RMRXapps by default now implement the rmr healthcheck probe; users can also override it with a more complex handler if they wish
22 * Fix a bug in the unit tests where a payload mismatch wouldn't actually fail the test (would now)
23
24
Tommy Carpenter3423ff52020-03-23 09:17:47 -040025[0.6.0] - 3/23/2020
26-------------------
27::
28
29 * Switch to SI95 for rmr
30
31
Tommy Carpenter0f8305b2020-03-18 10:34:28 -040032
33[0.5.0] - 3/18/2020
34-------------------
35::
36
37 * All xapps (via the base class) now have a logger attribute that can be invoked to provide mdc logging. It is a passthrough to the RIC mdc logger for python (untouched, no value in an API on top at the current time).
38
39
Tommy Carpenter5b582d62020-03-17 17:41:42 -040040[0.4.1] - 3/17/2020
41-------------------
42::
43
44 * Switch tox to use py38
45 * switch to latest builders
46
47
Tommy Carpenter1c9ce6b2020-03-13 09:36:36 -040048[0.4.0] - 3/13/2020
49-------------------
50::
51
52 * minor breaking change; switches the default behavior RE threading for RMRXapps. The default is not to return execution, but the caller (in `run`) can choose to loop in a thread.
Tommy Carpenter01533e62020-03-16 09:29:23 -040053 * Add Dockerized examples
Tommy Carpenter1c9ce6b2020-03-13 09:36:36 -040054
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040055
56[0.3.0] - 3/10/2020
57-------------------
58::
59
60 * Large change to the "feel" of this framework: rather than subclass instantiation, xapps now use initialization and registration functions to register handlers
61 * rmr xapps can now register handlers for specific message types (and they must prodive a default callback); if the user does this then "message to function routing" is now handled by the framework itself
62 * RMRXapp now runs the polling loop in a thread, and returns execution back to the caller. The user is then free to loop, or do nothing, and call stop() when they want.
63 * Raises tox coverage minimum to 70 from 50 (currently at 86)
64
Tommy Carpenter99a0b482020-03-03 10:21:24 -050065[0.2.0] - 3/3/2020
66-------------------
67::
68
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040069 * now allows for RMRXapps to call code before entering the infinite loop
Tommy Carpenter99a0b482020-03-03 10:21:24 -050070 * stop is now called before throwing NotImplemented in the case where the client fails to provide a must have callback; this ensures there is no dangling rmr thread
71 * stop now calls rmr_close to correctly free up any port(s)
72 * (breaking) renames `loop` to `entrypoint` since the function does not have to contain a loop (though it most likely does)
73 * Changes wording around the two types of xapps (docs only)
74 * Uses a new version of rmr python that crashes when the rmr mrc fails to init, which prevents an xapp trying to use an unusable rmr
75 * more unit test code coverage
76 * Adds more fields to setup like long_desc and classifiers so the pypi page looks nicer
77 * Removes a bad release file (will be added back in subseq. commit)
78
Tommy Carpenter53786ca2020-02-28 09:17:46 -050079[0.1.0] - 2/27/2020
80-------------------
81::
82
83 * Initial commit