Skip to content

Commit 0d70fb8

Browse files
committed
docs: add user guide
1 parent 8cd6f30 commit 0d70fb8

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
@@ -445,8 +445,20 @@ Changes
445445
Deprecations
446446
************
447447

448-
- **CodeIgniter:** The ``determinePath()`` method has been deprecated. No longer
449-
used.
448+
- **CodeIgniter:**
449+
- The ``determinePath()`` method has been deprecated. No longer used.
450+
- The ``resolvePlatformExtensions()`` method has been deprecated. No longer
451+
used. It has been moved to the ``CodeIgniter\Boot::checkMissingExtensions()``
452+
method.
453+
- The ``bootstrapEnvironment()`` method has been deprecated. No longer used.
454+
It has been moved to the ``CodeIgniter\Boot::loadEnvironmentBootstrap()``
455+
method.
456+
- The ``initializeKint()`` method has been deprecated. No longer used. It has
457+
been moved to the ``Autoloader``.
458+
- The ``autoloadKint()`` method has been deprecated. No longer used. It has
459+
been moved to the ``Autoloader``.
460+
- The ``configureKint()`` method has been deprecated. No longer used. It has
461+
been moved to the ``Autoloader``.
450462
- **Response:** The constructor parameter ``$config`` has been deprecated. No
451463
longer used.
452464
- **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)