Skip to content
Merged
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
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# Changelog

## Unreleased
## [0.2.1] - 2025-12-07

- fix - event when the boolean `must_store_when_generating_url` option is set to `true`, the media is not stored when generating a URL using the twig `joli_media_url` filter
- fix - even when the boolean `must_store_when_generating_url` option is set to `true`, the media is not stored when generating a URL using the twig `joli_media_url` filter

## [0.2.0] - 2024-12-01
## [0.2.0] - 2025-12-01

- feature - added pagination to admin bridges media lists
- fix - Symfony 8.0 compatibility

## [0.1.4] - 2024-11-23
## [0.1.4] - 2025-11-23

- fix - do not trigger an error when no library is defined

## [0.1.3] - 2024-11-23
## [0.1.3] - 2025-11-23

- fix - `Request::get()` deprecation
- fix - no exception when rendering a non resolved media
- fix - view mode switch in EA bridge
- fix - have the bundle work correctly when optional dependencies are not installed

## [0.1.2] - 2024-11-20
## [0.1.2] - 2025-11-20

- feature - support for Symfony 8.0
- feature - demo application to showcase the bundle features
Expand Down Expand Up @@ -62,3 +62,4 @@ This is the initial release of the bundle.
[0.1.3]: https://github.com/jolicode/mediabundle/releases/tag/v0.1.3
[0.1.4]: https://github.com/jolicode/mediabundle/releases/tag/v0.1.4
[0.2.0]: https://github.com/jolicode/mediabundle/releases/tag/v0.2.0
[0.2.1]: https://github.com/jolicode/mediabundle/releases/tag/v0.2.1
26 changes: 13 additions & 13 deletions demo/application/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/doctrine-migrations-bundle": "^3.7",
"easycorp/easyadmin-bundle": "^4.27.3",
"easycorp/easyadmin-bundle": "^4.27.4",
"fakerphp/faker": "^1.24.1",
"imagine/imagine": "^1.5",
"jolicode/media-bundle": "^0.1.2",
"nikic/php-parser": "^5.6.2",
"jolicode/media-bundle": "^0.2.0",
"nikic/php-parser": "^5.7.0",
"sonata-project/doctrine-orm-admin-bundle": "^4.19",
"stof/doctrine-extensions-bundle": "^1.14",
"symfony/console": "7.3.*",
"symfony/dotenv": "7.3.*",
"symfony/console": "7.4.*",
"symfony/dotenv": "7.4.*",
"symfony/flex": "^2.10",
"symfony/framework-bundle": "7.3.*",
"symfony/runtime": "7.3.*",
"symfony/yaml": "7.3.*"
"symfony/framework-bundle": "7.4.*",
"symfony/runtime": "7.4.*",
"symfony/yaml": "7.4.*"
},
"config": {
"allow-plugins": {
Expand Down Expand Up @@ -69,13 +69,13 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.3.*"
"require": "7.4.*"
}
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^4.3",
"symfony/debug-bundle": "7.3.*",
"symfony/maker-bundle": "^1.64",
"symfony/web-profiler-bundle": "7.3.*"
"doctrine/doctrine-fixtures-bundle": "^4.3.1",
"symfony/debug-bundle": "7.4.*",
"symfony/maker-bundle": "^1.65.1",
"symfony/web-profiler-bundle": "7.4.*"
}
}
Loading