Skip to content

Commit 73eac8e

Browse files
committed
REF #35684 update linodeLogo, whats new text, and links to book 5
1 parent eb91109 commit 73eac8e

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

config/routes.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
$routes->connect('/business-solutions', ['controller' => 'Pages', 'action' => 'display', 'business-solutions']);
9393
$routes->connect('/roadtrip', ['controller' => 'Pages', 'action' => 'display', 'road_trip']);
9494

95-
$routes->redirect('/pages/documentation', 'http://book.cakephp.org/4');
96-
$routes->redirect('/documentation', 'http://book.cakephp.org/4');
95+
$routes->redirect('/pages/documentation', 'http://book.cakephp.org/5');
96+
$routes->redirect('/documentation', 'http://book.cakephp.org/5');
9797
$routes->connect('/changelogs', ['controller' => 'Changelogs', 'action' => 'index']);
9898
$routes->connect('/changelogs/*', ['controller' => 'Changelogs', 'action' => 'view']);
9999
$routes->redirect('/development', ['controller' => 'Pages', 'action' => 'display', 'business-solutions']);

config/site.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
],
174174
'documentation' => [
175175
'book' => [
176-
'url' => 'https://book.cakephp.org/4',
176+
'url' => 'https://book.cakephp.org/5',
177177
'title' => __('Book'),
178178
],
179179
'api' => [
@@ -190,7 +190,7 @@
190190
'title' => __('Videos'),
191191
],
192192
'security' => [
193-
'url' => 'https://book.cakephp.org/4.0/en/contributing/tickets.html#reporting-security-issues',
193+
'url' => 'https://book.cakephp.org/5/en/contributing/tickets.html#reporting-security-issues',
194194
'title' => __('Reporting Security Issues'),
195195
],
196196
'privacy' => [
@@ -253,7 +253,7 @@
253253
],
254254
[
255255
'name' => 'Linode',
256-
'logo' => ['img' => '/images/companies/logos/sponsors/linode.jpg'],
256+
'logo' => ['img' => '/images/companies/logos/sponsors/linodeLogo.svg'],
257257
'copy' => ['text' => '<a href="https://www.linode.com/" target="_blank">Linode</a> is the largest independent open cloud provider in the world with 10 global data centers serving over 800,000 customers and businesses around the globe. Linode products, services, and people enable developers and businesses to build, deploy, and scale applications more easily and cost-effectively in the cloud.', 'style' => ''],
258258
'link' => 'https://www.linode.com/',
259259
'img' => ['alt' => 'Linode'],

templates/element/home/whats_new.php

+12-11
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,23 @@
1010
</div>
1111
<div class="description">
1212
<div class="mb50 mt50">
13-
<h2>What's new in version</h2>
14-
<p>The migration guide has a complete list of what's new in. We recommend you give that page a read when upgrading. A few highlights from 4.4.0 are:
13+
<h2><?= __("What's new in version") ?></h2>
14+
<p><?= __("The migration guide has a complete list of what's new in. We recommend you give that page a read when upgrading. A few highlights from 5.0 are:") ?>
1515
<ul>
16-
<li> A new Error and Exception handling framework that is easier to extend and requires less application code to operate. </li>
17-
<li> Controller::viewClasses() was added. This method enables controllers to take control of what content-types they can respond as. </li>
18-
<li> The QueryExpression::case() builder now supports inferring the type from expressions passed to then() and else() that implement \Cake\Database\TypedResultInterface. </li>
19-
<li> HttpsEnforcerMiddleware now has an hsts option that allows you to configure the Strict-Transport-Security header. </li>
20-
<li> bin/cake routes now highlights collisions in route templates. </li>
21-
<li> The RedisEngine now supports fast deletes with deleteAsync(). </li>
16+
<li><?= __('PHP 8.1 required.') ?></li>
17+
<li><?= __('Improved typehints across the framework. CakePHP now leverages union types to formalize the types of many parameters across the framework.') ?></li>
18+
<li><?= __('Upgraded to PHPUnit 10.x') ?></li>
19+
<li><?= __('New enum type mapping support in the ORM enabling more expressive model layers with improved type checking.') ?></li>
20+
<li><?= __('Table finders with named parameters, providing more expressive query building APIs.') ?></li>
21+
<li><?= __('Added time-only Time type and greatly improved Date and DateTime support via chronos 3.x.') ?></li>
22+
<li><?= __('Support for PSR17 HTTP factories was added.') ?></li>
2223
</ul>
2324
<p>
24-
While CakePHP 4 contains a number of breaking changes we have prepared an exhaustive migration guide
25-
covering all the deprecated and removed features as well as highlighting the shiny new features.
25+
<?= __('While CakePHP 5 contains a number of breaking changes we have prepared an exhaustive migration guide
26+
covering all the deprecated and removed features as well as highlighting the shiny new features.') ?>
2627
</p>
2728
<div>
28-
<a href="https://book.cakephp.org/4/en/appendices/4-4-migration-guide.html" class="btn btn-home">Learn more</a>
29+
<a href="https://book.cakephp.org/5/en/appendices/5-0-migration-guide.html" class="btn btn-home">Learn more</a>
2930
</div>
3031
</div>
3132
</div>
Loading

0 commit comments

Comments
 (0)