Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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
Loading
...
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
Loading
  • 17commits
  • 20files changed
  • 10contributors

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 Windowsand on POSIX systems.
    @mlocati
    mlocati committedMar 20, 2018
    Configuration menu
    Copy the full SHA
    f7f8189View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2018

  1. Configuration menu
    Copy the full SHA
    3758a3bView 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
    fabpot committedApr 2, 2018
    Configuration menu
    Copy the full SHA
    d73f491View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2018

  1. Add PHPDbg support to HTTP components

    @hkdobrev@fabpot
    hkdobrev authored andfabpot committedApr 3, 2018
    Configuration menu
    Copy the full SHA
    60dd79cView commit details
    Browse the repository at this point in the history
  2. bug#26749Add 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
    fabpot committedApr 3, 2018
    Configuration menu
    Copy the full SHA
    eac5edeView commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2018

  1. Configuration menu
    Copy the full SHA
    cdde6d9View 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     <!-- seehttps://symfony.com/bc -->| Deprecations? | no| Tests pass?   | yes| Fixed tickets |#26757| License       | MITThis PR takes another approach to fix in excess slashes in Finder than#26337which does a simple rtrim instead of the breaking realpath.Commits-------cdde6d9 [Finder] Remove duplicate slashes in filenames
    @fabpot
    fabpot committedApr 4, 2018
    Configuration menu
    Copy the full SHA
    7c4676aView commit details
    Browse the repository at this point in the history
  3. [Finder] fix tests

    @xabbuh
    xabbuh committedApr 4, 2018
    Configuration menu
    Copy the full SHA
    540ea11View 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
    nicolas-grekas committedApr 4, 2018
    Configuration menu
    Copy the full SHA
    07f8f81View commit details
    Browse the repository at this point in the history
  5. Update da translations

    @c960657
    c960657 committedApr 4, 2018
    Configuration menu
    Copy the full SHA
    d0ea26bView commit details
    Browse the repository at this point in the history
  6. minor#26801Update 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
    fabpot committedApr 4, 2018
    Configuration menu
    Copy the full SHA
    a90cd13View 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@stof
    wwwd3v authored andstof committedApr 5, 2018
    Configuration menu
    Copy the full SHA
    24c460aView 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
    stof committedApr 5, 2018
    Configuration menu
    Copy the full SHA
    c415e4cView commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2018

  1. Configuration menu
    Copy the full SHA
    f331d96View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    175e883View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    952879eView commit details
    Browse the repository at this point in the history
  4. Merge pull request#26835from fabpot/release-2.7.45

    released v2.7.45
    @fabpot
    fabpot authoredApr 6, 2018
    Configuration menu
    Copy the full SHA
    42fb3a4View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp