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 13, 2023
1 parent bbb4a1f commit 8c2df75
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 @@ -35,6 +35,7 @@ Others
have been fixed to ``void`` to follow the PSR-3 interface.
- **Autoloader:** The prefix ``\`` in the fully qualified classname returned by
``FileLocator::findQualifiedNameFromPath()`` has been removed.
- **BaseModel:** The ``getIdValue()`` method has been changed to ``abstract``.

Interface Changes
=================
Expand Down Expand Up @@ -85,6 +86,14 @@ Others

- **Config:** The deprecated ``CodeIgniter\Config\Config`` class has been removed.

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 @@ -80,6 +80,14 @@ Qualified Classnames with a leading ``\``. Now the leading ``\`` has been remove

If you have code that expects a leading ``\``, fix it.

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 8c2df75

Please sign in to comment.