Skip to content

Commit f76c297

Browse files
committed
Merge branch '3.next' into 3.0
Releasing documentation for 3.4.0
2 parents 8027ee5 + 17ad797 commit f76c297

File tree

164 files changed

+3209
-1571
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+3209
-1571
lines changed

config/all.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
# built documents.
4040
#
4141
# The short X.Y version.
42-
version = '3.x'
42+
version = '3.next'
4343

4444
# The full version, including alpha/beta/rc tags.
45-
release = '3.x'
45+
release = '3.next'
4646

4747
# There are two options for replacing |today|: either, you set today to some
4848
# non-false value, then it is used:
@@ -305,3 +305,7 @@
305305
from pygments.lexers.web import PhpLexer
306306

307307
lexers['phpinline'] = PhpLexer(startinline=True)
308+
309+
rst_epilog = """
310+
.. |minphpversion| replace:: 5.6.0
311+
"""

en/appendices/3-3-migration-guide.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Deprecations
1414
* ``Router::parseNamedParams()`` is deprecated. Named parameter backwards
1515
compatibility will be removed in 4.0.0
1616
* ``Cake\Http\Client\Response`` has had the following methods deprecated because they
17-
overlap with PSR7 interface methods:
17+
overlap with PSR-7 interface methods:
1818

1919
* ``statusCode()`` use ``getStatusCode()`` instead.
2020
* ``encoding()`` use ``getEncoding()`` instead.
@@ -48,10 +48,10 @@ behavior that may effect your application:
4848
behavior was a bug as the entity's original state should not be retained after
4949
a save, but instead reflect the new state of the entity.
5050

51-
PSR7 Middleware Support Added
52-
=============================
51+
PSR-7 Middleware Support Added
52+
==============================
5353

54-
In tandem with the deprecation of Dispatcher Filters, support for PSR7
54+
In tandem with the deprecation of Dispatcher Filters, support for PSR-7
5555
middleware has been added. Middleware is part of the new HTTP stack that is an
5656
opt-in component of CakePHP 3.3.0. By using the new HTTP stack, you can take
5757
advantage of features like:
@@ -66,12 +66,12 @@ See the :doc:`/controllers/middleware` chapter and :ref:`adding-http-stack`
6666
sections for more information and how to add the new HTTP stack to an existing
6767
application.
6868

69-
Http Client is now PSR7 Compatible
70-
==================================
69+
Http Client is now PSR-7 Compatible
70+
===================================
7171

7272
``Cake\Network\Http\Client`` has been moved to ``Cake\Http\Client``. Its request
7373
and response objects now implement the
74-
`PSR7 interfaces <http://www.php-fig.org/psr/psr-7/>`__. Several methods on
74+
`PSR-7 interfaces <http://www.php-fig.org/psr/psr-7/>`__. Several methods on
7575
``Cake\Http\Client\Response`` are now deprecated, see above for more
7676
information.
7777

@@ -154,7 +154,7 @@ Routing
154154

155155
* ``Router::parse()``, ``RouteCollection::parse()`` and ``Route::parse()`` had
156156
a ``$method`` argument added. It defaults to 'GET'. This new parameter reduces
157-
reliance on global state, and necessary for the PSR7 work integration to be
157+
reliance on global state, and necessary for the PSR-7 work integration to be
158158
done.
159159
* When building resource routes, you can now define a prefix. This is useful
160160
when defining nested resources as you can create specialized controllers for

0 commit comments

Comments
 (0)