dynamoid 3.4.0 → 3.4.1
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 +10 -2
- data/lib/dynamoid/adapter_plugin/aws_sdk_v3.rb +3 -3
- data/lib/dynamoid/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25fefa51d69224bd2536fe3afa6f3ee672ff4ad09d22fda85456b1d83a63b040
|
|
4
|
+
data.tar.gz: cb2d6c4bc4d50ace05ffbdd9644081d2141e9e64653a8c421c222aa0eef36de5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 769b5fb40049770a8b8aec38312e791f4d7702b308e3b15b2754f1a838f5d953b663081855df70fe3c3e80b202f3285a51b2e8738441ab9aa0a784d38385f447
|
|
7
|
+
data.tar.gz: 4231f149557483770ed04d81efef46d55f6a1f56475f9426d8dad1a5f26b1e5661ed1f9e0f43f502d073bb2370dbb5d0073668c6757b23230da90e9a5a623e3b
|
data/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,14 @@
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
# 3.4.1
|
|
15
|
+
|
|
16
|
+
## Fixes
|
|
17
|
+
* Fix: [#398](https://github.com/Dynamoid/dynamoid/pull/398) Fix broken configuration
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
|
|
14
22
|
|
|
15
23
|
# 3.4.0
|
|
16
24
|
|
|
@@ -28,8 +36,8 @@
|
|
|
28
36
|
|
|
29
37
|
## Fixes
|
|
30
38
|
|
|
31
|
-
Fix: [#382](https://github.com/Dynamoid/dynamoid/pull/382) Fixed deprecation warning about `Module#parent_name` in Rails 6 (@tmandke)
|
|
32
|
-
Fix: Typos in Readme.md (@romeuhcf)
|
|
39
|
+
* Fix: [#382](https://github.com/Dynamoid/dynamoid/pull/382) Fixed deprecation warning about `Module#parent_name` in Rails 6 (@tmandke)
|
|
40
|
+
* Fix: Typos in Readme.md (@romeuhcf)
|
|
33
41
|
|
|
34
42
|
---
|
|
35
43
|
|
|
@@ -78,14 +78,14 @@ module Dynamoid
|
|
|
78
78
|
|
|
79
79
|
# if credentials are passed, they already contain access key & secret key
|
|
80
80
|
if Dynamoid::Config.credentials?
|
|
81
|
-
connection_hash[:credentials] = Dynamoid::Config.credentials
|
|
81
|
+
@connection_hash[:credentials] = Dynamoid::Config.credentials
|
|
82
82
|
else
|
|
83
83
|
# otherwise, pass access key & secret key for credentials creation
|
|
84
84
|
if Dynamoid::Config.access_key?
|
|
85
|
-
connection_hash[:access_key_id] = Dynamoid::Config.access_key
|
|
85
|
+
@connection_hash[:access_key_id] = Dynamoid::Config.access_key
|
|
86
86
|
end
|
|
87
87
|
if Dynamoid::Config.secret_key?
|
|
88
|
-
connection_hash[:secret_access_key] = Dynamoid::Config.secret_key
|
|
88
|
+
@connection_hash[:secret_access_key] = Dynamoid::Config.secret_key
|
|
89
89
|
end
|
|
90
90
|
end
|
|
91
91
|
|
data/lib/dynamoid/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynamoid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Symonds
|
|
@@ -21,7 +21,7 @@ authors:
|
|
|
21
21
|
autorequire:
|
|
22
22
|
bindir: exe
|
|
23
23
|
cert_chain: []
|
|
24
|
-
date: 2019-
|
|
24
|
+
date: 2019-12-02 00:00:00.000000000 Z
|
|
25
25
|
dependencies:
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: activemodel
|