Skip to content

Commit

Permalink
Merge 4.x into 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI authored Feb 25, 2025
2 parents edd9e02 + 777ae3e commit 919c3e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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.16.0](https://github.com/sonata-project/SonataMediaBundle/compare/4.15.0...4.16.0) - 2025-02-24
### Changed
- [[#2476](https://github.com/sonata-project/SonataMediaBundle/pull/2476)] Use BIGINT for Media::$contentSize ([@OskarStark](https://github.com/OskarStark))

## [4.15.0](https://github.com/sonata-project/SonataMediaBundle/compare/4.14.1...4.15.0) - 2024-11-14
### Added
- [[#2466](https://github.com/sonata-project/SonataMediaBundle/pull/2466)] Slovak translations ([@fbuchlak](https://github.com/fbuchlak))
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/doctrine/BaseMedia.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<field name="height" column="height" type="integer" nullable="true"/>
<field name="length" column="length" type="decimal" nullable="true" precision="10"/>
<field name="contentType" column="content_type" type="string" nullable="true" length="255"/>
<field name="size" column="content_size" type="integer" nullable="true"/>
<field name="size" column="content_size" type="bigint" nullable="true"/>
<field name="copyright" column="copyright" type="string" nullable="true"/>
<field name="authorName" column="author_name" type="string" nullable="true"/>
<field name="context" column="context" type="string" nullable="true" length="64"/>
Expand Down

0 comments on commit 919c3e0

Please sign in to comment.