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.2.0-BETA2
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.2.0-RC1
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 6, 2024

  1. Copy the full SHA
    c4ba980 View commit details
  2. Merge branch '5.4' into 6.4

    * 5.4:
      Port Appveyor to GitHub Actions
      normalize paths to avoid failures if a path is referenced by different names
      skip autocomplete test when stty is not available
      Bump Symfony version to 5.4.47
      Update VERSION for 5.4.46
      Update CONTRIBUTORS for 5.4.46
      Update CHANGELOG for 5.4.46
    nicolas-grekas committed Nov 6, 2024
    Copy the full SHA
    f1fc6f4 View commit details
  3. Merge branch '6.4' into 7.1

    * 6.4:
      Port Appveyor to GitHub Actions
      normalize paths to avoid failures if a path is referenced by different names
      skip autocomplete test when stty is not available
      Bump Symfony version to 6.4.15
      Update VERSION for 6.4.14
      Update CHANGELOG for 6.4.14
      Bump Symfony version to 5.4.47
      Update VERSION for 5.4.46
      Update CONTRIBUTORS for 5.4.46
      Update CHANGELOG for 5.4.46
    nicolas-grekas committed Nov 6, 2024
    Copy the full SHA
    ff04e5b View commit details
  4. Merge branch '7.1' into 7.2

    * 7.1:
      Port Appveyor to GitHub Actions
      normalize paths to avoid failures if a path is referenced by different names
      skip autocomplete test when stty is not available
      Bump Symfony version to 7.1.8
      Update VERSION for 7.1.7
      Update CHANGELOG for 7.1.7
      Bump Symfony version to 6.4.15
      Update VERSION for 6.4.14
      Update CHANGELOG for 6.4.14
      Bump Symfony version to 5.4.47
      Update VERSION for 5.4.46
      Update CONTRIBUTORS for 5.4.46
      Update CHANGELOG for 5.4.46
    nicolas-grekas committed Nov 6, 2024
    Copy the full SHA
    23c8aae View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 Tests/Helper/QuestionHelperTest.php
4 changes: 4 additions & 0 deletions Tests/Helper/QuestionHelperTest.php
Original file line number Diff line number Diff line change
@@ -908,6 +908,10 @@ public function testTraversableMultiselectAutocomplete()

public function testAutocompleteMoveCursorBackwards()
{
if (!Terminal::hasSttyAvailable()) {
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
}

// F<TAB><BACKSPACE><BACKSPACE><BACKSPACE>
$inputStream = $this->getInputStream("F\t\177\177\177");