Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Sep 4, 2019
1 parent 8ba65aa commit 7dd8be6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.9.0](https://github.com/sonata-project/SonataNewsBundle/compare/3.8.0...3.9.0) - 2019-09-02
### Added
- Add missing `twig/twig` required in `composer.json` with versions `^1.35 || ^2.4`
- Added events to the comment process

### Fixed
- deprecation notice about using namespaced classes from `\Twig\`

### Changed
- Trigger an error if a class declaration is missing in the configuration
- Improved support for different db drivers

## [3.8.0](https://github.com/sonata-project/SonataNewsBundle/compare/3.7.0...3.8.0) - 2019-01-27
### Fixed
- CoreBundle deprecations
Expand Down
2 changes: 1 addition & 1 deletion src/Action/CreateCommentAction.php
Expand Up @@ -91,7 +91,7 @@ public function __construct(

if (null === $this->eventDispatcher) {
@trigger_error(sprintf(
'Not providing an event dispatcher to %s is deprecated since sonata-project/news-bundle 3.x',
'Not providing an event dispatcher to %s is deprecated since sonata-project/news-bundle 3.9',
__CLASS__
), E_USER_DEPRECATED);
}
Expand Down

0 comments on commit 7dd8be6

Please sign in to comment.