Skip to content

Commit 800a39a

Browse files
committed
docs: add user guide
1 parent 35acce4 commit 800a39a

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

user_guide_src/source/changelogs/v4.5.0.rst

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,20 @@ Changes
443443
Deprecations
444444
************
445445

446-
- **CodeIgniter:** The ``determinePath()`` method has been deprecated. No longer
447-
used.
446+
- **CodeIgniter:**
447+
- The ``determinePath()`` method has been deprecated. No longer used.
448+
- The ``resolvePlatformExtensions()`` method has been deprecated. No longer
449+
used. It has been moved to the ``CodeIgniter\Boot::checkMissingExtensions()``
450+
method.
451+
- The ``bootstrapEnvironment()`` method has been deprecated. No longer used.
452+
It has been moved to the ``CodeIgniter\Boot::loadEnvironmentBootstrap()``
453+
method.
454+
- The ``initializeKint()`` method has been deprecated. No longer used. It has
455+
been moved to the ``Autoloader``.
456+
- The ``autoloadKint()`` method has been deprecated. No longer used. It has
457+
been moved to the ``Autoloader``.
458+
- The ``configureKint()`` method has been deprecated. No longer used. It has
459+
been moved to the ``Autoloader``.
448460
- **Response:** The constructor parameter ``$config`` has been deprecated. No
449461
longer used.
450462
- **Filters:**

user_guide_src/source/installation/upgrade_450.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,26 @@ Please refer to the upgrade instructions corresponding to your installation meth
1515
Mandatory File Changes
1616
**********************
1717

18+
index.php and spark
19+
===================
20+
21+
The following files received significant changes and
22+
**you must merge the updated versions** with your application:
23+
24+
- ``public/index.php``
25+
- ``spark``
26+
27+
.. important:: If you don't update the above files, CodeIgniter will not work
28+
properly after running ``composer update``.
29+
30+
The upgrade procedure, for example, is as follows:
31+
32+
.. code-block:: console
33+
34+
composer update
35+
cp vendor/codeigniter4/framework/public/index.php public/index.php
36+
cp vendor/codeigniter4/framework/spark spark
37+
1838
Breaking Changes
1939
****************
2040

0 commit comments

Comments
 (0)