forked from mibrito707/cordova-plugin-secure-storage-echo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
253 lines (170 loc) · 4.48 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
Changelog
=========
5.1.1 - 2020-08-07
------------------
- Bug fixes
[vermi0ffh]
5.1.0 - 2020-06-07
------------------
- Fix to storage getting wiped after restarting app with Ionic.
[Zach-Attach]
- Further guard against NPEs.
[timbru31]
- Added retro-compatibility option for data encrypted with old cipher
[vermi0ffh]
5.0.1 - 2019-11-25
------------------
- Handle nullable Confirm Credentials Intent.
[mibrito707]
- Added Support for API 19.
[giordanocardillo]
5.0.0 - 2019-10-02
------------------
- Repackage as cordova-plugin-secure-storage-echo.
[mibrito707]
4.0.2 - 2019-09-30
------------------
- Update contributors.
[mibrito707]
- Fixed code, added finals on variables used in inner scopes.
[giordanocardillo]
- Fix for NoSuchAlgorithmException in pre M devices.
[oddcb]
4.0.0-beta - 2019-07-09
------------------
- Support Android Q.
[mibrito707]
3.0.2 - 2019-04-15
------------------
- Support data sharing between apps on android.
[ajay-ambre]
3.0.1 - 2018-12-19
------------------
- Properly access private keys on android.
[demetris-manikas]
3.0.0 - 2018-11-01
------------------
- Drop KitKat support, simplify android using only native AES.
[demetris-manikas]
2.6.8 - 2017-05-29
------------------
- Fix multiple namespaced storages for android.
[demetris-manikas]
2.6.7 - 2017-05-24
------------------
- Fixed windows bug introduced by 2.6.6.
[digaus]
2.6.6 - 2017-05-19
------------------
- Drop unsafe iOS options.
[demetris-manikas]
2.6.5 - 2017-04-10
------------------
- Delete saved values on new RSA key creation.
[demetris-manikas]
2.6.4 - 2017-03-31
------------------
- Graceful handling of unsupported Android versions (4.3 and below).
[dpa99c]
- Minor android fixes and tests.
[demetris-manikas]
- Documentation fixes.
[jvjvjv]
2.6.3 - 2016-11-21
------------------
- Android now thread-safe, fixes the issue with concurrent decryptions failing.
[demetris-manikas]
2.6.2 - 2016-11-18
------------------
- Introduce a queue for decryption on Android so that only one
happens at a time. Fixes #75.
[ggozad]
2.6.1 - 2016-11-09
------------------
- Make sure only string values are stored.
[demetris-manikas]
2.6.0 - 2016-10-26
------------------
- Introduce keys(), clear() methods.
[yyfearth, demetris-manikas, ggozad]
2.5.2 - 2016-10-11
------------------
- Fix migration issues.
[demetris-manikas]
2.5.1 - 2016-09-12
------------------
- Fix migration to SharedPreferences error in certain android phones.
[ggozad]
2.5.0 - 2016-09-12
------------------
- Move from localStorage to SharedPreferences.
[demetris-manikas]
2.4.2 - 2016-09-01
------------------
- Update SSKeychain for iOS to SAMKeychain.
[briananderson1222]
- More tests.
[ggozad]
2.4.1 - 2016-07-28
------------------
- Make intitializing SecureStorage fail on android if screen-lock settings not appropriate. Introdudce secureDevice as an android-only function to bring up screen-lock settings with only appropriate options.
[ggozad, jdard, demetris-manikas]
2.4.0 - 2016-07-04
------------------
- Windows phone implementation.
[sgrebnov]
- Pass javascript Error to cordova failure callbacks, cleanup.
[sgrebnov]
2.3.1 - 2016-06-22
------------------
- Patch sjcl_ss.js to prevent cordova with browserify flag including a unnecessary huge crypto-browserify polyfill.
[yyfearth]
2.3.0 - 2016-06-16
------------------
- Native AES on android devices that support it.
[demetris-manikas]
2.2.4 - 2016-05-25
------------------
- Fix #30, allowing concurrent calls to securestarage in iOS,
by not persisting callbackId's.
[ggozad]
2.2.3 - 2016-05-18
------------------
- Fix broken version number in plugin.xml.
[ggozad]
2.2.2 - 2016-05-10
------------------
- Execute iOS commands in separate threads instead of the main thread.
[goshakkk / hellyeahllc]
2.2.1 - 2016-02-09
------------------
- package.json meta.
[ggozad]
2.2.0 - 2016-01-05
------------------
- Supporting iOS 7 without 'WhenPasscodeSetThisDeviceOnly' option.
[embedded-spirit]
2.1.0 - 2015-10-29
------------------
- Keychain accessibility setting for iOS.
[schaumiii]
2.0.0 - 2015-10-28
------------------
- Update to use npm.
[ggozad]
1.1.2 - 2015-04-16
------------------
- Fix Android key creation conflict.
[demetris-manikas]
1.1.1 - 2015-04-13
------------------
- Android cleanup.
[demetris-manikas]
1.1.0 - 2015-04-01
------------------
- Support the browser platform.
[ggozad]
1.0.0 - 2015-03-30
------------------
- Initial release.
[ggozad]