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/symfony
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.7.44
Choose a base ref
...
head repository: symfony/symfony
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.7.45
Choose a head ref
  • 17 commits
  • 20 files changed
  • 10 contributors

Commits on Mar 20, 2018

  1. Fix check of color support on Windows

    If the stream is redirected, the script should behave the same on Windows
    and on POSIX systems.
    mlocati committed Mar 20, 2018
    Configuration menu
    Copy the full SHA
    f7f8189 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2018

  1. Configuration menu
    Copy the full SHA
    3758a3b View commit details
    Browse the repository at this point in the history
  2. bug #26609 [Console] Fix check of color support on Windows (mlocati)

    This PR was merged into the 2.7 branch.
    
    Discussion
    ----------
    
    [Console] Fix check of color support on Windows
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets |
    | License       | MIT
    | Doc PR        |
    
    If the stream is redirected, `StreamOutput::hasColorSupport()` returns `false` on POSIX systems.
    On Windows, this is not always true. Before PHP 7.2 we can't say if the stream is redirected, but since PHP 7.2 we have the `stream_isatty` function that works on Windows too: let's use it.
    
    Sure, `sapi_windows_vt100_support` should return `false` if the stream is redirected, but it's in `or` with the other conditions, so the logic was flawed.
    
    Commits
    -------
    
    f7f8189 Fix check of color support on Windows
    fabpot committed Apr 2, 2018
    Configuration menu
    Copy the full SHA
    d73f491 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2018

  1. Add PHPDbg support to HTTP components

    hkdobrev authored and fabpot committed Apr 3, 2018
    Configuration menu
    Copy the full SHA
    60dd79c View commit details
    Browse the repository at this point in the history
  2. bug #26749 Add PHPDbg support to HTTP components (hkdobrev)

    This PR was squashed before being merged into the 2.7 branch (closes #26749).
    
    Discussion
    ----------
    
    Add PHPDbg support to HTTP components
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets |
    | License       | MIT
    | Doc PR        |
    
    This is a follow-up to #26677.
    
    Turns out there aren't that many remaining instances of `PHP_SAPI` checks without considering `phpdbg` where it's needed.
    
    Commits
    -------
    
    60dd79c Add PHPDbg support to HTTP components
    fabpot committed Apr 3, 2018
    Configuration menu
    Copy the full SHA
    eac5ede View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2018

  1. Configuration menu
    Copy the full SHA
    cdde6d9 View commit details
    Browse the repository at this point in the history
  2. bug #26763 [Finder] Remove duplicate slashes in filenames (helhum)

    This PR was squashed before being merged into the 2.7 branch (closes #26763).
    
    Discussion
    ----------
    
    [Finder] Remove duplicate slashes in filenames
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7 up to 4.0
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no     <!-- see https://symfony.com/bc -->
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets | #26757
    | License       | MIT
    
    This PR takes another approach to fix in excess slashes in Finder than #26337
    which does a simple rtrim instead of the breaking realpath.
    
    Commits
    -------
    
    cdde6d9 [Finder] Remove duplicate slashes in filenames
    fabpot committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    7c4676a View commit details
    Browse the repository at this point in the history
  3. [Finder] fix tests

    xabbuh committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    540ea11 View commit details
    Browse the repository at this point in the history
  4. minor #26785 [Finder] fix tests (xabbuh)

    This PR was merged into the 2.7 branch.
    
    Discussion
    ----------
    
    [Finder] fix tests
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets |
    | License       | MIT
    | Doc PR        |
    
    Commits
    -------
    
    540ea11 [Finder] fix tests
    nicolas-grekas committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    07f8f81 View commit details
    Browse the repository at this point in the history
  5. Update da translations

    c960657 committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    d0ea26b View commit details
    Browse the repository at this point in the history
  6. minor #26801 Update da translations (c960657)

    This PR was merged into the 2.7 branch.
    
    Discussion
    ----------
    
    Update da translations
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets |
    | License       | MIT
    | Doc PR        |
    
    The Danish translations have several serious errors. This PR adjusts to official Danish orthography, and updates some texts for internal consistency and to better reflect the original English text.
    
    Commits
    -------
    
    d0ea26b Update da translations
    fabpot committed Apr 4, 2018
    Configuration menu
    Copy the full SHA
    a90cd13 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2018

  1. [EventDispatcher] Dispatcher in stopEventPropagation test now registe…

    …rs correct listener
    wwwd3v authored and stof committed Apr 5, 2018
    Configuration menu
    Copy the full SHA
    24c460a View commit details
    Browse the repository at this point in the history
  2. minor #26814 [EventDispatcher] Fix wrong listener in stopEventPropaga…

    …tion test (Peter Orosz)
    
    This PR was submitted for the master branch but it was merged into the 2.7 branch instead (closes #26814).
    
    Discussion
    ----------
    
    [EventDispatcher] Fix wrong listener in stopEventPropagation test
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 2.7
    | Bug fix?      | yes
    | New feature?  | no
    | BC breaks?    | no
    | Deprecations? | no
    | Tests pass?   | yes
    | Fixed tickets | #26810
    | License       | MIT
    | Doc PR        |
    
    Commits
    -------
    
    24c460a [EventDispatcher] Dispatcher in stopEventPropagation test now registers correct listener
    stof committed Apr 5, 2018
    Configuration menu
    Copy the full SHA
    c415e4c View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2018

  1. updated CHANGELOG for 2.7.45

    fabpot committed Apr 6, 2018
    Configuration menu
    Copy the full SHA
    f331d96 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    175e883 View commit details
    Browse the repository at this point in the history
  3. updated VERSION for 2.7.45

    fabpot committed Apr 6, 2018
    Configuration menu
    Copy the full SHA
    952879e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #26835 from fabpot/release-2.7.45

    released v2.7.45
    fabpot authored Apr 6, 2018
    Configuration menu
    Copy the full SHA
    42fb3a4 View commit details
    Browse the repository at this point in the history
Loading