diff --git a/CHANGELOG.md b/CHANGELOG.md index f7d76627..be10a3ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +# v0.21.2 +* Change: Trilogy ActiveRecord adapter will not bypass "SAVEPOINT RELEASE" unless it uses the ActiveRecord default name and only 2 levels of nesting +* Change: The bypass for COMMIT/ROLLBACK statements assumes current ActiveRecord behaviour, that is no blank spaces or ";" chracter at the end of the statement + # v0.21.1 * Fix valid_raw_connection check diff --git a/Gemfile.lock b/Gemfile.lock index b4fe3c5c..c9157813 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: . specs: - semian (0.21.1) + semian (0.21.2) GEM remote: https://rubygems.org/ @@ -31,10 +31,22 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.0) connection_pool (2.4.1) - google-protobuf (3.25.1) + google-protobuf (3.25.1-aarch64-linux) + google-protobuf (3.25.1-arm64-darwin) + google-protobuf (3.25.1-x86_64-darwin) + google-protobuf (3.25.1-x86_64-linux) googleapis-common-protos-types (1.11.0) google-protobuf (~> 3.18) - grpc (1.60.0) + grpc (1.60.0-aarch64-linux) + google-protobuf (~> 3.25) + googleapis-common-protos-types (~> 1.0) + grpc (1.60.0-arm64-darwin) + google-protobuf (~> 3.25) + googleapis-common-protos-types (~> 1.0) + grpc (1.60.0-x86_64-darwin) + google-protobuf (~> 3.25) + googleapis-common-protos-types (~> 1.0) + grpc (1.60.0-x86_64-linux) google-protobuf (~> 3.25) googleapis-common-protos-types (~> 1.0) hiredis (0.6.3) diff --git a/lib/semian/version.rb b/lib/semian/version.rb index e2e24ffb..585102f8 100644 --- a/lib/semian/version.rb +++ b/lib/semian/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Semian - VERSION = "0.21.1" + VERSION = "0.21.2" end