* Tue Jan 17 2023 dcermak@suse.com
- New upstream release 3.12.3
Bug Fixes:
* Fix keyword delegation in `send` for verifying doubles on Ruby 3.
(Charlie Honig, #1485)
* Mon Jan 09 2023 mvidner@suse.com
- updated to version 3.12.2
Notable bug fix, for bsc#1206419:
Fix keyword argument assertions when mocking using with on Ruby
3.2.0. (Slava Kardakov, Benoit Tigeot, Phil Pirozhkov, Benoit
Daloze, #1514)
* Fri Oct 28 2022 coolo@suse.com
updated to version 3.12.0
see installed Changelog.md
* Thu Apr 28 2022 coolo@suse.com
updated to version 3.11.1
see installed Changelog.md
* Mon Feb 21 2022 coolo@suse.com
updated to version 3.11.0
see installed Changelog.md
* Sat Feb 06 2021 mschnitzer@suse.com
- updated to version 3.10.2
[#]## 3.10.2 / 2021-01-27
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.1...v3.10.2)
Bug Fixes:
* Support keyword arguments with `and_call_original` on Ruby 3.0.
(Bryan Powell, #1385)
* `RSpec::Mocks::Constant#previously_defined?` is now always a boolean.
(Phil Pirozhkov, #1397)
* Support keyword arguments on Ruby 3.0 when used with `expect_any_instance_of`
or `allow_any_instance_of` with `and_call_original`.
(Jess Hottenstein, #1407)
* Wed Jan 20 2021 mschnitzer@suse.com
- updated to version 3.10.1
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.10.0...v3.10.1)
Bug Fixes:
* Issue `ArgumentError` rather than `TypeError` when unsupported methods on
unsupported objects are attempted to be stubbed. (@zhisme, #1357)
* Wed Nov 11 2020 mschnitzer@suse.com
- updated to version 3.10.0
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.9.1...v3.10.0)
Enhancements:
* Add the ability to set a custom error generator in `MessageExpectation`.
This will allow rspec-expectations to inject a custom failure message.
(Benoit Tigeot and Nicolas Zermati, #1312)
* Return the result of the block passed to `RSpec::Mocks.with_temporary_scope`
when block run. (@expeehaa, #1329)
* Mon Jan 27 2020 mschnitzer@suse.com
- updated to version 3.9.1
[#] Bug Fixes:
* Trigger RSpec::Mocks.configuration.verifying_double_callbacks when
using allow_any_instance_of or expect_any_instance_of (Daniel Orner, #1309)
* Tue Nov 12 2019 mschnitzer@suse.com
- updated to version 3.9.0
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.8.2...v3.9.0)
Enhancements:
* Improve thread safety of message expectations by using Mutex to prevent
deadlocking errors. (Ry Biesemeyer, #1236)
* Add the ability to use `time` as an alias for `times`. For example:
`expect(Class).to receive(:method).exactly(1).time`.
(Pistos, Benoit Tigeot, #1271)