Sha256: 876c6acbafa8f8a8d7beadfe1aa7ab3db9fef93c7f2810573b968fbb19b37437

Contents?: true

Size: 1.96 KB

Versions: 1

Compression:

Stored size: 1.96 KB

Contents

## v7.1.1

#### Fixed

- [#1145](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1145) Ensure correct order of COLLATE and NOT NULL in CREATE TABLE statements
- [#1144](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1144) Fix precision handling in time migration
- [#1143](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1143) Fix precision handling for datetimeoffset migration

## v7.1.0

#### Added

- [#1141](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1141) Added support for check constraints.

## v7.1.0.rc2

#### Added

- [#1136](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1136) Prevent marking broken connections as verified
- [#1138](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/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](https://guides.rubyonrails.org/7_1_release_notes.html) 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:
  ```ruby
  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:
  ```ruby
  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](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/blob/7-0-stable/CHANGELOG.md) for previous changes.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activerecord-sqlserver-adapter-7.1.1 CHANGELOG.md