Skip to content

Commit c19d572

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: Remove space before self closing xml tag Added the missing "experimental" notices in some components use Cookie::create()
2 parents e5b235a + b2885ea commit c19d572

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

components/http_client.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The HttpClient Component
1111

1212
.. versionadded:: 4.3
1313

14-
The HttpClient component was introduced in Symfony 4.3.
14+
The HttpClient component was introduced in Symfony 4.3 and it's still
15+
considered an :doc:`experimental feature </contributing/code/experimental>`.
1516

1617
Installation
1718
------------

components/http_foundation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ attribute::
413413

414414
use Symfony\Component\HttpFoundation\Cookie;
415415

416-
$response->headers->setCookie(new Cookie('foo', 'bar'));
416+
$response->headers->setCookie(Cookie::create('foo', 'bar'));
417417

418418
The
419419
:method:`Symfony\\Component\\HttpFoundation\\ResponseHeaderBag::setCookie`

components/mailer.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ The Mailer Component
77

88
The Mailer component helps sending emails.
99

10+
.. versionadded:: 4.3
11+
12+
The Mailer component was introduced in Symfony 4.3 and it's still
13+
considered an :doc:`experimental feature </contributing/code/experimental>`.
14+
1015
Installation
1116
------------
1217

components/mime.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@
66
The Mime Component
77
==================
88

9-
The MIME component allows manipulating the MIME messages used to send emails
9+
The Mime component allows manipulating the MIME messages used to send emails
1010
and provides utilities related to MIME types.
1111

12+
.. versionadded:: 4.3
13+
14+
The Mime component was introduced in Symfony 4.3 and it's still
15+
considered an :doc:`experimental feature </contributing/code/experimental>`.
16+
1217
Installation
1318
------------
1419

components/phpunit_bridge.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ If you have installed the bridge through Composer, you can run it by calling e.g
649649

650650
It's possible to change the base version of PHPUnit by setting the
651651
``SYMFONY_PHPUNIT_VERSION`` env var in the ``phpunit.xml.dist`` file (e.g.
652-
``<server name="SYMFONY_PHPUNIT_VERSION" value="5.5" />``). This is the
652+
``<server name="SYMFONY_PHPUNIT_VERSION" value="5.5"/>``). This is the
653653
preferred method as it can be committed to your version control repository.
654654

655655
It's also possible to set ``SYMFONY_PHPUNIT_VERSION`` as a real env var

0 commit comments

Comments
 (0)