Changelog for
ruby2.5-rubygem-database_cleaner-doc-1.6.2-2.4.x86_64.rpm :
* Tue Nov 28 2017 enavarroAATTsuse.com- updated to version 1.6.2 see installed History.rdoc == 1.6.2 2017-10-29 === Bug Fixes
* ActiveRecord::Base namespace patch: https://github.com/DatabaseCleaner/database_cleaner/pull/490
* Better exclusion condition based on Rails version: https://github.com/DatabaseCleaner/database_cleaner/pull/487 === Changes
* Better documentation. Typos were fixed. Sequel deletion is supported: https://github.com/DatabaseCleaner/database_cleaner/pull/500
* Tue May 23 2017 cooloAATTsuse.com- updated to version 1.6.1 see installed History.rdoc == 1.6.1 2017-05-09 === Bug Fixes
* Deletion strategy fix for ActiveRecord (AATTkawamoto) == 1.6.0 2017-05-04 === New Features/Changes
* Rails 5.1 support: Remove deprecation warning (AATTactivefx)
* MySQL 5.6+ InnoDB support (AATTahorek)
* Better documentation (fixed typo) (AATThoshinotsuyoshi) === Bug Fixes
* Fix Redis db option (AATTsoylent)
* Make NullStrategy API-complete (AATTanicholson) == 1.5.3 2016-04-22 === Bug Fixes
* AATTP9GIT fixed issue #436
* Tue May 10 2016 cooloAATTsuse.com- updated to version 1.5.3 see installed History.rdoc
* Mon Apr 18 2016 cooloAATTsuse.com- updated to version 1.5.2 see installed History.rdoc == 1.5.2 2016-04-17 === New Features/Changes
* Use default_client with mongoid 5.0 (AATTstjhimy)
* Added comparable support for strategies (AATTst0012)
* Better README instructions that suggest `append_after` (AATTjrochkind)
* Removed deprecation warnings for Rails 5.0+ (AATTpschambacher)
* Upgrade to RSpec 2.14 (AATTskalee) === Bug Fixes
* AATTdmitrypol fixed issue #409
* AATTschmierkov fixed the Travis builds with PR #416
* AATTshosti fixed issue #345
* AATTkylev fixed issue #379
* AATTskalee fixed the Travis builds for Neo4j with PR #433 == 1.5.1 2015-09-05 == Bug Fix
* Added mongo2 missing files to the gemspec. (AATTgeerzo) == 1.5.0 2015-09-02 === New Features/Changes
* Use ensure within the cleaning method. (AATTcema-sp)
* Restored mysql2 + jruby support. (AATTahorek)
* Added required ruby version to gemspec. (AATTgarethrees)
* Added support for Mongoid 5.0 and Mongo Ruby Driver 2.0. (AATTjprincipe)
* Added support for additional Neo4j::Session.open options. (AATTbrienw)
* And a bunch of code style and README improvements === Bug Fixes
* Fixed truncation for MongoDB 3. (AATTandreale)
* Fixed YAML error when building gem. (AATTjoshnesbitt)
* Fixed deletion strategy for JDBC MySQL. (AATTDanElbert)
* Fixed open transactions for multiple connections. (AATTclaptimes5)
* Sat Oct 17 2015 cooloAATTsuse.com- updated to version 1.5.1 see installed History.rdoc
* Wed Sep 02 2015 cooloAATTsuse.com- updated to version 1.5.0 see installed History.rdoc
* Tue Mar 10 2015 cooloAATTsuse.com- updated to version 1.4.1
* Fri Feb 06 2015 cooloAATTsuse.com- updated to version 1.4.0 === New Features/Changes
* Using the deletion strategy with Mysql now only deletes those tables which have had records added to them. (AATTMadRabbit)
* Add support for `pre_count` on Sequel with Mysql. (AATTvrinek)
* Add support for neo4j. (AATTdpisarewski)
* Cache collection names in mongo\'s truncation strategy. (AATTnyarly)
* Support for mongoid multiple connections. (AATTnyarly)
* Support for deletion with Sequel. (AATTcyberdelia) === Bug Fixes
* Fix `undefined method error` with DataMapper SQLite adaptor. (AATTlanej)
* Fully define Mysql2 adaptor constant. (AATTjgonera)
* Don\'t truncate schema tables in Postgres. (AATTbillywatson)
* Fix issue #284. (AATTMartinNowak)
* Sun Oct 12 2014 adrianAATTsuse.de- adapt to new rubygem packaging style
* Mon May 26 2014 cooloAATTsuse.com- updated to version 1.3.0 === New Features/Changes
* Introduced `DatabaseCleaener::cleaninng` method that takes a block. (AATTethco)
* Improved Sequel support and added more tests (AATTethco, AATTrhunter) === Bug Fixes
* Fixed an issue with the `Transaction` strategy and Active Record where application-level transactions are not rolledback correctly. (Godfrey Chan)
* activerecord-oracle_enhanced-adapter now works again (#259, AATTsockmonk)
* Thu Oct 10 2013 cooloAATTsuse.com- updated to version 1.2.0 A huge thanks goes to AATTtommeier for fixing the bug with class loading that was cuasing the wrong adapters to be used in certain cases. === New Features/Changes
* Upgraded RSpec to remove deprecation warnings (John Rowe)
* Caching of tables to truncate is now optional (AATTmarcoow) === Bug Fixes
* Use class_eval loading of superclasses to ensure right version of class is patched. (Tom Meier, Joel Nimety, Ernesto Tagwerker)
* Add truncate_tables method to SQLiteAdapter. (Chris Mo)
* Fixes missing #uses_sequence invokation in adapter classes for sqlite and sqlite3 (Lefteris Laskaridis)
* Fri Aug 02 2013 cooloAATTsuse.com- updated to version 1.1.1 === Bug Fixes
* Fixes typo in Postgres superclass (POSTGRE_ADAPTER_PARENT > POSTGRES_ADAPTER_PARENT) (Joel Nimety) == 1.1.0 2013-08-01 === New Features/Changes
* schema_migrations table name is now retrieved from ActiveRecord (Kyle Stevens)
* Autoloading logic is now exposed, see PR #212 for details (Jeff Felchner) === Bug Fixes
* Deletion strategy works again on MySQL, had to roll back multiple statements patch.
* Fix MySqlAdapter superclass bug via class_eval loading of superclasses (Tom Meier)
* Sequel strategy fix dealing with symbol/string mismatch on table names. (Fred Wu)
* Wed May 15 2013 cooloAATTsuse.com- updated to version 1.0.1 === New Features/Changes
* Dropping support for Ruby 1.8.x; Only 1.9.x and beyond will be supported going forward.
* Now supporting (and testing against ruby 2.0.x).
* Adds support for AR 4.0 by using `begin_transaction` (David Chelimsky and Steve Madsen)
* Adds Rails 4 support for SQLite3Adapter
* Suppport for Moped when used without Mongoid (Cyprian Kowalczyk)
* Redis & Ohm support (Hengbin Qiu, James Conroy-Finn)
* CI Improvements (Jan Vlnas, Murahashi Sanemat Kenichi, Samer Masry, Jordan Hollinger)
* README/Documentation improvements (Marcelo Cajueiro, Donald Ball, TJ Chambers, Nick Huanca, Justin Edwards, Ryota Arai) === Bug Fixes
* Fixes transaction errors when using `after_commit` hooks in AR.
* Fixes truncation error with SQLite (Daniel White)
* Fixes `pre_count` logic in AR Postgres. (Jordan Hollinger)
* Sequel fix to normalize all table names to strings. (Lauri Peltola)
* #clean_with now works with multiple connections. (John Ferlito)
* Always start a AR transaction to prevent nil errors in AR when rolling back (John Hampton, M.Shibuya)
* Thu Nov 01 2012 cooloAATTsuse.com- updated to version 0.9.1
* Wed Aug 01 2012 cooloAATTsuse.com- initial package (version 0.8.0)