4 All notable changes to this project will be documented in this file.
6 The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
7 and this project adheres to `Semantic
8 Versioning <http://semver.org/>`__.
16 * Fix a constant name (RMRFL_MT_CALL)
23 * Correct unit test bug in rmr-python. With RMR 1.8.x connections are forced to be asynch by default to prevent kubernetes blocking the attempt for minutes. However, the asynch nature of connections makes unit tests concerned with the ability to send and receive messages non-deterministic as some connections are established before the first message is sent, and others are not. This change ensures that unit tests establish connections in a synchronous manner which ensures that the first send will not be rejected by NNG due to a pending connection.
29 * Add a helpers module to provide extensions and helper functions such as receive all queued messages.
30 * Enhance unit test to check only for RMR constants which are needed.
31 * Correct unprintable characters in documentation.
38 * Add final unit tests for rmr.py; unit test coverage for rmr python is about 95%. The remaining functions are dangerous to unit test directly, e.g., rcv which may block forever
39 * Fix a bug where meid was being intepreted as bytes (but then cast into a string); the correct interpretation is a string, so now it will truncate after a null byte.
40 * Removes access to the raw function rmr_get_meid(ptr, dest) in favor of just rmr_get_meid(ptr). Also get_meid is now rmr_get_meid since it wasn't consistent with the naming.
47 * Overhaul unit tests to remove mocking from the rmr tests, which gives much greater confidence in changing the code. More is still needed however, specifically test sends and test receives.
48 * Adds an alias rmr_set_meid to rmr_bytes2meid for naming consistency.
49 * Found a possible inconsistency/bug that requires further investigation later; setting meid takes bytes, but getting it returns a string.
56 * Fix invocation of _rmr_alloc function
63 * Finish sphinx documentation
64 * Make public functions that wrap ctype declarions, allowing for docstrings
65 * Fix a bug where rmr_set_stimeout was pointing to the wrong function
72 * Moves Changelog.md to this file, to be consistent with rst-ification
73 * Sets up a Dockerfile to generate documentation for rmr-python using sphinx
81 * Make the PYPI page for rmr look nicer.
90 * Fix underlying problem getting errno from some environments; now references new RMR message field to get errno value.
91 * Add /usr/local/lib64 to tox environment variable to support systems where libraries natually install in lib64 rather than lib.
100 * (Correctly) Include license here per Jira RICPLT-1855
109 * Include license here per Jira RICPLT-1855
118 * Fix a bug in rmr mock that prevented it for being used for rmr_rcv (was only usable for rmr_torcv)
119 * Add more unit tests, esp for message summary
120 * Remove meid truncation in the case where a nil is present mid string
121 * Change the defaul mock of meid and get_src to something more useful
130 * Add a new module for mocking out rmr-python, useful for other packages that depend on rmr-python
139 * Add some unit tests; more to come
148 * Better loop indexing in meid string handling
158 * add liscneses for LF push
167 * Better andling of meid in message summary
176 * Refactor some code to be more functional
177 * Put back RMR_MAX_RCV_BYTES as a constant
178 * Add tox.ini, although right now it only LINTs
187 * Add constant fetching from RMr library
196 * Add a new field to rmr_mbuf_t: sub_id
197 * Fix prior commits lint-ailing python style
206 * Add errno access via new function: rmr.errno()
207 * Add new functions to access new RMr header fields: get_src, get_meid, rmr_bytes2meid
208 * Add new RMr constants for error states
217 * Fix a non-ascii encoding issue
226 * Greatly imroved test sender/receiver
227 * Three new functions implemented (rmr_close, rmr_set_stimeout, rmr_payload_size)
236 * Support a new receive function that (hurray!) has a timeout
245 * Add two new MR states
254 * Switch to NNG from nanomessage