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/browser-kit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0fa03cf
Choose a base ref
...
head repository: symfony/browser-kit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 16141bc
Choose a head ref
  • 9 commits
  • 5 files changed
  • 4 contributors

Commits on Apr 27, 2020

  1. Configuration menu
    Copy the full SHA
    1467e0c View commit details
    Browse the repository at this point in the history

Commits on May 16, 2020

  1. Merge branch '3.4' into 4.4

    * 3.4:
      [VarDumper] fix for change in PHP 7.4.6 (bis)
      [BrowserKit] Allow Referer set by history to be overridden (3.4)
    nicolas-grekas committed May 16, 2020
    Configuration menu
    Copy the full SHA
    56bede5 View commit details
    Browse the repository at this point in the history
  2. Merge branch '4.4' into 5.0

    * 4.4:
      [VarDumper] fix for change in PHP 7.4.6 (bis)
      [VarExporter] fix for change in PHP 7.4.6
      [BrowserKit] Allow Referer set by history to be overridden (3.4)
    nicolas-grekas committed May 16, 2020
    Configuration menu
    Copy the full SHA
    d2e69cc View commit details
    Browse the repository at this point in the history

Commits on May 20, 2020

  1. Configuration menu
    Copy the full SHA
    76f1e2c View commit details
    Browse the repository at this point in the history
  2. Merge branch '4.4' into 5.0

    * 4.4:
      [PhpUnitBridge] fix leftover
      [PhpUnitBridge] fix installing under PHP >= 8
      Use ">=" for the "php" requirement
      bump icu 67.1
    nicolas-grekas committed May 20, 2020
    Configuration menu
    Copy the full SHA
    5822f5a View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. Configuration menu
    Copy the full SHA
    6462973 View commit details
    Browse the repository at this point in the history
  2. bug #36839 [BrowserKit] Raw body with custom Content-Type header (azh…

    …urb)
    
    This PR was squashed before being merged into the 4.4 branch.
    
    Discussion
    ----------
    
    [BrowserKit] Raw body with custom Content-Type header
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 4.4
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | License       | MIT
    
    Currently, if you try to send POST/PUT request with custom `Content-Type` header and specified body, the real request will contain `text/plain` content type.
    
    Following code
    ```php
    $client->request(
        'POST',
        '/url',
        [],
        [],
        [
            'CONTENT_TYPE' => 'application/json'
        ],
        '{"foo":"bar"}'
    );
    ```
    produces next request
    ```
    POST /
    Content-Type: text/plain; charset=utf-8
    
    {"foo":"bar"}
    ```
    
    With this fix, the request will be
    ```
    POST /
    Content-Type: application/json
    
    {"foo":"bar"}
    ```
    
    Commits
    -------
    
    d2dd92be77 [BrowserKit] Raw body with custom Content-Type header
    fabpot committed May 22, 2020
    Configuration menu
    Copy the full SHA
    f533106 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2020

  1. Merge branch '4.4' into 5.0

    * 4.4: (27 commits)
      [Serializer] minor cleanup
      fix merge
      Run PHP 8 as 7.4.99
      Remove calls to deprecated ReflectionParameter::getClass().
      [VarDumper] fix PHP 8 support
      Add php 8 to travis.
      [Cache] Accessing undefined constants raises an Error in php8
      [Cache] allow DBAL v3
      Skip Doctrine DBAL on php 8 until we have a compatible version.
      [DomCrawler] Catch expected ValueError.
      Made method signatures compatible with their corresponding traits.
      [ErrorHandler] Apply php8 fixes from Debug component.
      [DomCrawler] Catch expected ValueError.
      [Validator] Catch expected ValueError.
      [VarDumper] ReflectionFunction::isDisabled() is deprecated.
      [BrowserKit] Raw body with custom Content-Type header
      [PropertyAccess] Parse php 8 TypeErrors correctly.
      [Intl] Fix call to ReflectionProperty::getValue() for static properties.
      [HttpKernel] Prevent calling method_exists() with non-string values.
      Fix wrong roles comparison
      ...
    nicolas-grekas committed May 23, 2020
    Configuration menu
    Copy the full SHA
    51c8cd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16141bc View commit details
    Browse the repository at this point in the history
Loading