From 0afd04f856ed3e3cdf473ac62996fac4aee98189 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 20 Jul 2022 16:19:20 +1200 Subject: [PATCH 1/3] Bump version --- Gemfile.lock | 2 +- lib/pg/aws_rds_iam/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 203e580..91ea9ea 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pg-aws_rds_iam (0.4.0) + pg-aws_rds_iam (0.4.1) aws-sdk-rds (~> 1.0) pg (>= 0.18, < 2.0) diff --git a/lib/pg/aws_rds_iam/version.rb b/lib/pg/aws_rds_iam/version.rb index e0124f1..a9e1579 100644 --- a/lib/pg/aws_rds_iam/version.rb +++ b/lib/pg/aws_rds_iam/version.rb @@ -3,6 +3,6 @@ module PG module AWS_RDS_IAM # The current version of the gem. - VERSION = "0.4.0" + VERSION = "0.4.1" end end From fb57c5f95e4d9bad2357454a81020c304adc2914 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 20 Jul 2022 16:19:29 +1200 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f58e17d..267c4f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), No notable changes. +## [0.4.1] - 2022-07-20 + +### Fixed +* Generate auth token for Active Record structure load ([#374](https://github.com/haines/pg-aws_rds_iam/pull/374)) + ## [0.4.0] - 2022-06-22 ### Changed @@ -52,7 +57,8 @@ No notable changes. * 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)) * ActiveRecord support. ([#3](https://github.com/haines/pg-aws_rds_iam/pull/3)) -[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.4.1...HEAD +[0.4.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.2...v0.4.0 [0.3.2]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.0...v0.3.1 From 3bf9cb87729e12e4aae4ace2bcc51f09fff69a8d Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 20 Jul 2022 16:26:49 +1200 Subject: [PATCH 3/3] Link docs to RubyDoc.info instead of GitHub Pages --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 554ebeb..f085f8e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Gem](https://img.shields.io/gem/v/pg-aws_rds_iam?style=flat-square)](https://rubygems.org/gems/pg-aws_rds_iam)   -[![Docs](https://img.shields.io/badge/yard-docs-blue?style=flat-square)](https://haines.github.io/pg-aws_rds_iam/) +[![Docs](https://img.shields.io/badge/yard-docs-blue?style=flat-square)](https://www.rubydoc.info/gems/pg-aws_rds_iam) `PG::AWS_RDS_IAM` is 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.