aws-sessionstore-dynamodb 3.1.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws/session_store/dynamo_db/configuration.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6bb74ff494391982e648fd7a4beb282d287f66d2f2d5ccfb5e896dc6fb196be6
|
|
4
|
+
data.tar.gz: bb702f3b54ee284a984f9e285b93a0523a5fa0b907df2f9bf80af2fad622397b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a878e11366487bfc1a074acc70f163cc72738cf53887bbf1712d0c4bc7564aaedf0e76c10d965fa5b81596d75a8f427c6af8dee90050e09e4654d00e7ca50e3
|
|
7
|
+
data.tar.gz: 9d5870916ee3e4a3418398cf2a409824bea0e9ccd0a82c8e4b507affb408901e038e1abf21173fccf25cc8983103e98cc2c500256c2fce4bdcdfbb2264f90803
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4.0.0
|
|
@@ -58,7 +58,7 @@ module Aws::SessionStore::DynamoDB
|
|
|
58
58
|
lock_expiry_time: 500,
|
|
59
59
|
lock_retry_delay: 500,
|
|
60
60
|
lock_max_wait_time: 1,
|
|
61
|
-
serializer: :
|
|
61
|
+
serializer: :json,
|
|
62
62
|
config_file: nil,
|
|
63
63
|
dynamo_db_client: nil
|
|
64
64
|
}.freeze
|
|
@@ -95,7 +95,7 @@ module Aws::SessionStore::DynamoDB
|
|
|
95
95
|
# to obtain lock once an attempt to obtain the lock has been made and has failed.
|
|
96
96
|
# @option options [Integer] :lock_max_wait_time (500) Maximum time in seconds to wait to acquire the
|
|
97
97
|
# lock before giving up.
|
|
98
|
-
# @option options [Symbol] :serializer (:
|
|
98
|
+
# @option options [Symbol] :serializer (:json) The serializer for session data.
|
|
99
99
|
# - `:json` - Serialize and deserialize with JSON only. Raises an error if legacy
|
|
100
100
|
# Marshal-encoded data is encountered.
|
|
101
101
|
# - `:json_allow_marshal` - Serialize with JSON, but fall back to deserializing with
|