aws-actiondispatch-dynamodb 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbf249640ad7b03a6ee1b2d8617224d845e34b9b4d59863fcc5f12aac4063ca6
4
- data.tar.gz: 959dcfeb5068909a0ef6ea3df0c91231655cf3661938acb3ce2beec3e735f2ba
3
+ metadata.gz: 0ea24edf7d7f3b6233085db8656c74124cc65b5f2514cad1f4395aa0381b6ced
4
+ data.tar.gz: e1e4369af0d572cf2b420507f35204bc17f8d7235c26003acc333b313c047ab1
5
5
  SHA512:
6
- metadata.gz: b86ef4c100aa1e1977044e7152ec8ba37103838e164301cb5835dbdbe05fa295aa6b51e289e884af8d3dd4a28869d4672e14cff8ba3194da845fda7817defeef
7
- data.tar.gz: bccc2d67979b16ead29e8546412ca0ce10635e3953f00664a440c1b6ba825e467d7ba052e50bb56be7f41da6eeb1acedf90c764f761e9f5b01243eff11f8d268
6
+ metadata.gz: 8da29a4732c6d89acdea9ecd09fa6fa82e58eb1f92a145ca46ae510747eae6deda7ce6711108771e79af36ba711a839aa4801983c50a019f9f54d606b1b4f77f
7
+ data.tar.gz: e7d14a9583cee4f2eabf5a8152798995f0094cae1366a9da32be298fc15a962a210a91807e30730d927335e9e042c3a5d4ea29a461bdd029bade60d8bfb08cfd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ 1.0.0 (2024-11-21)
2
+ ------------------
3
+
4
+ * Feature - [Major Version] Bump major version to 1.0.0.
5
+
6
+ * Issue - Drop support for any non-aws prefixed configuration keys.
7
+
8
+ * Issue - Drop support for the `:dynamodb_store` configuration name.
9
+
10
+ 0.2.0 (2024-11-17)
11
+ ------------------
12
+
13
+ * Issue - Bump `aws-sessionstore-dynamodb` version to `~> 3` to fix private method calling.
14
+
1
15
  0.1.0 (2024-11-16)
2
16
  ------------------
3
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 1.0.0
@@ -13,15 +13,13 @@ module ActionDispatch
13
13
  # unless otherwise provided.
14
14
  #
15
15
  # Configuration can also be provided in YAML files from Rails config, either
16
- # in `config/dynamo_db_session_store.yml` or `config/dynamo_db_session_store/{Rails.env}.yml`.
16
+ # in `config/aws_dynamo_db_session_store.yml` or
17
+ # `config/aws_dynamo_db_session_store/{Rails.env}.yml`.
17
18
  # Configuration files that are environment-specific will take precedence.
18
19
  #
19
20
  # @see https://docs.aws.amazon.com/sdk-for-ruby/aws-sessionstore-dynamodb/api/Aws/SessionStore/DynamoDB/Configuration.html
20
21
  class DynamoDbStore < ActionDispatch::Session::AbstractStore
21
22
  def initialize(app, options = {})
22
- Rails.logger.warn('** Dynamo DB Session Storage no longer lives in aws-sdk-rails. ' \
23
- 'To avoid disruption, please add aws-actiondispatch-dynamodb ~> 0 to your Gemfile to ' \
24
- 'enable this feature when upgrading to aws-sdk-rails ~> 5. **')
25
23
  options[:config_file] ||= config_file
26
24
  options[:secret_key] ||= Rails.application.secret_key_base
27
25
  @middleware = Aws::SessionStore::DynamoDB::RackMiddleware.new(app, options)
@@ -51,34 +49,12 @@ module ActionDispatch
51
49
  @middleware.delete_session(req, sid, options)
52
50
  end
53
51
 
54
- # rubocop:disable Metrics
55
52
  def config_file
56
53
  file = ENV.fetch('AWS_DYNAMO_DB_SESSION_CONFIG_FILE', nil)
57
- file ||= Rails.root.join("config/dynamo_db_session_store/#{Rails.env}.yml")
58
- file = Rails.root.join('config/dynamo_db_session_store.yml') unless File.exist?(file)
59
- if File.exist?(file)
60
- Rails.logger.warn('The dynamo_db_session_store configuration file has been renamed.' \
61
- 'Please use aws_dynamo_db_session_store/<Rails.env>.yml or ' \
62
- 'aws_dynamo_db_session_store.yml. This will be removed in ' \
63
- 'aws-actiondispatch-dynamodb ~> 1')
64
- else
65
- file = Rails.root.join("config/aws_dynamo_db_session_store/#{Rails.env}.yml")
66
- file = Rails.root.join('config/aws_dynamo_db_session_store.yml') unless File.exist?(file)
67
- end
68
-
54
+ file ||= Rails.root.join("config/aws_dynamo_db_session_store/#{Rails.env}.yml")
55
+ file = Rails.root.join('config/aws_dynamo_db_session_store.yml') unless File.exist?(file)
69
56
  file if File.exist?(file)
70
57
  end
71
58
  end
72
- # rubocop:enable Metrics
73
-
74
- # @api private
75
- class DynamodbStore < DynamoDbStore
76
- def initialize(app, options = {})
77
- Rails.logger.warn('** Session Store :dynamodb_store configuration key has been renamed to :dynamo_db_store, ' \
78
- 'please use the new key instead. The :dynamodb_store key name will be removed in ' \
79
- 'aws-actiondispatch-dynamodb ~> 1 **')
80
- super
81
- end
82
- end
83
59
  end
84
60
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-actiondispatch-dynamodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-16 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sessionstore-dynamodb
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2'
19
+ version: '3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2'
26
+ version: '3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement