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: v6.2.8
Choose a base ref
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.2.10
Choose a head ref
  • 11 commits
  • 5 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 14, 2023

  1. Merge branch '5.4' into 6.2

    * 5.4:
      [HttpClient] fix proxied redirects in curl client
      [Intl] Update the ICU data to 73.1
      [Console] Restoring the ability to output unicode text to the Win10 console
      [Mailer] Add brifge documentation
    nicolas-grekas committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    77309f7 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
  3. Merge branch '5.4' into 6.2

    * 5.4:
      [Console] Fix computing column width containing multibyte chars
      [Messenger] Fix deprecation layer of RedeliveryStamp
      [Mime] Form field values with integer keys not resolved correctly
      [Messenger] [Redis] Fixed problem where worker stops handling messages on first empty message
      [PHPUnitBridge] Fix PHPUnit 10.1 compatibility
      [VarDumper] Make the server TCP connection sync
      [Messenger] Fix warning message on failed messenger show command
      [Mailer] [Mailjet] Use body MessageID instead of X-MJ-Request-GUID
      [HttpFoundation] Fix BinaryFileResponse
      [Form] fix merge
      [HttpFoundation] Fix memory limit problems in BinaryFileResponse
      [PropertyAccess] Readonly properties must have no PropertyWriteInfo
      [Form] Cast choices value callback result to string
      [Serializer] Unexpected value should throw UnexpectedValueException
      [ErrorHandler] Don't throw deprecations for HttplugClient
      [Serializer] Fix denormalization of object with typed constructor arg (not castable) and with COLLECT_DENORMALIZATION_ERRORS
      Avoid leading .. for temporary files from Filesystem recursive remove
    nicolas-grekas committed Apr 18, 2023
    Configuration menu
    Copy the full SHA
    28c5c2e View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Fix the usage of the zsh completion through the fpath discovery

    Zsh completion files registered through the fpath discovery mecanism
    have 2 requirements:
    
    - the file name must have a `_` prefix
    - the file must start with a `#compdef` comment describing the
      registration for that file.
    
    The file can then either execute the completion logic directly or call
    `compdef` to register a function for completion. Keeping the second
    approach allows to use the same generated script for the global use case
    than for a sourced configuration script.
    stof committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    15ac660 View commit details
    Browse the repository at this point in the history
  2. 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

Commits on Apr 28, 2023

  1. Merge branch '5.4' into 6.2

    * 5.4:
      trim(): Argument #1 () must be of type string, bool given
      [Dumper] Trim leading newlines when checking if value begins with a space
      Fix the list of supported shells for completions in a phar
    nicolas-grekas committed Apr 28, 2023
    Configuration menu
    Copy the full SHA
    b243eb4 View commit details
    Browse the repository at this point in the history
  2. Fix merge

    nicolas-grekas committed Apr 28, 2023
    Configuration menu
    Copy the full SHA
    8dd035b View commit details
    Browse the repository at this point in the history
  3. Fix merge

    nicolas-grekas committed Apr 28, 2023
    Configuration menu
    Copy the full SHA
    12288d9 View commit details
    Browse the repository at this point in the history
Loading