Skip to content

Commit 8c33b5d

Browse files
committed
docs: add docs
1 parent 745a93d commit 8c33b5d

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

user_guide_src/source/changelogs/v4.4.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Message Changes
7474
Changes
7575
*******
7676

77+
- **Config:** The deprecated Cookie items in **app/Config/App.php** has been removed.
7778
- **DownloadResponse:** When generating response headers, does not replace the ``Content-Disposition`` header if it was previously specified.
7879

7980
Deprecations
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
##############################
2+
Upgrading from 4.3.x to 4.4.0
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+
Mandatory File Changes
19+
**********************
20+
21+
Config Files
22+
============
23+
24+
app/Config/Cookie.php
25+
---------------------
26+
27+
The Cookie config items in **app/Config/App.php** are no longer used.
28+
29+
1. Copy **app/Config/Cookie.php** from the new framework to your **app/Config**
30+
directory, and configure it.
31+
2. Remove the properties (from ``$cookiePrefix`` to ``$cookieSameSite``) in
32+
**app/Config/App.php**.
33+
34+
Breaking Enhancements
35+
*********************
36+
37+
Project Files
38+
*************
39+
40+
Some files in the **project space** (root, app, public, writable) received updates. Due to
41+
these files being outside of the **system** scope they will not be changed without your intervention.
42+
43+
There are some third-party CodeIgniter modules available to assist with merging changes to
44+
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
45+
46+
Content Changes
47+
===============
48+
49+
The following files received significant changes (including deprecations or visual adjustments)
50+
and it is recommended that you merge the updated versions with your application:
51+
52+
Config
53+
------
54+
55+
- @TODO
56+
57+
All Changes
58+
===========
59+
60+
This is a list of all files in the **project space** that received changes;
61+
many will be simple comments or formatting that have no effect on the runtime:
62+
63+
- @TODO

user_guide_src/source/installation/upgrading.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ See also :doc:`./backward_compatibility_notes`.
1616

1717
backward_compatibility_notes
1818

19+
upgrade_440
1920
upgrade_432
2021
upgrade_431
2122
upgrade_430

0 commit comments

Comments
 (0)