Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/console
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.3.2
Choose a base ref
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.3.3
Choose a head ref
  • 7 commits
  • 9 files changed
  • 6 contributors

Commits on Aug 4, 2025

  1. Configuration menu
    Copy the full SHA
    0ca45ae View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.4' into 7.3

    * 6.4:
      Fix inline var annotations
      [Console][Table] Don't split grapheme clusters
      [FrameworkBundle] Fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsGenerateKeysCommand`
      [FrameworkBundle] Add tests for `secrets:decrypt-to-local`, `encrypt-from-local`, and `generate-keys` commands
      Reflection*::setAccessible() has no effect as of PHP 8.1
    nicolas-grekas committed Aug 4, 2025
    Configuration menu
    Copy the full SHA
    01edfba View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. Configuration menu
    Copy the full SHA
    ad2f59f View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2025

  1. Merge branch '6.4' into 7.3

    * 6.4:
      Fix remaining SplObjectStorage deprecation
    nicolas-grekas committed Aug 13, 2025
    Configuration menu
    Copy the full SHA
    a1e23cf View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2025

  1. Configuration menu
    Copy the full SHA
    273fd29 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2025

  1. bug #61033 [Console] Restore SHELL_VERBOSITY after a command is ran…

    … (lyrixx)
    
    This PR was merged into the 7.3 branch.
    
    Discussion
    ----------
    
    [Console] Restore `SHELL_VERBOSITY` after a command is ran
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 7.2
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | Issues        |
    | License       | MIT
    
    ---
    
    Considereing the following code:
    
    ```php
    require __DIR__.'/vendor/autoload.php';
    
    use Symfony\Component\Console\Application;
    use Symfony\Component\Console\Attribute\AsCommand;
    use Symfony\Component\Console\Input\ArgvInput;
    use Symfony\Component\Console\Output\OutputInterface;
    
    #[AsCommand('a')]
    class A
    {
        public function __invoke(OutputInterface $output)
        {
            $output->writeln('Command A executed');
    
            return 0;
        }
    }
    
    #[AsCommand('b')]
    class B
    {
        public function __invoke(OutputInterface $output)
        {
            $output->writeln('Command B executed');
    
            return 0;
        }
    }
    
    #[AsCommand('main')]
    class Main
    {
        public function __construct(
            private Application $app
        ) {}
    
        public function __invoke(OutputInterface $output)
        {
            $this->app->setAutoExit(false);
    
            $this->app->run(new ArgvInput([__FILE__, 'a', '--quiet']));
    
            $this->app->run(new ArgvInput([__FILE__, 'b']));
    
            $output->writeln('Main command executed');
    
            return 0;
        }
    }
    
    $app = new Application();
    $app->addCommand(new A());
    $app->addCommand(new B());
    $app->addCommand(new Main($app));
    
    $app->run();
    ```
    
    Without this patch,
    * the output of B command is not displayed. It should be!
    * But the output `Main command executed` is. It should be, it's correct. But it's hard to understand. the current $output has already been configured, and it's not silenced by `--quiet` yet
    
    Commits
    -------
    
    697fca1598e [Console] Restore SHELL_VERBOSITY after a command is ran
    fabpot committed Aug 23, 2025
    Configuration menu
    Copy the full SHA
    53a8528 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2025

  1. Merge branch '6.4' into 7.3

    * 6.4:
      [String] Fix nodes singular
      [Console] Fix testing multiline question
      [Security][Validator] Review translations.
      [Security] Ignore target route when exiting impersonation
    xabbuh committed Aug 25, 2025
    Configuration menu
    Copy the full SHA
    cb0102a View commit details
    Browse the repository at this point in the history
Loading