You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bump project version to 1.1.0 and add the 1.1.0 changelog entry
for the repository ownership transition baseline
update pom metadata to CodecMediaLib, including organization,
SCM, issue tracker, and CI URLs for codecmedia-java
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.1.0] - 2026-03-13
9
+
10
+
### Changed
11
+
- Migrated repository ownership and project references to `CodecMediaLib/codecmedia-java`.
12
+
- Updated SCM/issue/CI metadata in [`pom.xml`](pom.xml).
13
+
- Updated organization metadata in [`pom.xml`](pom.xml) to `CodecMediaLib`.
14
+
15
+
### Notes
16
+
- This `1.1.0` release is a transition baseline and prepares for larger updates planned in the `1.1.*` series.
17
+
8
18
## [1.0.4] - 2026-03-05
9
19
10
20
### Added
11
21
- Added richer MOV probe fields in [`MovProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/mov/MovProbeInfo.java): `videoBitrateKbps`, `audioBitrateKbps`, `bitDepth`, and `displayAspectRatio`.
12
22
- Added richer MP4 probe fields in [`Mp4ProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/mp4/Mp4ProbeInfo.java): codec/audio stream details, frame rate, bitrate fields, bit depth, and display aspect ratio.
13
23
- Added richer WebM probe fields in [`WebmProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/webm/WebmProbeInfo.java): per-track bitrate fields and display aspect ratio.
24
+
- Added real fixture coverage in [`CodecMediaFacadeTest`](src/test/java/me/tamkungz/codecmedia/CodecMediaFacadeTest.java) for probe/strict-validate using files under [`src/test/resources/example`](src/test/resources/example).
25
+
- Added round-trip conversion test class [`CodecMediaRoundTripConversionTest`](src/test/java/me/tamkungz/codecmedia/CodecMediaRoundTripConversionTest.java) to validate same-extension convert->convert flows across all real example extensions (`mp3`, `mp4`, `png`, `webm`).
14
26
15
27
### Changed
16
28
- Enhanced MOV parsing in [`MovParser`](src/main/java/me/tamkungz/codecmedia/internal/video/mov/MovParser.java) with deeper BMFF track metadata extraction (`hdlr`, `mdhd`, `stsd`, `btrt`, `stsz`) and fallback bitrate estimation.
@@ -20,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
32
21
33
### Verified
22
34
- Confirmed test stability after video parser improvements with `mvn test`.
35
+
- Confirmed real-fixture conversion regression path with `mvn -Dtest=CodecMediaRoundTripConversionTest test`.
0 commit comments