|
| 1 | +v2.0.0 |
| 2 | +------ |
| 3 | + |
| 4 | +- Removed support for Rails 3.x - gem only supports Rails 4+ going forward. |
| 5 | +- Updated rspec versions to 3.x and switch to 'expect' syntax. |
| 6 | +- Removed default values from referencing id columns in `Comment` class. |
| 7 | +- Added missing '.rb' suffix on migration files. |
| 8 | + |
| 9 | +v1.2.0 |
| 10 | +------ |
| 11 | + |
| 12 | +- Updated rspec versions to 2.x and make corresponding changes to Rakefile. |
| 13 | +- Removed sqlite3 development dependency to support JRuby in development/test. |
| 14 | +- Added initial Rails 4 support, subject to acts_as_nested_set dependency. |
| 15 | +- Removed empty string default values for string columns in `Comment`. |
| 16 | + |
| 17 | +v1.1.3 |
| 18 | +------ |
| 19 | + |
| 20 | +- Fixed typos in acts_as_votable integration comment and instructions. |
| 21 | +- Updated commentable to call `destroy_all` on `root_comments`, rather than on all comments (to ensure comments are properly deleted). |
| 22 | +- Fixed polymorphic index to include `commentable_type`. |
| 23 | +- Update Comment to use `validates` rather than the deprecated `validates_presence_of`. |
| 24 | + |
| 25 | +v1.1.2 |
| 26 | +------ |
| 27 | + |
| 28 | +- Updated awesome_nested_set dependency to account for change in repository location. |
| 29 | +- Fixed Comment so it stores the correct class when a commentable is an STL child class. |
| 30 | +- Added commentable association to Comment. |
| 31 | +- Assorted README changes. |
| 32 | + |
| 33 | +v1.1.1 |
| 34 | +------ |
| 35 | + |
| 36 | +- Removed length limit on Commentable class name. |
| 37 | +- Removed default order from `comment_threads` |
| 38 | + |
| 39 | +v1.1.0 |
| 40 | +------ |
| 41 | + |
| 42 | +- Updated to Rails 3+. |
| 43 | +- First Rubygems release. |
| 44 | + |
| 45 | +v0.1.2 |
| 46 | +------ |
| 47 | + |
| 48 | +- Added new documentation in README that should better help users understand this plugin. |
| 49 | +- Added new instance method `root_comments` that will return all comments belonging to a model except child comments. |
| 50 | +- Added new class method for Comment: `self.build_from(object, user_id, comment_text:string)`. This method cleans up the code inside the controllers. |
| 51 | +- Added new class method for Comment: `has_children?` that will return true or false depending on if a comment has children. |
| 52 | +- Updated deprecated code in instance method `comments_ordered_by_submitted` - changed `self.type.name` to `self.class.name`. |
| 53 | + |
| 54 | +v0.1.1 |
| 55 | +------ |
| 56 | + |
| 57 | +- Fixes to gemspec. |
| 58 | + |
| 59 | +v0.1.0 |
| 60 | +------ |
| 61 | + |
| 62 | +- Initial Release. |
0 commit comments