Skip to content

Releases: thoughtbot/shoulda-matchers

v6.4.0

16 Aug 20:43
v6.4.0
8890f3d
Compare
Choose a tag to compare

6.4.0 - 2024-08-16

What's Changed

Features

v6.3.1

13 Aug 13:12
v6.3.1
f4f93fb
Compare
Choose a tag to compare

6.3.1 - 2024-08-13

What's Changed

Bug fixes

  • Ensure DefineEnumForMatcher#validating handles Hash enum values correctly by @mi-wada (#1646)

v6.3.0

09 Aug 21:02
v6.3.0
d56a4b8
Compare
Choose a tag to compare

6.3.0 - 2024-08-09

What's Changed

Bug fixes

  • Fix uniqueness check for a polymorphic association with STI by @matsales28 (#1624)

Features

Improvements

v6.2.0

15 Mar 15:11
efd1b39
Compare
Choose a tag to compare

6.2.0 - 2024-03-15

Bug fixes

  • Allow beginless and endless ranges in validates_inclusion_of by @pjpires (#1615)
  • Ensure uniqueness validation matcher works with STI by @matsales28 (#1610)

Features

Improvements

v6.1.0

19 Jan 14:55
cff5263
Compare
Choose a tag to compare

6.1.0 - 2024-01-19

Bug fixes

Features

  • Add support for negated matcher on have_secure_password matcher by @amalrik (#1593)
  • Add encrypt matcher to test usage of the encrypts macro by @theforestvn88 (#1581)
  • Add query_constraints qualifier on the association matchers by @matsales28 (#1604)

Improvements

v6.0.0

22 Dec 19:54
v6.0.0
4cfa6e7
Compare
Choose a tag to compare

Backward-incompatible changes

  • Drop support for Rails 5.2 and 6.0 as well as Ruby 2.6 and 2.7 they've been end-of-lifed by @dougmrqs and @HeitorMC.
    The gem now supports Ruby 3.0+ and Rails 6.1+. (#1521, #1522, #1547, #1548)

Bug fixes

  • Fix validate_uniqueness_of matcher not supporting column of the type timestampz by @callahat. (#1544)
  • Ensure that validation specs work for ActiveModel without ActiveRecord by @stonefield. (#1580)

Features

Improvements

  • When an unrelated error is seen with negated allow_value, give a hint by @matsales28. (#1570)

Thanks everyone for the contributions!

v5.3.0

16 Dec 18:41
a5e3133
Compare
Choose a tag to compare

Features

  • Add in: range matcher to validate_numericality_of by @matsales28 . (#1512)

  • Support :uuid column type for validate_absence_of matcher by @dlupu. (#1518)

Bug fixes

  • Fix confusing error message from validate_inclusion_of matcher when used against a polymorphic association. (#1523)

v5.2.0

17 Sep 14:07
8a70102
Compare
Choose a tag to compare

Features

  • Add without_scopes method to enum matcher. (#1453)

  • Add support for Ruby 3.1. (#1474)

  • Add allow_blank method to validate_presence_of matcher. (#1499)

  • Add support for Rails 7.0. No new Rails 7.0 features are supported, but only existing features that broke with the upgrade. (#1506)

Thanks @technicalpickles, @dewyze, @andreLumor for your contributions!

v5.1.0

22 Dec 22:39
781ecd0
Compare
Choose a tag to compare

Bug fixes

  • Fix the undefined method error for non rails project due to use of many? - method from ActiveSupport. (#1459)

Features

  • Add array option support for have db column matcher. (#1465)

  • Add enum attributes support for validate_absence_of matcher. (#1464)

v5.0.0

10 Jul 11:42
c320bdc
Compare
Choose a tag to compare

Bug fixes

  • Replace in?, method from ActiveSupport, with include? to prevent exception "undefined method in?" on non-Rails app. (#1405)

Features

  • Add support for Rails 6.1. No new Rails 6.1 features are supported, but only existing features that broke with the upgrade. (#1418)

  • Add support for RVM (Ruby Version Manager) to setting up local environment. (#1424)

  • Add support for alias in matcher define_enum. (#1419)

  • Add support for Ruby 3.0. (#1406, #1427)

Improvements

  • Remove deprecated warnings emitted on Rails 6.1 in ActiveModel errors. (#1444)

Backward-incompatible changes

  • Drop support for Rails 4.2, 5.0 and 5.1 as well as Ruby 2.4 and 2.5
    they've been end-of-lifed. The gem now supports Ruby 2.6+ and Rails 5.2+. (#1412, #1415, #1422, #1428, #1429)

  • Remove deprecated matchers: use_before_filter, use_after_filter, use_around_filter and allow_mass_assignment_of. (#1430, #1431)