Skip to content

Releases: guregu/dynamo

Fix encoding panic

29 Aug 13:56
7fc2a4f
Compare
Choose a tag to compare

This is a bugfix release.

  • Fixes a panic with omitempty and fields with embedded structs (#247)

Full Changelog: v2.2.0...v2.2.1

Get items from condition check failures

26 Aug 18:15
f0ac63c
Compare
Choose a tag to compare

This release adds CurrentValue to Put/Delete/Update that returns the current value if a condition fails (or the value you gave it if it succeeds). Alternatively, you can use IncludeItemInCondCheckFail and UnmarshalItemFromCondCheckFailed to grab the item from an error manually. There are also similar methods for transactions. See: #245, #246.

What's Changed

Full Changelog: v2.1.1...v2.2.0

v2.1.1

20 Jul 07:04
eed9493
Compare
Choose a tag to compare

This release improves the documentation. No code changes. Thank you to @tamccall for the contribution.

What's Changed

  • Added an example to the IterWithTable godocs by @tamccall in #243

New Contributors

Full Changelog: v2.1.0...v2.1.1

Request count tracking

16 Jul 10:55
f21d832
Compare
Choose a tag to compare

This release adds a new field to ConsumedCapacity that tracks the number of requests made. See: #241, #238.

What's Changed

  • Add request count by @guregu in #241
  • Update dependencies

Full Changelog: v2.0.2...v2.1.0

BatchGet grouping fix

03 Jul 17:09
434348c
Compare
Choose a tag to compare

This is a bugfix release that fixes a performance regression in v2 BatchGet.

  • Fix for: Batch Get making multiple calls even for smaller batches (#240)
    • Thank you @lzrf0cuz for the report and fix suggestion!

Full Changelog: v2.0.1...v2.0.2

Fix for ConsumedCapacity in conditional writes

30 Jun 06:19
06919cf
Compare
Choose a tag to compare

Fixes a panic when a conditional put/delete/update using ConsumedCapacity fails.

What's Changed

  • Added checks for nil output when adding consumed capacity by @sardap in #239

New Contributors

Full Changelog: v2.0.0...v2.0.1

dynamo v2

15 Jun 21:35
ab7d057
Compare
Choose a tag to compare

This is the first release of dynamo v2, which uses aws-sdk-go-v2 (PRs: #206, #232).

For tips on migration from v1, check out this new section of the README: Migration Tips.

The API is mostly the same as v1, but there are some changes:

  • All request methods take context now (e.g. OneWithContext is now One).
  • Retrying is configured through aws-sdk-go-v2, see Retrying docs.
    • This changes the default behavior for transactions, to get the v1 behavior back use dynamo.RetryTxConflicts (see above doc for usage example).
  • Arguments that took int64 (such as in Query.Limit) now take int instead.
  • PagingIter.LastEvaluatedKey can return an error now (in rare situations when IAM is misconfigured).
  • KMSMasterKeyArn renamed to KMSMasterKeyARN.

v1 may continue to see new releases for bugfixes and such: v1 branch. Please feel free to report issues for both v1 and v2. Note that AWS is going to end support for the v1 SDK soon, although we can expect that it will continue to work.

Thank you to everyone who contributed (especially @niltonkummer and @irohiroki who contributed to the v2 port), and to everyone who had patience for this long-awaited release.

RequestLimit & more fixes

18 May 19:21
929601d
Compare
Choose a tag to compare

This release includes a small new feature and an important bug fix.

  • New feature: RequestLimit for Query and Scan for finer control of internal pagination (#231)
  • Bug fix: Panic on saving struct with pointer to anonymous struct (#233)

Better recursive type support

05 May 03:45
17ebbaf
Compare
Choose a tag to compare
  • Support nested recursion in types (A → B → A and so on) (#227)

Encoding fixes

04 May 17:05
aa3c35c
Compare
Choose a tag to compare

This release fixes these issues:

Many thanks to everyone who reported the issues.
Note: v1.22.0 has been retracted. Please upgrade to the latest version if you're on it.