Skip to content

Commit

Permalink
docs: add changelog and upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Oct 12, 2023
1 parent 4a2c6bb commit b3828fb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions user_guide_src/source/changelogs/v4.5.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Others
- **Logger:** The :php:func:`log_message()` function and the logger methods in
``CodeIgniter\Log\Logger`` now do not return ``bool`` values. The return types
have been fixed to ``void`` to follow the PSR-3 interface.
- **BaseModel:** The ``getIdValue()`` method has been changed to ``abstract``.

Interface Changes
=================
Expand Down Expand Up @@ -78,6 +79,14 @@ Filters
- ``Router::$filterInfo``
- ``Router::getFilter()``

Model
-----

- ``BaseModel::idValue()``
- ``BaseModel::fillPlaceholders()``
- ``Model::idValue()``
- ``Model::classToArray()``

Enhancements
************

Expand Down
8 changes: 8 additions & 0 deletions user_guide_src/source/installation/upgrade_450.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ reversed.
Previous: route1 → route2 → filter1 → filter2
Now: route2 → route1 → filter2 → filter1

BaseModel::getIdValue()
=======================

The ``BaseModel::getIdValue()`` has been changed to ``abstract``, and the implementation
has been removed.

If you extneds ``BaseModel``, implement the ``getIdValue()`` method in the child class.

Removed Deprecated Items
========================

Expand Down

0 comments on commit b3828fb

Please sign in to comment.