Align unit and int tests w.r.t. AC xapp
[ric-plt/a1.git] / docs / release-notes.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright (C) 2019 AT&T Intellectual Property
4
5 Release Notes
6 ===============
7
8 All notable changes to this project will be documented in this file.
9
10 The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
11 and this project adheres to `Semantic Versioning <http://semver.org/>`__.
12
13 .. contents::
14    :depth: 3
15    :local:
16
17 [1.x.x] - TBD
18 -------------
19
20 ::
21
22     * Represents a resillent version of 1.0.0 that uses Redis for persistence
23
24
25 [x.x.x] - TBD
26 -------------
27
28 ::
29
30     * Implements new logic around when instances are deleted. See flowcharts in docs/. Basically timeouts now trigger to actually delete instances from a1s database, and these timeouts are configurable.
31     * Eliminates the barrier to deleting an instance when no xapp evdr replied (via timeouts)
32     * Add two new ENV variables that control timeouts
33     * Make unit tests more modular so new workflows can be tested easily
34     * Changes the API for ../status to return a richer structure
35     * Clean up unused items in the integration tests helm chart
36     * Removed "RMR_RCV_RETRY_INTERVAL" leftovers since this isn't used anymore
37     * Uses the standard RIC logging library
38     * Switch the backend routing scheme to using subscription id with constant message types, per request.
39     * Given the above, policy type ids can be any valid 32bit greater than 0
40     * Decouple the API between northbound and A1 from A1 with xapps. This is now two seperate OpenAPI files
41     * Update example for AC Xapp
42
43 [1.0.4]
44 -------
45
46 ::
47
48     * Only external change here is to healthcheck the rmr thread as part of a1s healthcheck. k8s will now respin a1 if that is failing.
49     * Refactors (simplifies) how we wait for rmr initialization; it is now called as part of __init__
50     * Refactors (simplifies) how the thread is actually launched; it is now internal to the object and also a part of __init__
51     * Cleans up unit testing; a1rmr now exposes a replace_rcv_func; useful for unit testing, harmless if not called otherwise
52     * Upgrades to rmr-python 1.0.0 for simpler message allocation
53
54 [1.0.3] - 10/22/2019
55 --------------------
56
57 ::
58
59     * Move database cleanup (e.g., deleting instances based on statuses) into the polling loop
60     * Rework how unit testing works with the polling loop; prior, exceptions were being thrown silently from the thread but not printed. The polling thread has now been paramaterized with override functions for the purposes of testing
61     * Make type cleanup more efficient since we know exactly what instances were touched, and it's inefficient to iterate over all instances if they were not
62     * Bump rmr-python version, and bump rmr version
63     * Still an item left to do in this work; refactor the thread slightly to tie in a healthcheck with a1s healthcheck. We need k8s to restart a1 if that thread dies too.
64
65 [1.0.2] - 10/17/2019
66 --------------------
67
68 ::
69
70     * a1 now has a seperate, continuous polling thread
71       this will enable operations like database cleanup (based on ACKs) and external notifications in real time,
72       rather than when the API is invoked
73     * all rmr send and receive operations are now in this thread
74     * introduces a thread safe job queue between the two threads
75     * Not done yet: database cleanups in the thread
76     * Bump rmr python version
77     * Clean up some logging
78
79 [1.0.1] - 10/15/2019
80 --------------------
81
82 ::
83
84     * Moves the "database" access calls to mimick the SDL API, in preparation for moving to SDL
85     * Does not yet actually use SDL or Redis, but the transition to those will be much shorter after this change.
86
87
88 [1.0.0] - 10/7/2019
89 -------------------
90
91 ::
92
93     * Represents v1.0.0 of the A1 API for O-RAN-SC Release A
94     * Finished here:
95       - Implement type DELETE
96       - Clean up where policy instance cleanups happen
97
98
99 [0.14.1] - 10/2/2019
100 --------------------
101
102 ::
103
104     * Upgrade rmr to 1.9.0
105     * Upgrade rmr-python to 0.13.2
106     * Use the new helpers module in rmr-python for the rec all functionality
107     * Switch rmr mode to a multithreaded mode that continuously reads from rmr and populates an internal queue of messages with a deterministic queue size (2048) which is better behavior for A1
108     * Fix a memory leak (python obj is garbage collected but not the underlying C memory allocation)
109
110
111
112 [0.14.0] - 10/1/2019
113 --------------------
114
115 ::
116
117     * Implement instance delete
118     * Moves away from the status vector and now aggregates statuses
119     * Pop through a1s mailbox "3x as often"; on all 3 kinds of instance GET since all such calls want the latest information
120     * Misc cleanups in controller (closures ftw)
121     * Add rmr-version.yaml for CICD jobs
122
123 [0.13.0] - 9/25/2019
124 --------------------
125
126 ::
127
128     * Implement GET all policy type ids
129     * Implement GET all policy instance ids for a policy type
130     * fix a tiny bug in integration test receiver
131
132
133 [0.12.1] - 9/20/2019
134 --------------------
135
136 ::
137
138     * switch to rmr 1.8.1 to pick up a non blocking variant of rmr that deals with bad routing tables (no hanging connections / blocking calls)
139     * improve test receiver to behave with this setup
140     * add integration test for this case
141     * this also switches past 1.5.x, which included another change that altered the behavior of rts; deal with this with a change to a1s helmchart (env: `RMR_SRC_ID`) that causes the sourceid to be set to a1s service name, which was not needed prior
142     * improve integration tests overall
143
144
145 [0.12.0] - 9/19/2019
146 --------------------
147
148 ::
149
150     * Implement type PUT
151     * Implement type GET
152     * Remove RIC manifest
153     * Read type GET to get schema for instance PUT
154     * Remove Utils (no longer needed)
155     * lots more tests (unit and integration)
156
157 [0.11.0] - 9/17/2019
158 --------------------
159
160 ::
161
162     * This is on the road to release 1.0.0. It is not meant to be tested (E2E) as it's own release
163     * Implement the Release A spec in the openapi.yaml
164     * Rework A1 to follow that spec
165     * Remove rmr_mapping now that we use policyid as the mtype to send and a well known mtype for the ACKs
166     * Add the delay receiver test to the tavern integration tests
167     * Remove unneeded ENV variables from helm charts
168     * Switch away from builder images to avoid quicksand; upgrade rmr at our own pace
169
170
171 [0.10.3] - 8/20/2019
172 --------------------
173
174 ::
175
176     * Update to later rmr-python
177     * Add docs about upgrading rmr
178     * remove bombarder since tavern runs apache bench
179
180
181 [0.10.2] - 8/14/2019
182 --------------------
183
184 ::
185
186     * Update to later rmr-python
187
188 [0.10.1] - 8/9/2019
189 -------------------
190
191 ::
192
193     * Greatly reduce the size of A1 docker from 1.25GB to ~278MB.
194     * Add a seperate dockerfile for unit testing
195
196
197 [0.10.0] - 7/30/2019
198 --------------------
199
200 ::
201
202    * Rename all /ric/ URLs to be consistent with requirements of /a1-p/
203
204
205 [0.9.0] - 7/22/2019
206 -------------------
207
208 ::
209
210    * Implement the GET on policies
211    * Add a new endpoint for healthcheck. NOTE, it has been decided by oran architecture documents that this policy interface should be named a1-p in all URLS. In a future release the existing URLs will be renamed (existing URLs were not changed in this release).
212
213
214 [0.8.4] - 7/16/2019
215 -------------------
216
217 ::
218
219    * Fix the 400, which was in the API, but wasn't actually implemented
220    * Update the test fixture manifests to reflect the latest adm control, paves way for next feature coming which is a policy GET
221
222
223
224 [0.8.3] - 6/18/2019
225 -------------------
226
227 ::
228
229    * Use base Docker with NNG version 1.1.1
230
231
232
233 [0.8.2] - 6/5/2019
234 ------------------
235
236 ::
237
238    * Upgrade RMR due to a bug that was preventing rmr from init in kubernetes
239
240
241
242 [0.8.1] - 5/31/2019
243 -------------------
244
245 ::
246
247    * Run unit tests as part of docker build
248
249
250
251 [0.8.0] - 5/28/2019
252 -------------------
253
254 ::
255
256    * Convert docs to appropriate format
257    * Move rmr string to int mapping to a file
258
259
260
261 [0.7.2] - 5/24/2019
262 -------------------
263
264 ::
265
266    * Use tavern to test the actual running docker container
267    * Restructures the integration tests to run as a single tox command
268    * Re-ogranizes the README and splits out the Developers guide, which is not needed by users.
269
270
271 [0.7.1] - 5/23/2019
272 -------------------
273
274 ::
275
276    * Adds a defense mechanism against A1 getting queue-overflowed with messages A1 doesnt care about; A1 now ignores all incoming messages it's not waiting for, so it's queue size should now always be "tiny", i.e., never exceeding the number of valid requests it's waiting for ACKs back for
277    * Adds a test "bombarding" script that tests this
278
279
280 [0.7.0] - 5/22/19
281 -----------------
282
283 ::
284
285    * Main purpose of this change is to fix a potential race condition where A1 sends out M1 expecting ACK1, and while waiting for ACK1, sends out M2 expecting ACK2, but gets back ACK2, ACK1. Prior to this change, A1 may have eaten ACK2 and never fufilled the ACK1 request.
286    * Fix a bug in the unit tests (found using a fresh container with no RIC manifest!)
287    * Fix a (critical) bug in a1rmr due to a rename in the last iteration (RMR_ERR_RMR_RCV_RETRY_INTERVAL)
288    * Make unit tests faster by setting envs in tox
289    * Move to the now publically available rmr-python
290    * Return a 400 if am xapp does not expect a body, but the PUT provides one
291    * Adds a new test policy to the example RIC manifest and a new delayed receiver to test the aformentiond race condition
292
293
294 [0.6.0]
295 -------
296
297 ::
298
299    * Upgrade to rmr 0.10.0
300    * Fix bad api spec RE GET
301    * Fix a (big) bug where transactionid wasn't being checked, which wouldn't have worked on sending two policies to the same downstream policy handler
302
303
304 [0.5.1] - 5/13/2019
305 -------------------
306
307 ::
308
309    * Rip some testing structures out of here that should have been in rmr (those are now in rmr 0.9.0, upgrade to that)
310    * Run Python BLACK for formatting
311
312
313 [0.5.0] - 5/10/2019
314 -------------------
315
316 ::
317
318    * Fix a blocking execution bug by moving from rmr's timeout to a non blocking call + retry loop + asyncronous sleep
319    * Changes the ENV RMR_RCV_TIMEOUT to RMR_RCV_RETRY_INTERVAL
320
321
322 [0.4.0] - 5/9.2019
323 ------------------
324
325 ::
326
327    * Update to rmr 0.8.3
328    * Change 503 to 504 for the case where downstream does not reply, per recommendation
329    * Add a 502 with different reasons if the xapp replies but with a bad/malformed/missing status
330    * Make testing much more modular, in anticipating of moving some unit test functionality into rmr itself
331
332
333 [0.3.4] - 5/8/2019
334 ------------------
335
336 ::
337
338    * Crash immediately if manifest isn't mounted
339    * Add unit tests for utils
340    * Add missing lic
341
342
343 [0.3.3]
344 -------
345
346 ::
347
348    * Upgrade A1 to rmr 0.8.0
349    * Go from deb RMR installation to git
350    * Remove obnoxious receiver logging
351
352
353 [0.3.2]
354 -------
355
356 ::
357
358    * Upgrade A1 to rmr 0.6.0
359
360
361 [0.3.1]
362 -------
363
364 ::
365
366    * Add license headers
367
368
369 [0.3.0]
370 -------
371
372 ::
373
374    * Introduce RIC Manifest
375    * Move some testing functionality into a helper module
376    * Read the policyname to rmr type mapping from manifest
377    * Do PUT payload validation based on the manifest
378
379
380 [0.2.0]
381 -------
382
383 ::
384
385    * Bump rmr python dep version
386    * Include a Dockerized test receiver
387    * Stencil out the mising GET
388    * Update the OpenAPI
389    * Include a test docker compose file
390
391
392 [0.1.0]
393 -------
394
395 ::
396
397    * Initial Implementation