Skip to content

Commit 2c387e1

Browse files
authored
Merge pull request #7133 from kenjis/fix-docs-changelogs-40-41
docs: improve changelogs 4.0.x and 4.1.x
2 parents 1ee9b5c + 8a9d781 commit 2c387e1

11 files changed

Lines changed: 53 additions & 14 deletions

File tree

user_guide_src/source/changelogs/v4.0.3.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@ Bugs Fixed
3131
- Default pagination templates fixed to use the correct locale.
3232
- Lots of tweaks and corrections in the user guide.
3333
- Fixed locating files in custom namespaces that were occassionally not found. Primarily affected console commands.
34+
35+
See the repo's
36+
`CHANGELOG_4.0.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.0.md>`_
37+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.0.4.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ Bugs Fixed
6565
- Ensure get translation output logic work on selected locale, dashed locale, and fallback "en".
6666
- Fix ``is_unique``/``is_not_unique`` validation called on POST/PUT via API in PostgreSQL.
6767
- Fixed a bug where filter arguments were not passed to ``after()``.
68+
69+
See the repo's
70+
`CHANGELOG_4.0.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.0.md>`_
71+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.0.5.rst

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ Changes
2626

2727
- System messages defined in **system/Language/en/** are now strictly for internal framework use and are not covered by backwards compatibility (BC) promise. Users may use these messages in their applications but at their own risks.
2828

29-
Bugs Fixed
30-
----------
31-
32-
- Fixed a bug in ``Entity`` class where declaring class parameters was preventing data propagation to the ``attributes`` array.
33-
- Handling for the environment variable ``encryption.key`` has changed. Previously, explicit function calls, like ``getenv('encryption.key')`` or ``env('encryption.key')`` where the value has the special prefix ``hex2bin:`` returns an automatically converted binary string. This is now changed to just return the character string with the prefix. This change was due to incompatibility with handling binary strings in environment variables on Windows platforms. However, accessing ``$key`` using ``Encryption`` class config remains unchanged and still returns a binary string.
34-
- ``Config\Services`` (in **app/Config/Services.php**) now extends ``CodeIgniter\Config\BaseService`` to allow proper discovery of third-party services.
35-
3629
Deprecations
3730
------------
3831

@@ -55,3 +48,14 @@ Deprecations
5548
- Deprecated ``CodeIgniter\HTTP\Message::getHeader()`` in favor of ``header()`` to prepare for PSR-7
5649
- Deprecated ``CodeIgniter\HTTP\Message::getHeaders()`` in favor of ``headers()`` to prepare for PSR-7
5750
- Deprecated ``Config\Cache::$storePath`` in favor of ``Config\Cache::$file['storePath']``
51+
52+
Bugs Fixed
53+
----------
54+
55+
- Fixed a bug in ``Entity`` class where declaring class parameters was preventing data propagation to the ``attributes`` array.
56+
- Handling for the environment variable ``encryption.key`` has changed. Previously, explicit function calls, like ``getenv('encryption.key')`` or ``env('encryption.key')`` where the value has the special prefix ``hex2bin:`` returns an automatically converted binary string. This is now changed to just return the character string with the prefix. This change was due to incompatibility with handling binary strings in environment variables on Windows platforms. However, accessing ``$key`` using ``Encryption`` class config remains unchanged and still returns a binary string.
57+
- ``Config\Services`` (in **app/Config/Services.php**) now extends ``CodeIgniter\Config\BaseService`` to allow proper discovery of third-party services.
58+
59+
See the repo's
60+
`CHANGELOG_4.0.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.0.md>`_
61+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.0.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,10 @@ Deprecations
2323
************
2424

2525
- Deprecated ``Model::fillPlaceholders()`` method, use ``Validation::fillPlaceholders()`` instead.
26+
27+
Bugs Fixed
28+
**********
29+
30+
See the repo's
31+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
32+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.1.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ Bugs Fixed
1515
- Fixed an issue where ``.gitattributes`` was preventing framework downloads.
1616

1717
Note that this fix was also applied retroactively to ``4.0.5`` on the **framework** repo.
18+
19+
See the repo's
20+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
21+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.2.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ Deprecations
6464
Bugs Fixed
6565
----------
6666

67-
See the repo's `CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_ for a complete list of bugs fixed.
68-
6967
- ``BaseConnection::query()`` now returns ``false`` for failed queries (unless ``DBDebug==true``, in which case an exception will be thrown) and returns boolean values for write-type queries as specified in the docs.
68+
69+
See the repo's
70+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
71+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.3.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ Bugs Fixed
3030
- Fixed a bug where CLI mode was not detected under ``cgi-fcgi``
3131
- Fixed a logic bug in Cookie construction
3232
- Fixed numerous issues in SQLite3's ``Forge`` class related to an incorrect attribute name
33+
34+
See the repo's
35+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
36+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.4.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Release Date: September 6, 2021
1212
This release focuses on code style. All changes (except those noted below) are cosmetic to bring the code in line with the new
1313
`CodeIgniter Coding Standard <https://github.com/CodeIgniter/coding-standard>`_ (based on PSR-12).
1414

15-
Breaking Changes
16-
----------------
15+
BREAKING
16+
--------
1717

1818
- The following methods were changed from "public" to "protected" to match their parent class methods and better align with their uses:
1919

@@ -57,3 +57,7 @@ Breaking Changes
5757
* ``CodeIgniter\Session\Handlers\FileHandler``
5858
* ``CodeIgniter\Session\Handlers\MemcachedHandler``
5959
* ``CodeIgniter\Session\Handlers\RedisHandler``
60+
61+
See the repo's
62+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
63+
for a complete list of changes.

user_guide_src/source/changelogs/v4.1.5.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,6 @@ Deprecations
4545
Bugs Fixed
4646
==========
4747

48-
See the repo's `CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_ for a complete list of bugs fixed.
48+
See the repo's
49+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
50+
for a complete list of bugs fixed.

user_guide_src/source/changelogs/v4.1.6.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ And the following methods are deprecated:
6868
Bugs Fixed
6969
**********
7070

71-
See the repo's `CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_ for a complete list of bugs fixed.
71+
See the repo's
72+
`CHANGELOG_4.1.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/changelogs/CHANGELOG_4.1.md>`_
73+
for a complete list of bugs fixed.

0 commit comments

Comments
 (0)