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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35f83cb5e399ca623bfbd56cfccc2e3682da31acce2008bb7e93f5e5a5db7afa
4
- data.tar.gz: 409c03019e94db3d83c7db166b26645bb07ab1a4ff24fcb2a328e4f8987df0a9
3
+ metadata.gz: 6bb74ff494391982e648fd7a4beb282d287f66d2f2d5ccfb5e896dc6fb196be6
4
+ data.tar.gz: bb702f3b54ee284a984f9e285b93a0523a5fa0b907df2f9bf80af2fad622397b
5
5
  SHA512:
6
- metadata.gz: ca6653d948cf8e8c8858ac200d92edc01d8b9036512bc7df51523d4ecc12d48527958b117993cdc284fe6235c71bd2aab5cfcf83594c66393f75a7046c3ab47d
7
- data.tar.gz: 6e7f1d6aeb2878e46d567a5962c1011933845b9cdb11af9585e8a5d70dda2f564134c8b1670876a4363b60668882fa60dffbbd98c10c6f8370277b54a293d3f2
6
+ metadata.gz: 1a878e11366487bfc1a074acc70f163cc72738cf53887bbf1712d0c4bc7564aaedf0e76c10d965fa5b81596d75a8f427c6af8dee90050e09e4654d00e7ca50e3
7
+ data.tar.gz: 9d5870916ee3e4a3418398cf2a409824bea0e9ccd0a82c8e4b507affb408901e038e1abf21173fccf25cc8983103e98cc2c500256c2fce4bdcdfbb2264f90803
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 4.0.0 (2026-06-30)
2
+ ------------------
3
+
4
+ * Feature - Change `:serializer` configuration option default from `:marshal` to `:json`. For migration, please use `:json_allow_marshal`.
5
+
1
6
  3.1.0 (2026-06-29)
2
7
  ------------------
3
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0
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: :marshal,
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 (:marshal) The serializer for session data.
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sessionstore-dynamodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services