forked from smugmug/godynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
40 lines (26 loc) · 1.45 KB
/
CHANGELOG.txt
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
October 27, 2014
----------------
- Bring GoDynamo into conformance with substantial DynamoDB changes rolled out by
AWS in October 2014.
- This is a major, breaking change in the GoDynamo package. Caution is warranted,
and users should expect existing code to require attention. Given the
amount of code changed, bugs should be anticipated.
- Types from the "endpoint" package are now broken out into their own
files in the "types" directory.
- In many cases, value types have been replaced by reference types.
- Numerous other small inconsistencies, errors and issues have been addressed.
- Tests have been updated to match new AWS examples.
- Licensing has been removed from the top of each source file. The BSD license
is now only a standalone file in the top directory of the repository.
- Note: AWS is advertising convenience functions to transform arbitrary JSON to and
from Dynamo types in its own SDKs. GoDynamo does not provide similar functionality
given that these transformations are "lossy" and cannot fully encompass the implied
types of DynamoDB.
March 25, 2014
--------------
- Add keepalive support for programs that wish to use it. See README for sample use.
Sample use launches a goroutine that HEADs your default DynamoDB url every five seconds.
(bradclawsie)
- Add support for changing the scheme and port of the DynamoDB url (see sample conf and
README). (bradclawsie)
- Add support for environment var conf file. (donholly)