Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.37 KB

CHANGELOG.md

File metadata and controls

51 lines (39 loc) · 1.37 KB

v7.1.0.rc2

Added

  • #1136 Prevent marking broken connections as verified
  • #1138 Cache quoted names

v7.1.0.rc1

Added

  • Rails 7.1 Support

    The adapter supports new Rails 7.1 features such as composite primary keys. See the Rails 7.1 release notes for more information.

Changed

  • Configure Connection

    If you require additional connection configuration you now need to call super within the configure_connection method so that the default configuration is also applied.

    v7.1.x adapter:

    module ActiveRecord
      module ConnectionAdapters
        class SQLServerAdapter < AbstractAdapter
          def configure_connection
            super
            raw_connection_do "SET TEXTSIZE #{64.megabytes}"
          end
        end
      end
    end

    v7.0.x adapter:

    module ActiveRecord
      module ConnectionAdapters
        class SQLServerAdapter < AbstractAdapter
          def configure_connection
            raw_connection_do "SET TEXTSIZE #{64.megabytes}"
          end
        end
      end
    end

Please check 7-0-stable for previous changes.