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: v5.4.22
Choose a base ref
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.4.23
Choose a head ref
  • 5 commits
  • 4 files changed
  • 5 contributors

Commits on Apr 12, 2023

  1. [Console] Restoring the ability to output unicode text to the Win10 c…

    …onsole
    
    Restoring the ability to output unicode text to the Win10 console after corrupting the console on line 224
    aleksandr-shevchenko authored and nicolas-grekas committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    3105944 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. Configuration menu
    Copy the full SHA
    79e7e16 View commit details
    Browse the repository at this point in the history
  2. bug #48886 [Console] Fix computing column width containing multibyte …

    …chars (cay89)
    
    This PR was merged into the 5.4 branch.
    
    Discussion
    ----------
    
    [Console] Fix computing column width containing multibyte chars
    
    Use mb_str_split instead of str_split because it works badly with multibyte chars on auto width adjustment.
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 5.4 and above
    | Bug fix?      | yes
    
    Console output with str_split:
    
    ![image](https://user-images.githubusercontent.com/3186515/210783727-7f67c371-67c0-4005-9914-e345fa9b5569.png)
    
    Console output with mb_str_split:
    
    ![image](https://user-images.githubusercontent.com/3186515/210783808-bcd9e754-4831-43a1-86b3-6cbcdd93a3ec.png)
    
    Commits
    -------
    
    f32179ee12 [Console] Fix computing column width containing multibyte chars
    nicolas-grekas committed Apr 18, 2023
    Configuration menu
    Copy the full SHA
    9f16d3e View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Fix the list of supported shells for completions in a phar

    Using glob inside a phar does not work (it does not find anything).
    Using a DirectoryIterator on the other hand works with phars. This
    allows this command to compute the list of supported shells properly
    when used inside a phar.
    stof committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    930de43 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2023

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