From 92d7ce0c72818faf0695262ed96a771cd7f67c36 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 4 Dec 2024 23:21:44 +0000 Subject: [PATCH 1/3] Update dependencies --- Gemfile | 2 +- Gemfile.lock | 54 ++++++++++++++++++++++++++++------------------------ 2 files changed, 30 insertions(+), 26 deletions(-) diff --git a/Gemfile b/Gemfile index 10c5410..e7310fb 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ gemspec gem "aws-sdk-ec2" gem "bundler" -gem "commonmarker" +gem "commonmarker", "< 1.0" # https://github.com/lsegal/yard/issues/1528 gem "minitest" gem "minitest-reporters" gem "pry" diff --git a/Gemfile.lock b/Gemfile.lock index 1ae0aa6..24a608d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -46,16 +46,16 @@ GEM ansi (1.5.0) ast (2.4.2) aws-eventstream (1.3.0) - aws-partitions (1.1004.0) - aws-sdk-core (3.212.0) + aws-partitions (1.1018.0) + aws-sdk-core (3.214.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) jmespath (~> 1, >= 1.6.1) - aws-sdk-ec2 (1.487.0) + aws-sdk-ec2 (1.495.0) aws-sdk-core (~> 3, >= 3.210.0) aws-sigv4 (~> 1.5) - aws-sdk-rds (1.257.0) + aws-sdk-rds (1.262.0) aws-sdk-core (~> 3, >= 3.210.0) aws-sigv4 (~> 1.5) aws-sigv4 (1.10.1) @@ -65,28 +65,29 @@ GEM bigdecimal (3.1.8) builder (3.3.0) coderay (1.1.3) - commonmarker (0.23.10) + commonmarker (0.23.11) concurrent-ruby (1.3.4) connection_pool (2.4.1) crass (1.0.6) + date (3.4.1) drb (2.2.1) erubi (1.13.0) i18n (1.14.6) concurrent-ruby (~> 1.0) - io-console (0.7.2) + io-console (0.8.0) irb (1.14.1) rdoc (>= 4.0.0) reline (>= 0.4.2) jmespath (1.6.2) - json (2.8.1) + json (2.9.0) language_server-protocol (3.17.0.3) - logger (1.6.1) + logger (1.6.2) loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) method_source (1.1.0) mini_portile2 (2.8.8) - minitest (5.25.1) + minitest (5.25.4) minitest-reporters (1.7.1) ansi builder @@ -100,10 +101,11 @@ GEM ast (~> 2.4.1) racc pg (1.5.9) - pry (0.14.2) + pry (0.15.0) coderay (~> 1.1) method_source (~> 1.0) - psych (5.2.0) + psych (5.2.1) + date stringio racc (1.8.1) rack (3.1.8) @@ -111,7 +113,7 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rackup (2.2.0) + rackup (2.2.1) rack (>= 3) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) @@ -130,23 +132,23 @@ GEM zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.8.1) psych (>= 4.0.0) - regexp_parser (2.9.2) - reline (0.5.11) + regexp_parser (2.9.3) + reline (0.5.12) io-console (~> 0.5) rexml (3.3.9) - rubocop (1.68.0) + rubocop (1.69.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.4, < 3.0) - rubocop-ast (>= 1.32.2, < 2.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.36.2, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.35.0) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.36.2) parser (>= 3.3.1.0) rubocop-minitest (0.36.0) rubocop (>= 1.61, < 2.0) @@ -154,16 +156,18 @@ GEM rubocop-rake (0.6.0) rubocop (~> 1.0) ruby-progressbar (1.13.0) - securerandom (0.3.2) + securerandom (0.4.0) stringio (3.1.2) thor (1.3.2) timecop (0.9.10) timeout (0.4.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.6.0) - uri (1.0.1) - useragent (0.16.10) + unicode-display_width (3.1.2) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) + uri (1.0.2) + useragent (0.16.11) webrick (1.9.1) yard (0.9.37) zeitwerk (2.7.1) @@ -175,7 +179,7 @@ DEPENDENCIES activerecord aws-sdk-ec2 bundler - commonmarker + commonmarker (< 1.0) minitest minitest-reporters pg From 0b8af81b7878ec3ecc2ed067afcb55a5be6002e5 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 4 Dec 2024 23:23:18 +0000 Subject: [PATCH 2/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 24a608d..0874fbd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pg-aws_rds_iam (0.6.2) + pg-aws_rds_iam (0.7.0) aws-sdk-rds (~> 1.0) pg (~> 1.1) diff --git a/lib/pg/aws_rds_iam/version.rb b/lib/pg/aws_rds_iam/version.rb index 03b3095..4ad96c2 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.6.2" + VERSION = "0.7.0" end end From 10b3508af7b05fad5a2ff3f29e5f408b3b2f0d25 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Wed, 4 Dec 2024 23:24:39 +0000 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1b8cf9..bc0a70c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +No notable changes. + +## [0.7.0] - 2024-12-04 + ### Changed * Reuse tokens ([#690](https://github.com/haines/pg-aws_rds_iam/pull/690)) @@ -97,7 +101,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * 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.6.2...HEAD +[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.6.2...v0.7.0 [0.6.2]: https://github.com/haines/pg-aws_rds_iam/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.5.0...v0.6.0