pg-aws_rds_iam 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -0
- data/CHANGELOG.md +7 -1
- data/Gemfile +2 -1
- data/Gemfile.lock +12 -3
- data/README.md +1 -1
- data/lib/pg/aws_rds_iam/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: f609de0074efdc1149609180b6e668f64895f571562635cca5f3f9c9efeacd11
|
4
|
+
data.tar.gz: e6739b2d989f8d9b1aa93cb5db7c29aee0f64550e3e964b24d5a994918271f23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c7e194f5f6448f2af950f5a505caf54a5b1bce996fc9e7043d1681bce32dec2aa95f2edab089f57a7efb4182f685b7e3b4b9c05d46f9ed0cbdfe22a8939cfb7
|
7
|
+
data.tar.gz: c2a5257753f3c0cacab42efef11cd46da620cb951fbf4d222a835d4288dbd31f7bc7e055e9c98fd9e4dc9f6decb6e341b5a93bb42480eb9b960760b9bbf12eca
|
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
|
9
9
|
No notable changes.
|
10
10
|
|
11
|
+
## [0.3.1] - 2021-11-10
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
* Make code snippets in README valid Ruby to fix syntax highlighting ([#274](https://github.com/haines/pg-aws_rds_iam/pull/274))
|
15
|
+
|
11
16
|
## [0.3.0] - 2021-11-10
|
12
17
|
|
13
18
|
### Changed
|
@@ -33,7 +38,8 @@ No notable changes.
|
|
33
38
|
* A plugin for the [`pg` gem](https://rubygems.org/gems/pg) that adds support for [IAM authentication](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) when connecting to PostgreSQL databases hosted in Amazon RDS. ([#1](https://github.com/haines/pg-aws_rds_iam/pull/1))
|
34
39
|
* ActiveRecord support. ([#3](https://github.com/haines/pg-aws_rds_iam/pull/3))
|
35
40
|
|
36
|
-
[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.
|
41
|
+
[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.1...HEAD
|
42
|
+
[0.3.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.0...v0.3.1
|
37
43
|
[0.3.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.2.0...v0.3.0
|
38
44
|
[0.2.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.1.1...v0.2.0
|
39
45
|
[0.1.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.1.0...v0.1.1
|
data/Gemfile
CHANGED
@@ -5,6 +5,7 @@ gemspec
|
|
5
5
|
|
6
6
|
gem "aws-sdk-ec2"
|
7
7
|
gem "bundler"
|
8
|
+
gem "commonmarker"
|
8
9
|
gem "minitest"
|
9
10
|
gem "minitest-reporters"
|
10
11
|
gem "pry"
|
@@ -13,7 +14,7 @@ gem "rubocop"
|
|
13
14
|
gem "rubocop-minitest"
|
14
15
|
gem "rubocop-rake"
|
15
16
|
gem "timecop"
|
16
|
-
gem "yard"
|
17
|
+
gem "yard", github: "lsegal/yard"
|
17
18
|
|
18
19
|
["activerecord", "pg"].each do |gem_name|
|
19
20
|
gem gem_name, *ENV["#{gem_name.upcase}_VERSION"]&.yield_self { |gem_version| "~> #{gem_version}.0" }
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,14 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/lsegal/yard.git
|
3
|
+
revision: 9865620413d3519b561d87479e44f1b4fe782904
|
4
|
+
specs:
|
5
|
+
yard (0.9.26)
|
6
|
+
webrick (~> 1.7.0)
|
7
|
+
|
1
8
|
PATH
|
2
9
|
remote: .
|
3
10
|
specs:
|
4
|
-
pg-aws_rds_iam (0.3.
|
11
|
+
pg-aws_rds_iam (0.3.1)
|
5
12
|
aws-sdk-rds (~> 1.0)
|
6
13
|
pg (>= 0.18, < 2.0)
|
7
14
|
|
@@ -38,6 +45,7 @@ GEM
|
|
38
45
|
aws-eventstream (~> 1, >= 1.0.2)
|
39
46
|
builder (3.2.4)
|
40
47
|
coderay (1.1.3)
|
48
|
+
commonmarker (0.23.2)
|
41
49
|
concurrent-ruby (1.1.8)
|
42
50
|
i18n (1.8.9)
|
43
51
|
concurrent-ruby (~> 1.0)
|
@@ -80,7 +88,7 @@ GEM
|
|
80
88
|
tzinfo (2.0.4)
|
81
89
|
concurrent-ruby (~> 1.0)
|
82
90
|
unicode-display_width (2.1.0)
|
83
|
-
|
91
|
+
webrick (1.7.0)
|
84
92
|
zeitwerk (2.4.2)
|
85
93
|
|
86
94
|
PLATFORMS
|
@@ -90,6 +98,7 @@ DEPENDENCIES
|
|
90
98
|
activerecord
|
91
99
|
aws-sdk-ec2
|
92
100
|
bundler
|
101
|
+
commonmarker
|
93
102
|
minitest
|
94
103
|
minitest-reporters
|
95
104
|
pg
|
@@ -100,7 +109,7 @@ DEPENDENCIES
|
|
100
109
|
rubocop-minitest
|
101
110
|
rubocop-rake
|
102
111
|
timecop
|
103
|
-
yard
|
112
|
+
yard!
|
104
113
|
|
105
114
|
BUNDLED WITH
|
106
115
|
2.2.21
|
data/README.md
CHANGED
@@ -103,7 +103,7 @@ If the default authentication token generator doesn't meet your needs, you can r
|
|
103
103
|
|
104
104
|
```ruby
|
105
105
|
PG::AWS_RDS_IAM.auth_token_generators.add :custom do
|
106
|
-
PG::AWS_RDS_IAM::AuthTokenGenerator.new(credentials:
|
106
|
+
PG::AWS_RDS_IAM::AuthTokenGenerator.new(credentials: "...", region: "...")
|
107
107
|
end
|
108
108
|
```
|
109
109
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg-aws_rds_iam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Haines
|
@@ -90,7 +90,7 @@ licenses:
|
|
90
90
|
metadata:
|
91
91
|
bug_tracker_uri: https://github.com/haines/pg-aws_rds_iam/issues
|
92
92
|
changelog_uri: https://github.com/haines/pg-aws_rds_iam/blob/main/CHANGELOG.md
|
93
|
-
documentation_uri: https://rubydoc.info/gems/pg-aws_rds_iam/0.3.
|
93
|
+
documentation_uri: https://rubydoc.info/gems/pg-aws_rds_iam/0.3.1
|
94
94
|
homepage_uri: https://github.com/haines/pg-aws_rds_iam
|
95
95
|
source_code_uri: https://github.com/haines/pg-aws_rds_iam
|
96
96
|
post_install_message:
|