Skip to content

Releases: kitar/laravel-dynamodb

v.1.3.0

16 Mar 06:36
0e76904
Compare
Choose a tag to compare
  • Support Laravel 11.x
  • Support PHP 8.3

v1.2.0

15 Dec 12:07
af6180a
Compare
Choose a tag to compare
  • Added a method to retrieve LastEvaluatedKey more simply and reliably. #40 (Thanks @raphaelcangucu !)

We can now use the collection's method to retrieve the LastEvaluatedKey without having to reference the metadata for each model. This update makes it easy to obtain the LastEvaluatedKey, even when the items included in the response are empty.

$products = ProductCatalog::limit(5)->scan();

// can do this
$products->getLastEvaluatedKey();

// instead of
$products->first()->meta()['LastEvaluatedKey'];

The traditional method will continue to be supported in v1.x. However, it might become deprecated in v2.x.

v1.1.2

12 Sep 11:48
a2223b8
Compare
Choose a tag to compare
  • Fixed the issue where an exception occurs when the value of PK or SK is 0. (Thanks @adalbertoadrian !)

v1.1.1

14 Feb 18:00
Compare
Choose a tag to compare
  • Support Laravel 10.x (Thanks @negoziator !)
  • Update GitHub Actions workflow to ensure all illuminate versions are used during testing.

v1.1.0

23 Dec 06:04
83dfe30
Compare
Choose a tag to compare
  • Support batch operations #34

v1.0.2

12 Dec 04:10
edb21cb
Compare
Choose a tag to compare

v1.0.1

26 Aug 13:48
df0c010
Compare
Choose a tag to compare

v1.0.0

24 Mar 15:38
Compare
Choose a tag to compare

Since I've been using this package in a few production apps for several months, I think it's time to call it v1.0.0. However, there are no major changes. It's fully backward compatible. Please feel free to submit any questions, feature requests, and PRs.

v0.6.0

05 Feb 05:40
Compare
Choose a tag to compare

I'm already using this package in a few production apps, so I think it's time to tag it as 1.0 shortly. (maybe when we support Laravel 9)

v0.5.1

17 Nov 14:21
Compare
Choose a tag to compare
Do not unset DynamoDB Client on disconnect until implement reconnect …

…method.