Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions en/appendices/5-4-migration-guide.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
5.4 Migration Guide
###################

The 5.4.0 release is a backwards compatible with 5.0. It adds new functionality
Comment thread
josbeir marked this conversation as resolved.
Outdated
and introduces new deprecations. Any functionality deprecated in 5.x will be
removed in 6.0.0.

Upgrade Tool
============

The :doc:`upgrade tool </appendices/migration-guides>` provides rector rules for
automating some of the migration work. Run rector before updating your
``composer.json`` dependencies::

bin/cake upgrade rector --rules cakephp54 <path/to/app/src>

Behavior Changes
================

- WIP

Deprecations
============

- WIP

New Features
============

Utility
-------

- New ``Cake\Utility\Fs\Finder`` class provides a fluent, iterator-based API for
discovering files and directories with support for pattern matching, depth
control, and custom filters. The ``Cake\Utility\Fs\Path`` class offers
cross-platform utilities for path manipulation.
Loading