|
| 1 | +############################## |
| 2 | +Upgrading from 4.3.1 to 4.3.2 |
| 3 | +############################## |
| 4 | + |
| 5 | +Please refer to the upgrade instructions corresponding to your installation method. |
| 6 | + |
| 7 | +- :ref:`Composer Installation App Starter Upgrading <app-starter-upgrading>` |
| 8 | +- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading <adding-codeigniter4-upgrading>` |
| 9 | +- :ref:`Manual Installation Upgrading <installing-manual-upgrading>` |
| 10 | + |
| 11 | +.. contents:: |
| 12 | + :local: |
| 13 | + :depth: 2 |
| 14 | + |
| 15 | +Breaking Changes |
| 16 | +**************** |
| 17 | + |
| 18 | +base_url() |
| 19 | +========== |
| 20 | + |
| 21 | +The :php:func:`base_url()` behavior has been fix. In previous versions, when you |
| 22 | +call ``base_url()`` **without argument**, it returned baseURL without a trailing |
| 23 | +slash (``/``). Now it returns baseURL with a trailing slash. For example: |
| 24 | + |
| 25 | +- before: ``http://example.com`` |
| 26 | +- after: ``http://example.com/`` |
| 27 | + |
| 28 | +If you have code to call ``base_url()`` without argument, you may need to adjust the URLs. |
| 29 | + |
| 30 | +Project Files |
| 31 | +************* |
| 32 | + |
| 33 | +Some files in the **project space** (root, app, public, writable) received updates. Due to |
| 34 | +these files being outside of the **system** scope they will not be changed without your intervention. |
| 35 | + |
| 36 | +There are some third-party CodeIgniter modules available to assist with merging changes to |
| 37 | +the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_. |
| 38 | + |
| 39 | +Content Changes |
| 40 | +=============== |
| 41 | + |
| 42 | +The following files received significant changes (including deprecations or visual adjustments) |
| 43 | +and it is recommended that you merge the updated versions with your application: |
| 44 | + |
| 45 | +Config |
| 46 | +------ |
| 47 | + |
| 48 | +- @TODO |
| 49 | + |
| 50 | +All Changes |
| 51 | +=========== |
| 52 | + |
| 53 | +This is a list of all files in the **project space** that received changes; |
| 54 | +many will be simple comments or formatting that have no effect on the runtime: |
| 55 | + |
| 56 | +- @TODO |
0 commit comments