diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c6d6c215..13e2f1103 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ +# v0.27.0 + +* Add `semian/activerecord_postgresql_adapter` for Active Record's PostgreSQL adapter (#889) +* Add `open_circuit_on_oom` option for Redis adapters to control whether OOM errors open the circuit breaker (defaults to `true` for backward compatibility) (#940) +* Support Active Record 8.2's `QueryIntent` API in trilogy adapter (#904) + # v0.26.6 * Remove force_config_validation spammy log # v0.26.5 + * Made `consumers` and `resources` fields private in Semian (#795) # v0.25.5 diff --git a/Gemfile.lock b/Gemfile.lock index af0bd1c8c..fa169476b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -26,7 +26,7 @@ GIT PATH remote: . specs: - semian (0.26.6) + semian (0.27.0) concurrent-ruby GEM diff --git a/lib/semian/version.rb b/lib/semian/version.rb index 51bd84b50..38461d958 100644 --- a/lib/semian/version.rb +++ b/lib/semian/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Semian - VERSION = "0.26.6" + VERSION = "0.27.0" end