spatie / laravel-medialibrary

Associate files with Eloquent models
https://spatie.be/docs/laravel-medialibrary
MIT License
5.74k stars 1.07k forks source link

[11.x] Support spatie/pdf-to-image v3 #3633

Closed Jubeki closed 3 months ago

Jubeki commented 3 months ago

With the release of spatie/pdf-to-image v3, the spatie media library is no longer compatible with the current implementation.

This PR makes a breaking change by needing v3 instead of v2 and using the corresponding new methods.

freekmurze commented 3 months ago

I think creating a new major simply for updating the dependency might be a much.

Could you allow for both v2 and v3 to be installed? In code, we should check which version is installed (you can do that with the InstalledVersions class from Composer, and then call the right methods for that version.

This way we can support v3 without making breaking changes.

Jubeki commented 3 months ago

@freekmurze yeah, will do that!

Jubeki commented 3 months ago

@freekmurze Do you want a new test workflow for testing v2 and v3 or do you want it with a matrix like I is now?

freekmurze commented 3 months ago

Like now is fine. Prefer-lowest will pull in v2, prefer-stable v3. That's good enough for me!

freekmurze commented 3 months ago

Thank you!