Skip to content

Fix french-inspired grammar in docs about the Process Component#22165

Closed
pableu wants to merge 5098 commits intosymfony:6.4from
pableu:patch-1
Closed

Fix french-inspired grammar in docs about the Process Component#22165
pableu wants to merge 5098 commits intosymfony:6.4from
pableu:patch-1

Conversation

@pableu
Copy link
Contributor

@pableu pableu commented Mar 16, 2026

No description provided.

javiereguiluz and others added 30 commits February 19, 2026 10:48
* 7.4:
  Document autoconfiguration attributes on abstract classes
…nv var (javiereguiluz)

This PR was merged into the 7.4 branch.

Discussion
----------

[Runtime] Expose project_dir as APP_PROJECT_DIR env var

Fixes symfony#21544.

Commits
-------

8cd71ca [Runtime] Expose project_dir as APP_PROJECT_DIR env var
* 7.4:
  [Runtime] Expose project_dir as APP_PROJECT_DIR env var
* 6.4:
  Tweaks
  [AssetMapper] Adding info for CSP, recommending `script-src 'strict-dynamic'`
* 7.4:
  Tweaks
  [AssetMapper] Adding info for CSP, recommending `script-src 'strict-dynamic'`
… outdated examples (lacatoire)

This PR was submitted for the 7.3 branch but it was merged into the 7.4 branch instead.

Discussion
----------

[Config] Clarify parameters documentation and fix outdated examples

Closes symfony#21938

This PR addresses two concrete issues raised in the report:

- **`configuration.rst`**: Replaced the outdated paragraph claiming that "installing the translation package adds a `locale` parameter to `config/services.yaml`" (this is no longer the case). Replaced with a reference to kernel parameters (`kernel.project_dir`, `kernel.debug`) as a concrete example of framework-defined parameters.

- **`service_container.rst`**: Replaced the `mailer.transport` parameter example with `app.admin_email`, which is less confusing (the old name could be mistaken for a real Symfony service or configuration option) and is consistent with the example already used in `configuration.rst`.

Commits
-------

77785ca Clarify parameters documentation and fix outdated/confusing examples
* 7.4:
  Minor tweak
  Clarify parameters documentation and fix outdated/confusing examples
…on from SYMFONY_DECR… (lacatoire)

This PR was submitted for the 7.3 branch but it was merged into the 7.4 branch instead.

Discussion
----------

[FrameworkBundle] Document kernel.secret derivation from SYMFONY_DECR…

Fixes symfony#19916

Commits
-------

bb0c753 [FrameworkBundle] Document kernel.secret derivation from SYMFONY_DECRYPTION_SECRET
* 7.4:
  Minor tweak
  [FrameworkBundle] Document kernel.secret derivation from SYMFONY_DECRYPTION_SECRET
…] and #[Option] (lacatoire)

This PR was squashed before being merged into the 7.4 branch.

Discussion
----------

 Document BackedEnum support in console #[Argument] and #[Option]

Documents the support for `BackedEnum` types in invokable commands with `#[Argument]` and `#[Option]` attributes:
- Automatic conversion from string input to enum case
- Autocompletion based on enum cases
- Error messages with valid values when input doesn't match

Fixes symfony#21076

Commits
-------

f599c87  Document BackedEnum support in console #[Argument] and #[Option]
* 7.4:
  Minor tweaks
  Document BackedEnum support in console #[Argument] and #[Option]
* 7.4:
  Fix the syntax of an external link
* 6.4:
  Fix the syntax of an external link
…emoval of $this in PHP config files (lacatoire)

This PR was squashed before being merged into the 8.0 branch.

Discussion
----------

[Config][DependencyInjection][Routing] Document removal of $this in PHP config files

This PR documents the removal of `$this` and the loader's internal scope access in PHP configuration files, as introduced in Symfony 8.0.

Closes symfony#21479

Commits
-------

f1546f4 [Config][DependencyInjection][Routing] Document removal of $this in PHP config files
* 7.4:
  [DependencyInjection] Backport a deprecation message
…getRequiredOptions (lacatoire)

This PR was squashed before being merged into the 7.4 branch.

Discussion
----------

[Validator] Document deprecated getDefaultOption/getRequiredOptions

## Summary

Updates the "Constraint Validators with Custom Options" section to remove usage of the deprecated `getDefaultOption()` and `getRequiredOptions()` methods. The example now uses the recommended pattern with `#[HasNamedArguments]` and mandatory constructor arguments.

Adds a `deprecated` directive explaining the deprecation.

Fixes symfony#21208
Fixes symfony#21188

Commits
-------

1e425c6 [Validator] Document deprecated getDefaultOption/getRequiredOptions
javiereguiluz and others added 23 commits March 16, 2026 10:48
* 7.4:
  Minor tweaks
  [DependencyInjection] Document addExcludeTag() and findExcludedServic…
…st for access_decision twig function (94noni)

This PR was merged into the 7.4 branch.

Discussion
----------

[Security] Fix syntax for isGranted in security.rst for access_decision twig function

the object return dont have a isGranted() func, only a bool prop

Commits
-------

897d1d8 Fix syntax for isGranted in security.rst for access_decision twig function
* 7.4:
  Fix syntax for isGranted in security.rst for access_decision twig function
…n blocking mode (lacatoire)

This PR was squashed before being merged into the 7.4 branch.

Discussion
----------

[Lock] Clarify LockConflictedException behavior in blocking mode

  Fixes symfony#19585

Commits
-------

d5f5969 [Lock] Clarify LockConflictedException behavior in blocking mode
* 7.4:
  [Lock] Clarify LockConflictedException behavior in blocking mode
* 6.4:
  [FrameworkBundle] Add Notifier configuration reference
* 7.4:
  [FrameworkBundle] Add Notifier configuration reference
…erride Symfony default directory structure (tdutrion)

This PR was submitted for the 7.2 branch but it was merged into the 7.4 branch instead.

Discussion
----------

[configuration][override_dir_structure] Update override Symfony default directory structure

This PR updates the documentation page [How to Override Symfony's default Directory Structure](https://symfony.com/doc/7.0/configuration/override_dir_structure.html#override-the-configuration-directory), adding the options available in [Upgrading Existing Applications to Symfony Flex - Customizing Flex Paths](https://symfony.com/doc/7.0/setup/flex.html#customizing-flex-paths).

Options added:
* [x] `bin-dir`
* [x] `config-dir`
* [x] `src-dir`
* [x] `public-dir` (already documented)

Missing options:
* [ ] `var-dir`: could not test it properly, it still requires overriding the Kernel methods for logs and cache, should be part of another PR

Co-authored by `@MirakuSan`

Commits
-------

28f2574 [configuration][override_dir_structure] Update override Symfony default directory structure
* 7.4:
  [configuration][override_dir_structure] Update override Symfony default directory structure
…TP-METHOD-OVERRIDE` for certain methods (mindaugasw)

This PR was merged into the 7.4 branch.

Discussion
----------

[HttpFoundation] Add deprecation notice for `X-HTTP-METHOD-OVERRIDE` for certain methods

Fixes symfony#21490

Add deprecation notice for HTTP methods that can no longer be overridden.

Commits
-------

f9e1295 [HttpFoundation] Add deprecation notice for overriding certain HTTP methods
* 7.4:
  [HttpFoundation] Add deprecation notice for overriding certain HTTP methods
…p delay queues (Thomas Beaujean)

This PR was submitted for the 7.1 branch but it was merged into the 7.4 branch instead.

Discussion
----------

[Messenger] Add config option `arguments` for amqp delay queues

Hi, this PR to allow to add extra arguments to the amqp delay queues that are automatically created.

* symfony/symfony#48603

Commits
-------

3a25bc0 [Messenger] Add config option 'arguments' for amqp delay queues
* 7.4:
  [Messenger] Add config option 'arguments' for amqp delay queues
* 6.4:
  Fix File Upload Example
* 7.4:
  Fix File Upload Example
@pableu pableu requested a review from xabbuh as a code owner March 16, 2026 18:45
@carsonbot carsonbot added this to the 6.4 milestone Mar 16, 2026
@carsonbot carsonbot changed the title Fix french-inspired grammar in docs about the Process Component Fix french-inspired grammar in docs about the Process Component Mar 16, 2026
@pableu pableu marked this pull request as draft March 16, 2026 18:46
@pableu pableu closed this Mar 16, 2026
@pableu
Copy link
Contributor Author

pableu commented Mar 16, 2026

Replaced by #22166. Sorry, wrong base-branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.