Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 2.43 KB

File metadata and controls

76 lines (54 loc) · 2.43 KB

Upgrading from 4.7.0 to 4.7.1

Please refer to the upgrade instructions corresponding to your installation method.

If you are using Worker Mode, you must update public/frankenphp-worker.php after upgrading. The easiest way is to re-run the install command:

php spark worker:install --force

BaseConnection now casts string values coming from .env overrides to match the declared type of each connection property. This affects properties that are null in the config array and then set via .env - such as SQLite3's synchronous or busyTimeout - which previously arrived as strings and were stored without conversion.

If you extended the SQLite3 handler, review your custom typed properties and update them if needed.

Some files in the project space (root, app, public, writable) received updates. Due to these files being outside of the system scope they will not be changed without your intervention.

Note

There are some third-party CodeIgniter modules available to assist with merging changes to the project space: Explore on Packagist.

The following files received significant changes (including deprecations or visual adjustments) and it is recommended that you merge the updated versions with your application:

Config

This is a list of all files in the project space that received changes; many will be simple comments or formatting that have no effect on the runtime:

  • app/Config/Database.php
  • app/Config/WorkerMode.php