dfaf2e0ce411c3929f38147ed866b189cd0f6767
[ric-plt/sdlgo.git] / docs / release-notes.rst
1 ..
2 ..  Copyright (c) 2019 AT&T Intellectual Property.
3 ..  Copyright (c) 2019 Nokia.
4 ..
5 ..  Licensed under the Creative Commons Attribution 4.0 International
6 ..  Public License (the "License"); you may not use this file except
7 ..  in compliance with the License. You may obtain a copy of the License at
8 ..
9 ..    https://creativecommons.org/licenses/by/4.0/
10 ..
11 ..  Unless required by applicable law or agreed to in writing, documentation
12 ..  distributed under the License is distributed on an "AS IS" BASIS,
13 ..  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ..
15 ..  See the License for the specific language governing permissions and
16 ..  limitations under the License.
17 ..
18
19 Release-Notes
20 =============
21
22 This document provides the release notes of the sdlgo.
23
24 .. contents::
25    :depth: 3
26    :local:
27
28
29
30 Version history
31 ---------------
32 [0.9.1] - 2021-12-20
33
34 * Refactor and reduce code complexity, no API changes
35 * Validate namespace argument in SDL CLI get keys -command
36
37 [0.9.0] - 2021-12-16
38
39 * SDL CLI tool
40
41 [0.8.0] - 2021-09-22
42
43 * New ListKeys API in syncstorage
44 * Add deprecation warnings for SdlInstance APIs
45
46 [0.7.0] - 2021-05-11
47
48 * Add DB backend instance selection based on namespace value to balance DB load.
49
50 [0.6.0] - 2021-05-11
51
52 * Add SDL multi-namespace API 'SyncStorage'.
53
54 [0.5.5] - 2021-03-09
55
56 * Take DBAAS multi-channel publishing Redis modules into use.
57 * Fix potential type conversion crash in RemoveIf() and
58   RemoveIfAndPublish() APIs.
59
60 [0.5.4] - 2020-10-07
61
62 * Fix Go routine race condition when new DB notifications are subscribed.
63
64 [0.5.3] - 2020-08-17
65
66 * Take Redis client version 6.15.9 into use.
67
68 [0.5.1] - 2019-11-1
69
70 * Add CI Dockerfile to run unit tests.
71
72 [0.5.0] - 2019-10-11
73
74 * Make underlying DB instance visible to clients.
75
76 [0.4.0] - 2019-09-26
77
78 * Add support for Redis sentinel configuration.
79
80 [0.3.1] - 2019-09-11
81
82 * Set MaxRetries count to 2 for Redis client.
83
84 [0.3.0] - 2019-08-14
85
86 * Add support for resource locking to enable applications to create locks for
87   shared resources.
88
89 [0.2.1] - 2019-07-03
90
91 * Add support for multiple event publishing.
92
93 [0.2.0] - 2019-05-24
94
95 * Add support for SDL groups.
96
97 [0.1.1] - 2019-05-17
98
99 * Allow byte array/slice be given as value.
100
101 [0.1.0] - 2019-05-17
102
103 * Add support for notifications.
104
105 [0.0.2] - 2019-05-03
106
107 * Fix Close API call. Calling Close function from API caused a recursive call
108   to itself.
109
110 [0.0.1] - 2019-04-17
111
112 * Initial version.
113 * Implement basic storage functions to create, read, update, and delete
114   entries.
115 * Implement benchmark tests.