Merge "RIC:1060: Change in PTL"
[ric-plt/sdlgo.git] / docs / release-notes.rst
1 ..
2 ..  Copyright (c) 2019 AT&T Intellectual Property.
3 ..  Copyright (c) 2019-2022 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
33 [0.10.4] - 2023-12-13
34
35 * go version update
36
37 [0.10.3] - 2023-06-08
38
39 * go version update
40
41 [0.10.2] - 2022-09-30
42
43 * Fix Coverity issues about missing function call return value validations
44
45 [0.10.1] - 2022-08-12
46
47 * Upgrade Golang version to 1.18 in ci Dockerfile
48
49 [0.10.0] - 2022-03-14
50
51 * Enable redis/sentinel port and sentinel master name configuration
52
53 [0.9.6] - 2022-02-07
54
55 * Fix multi-namespace SDL event subscribe
56
57 [0.9.5] - 2022-01-20
58
59 * Pump Redis client version to v8.11.4 and fix Redis APIs to have a Golang
60   Context type of argument.
61
62 [0.9.4] - 2022-01-12
63
64 * SDL CLI command to generate sdlcli shell completion file for bash
65
66 [0.9.3] - 2021-12-30
67
68 * Fix SDL CLI get -command to write results stdout stream when command success
69
70 [0.9.2] - 2021-12-22
71
72 * Fix SDL CLI healthcheck to ignore ghost Redis Sentinel entries
73
74 [0.9.1] - 2021-12-20
75
76 * Refactor and reduce code complexity, no API changes
77 * Validate namespace argument in SDL CLI get keys -command
78
79 [0.9.0] - 2021-12-16
80
81 * SDL CLI tool
82
83 [0.8.0] - 2021-09-22
84
85 * New ListKeys API in syncstorage
86 * Add deprecation warnings for SdlInstance APIs
87
88 [0.7.0] - 2021-05-11
89
90 * Add DB backend instance selection based on namespace value to balance DB load.
91
92 [0.6.0] - 2021-05-11
93
94 * Add SDL multi-namespace API 'SyncStorage'.
95
96 [0.5.5] - 2021-03-09
97
98 * Take DBAAS multi-channel publishing Redis modules into use.
99 * Fix potential type conversion crash in RemoveIf() and
100   RemoveIfAndPublish() APIs.
101
102 [0.5.4] - 2020-10-07
103
104 * Fix Go routine race condition when new DB notifications are subscribed.
105
106 [0.5.3] - 2020-08-17
107
108 * Take Redis client version 6.15.9 into use.
109
110 [0.5.1] - 2019-11-1
111
112 * Add CI Dockerfile to run unit tests.
113
114 [0.5.0] - 2019-10-11
115
116 * Make underlying DB instance visible to clients.
117
118 [0.4.0] - 2019-09-26
119
120 * Add support for Redis sentinel configuration.
121
122 [0.3.1] - 2019-09-11
123
124 * Set MaxRetries count to 2 for Redis client.
125
126 [0.3.0] - 2019-08-14
127
128 * Add support for resource locking to enable applications to create locks for
129   shared resources.
130
131 [0.2.1] - 2019-07-03
132
133 * Add support for multiple event publishing.
134
135 [0.2.0] - 2019-05-24
136
137 * Add support for SDL groups.
138
139 [0.1.1] - 2019-05-17
140
141 * Allow byte array/slice be given as value.
142
143 [0.1.0] - 2019-05-17
144
145 * Add support for notifications.
146
147 [0.0.2] - 2019-05-03
148
149 * Fix Close API call. Calling Close function from API caused a recursive call
150   to itself.
151
152 [0.0.1] - 2019-04-17
153
154 * Initial version.
155 * Implement basic storage functions to create, read, update, and delete
156   entries.
157 * Implement benchmark tests.