Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for symfony 5 #622

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ jobs:
allowed-to-fail: false
symfony-require: 4.4.*
variant: 'symfony/symfony:"4.4.*"'
- php-version: '8.0'
dependencies: highest
allowed-to-fail: false
symfony-require: 5.3.*
variant: 'symfony/symfony:"5.3.*"'
- php-version: '8.0'
dependencies: highest
allowed-to-fail: false
symfony-require: 5.4.*
variant: 'symfony/symfony:"5.4.*"'

steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.6.1](https://github.com/sonata-project/SonataFormatterBundle/compare/4.6.0...4.6.1) - 2021-09-14
### Fixed
- [[#607](https://github.com/sonata-project/SonataFormatterBundle/pull/607)] Fix `sonata.formatter.block.formatter` service registration ([@core23](https://github.com/core23))

## [4.6.0](https://github.com/sonata-project/SonataFormatterBundle/compare/4.5.0...4.6.0) - 2021-09-13
### Added
- [[#506](https://github.com/sonata-project/SonataFormatterBundle/pull/506)] Add support for `sonata-project/block-bundle` 4.x ([@core23](https://github.com/core23))
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@
"psr/log": "^1.0",
"sonata-project/block-bundle": "^3.18.4 || ^4.0",
"sonata-project/form-extensions": "^0.1 || ^1.4",
"symfony/config": "^4.4",
"symfony/dependency-injection": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/form": "^4.4",
"symfony/framework-bundle": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4",
"symfony/options-resolver": "^4.4 || ^5.1",
"symfony/property-access": "^4.4 || ^5.1",
"symfony/translation": "^4.4",
"symfony/twig-bridge": "^4.4",
"symfony/validator": "^4.4 || ^5.1",
"twig/twig": "^2.12.1"
"symfony/config": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/event-dispatcher": "^4.4 || ^5.3",
"symfony/form": "^4.4 || ^5.3",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/http-foundation": "^4.4 || ^5.3",
"symfony/http-kernel": "^4.4 || ^5.3",
"symfony/options-resolver": "^4.4 || ^5.3",
"symfony/property-access": "^4.4 || ^5.3",
"symfony/translation": "^4.4 || ^5.3",
"symfony/twig-bridge": "^4.4 || ^5.3",
"symfony/validator": "^4.4 || ^5.3",
"twig/twig": "^2.12.1 || ^3.0"
},
"conflict": {
"sonata-project/admin-bundle": "<3.34",
Expand Down