Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
westonganger committed Mar 6, 2021
1 parent 7d2f641 commit e8c9854
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/protected_attributes/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ProtectedAttributes
VERSION = "1.7.0".freeze
VERSION = "1.8.0".freeze
end
4 changes: 3 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e8c9854

Please sign in to comment.