- Drop support for throttle and stride options. Use
throttler
, instead:
Lhm.change_table :users, throttler: [:time_throttler, {stride: x}] do
end
- #118 - Truncate long trigger names. (@sj26)
- #114 - Update chunker requirements (@bjk-soundcloud)
- #98 - Add slave lag throttler. (@camilo, @jasonhl)
- #92 - Fix check for table requirement before starting a lhm.(@hannestyden)
- #93 - Makes the atomic switcher retry on metadata locks (@camilo)
- #63 - Sets the LHM's session lock wait timeout variables (@camilo)
- #75 - Remove DataMapper and ActiveRecord 2.x support (@camilo)
- #84 - Require index names to be strings or symbols (Thibaut)
- #39 - Adding the ability to rename columns (erikogan)
- #67 - Allow for optional time filter on .cleanup (joelr)
- #48 - Add percentage output for migrations (@arthurnn)
- #60 - Quote table names (@spickermann)
- #59 - Escape table name in select_limit and select_start methods (@stevehodgkiss)
- #57 - Ensure chunking 'where' clause handled separately (@rentalcustard)
- #54 - Chunker handle stride changes (@rentalcustard)
- #52 - Implement ability to control timeout and stride from Throttler (@edmundsalvacion)
- #51 - Ensure Lhm.cleanup removes temporary triggers (@edmundsalvacion)
- #46 - Allow custom throttler (@arthurnn)
- #44 - Conditional migrations (@durran)
- Add Lhm.cleanup method for removing copy tables, thanks @bogdan
- Limit copy table names to 64 characters, thanks @charliesome
- Added DataMapper support, no API changes for current users. Refer to the README for information.
- Documentation updates. Thanks @tiegz and @vinbarnes.
- Add option to specify custom index name
- Add mysql2 compatibility
- Add AtomicSwitcher
- Improve change_column
- closes soundcloud#11 this critical bug could cause data loss. table parser was replaced with an implementation that reads directly from information_schema.
- released to rubygems
- added change_column
- final 1.0 release
- removed spec binaries from gem bins
- added SqlHelper.annotation into the middle of trigger statements. this is for the benefit of the killer script which should not kill trigger statements.
- added --confirm to kill script; fixes to kill script
- moved scripts into bin, renamed, added to gem binaries
- added '-- lhm' to the end of statements for more visibility
- Speedup migrations for tables with large minimum id
- Add a bit yard documentation
- Fix issues with index creation on reserved column names
- Improve error handling
- Add tests for replication
- Rename public API method from
hadron_change_table
tochange_table
- Add tests for ActiveRecord 2.3 and 3.1 compatibility
- Speedup migrations for tables with large ids
- Fix conversion of milliseconds to seconds
- Fix handling of sql errors
- Add helper to create unique index
- Allow index creation on prefix of column
- Quote column names on index creation
- Remove ambiguous method signature
- Documentation fix
- 1.8.7 compatibility
- rewrite.
- Include changelog in gem
- Add Ruby 1.8 compatibility
- Setup travis continuous integration
- Fix record lose issue
- Fix and speed up specs
- Merged Pullrequest #9
- code cleanup
- Merged Pullrequest #8
- Merged Pullrequest #7
- Merged Pullrequest #4
- Merged Pullrequest #1
- Initial Release