diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e100c..b13ae4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,13 @@ ## Unreleased * Nothing yet -* [View Full Diff](https://github.com/westonganger/protected_attributes_continued/compare/v1.7.0...master) +* [View Full Diff](https://github.com/westonganger/protected_attributes_continued/compare/v1.8.0...master) + +## 1.8.0 - 2021-03-06 + * [#22](https://github.com/westonganger/protected_attributes_continued/issues/22) - Do not raise connection error on `attr_accessible` and `attr_protected` if database does not yet exist * [#21](https://github.com/westonganger/protected_attributes_continued/pull/21) - Fix leaky scope with `first_or_create` on Rails 5.2+ +* [View Full Diff](https://github.com/westonganger/protected_attributes_continued/compare/v1.7.0...v1.8.0) ## 1.7.0 - 2020-10-24 diff --git a/lib/protected_attributes/version.rb b/lib/protected_attributes/version.rb index 32269d4..80518f2 100644 --- a/lib/protected_attributes/version.rb +++ b/lib/protected_attributes/version.rb @@ -1,3 +1,3 @@ module ProtectedAttributes - VERSION = "1.7.0".freeze + VERSION = "1.8.0".freeze end diff --git a/test/test_helper.rb b/test/test_helper.rb index 03515b0..31c9618 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -5,4 +5,6 @@ Rails.backtrace_cleaner.remove_silencers! -ActiveSupport.test_order = :random if ActiveSupport.respond_to?(:test_order) +if ActiveSupport.respond_to?(:test_order) + #ActiveSupport.test_order = :random ### :random causes occasional ActiveRecord::RecordNotUnique on primary key +end