Skip to content

Commit

Permalink
Bump gem to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscruz committed Dec 24, 2024
1 parent 68b8c1f commit 8e0baea
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
## [Unreleased]

- Add custom log subscriber to tag queries based on the adapter being used
- Fix replica connection pool getter when database configurations have multiple replicas
- Retrieve replica pool without checking out a connection
## [0.2.0] - 2024-12-24

- Add custom log subscriber to tag queries based on the adapter being used (68b8c1f4191388eb957bf12e0f84289da667e940)

## [0.1.3] - 2024-12-24

- Fix replica connection pool getter when database configurations have multiple replicas (ea5a33997da45ac073f166b3fbd2d12426053cd6)
- Retrieve replica pool without checking out a connection (6470ef58e851082ae1f7a860ecdb5b451ef903c8)

## [0.1.2] - 2024-12-16

- Fix CTE regex matcher (4b1d10b)
- Fix CTE regex matcher (4b1d10bfd952fb1f5b102de8cc1a5bd05d25f5e9)

## [0.1.1] - 2024-11-27

- Enable RubyGems MFA (2a71b1f)
- Enable RubyGems MFA (2a71b1f4354fb966cc0aa68231ca5837814e07ee)

## [0.1.0] - 2024-11-19

- Add PostgreSQLProxyAdapter (2b3bb9f)
- Add PostgreSQLProxyAdapter (2b3bb9f7359139519b32af3018ceb07fed8c6b33)

## [0.1.0.rc2] - 2024-10-28

- Add PostgreSQLProxyAdapter (2b3bb9f)
- Add PostgreSQLProxyAdapter (2b3bb9f7359139519b32af3018ceb07fed8c6b33)
2 changes: 1 addition & 1 deletion active_record_proxy_adapters.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
ls.readlines("\x0", chomp: true).reject do |f|
(f == gemspec) ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .gitlab-ci.yml appveyor Gemfile])
f.start_with?(*%w[bin/ test/ spec/ features/ .git .gitlab-ci.yml appveyor Gemfile Rakefile])
end
end
spec.bindir = "exe"
Expand Down
2 changes: 1 addition & 1 deletion lib/active_record_proxy_adapters/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveRecordProxyAdapters
VERSION = "0.1.2"
VERSION = "0.2.0"
end

0 comments on commit 8e0baea

Please sign in to comment.