1.0.0 to 1.1.0
Resources/Thread/comment.html.twighas changed, adding a rawBody option. This change is not relevant unless you are going to use RawComments- If you don't use the async template to render the comments, you will need to add a new variable defining the base url of the api:
var fos_comment_thread_api_base_url = 'http://example.org/api/threads';
var fos_comment_thread_id = 'my_thread_id';- A new method
ThreadManagerInterface#findThreadsBywas added. - A new method
ThreadManagerInterface#isNewThread()was added. ThreadInterface#setIsCommentablewas renamed toThreadInterface#setCommentable- A new method
CommentManagerInterface#isNewCommentwas added. - The html class
fos_comment_comment_formwas renamed tofos_comment_comment_new_form. Custom javascript implementations should be adjusted for this change. - A new method
CommentInterface#getStatewas added. - A new method
CommentInterface#setStatewas added. - A new method
CommentInterface#getPreviousStatewas added. - A new field was added to
Document\CommentandEntity\Comment. ORM users should update their schema.
0.9.2 to 1.0.0
-
You need to remove comment.js previously used by this bundle. async.html.twig now includes its own javascript file automatically.
-
There is now a dependency on FOSRestBundle. Check the installation documentation for details.
-
Routing has changed, you must replace your existing fos_comment route import to
fos_comment_api: type: rest resource: "@FOSCommentBundle/Resources/config/routing.yml" prefix: /comment/api
-
The way to include comments in a page has changed, importing an asynchronous javascript template into your page which will trigger an asynchronous load of a comment thread using the REST api.
{% include 'FOSCommentBundle:Thread:async.html.twig' with {'id': 'foo'} %}
2012-01-21
- Blamers, Creators and Spam Detection classes have been moved to an Event Dispatcher based set up. Documentation on how to use this feature is expected to be available with the release of v1.0.0
- CommentManager, ThreadManager and VoteManager's interfaces have changed slightly, renaming add*() methods to save*().
2011-08-10
- ORM: Column names like
createdAthave been changed to underscore delimited formatcreated_at. Schema update and cache clearance is required for migration.
2011-08-08
- Thread property
identifierhas been renamed toid - ORM: Comment property ancestors has been marked as not null and should default to an empty string
2011-07-31
- The supplied Thread classes are now mapped-superclasses, you must extend and implement an appropriate class from Entity/ or Document/ for your application and adjust your configuration accordingly.