prooph / pdo-event-store

PDO implementation of ProophEventStore http://getprooph.org
BSD 3-Clause "New" or "Revised" License
111 stars 56 forks source link

Allow int return values from GET_LOCK MySQL function #239

Closed rmbl closed 2 years ago

rmbl commented 2 years ago

After updating our application to PHP 8.1 and updating our dependencies, all functions that tried to save our event store models failed because of a failure to get a lock. It seems like either the PHP update or an update of a doctrine library changed the return value of the GET_LOCK MySQL function to return int instead of a string.

prolic commented 2 years ago

We don't use doctrine :-p

rmbl commented 2 years ago

shit. true :)

guess it was the update to php 8.1 then

prolic commented 2 years ago

released https://github.com/prooph/pdo-event-store/releases/tag/v1.14.1

thank you!

rmbl commented 2 years ago

thank you for the quick review and release!