Skip to content

Commit 0dd3276

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fixed all permanently redirected and broken URLs
2 parents 3421b1d + 45effbc commit 0dd3276

File tree

111 files changed

+357
-240
lines changed

Some content is hidden

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

111 files changed

+357
-240
lines changed

best_practices.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ You can even ignore them completely and continue using your own best practices
1010
and methodologies. Symfony is flexible enough to adapt to your needs.
1111

1212
This article assumes that you already have experience developing Symfony
13-
applications. If you don't, read first the rest of the `Symfony documentation`_.
13+
applications. If you don't, read first the :doc:`Getting Started </setup>`
14+
section of the documentation.
1415

1516
.. tip::
1617

@@ -440,7 +441,6 @@ That's why it's recommended to use raw URLs in tests instead of generating them
440441
from routes. Whenever a route changes, tests will break and you'll know that
441442
you must set up a redirection.
442443

443-
.. _`Symfony documentation`: https://symfony.com/doc
444444
.. _`Symfony Demo`: https://github.com/symfony/demo
445445
.. _`download Symfony`: https://symfony.com/download
446446
.. _`Composer`: https://getcomposer.org/

bundles/override.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,4 @@ For example, to override the translations defined in the
180180
``Resources/translations/FOSUserBundle.es.yml`` file of the FOSUserBundle,
181181
create a ``<your-project>/translations/FOSUserBundle.es.yml`` file.
182182

183-
.. _`the Doctrine documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/inheritance-mapping.html#overrides
183+
.. _`the Doctrine documentation`: https://www.doctrine-project.org/projects/doctrine-orm/en/current/reference/inheritance-mapping.html#overrides

components/cache.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Advanced Usage
201201

202202
cache/*
203203

204-
.. _`PSR-6`: http://www.php-fig.org/psr/psr-6/
204+
.. _`PSR-6`: https://www.php-fig.org/psr/psr-6/
205205
.. _`Cache Contracts`: https://github.com/symfony/contracts/blob/master/Cache/CacheInterface.php
206206
.. _`Stampede prevention`: https://en.wikipedia.org/wiki/Cache_stampede
207207
.. _Probabilistic early expiration: https://en.wikipedia.org/wiki/Cache_stampede#Probabilistic_early_expiration

components/cache/adapters/memcached_adapter.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ Available Options
292292
.. _`User Datagram Protocol (UDP)`: https://en.wikipedia.org/wiki/User_Datagram_Protocol
293293
.. _`no-delay`: https://en.wikipedia.org/wiki/TCP_NODELAY
294294
.. _`keep-alive`: https://en.wikipedia.org/wiki/Keepalive
295-
.. _`Memcached PHP extension`: http://php.net/manual/en/book.memcached.php
296-
.. _`predefined constants`: http://php.net/manual/en/memcached.constants.php
295+
.. _`Memcached PHP extension`: https://www.php.net/manual/en/book.memcached.php
296+
.. _`predefined constants`: https://www.php.net/manual/en/memcached.constants.php
297297
.. _`Memcached server`: https://memcached.org/
298-
.. _`Memcached`: http://php.net/manual/en/class.memcached.php
298+
.. _`Memcached`: https://www.php.net/manual/en/class.memcached.php
299299
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name

components/cache/adapters/pdo_doctrine_dbal_adapter.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
PDO & Doctrine DBAL Cache Adapter
88
=================================
99

10-
This adapter stores the cache items in an SQL database. It requires a `PDO`_,
10+
This adapter stores the cache items in an SQL database. It requires a :phpclass:`PDO`,
1111
`Doctrine DBAL Connection`_, or `Data Source Name (DSN)`_ as its first parameter, and
1212
optionally a namespace, default cache lifetime, and options array as its second,
1313
third, and forth parameters::
@@ -48,6 +48,5 @@ your code.
4848
allowing for manual :ref:`pruning of expired cache entries <component-cache-cache-pool-prune>` by
4949
calling its ``prune()`` method.
5050

51-
.. _`PDO`: http://php.net/manual/en/class.pdo.php
5251
.. _`Doctrine DBAL Connection`: https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Connection.php
5352
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name

components/cache/adapters/php_files_adapter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ directory path as constructor arguments::
6767
allowing for manual :ref:`pruning of expired cache entries <component-cache-cache-pool-prune>` by
6868
calling its ``prune()`` method.
6969

70-
.. _`OPcache`: http://php.net/manual/en/book.opcache.php
70+
.. _`OPcache`: https://www.php.net/manual/en/book.opcache.php

components/cache/adapters/proxy_adapter.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ and optionally a namespace and default cache lifetime as its second and third pa
3636
$defaultLifetime = 0
3737
);
3838

39-
.. _`PSR-6`: http://www.php-fig.org/psr/psr-6/
40-
.. _`cache item pool interface`: http://www.php-fig.org/psr/psr-6/#cacheitempoolinterface
39+
.. _`PSR-6`: https://www.php-fig.org/psr/psr-6/
40+
.. _`cache item pool interface`: https://www.php-fig.org/psr/psr-6/#cacheitempoolinterface

components/cache/psr6_psr16_adapters.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ this use-case::
8383
// now use this wherever you want
8484
$githubApiClient = new GitHubApiClient($psr16Cache);
8585

86-
.. _`PSR-16`: http://www.php-fig.org/psr/psr-16/
86+
.. _`PSR-16`: https://www.php-fig.org/psr/psr-16/

components/dependency_injection.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,4 @@ Learn More
318318
/components/dependency_injection/*
319319
/service_container/*
320320

321-
.. _`PSR-11`: http://www.php-fig.org/psr/psr-11/
321+
.. _`PSR-11`: https://www.php-fig.org/psr/psr-11/

components/dotenv.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ Embed commands via ``$()`` (not supported on Windows):
162162

163163
Note that using ``$()`` might not work depending on your shell.
164164

165-
.. _twelve-factor applications: http://www.12factor.net/
165+
.. _twelve-factor applications: https://12factor.net/

components/event_dispatcher.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -523,5 +523,5 @@ Learn More
523523

524524
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
525525
.. _Observer: https://en.wikipedia.org/wiki/Observer_pattern
526-
.. _Closures: https://php.net/manual/en/functions.anonymous.php
527-
.. _PHP callable: https://php.net/manual/en/language.pseudo-types.php#language.types.callback
526+
.. _Closures: https://www.php.net/manual/en/functions.anonymous.php
527+
.. _PHP callable: https://www.php.net/manual/en/language.pseudo-types.php#language.types.callback

components/finder.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ The contents of returned files can be read with
398398
.. _`fluent interface`: https://en.wikipedia.org/wiki/Fluent_interface
399399
.. _`symbolic links`: https://en.wikipedia.org/wiki/Symbolic_link
400400
.. _`Version Control Systems`: https://en.wikipedia.org/wiki/Version_control
401-
.. _`PHP wrapper for URL-style protocols`: https://php.net/manual/en/wrappers.php
402-
.. _`PHP streams`: https://php.net/streams
401+
.. _`PHP wrapper for URL-style protocols`: https://www.php.net/manual/en/wrappers.php
402+
.. _`PHP streams`: https://www.php.net/streams
403403
.. _`IEC standard`: https://physics.nist.gov/cuu/Units/binary.html
404404
.. _`natural sort order`: https://en.wikipedia.org/wiki/Natural_sort_order

components/http_client.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ However, using ``MockResponse`` allows simulating chunked responses and timeouts
10041004

10051005
$mockResponse = new MockResponse($body());
10061006

1007-
.. _`cURL PHP extension`: https://php.net/curl
1007+
.. _`cURL PHP extension`: https://www.php.net/curl
10081008
.. _`PSR-17`: https://www.php-fig.org/psr/psr-17/
10091009
.. _`PSR-18`: https://www.php-fig.org/psr/psr-18/
10101010
.. _`HTTPlug`: https://github.com/php-http/httplug/#readme

components/http_foundation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -721,5 +721,5 @@ Learn More
721721

722722
.. _nginx: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/
723723
.. _Apache: https://tn123.org/mod_xsendfile/
724-
.. _`JSON Hijacking`: http://haacked.com/archive/2009/06/25/json-hijacking.aspx
724+
.. _`JSON Hijacking`: https://haacked.com/archive/2009/06/25/json-hijacking.aspx/
725725
.. _OWASP guidelines: https://cheatsheetseries.owasp.org/cheatsheets/AJAX_Security_Cheat_Sheet.html#always-return-json-with-an-object-on-the-outside

components/http_foundation/session_configuration.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ All native save handlers are internal to PHP and as such, have no public facing
2929
They must be configured by ``php.ini`` directives, usually ``session.save_path`` and
3030
potentially other driver specific directives. Specific details can be found in
3131
the docblock of the ``setOptions()`` method of each class. For instance, the one
32-
provided by the Memcached extension can be found on `php.net/memcached.setoption`_
32+
provided by the Memcached extension can be found on :phpmethod:`php.net <Memcached::setOption>`.
3333

3434
While native save handlers can be activated by directly using
3535
``ini_set('session.save_handler', $name);``, Symfony provides a convenient way to
@@ -286,6 +286,5 @@ particular cookie by reading the ``getLifetime()`` method::
286286
The expiry time of the cookie can be determined by adding the created
287287
timestamp and the lifetime.
288288

289-
.. _`php.net/session.customhandler`: https://php.net/session.customhandler
290-
.. _`php.net/session.configuration`: https://php.net/session.configuration
291-
.. _`php.net/memcached.setoption`: https://php.net/memcached.setoption
289+
.. _`php.net/session.customhandler`: https://www.php.net/session.customhandler
290+
.. _`php.net/session.configuration`: https://www.php.net/session.configuration

components/http_kernel.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -752,11 +752,11 @@ Learn more
752752

753753
/reference/events
754754

755-
.. _reflection: https://php.net/manual/en/book.reflection.php
755+
.. _reflection: https://www.php.net/manual/en/book.reflection.php
756756
.. _FOSRestBundle: https://github.com/friendsofsymfony/FOSRestBundle
757-
.. _`PHP FPM`: https://php.net/manual/en/install.fpm.php
757+
.. _`PHP FPM`: https://www.php.net/manual/en/install.fpm.php
758758
.. _`SensioFrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html
759759
.. _`@ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
760760
.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view.html
761761
.. _`EmailSenderListener`: https://github.com/symfony/swiftmailer-bundle/blob/master/EventListener/EmailSenderListener.php
762-
.. _variadic: http://php.net/manual/en/functions.arguments.php
762+
.. _variadic: https://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list

components/intl.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ Learn more
374374
/reference/forms/types/locale
375375
/reference/forms/types/timezone
376376

377-
.. _intl extension: https://php.net/manual/en/book.intl.php
378-
.. _install the intl extension: https://php.net/manual/en/intl.setup.php
377+
.. _intl extension: https://www.php.net/manual/en/book.intl.php
378+
.. _install the intl extension: https://www.php.net/manual/en/intl.setup.php
379379
.. _ICU library: http://site.icu-project.org/
380380
.. _`Unicode ISO 15924 Registry`: https://www.unicode.org/iso15924/iso15924-codes.html
381381
.. _`ISO 3166-1 alpha-2`: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

components/lock.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,8 @@ are still running.
674674

675675
.. _`ACID`: https://en.wikipedia.org/wiki/ACID
676676
.. _`locks`: https://en.wikipedia.org/wiki/Lock_(computer_science)
677-
.. _`PHP semaphore functions`: https://php.net/manual/en/book.sem.php
678-
.. _`PDO`: https://php.net/pdo
677+
.. _`PHP semaphore functions`: https://www.php.net/manual/en/book.sem.php
678+
.. _`PDO`: https://www.php.net/pdo
679679
.. _`Doctrine DBAL Connection`: https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Connection.php
680680
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name
681681
.. _`ZooKeeper`: https://zookeeper.apache.org/

components/messenger.rst

+2
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ that will do the required processing for your message::
118118
}
119119
}
120120

121+
.. _messenger-envelopes:
122+
121123
Adding Metadata to Messages (Envelopes)
122124
---------------------------------------
123125

components/mime.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,4 @@ You can register your own MIME type guesser by creating a class that implements
298298

299299
.. _`MIME`: https://en.wikipedia.org/wiki/MIME
300300
.. _`MIME types`: https://en.wikipedia.org/wiki/Media_type
301-
.. _`fileinfo extension`: https://php.net/fileinfo
301+
.. _`fileinfo extension`: https://www.php.net/fileinfo

components/phpunit_bridge.rst

+6-7
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ message contains the ``"foobar"`` string.
223223
Making Tests Fail
224224
~~~~~~~~~~~~~~~~~
225225

226-
By default, any non-legacy-tagged or any non-`@-silenced`_ deprecation
227-
notices will make tests fail. Alternatively, you can configure an
228-
arbitrary threshold by setting ``SYMFONY_DEPRECATIONS_HELPER`` to
226+
By default, any non-legacy-tagged or any non-`@-silenced <@-silencing operator>`_
227+
deprecation notices will make tests fail. Alternatively, you can configure
228+
an arbitrary threshold by setting ``SYMFONY_DEPRECATIONS_HELPER`` to
229229
``max[total]=320`` for instance. It will make the tests fails only if a
230230
higher number of deprecation notices is reached (``0`` is the default
231231
value).
@@ -955,11 +955,10 @@ not find the SUT:
955955
.. _`PHPUnit`: https://phpunit.de
956956
.. _`PHPUnit event listener`: https://phpunit.de/manual/current/en/extending-phpunit.html#extending-phpunit.PHPUnit_Framework_TestListener
957957
.. _`PHPUnit's assertStringMatchesFormat()`: https://phpunit.de/manual/current/en/appendixes.assertions.html#appendixes.assertions.assertStringMatchesFormat
958-
.. _`PHP error handler`: https://php.net/manual/en/book.errorfunc.php
958+
.. _`PHP error handler`: https://www.php.net/manual/en/book.errorfunc.php
959959
.. _`environment variable`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.php-ini-constants-variables
960-
.. _`@-silencing operator`: https://php.net/manual/en/language.operators.errorcontrol.php
961-
.. _`@-silenced`: https://php.net/manual/en/language.operators.errorcontrol.php
960+
.. _`@-silencing operator`: https://www.php.net/manual/en/language.operators.errorcontrol.php
962961
.. _`Travis CI`: https://travis-ci.org/
963962
.. _`test listener`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.test-listeners
964963
.. _`@covers`: https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.annotations.covers
965-
.. _`PHP namespace resolutions rules`: https://php.net/manual/en/language.namespaces.rules.php
964+
.. _`PHP namespace resolutions rules`: https://www.php.net/manual/en/language.namespaces.rules.php

components/serializer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ Learn more
14621462
.. _RFC3339: https://tools.ietf.org/html/rfc3339#section-5.8
14631463
.. _JSON: http://www.json.org/
14641464
.. _XML: https://www.w3.org/XML/
1465-
.. _YAML: http://yaml.org/
1465+
.. _YAML: https://yaml.org/
14661466
.. _CSV: https://tools.ietf.org/html/rfc4180
14671467
.. _`RFC 7807`: https://tools.ietf.org/html/rfc7807
14681468
.. _`Value Objects`: https://en.wikipedia.org/wiki/Value_object

components/validator.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ Learn More
8888
/validation
8989
/validation/*
9090

91-
.. _`JSR-303 Bean Validation specification`: http://jcp.org/en/jsr/detail?id=303
91+
.. _`JSR-303 Bean Validation specification`: https://jcp.org/en/jsr/detail?id=303

components/var_exporter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ created by using the special ``"\0"`` property name to define their internal val
128128
"\0" => [$inputArray]
129129
]);
130130

131-
.. _`OPcache`: https://php.net/opcache
131+
.. _`OPcache`: https://www.php.net/opcache
132132
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/

components/yaml.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,6 @@ Learn More
455455

456456
yaml/*
457457

458-
.. _`YAML`: http://yaml.org/
459-
.. _`YAML 1.2 version specification`: http://yaml.org/spec/1.2/spec.html
460-
.. _`ISO-8601`: http://www.iso.org/iso/iso8601
458+
.. _`YAML`: https://yaml.org/
459+
.. _`YAML 1.2 version specification`: https://yaml.org/spec/1.2/spec.html
460+
.. _`ISO-8601`: https://www.iso.org/iso-8601-date-and-time-format.html

components/yaml/yaml_format.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,6 @@ The following YAML features are not supported by the Symfony Yaml component:
333333
* Using sequence-like syntax for mapping elements (example: ``{foo, bar}``; use
334334
``{foo: ~, bar: ~}`` instead).
335335

336-
.. _`ISO-8601`: http://www.iso.org/iso/iso8601
337-
.. _`YAML website`: http://yaml.org/
338-
.. _`YAML specification`: http://www.yaml.org/spec/1.2/spec.html
336+
.. _`ISO-8601`: https://www.iso.org/iso-8601-date-and-time-format.html
337+
.. _`YAML website`: https://yaml.org/
338+
.. _`YAML specification`: https://www.yaml.org/spec/1.2/spec.html

configuration/micro_kernel_trait.rst

+2-6
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ That's it! To test it, start the :doc:`Symfony Local Web Server
8080
8181
$ symfony server:start
8282
83-
Then see the JSON response in your browser:
84-
85-
http://localhost:8000/random/10
83+
Then see the JSON response in your browser: http://localhost:8000/random/10
8684

8785
The Methods of a "Micro" Kernel
8886
-------------------------------
@@ -332,6 +330,4 @@ As before you can use the :doc:`Symfony Local Web Server
332330
cd public/
333331
$ symfony server:start
334332
335-
Then visit the page in your browser:
336-
337-
http://localhost:8000/random/10
333+
Then visit the page in your browser: http://localhost:8000/random/10

contributing/code/conventions.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ notices. Silencing swaps this behavior and allows users to opt-in when they are
125125
ready to cope with them (by adding a custom error handler like the one used by
126126
the Web Debug Toolbar or by the PHPUnit bridge).
127127

128-
.. _`@-silencing operator`: https://php.net/manual/en/language.operators.errorcontrol.php
129-
130128
When deprecating a whole class the ``trigger_error()`` call should be placed
131129
between the namespace and the use declarations, like in this example from
132130
`ServiceRouterLoader`_::
@@ -184,3 +182,5 @@ of the impacted component::
184182
* Removed the `Deprecated` class, use `Replacement` instead.
185183

186184
This task is mandatory and must be done in the same pull request.
185+
186+
.. _`@-silencing operator`: https://www.php.net/manual/en/language.operators.errorcontrol.php

contributing/code/pull_requests.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ before merging.
415415

416416
.. _ProGit: https://git-scm.com/book
417417
.. _GitHub: https://github.com/join
418-
.. _`GitHub's documentation`: https://help.github.com/articles/ignoring-files
418+
.. _`GitHub's documentation`: https://help.github.com/github/using-git/ignoring-files
419419
.. _Symfony repository: https://github.com/symfony/symfony
420420
.. _`documentation repository`: https://github.com/symfony/symfony-docs
421421
.. _`fabbot`: https://fabbot.io
@@ -424,4 +424,4 @@ before merging.
424424
.. _`searching on GitHub`: https://github.com/symfony/symfony/issues?q=+is%3Aopen+
425425
.. _`Symfony Slack`: https://symfony.com/slack-invite
426426
.. _`Travis-CI`: https://travis-ci.org/symfony/symfony
427-
.. _`draft status`: https://help.github.com/en/articles/about-pull-requests#draft-pull-requests
427+
.. _`draft status`: https://help.github.com/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests

contributing/code/standards.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ License
281281
.. _`PSR-1`: https://www.php-fig.org/psr/psr-1/
282282
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/
283283
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4/
284-
.. _`identical comparison`: https://php.net/manual/en/language.operators.comparison.php
284+
.. _`identical comparison`: https://www.php.net/manual/en/language.operators.comparison.php
285285
.. _`Yoda conditions`: https://en.wikipedia.org/wiki/Yoda_conditions
286286
.. _`camelCase`: https://en.wikipedia.org/wiki/Camel_case
287287
.. _`UpperCamelCase`: https://en.wikipedia.org/wiki/Camel_case

contributing/code/tests.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ what's going on and if the tests are broken because of the new code.
5555
to see colored test results.
5656

5757
.. _`install Composer`: https://getcomposer.org/download/
58-
.. _Cmder: http://cmder.net/
58+
.. _Cmder: https://cmder.net/
5959
.. _ConEmu: https://conemu.github.io/
6060
.. _ANSICON: https://github.com/adoxa/ansicon/releases
6161
.. _Mintty: https://mintty.github.io/

contributing/code_of_conduct/code_of_conduct.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Attribution
7777
-----------
7878

7979
This Code of Conduct is adapted from the `Contributor Covenant`_, version 1.4,
80-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
80+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct/
8181

8282
Related Documents
8383
-----------------

contributing/community/releases.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,6 @@ period to upgrade. Companies wanting more stability use the LTS versions: a new
132132
version is published every two years and there is a year to upgrade.
133133

134134
.. _`semantic versioning`: https://semver.org/
135-
.. _`Subscribe to Symfony Roadmap notifications`: https://symfony.com/account
136-
.. _`Symfony Roadmap`: https://symfony.com/roadmap#checker
135+
.. _`Subscribe to Symfony Roadmap notifications`: https://symfony.com/account/notifications
136+
.. _`Symfony Roadmap`: https://symfony.com/releases
137137
.. _`professional Symfony support`: https://sensiolabs.com/

contributing/community/reviews.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ Pick a pull request from the `PRs in need of review`_ and follow these steps:
213213
.. _Symfony issue tracker: https://github.com/symfony/symfony/issues
214214
.. _`Symfony skeleton`: https://github.com/symfony/skeleton
215215
.. _`Symfony website skeleton`: https://github.com/symfony/website-skeleton
216-
.. _create a GitHub account: https://help.github.com/articles/signing-up-for-a-new-github-account/
216+
.. _create a GitHub account: https://help.github.com/github/getting-started-with-github/signing-up-for-a-new-github-account
217217
.. _bug reports in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3A%22Bug%22+label%3A%22Status%3A+Needs+Review%22+
218-
.. _PRs in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+label%3A%22Status%3A+Needs+Review%22+
219-
.. _Symfony Roadmap: https://symfony.com/roadmap
218+
.. _PRs in need of review: https://github.com/symfony/symfony/pulls?q=is%3Aopen+is%3Apr+label%3A%22Status%3A+Needs+Review%22
219+
.. _Symfony Roadmap: https://symfony.com/releases
220220
.. _Carson Bot: https://github.com/carsonbot/carsonbot
221221
.. _`Needs Review`: https://github.com/symfony/symfony/labels/Status%3A%20Needs%20Review

0 commit comments

Comments
 (0)