-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
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/symfony
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.4
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: symfony/symfony
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.3
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 4 commits
- 5 files changed
- 3 contributors
Commits on Aug 7, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 697fca1 - Browse repository at this point
Copy the full SHA 697fca1View commit details
Commits on Aug 23, 2025
-
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 ------- 697fca1 [Console] Restore SHELL_VERBOSITY after a command is ran
Configuration menu - View commit details
-
Copy full SHA for 7c54399 - Browse repository at this point
Copy the full SHA 7c54399View commit details -
[Messenger] Fix Oracle errors 'ORA-00955: Name is already used by an …
…existing object' with Doctrine transport
Configuration menu - View commit details
-
Copy full SHA for 45c3203 - Browse repository at this point
Copy the full SHA 45c3203View commit details -
bug #60211 [Messenger] Fix Oracle errors 'ORA-00955: Name is already …
…used by an existing object' with Doctrine transport (atgitwk) This PR was submitted for the 7.2 branch but it was squashed and merged into the 7.3 branch instead. Discussion ---------- [Messenger] Fix Oracle errors 'ORA-00955: Name is already used by an existing object' with Doctrine transport | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix #59903 | License | MIT Initialization of MESSENGER objects causes an Oracle error when using `messenger:setup-transports`. For more explanation, please see issue #59903 Commits ------- 45c3203 [Messenger] Fix Oracle errors 'ORA-00955: Name is already used by an existing object' with Doctrine transport
Configuration menu - View commit details
-
Copy full SHA for 211aaa4 - Browse repository at this point
Copy the full SHA 211aaa4View 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 7.4...7.3