-
-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDO_SQLITE version #1833
Comments
Tryed to upgrade pdo_sqlite on my own without success. |
With AL2023 this will be solved because provides a more recent version of sqlite-devel |
Yes AL2023 would come with dependency updates, however this will be a major version change for Bref (or at least an opt-in change). Having sqlite work today (with current layers) is definitely something we want. It should work, it's interesting that you're facing issues 🤔 Do you know what specific query causes the problem? |
Should be fixed by 2.3.2, this was also necessary to support Laravel 11. |
Its possible to upgrade pdo_sqlite version in bref docker images?
Seems that installed version of pdo_sqlite in bref docker images are too old (3.7.17)
I'm encountering following error with phpunit tests
Trying in my host machine works because I have a more recent version of pdo_sqlite (3.46.0)
Sample dockerfile
Command to print pdo_sqlite version
php -r 'echo "SQLite version: " . SQLite3::version()["versionString"] . PHP_EOL;'
The text was updated successfully, but these errors were encountered: