-
-
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: v6.2.5
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: v6.2.7
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 17 commits
- 47 files changed
- 9 contributors
Commits on Jan 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e65c925 - Browse repository at this point
Copy the full SHA e65c925View commit details
Commits on Jan 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fd78f92 - Browse repository at this point
Copy the full SHA fd78f92View commit details
Commits on Feb 2, 2023
-
* 5.4: Fix LICENSE CI check fixes retrieving multiple values for extra fields [String] Remove duplicates in fold maps fail with a meaningful error when a needed package is missing [DependencyInjection] Fix combinatory explosion when autowiring union and intersection types Update license years (last time) [Tests] New iteration of removing `$this` occurrences in future static data providers
Configuration menu - View commit details
-
Copy full SHA for c2ac8b0 - Browse repository at this point
Copy the full SHA c2ac8b0View commit details
Commits on Feb 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8ae1b60 - Browse repository at this point
Copy the full SHA 8ae1b60View commit details -
* 5.4: [Serializer] Fix CsvEncoder decode on empty data [Tests] Migrate data providers to static ones stop using assertObjectHasAttribute()/assertObjectHasNotAttribute() [Dotenv] Fix phpdoc Dotenv [Config] Fix phpdoc nullable Fix some typos
Configuration menu - View commit details
-
Copy full SHA for 47972b8 - Browse repository at this point
Copy the full SHA 47972b8View commit details
Commits on Feb 7, 2023
-
minor #49253 [PHPUnit 10] Use
TestCasesuffix for abstract tests in…… `/Tests/` (OskarStark) This PR was merged into the 6.3 branch. Discussion ---------- [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/` | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | Refs symfony/symfony#49233 | License | MIT | Doc PR | n/a Replaces #49234 Using `Test` suffix is deprecated since PHPUnit 10 Spotted in * symfony/symfony#49233 Commits ------- cb3db968e4 [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/`
Configuration menu - View commit details
-
Copy full SHA for 4b81c20 - Browse repository at this point
Copy the full SHA 4b81c20View commit details -
* 5.4: minor #49253 [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/` (OskarStark)
Configuration menu - View commit details
-
Copy full SHA for 4c631f9 - Browse repository at this point
Copy the full SHA 4c631f9View commit details
Commits on Feb 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0b4af14 - Browse repository at this point
Copy the full SHA 0b4af14View commit details -
* 5.4: Migrate to `static` data providers using `rector/rector`
Configuration menu - View commit details
-
Copy full SHA for 10da114 - Browse repository at this point
Copy the full SHA 10da114View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc04b7a - Browse repository at this point
Copy the full SHA bc04b7aView commit details -
* 5.4: [Security] fix compat with security-core v6 use proper methods to assert exception messages contain certain strings
Configuration menu - View commit details
-
Copy full SHA for 005c745 - Browse repository at this point
Copy the full SHA 005c745View commit details
Commits on Feb 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a39ab00 - Browse repository at this point
Copy the full SHA a39ab00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12b1042 - Browse repository at this point
Copy the full SHA 12b1042View commit details
Commits on Feb 19, 2023
-
bug #48897 [Console] fix clear of section with question (maxbeckers)
This PR was merged into the 6.2 branch. Discussion ---------- [Console] fix clear of section with question | Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #47411 | License | MIT | Doc PR | n/a This PR fixes the problems to clear a section with a question included. Example Code: ``` protected function execute(InputInterface $input, OutputInterface $output) { $section1 = $output->section(); $io = new SymfonyStyle($input, $section1); $output->writeln("foo"); $countdown = 3; while ($countdown > 0) { $section1->clear(); $io->writeln('start ' . $countdown); $io->write('foo'); $io->write(' and bar'.\PHP_EOL); $givenAnswer = $io->ask('Dummy question?'); $section1->write('bar'); $countdown--; } return self::SUCCESS; } ``` Output loop 1:  Output loop 1:  There was already a fix #48089 to be merged in 6.1, but the problem was that there were some changes in 6.2, so it was not possible to merge it into 6.2. So this fix is only working for 6.2, but perhaps we could find a solution as well for the older versions. But because of the changes of console it was not possible to find a solution working for all versions. `@chalasr` this fix is still with the newline always `true` https://github.com/symfony/symfony/blob/4cf9855debc26e4323429ac8d87f02df582e2893/src/Symfony/Component/Console/Output/ConsoleSectionOutput.php#L181 A change of the newline to `$newline` would change the behavior. Maybe we could change that in symfony 7. To make it easier to test is here a zip with 2 testcommands in the root and the changed vendors. [test-48089.zip](https://github.com/symfony/symfony/files/10360423/test-48089.zip) Commits ------- f4c551805b [Console] fix clear of section with questionConfiguration menu - View commit details
-
Copy full SHA for fc0e346 - Browse repository at this point
Copy the full SHA fc0e346View commit details
Commits on Feb 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0a3c371 - Browse repository at this point
Copy the full SHA 0a3c371View commit details -
Configuration menu - View commit details
-
Copy full SHA for c77433d - Browse repository at this point
Copy the full SHA c77433dView commit details -
* 5.4: [Console] Fix ApplicationTest::testSetSignalsToDispatchEvent() when ran alone
Configuration menu - View commit details
-
Copy full SHA for cbad09e - Browse repository at this point
Copy the full SHA cbad09eView 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 v6.2.5...v6.2.7