-
-
Notifications
You must be signed in to change notification settings - Fork 268
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.3.3
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 9 files changed
- 6 contributors
Commits on Aug 4, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 0ca45ae - Browse repository at this point
Copy the full SHA 0ca45aeView commit details -
* 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
Configuration menu - View commit details
-
Copy full SHA for 01edfba - Browse repository at this point
Copy the full SHA 01edfbaView commit details
Commits on Aug 7, 2025
-
Configuration menu - View commit details
-
Copy full SHA for ad2f59f - Browse repository at this point
Copy the full SHA ad2f59fView commit details
Commits on Aug 13, 2025
-
* 6.4: Fix remaining SplObjectStorage deprecation
Configuration menu - View commit details
-
Copy full SHA for a1e23cf - Browse repository at this point
Copy the full SHA a1e23cfView commit details
Commits on Aug 22, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 273fd29 - Browse repository at this point
Copy the full SHA 273fd29View commit details
Commits on Aug 23, 2025
-
bug #61033 [Console] Restore
SHELL_VERBOSITYafter 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 ranConfiguration menu - View commit details
-
Copy full SHA for 53a8528 - Browse repository at this point
Copy the full SHA 53a8528View commit details
Commits on Aug 25, 2025
-
* 6.4: [String] Fix nodes singular [Console] Fix testing multiline question [Security][Validator] Review translations. [Security] Ignore target route when exiting impersonation
Configuration menu - View commit details
-
Copy full SHA for cb0102a - Browse repository at this point
Copy the full SHA cb0102aView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v7.3.2...v7.3.3