Skip to content
Merged
Changes from all commits
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
20 changes: 11 additions & 9 deletions templates/element/home/whats_new.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,22 @@
</div>
<div class="description">
<div class="mb50 mt50">
<h2><?= __("What's new in 5.2") ?></h2>
<p><?= __("The migration guide has a complete list of {0}. We recommend you give that page a read when upgrading. A few highlights from 5.2 are:",
$this->Html->link(__("what's new in 5.2"), 'https://book.cakephp.org/5/en/appendices/5-2-migration-guide.html')
<h2><?= __("What's new in 5.3") ?></h2>
<p><?= __("The migration guide has a complete list of {0}. We recommend you give that page a read when upgrading. A few highlights from 5.3 are:",
$this->Html->link(__("what's new in 5.3"), 'https://book.cakephp.org/5/en/appendices/5-3-migration-guide.html')
) ?>
</p>
<ul>
<li><?= __('New "counter_cache" command') ?></li>
<li><?= __('New "nativeuuid" database type') ?></li>
<li><?= __('Error handling customization using methods in "ErrorController"') ?></li>
<li><?= __('Helper method for generation importmap for JavaScript files') ?></li>
<li><?= __('Support for PHPUnit 12') ?></li>
<li><?= __('New "SelectQuery::projectAs()" for projecting query results into DTO') ?></li>
<li><?= __('New "#[Configure]" attribute and the "TableContainer" delegate for DIC') ?></li>
<li><?= __('New "RateLimitMiddleware"') ?></li>
<li><?= __('Added Redis Cluster support to "RedisEngine"') ?></li>
<li><?= __('Added support for additional column types in MySQL and Postgres.') ?></li>
<li><?= __('Added new events for the "Cache" package.') ?></li>
<li><?= __('Added new fluent builders for defining the "sortableFields" data of your pagination operations.') ?>
</ul>
<div>
<a href="https://book.cakephp.org/5/en/appendices/5-2-migration-guide.html" class="btn btn-home">Learn more</a>
<a href="https://book.cakephp.org/5/en/appendices/5-3-migration-guide.html" class="btn btn-home">Learn more</a>
</div>
</div>
</div>
Expand Down