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: simplepie/simplepie
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.5.5
Choose a base ref
...
head repository: simplepie/simplepie
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.5.6
Choose a head ref
  • 8 commits
  • 9 files changed
  • 5 contributors

Commits on Aug 12, 2020

  1. PHP 8.0: prevent ValueError for invalid encoding (#657)

    Check the encoding against the list of supported encodings before ever calling `mb_convert_encoding()`.
    
    Co-authored-by: jrfnl <[email protected]>
    jrfnl and jrfnl authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    deddccd View commit details
    Browse the repository at this point in the history
  2. Travis: test against more recent PHP versions (#653)

    ... including the upcoming PHP 8.0 (nightly).
    
    Co-authored-by: jrfnl <[email protected]>
    jrfnl and jrfnl authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    3ee6579 View commit details
    Browse the repository at this point in the history
  3. PHP 8.0: handle removal of get_magic_quotes_gpc() (#654)

    Any function call to the `get_magic_quotes_gpc()` method now needs to be wrapped in a `function_exists()`.
    
    Co-authored-by: jrfnl <[email protected]>
    jrfnl and jrfnl authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    364bcbb View commit details
    Browse the repository at this point in the history
  4. PHP 7.4/8.0: curly brace array access deprecated & removed (#655)

    PHP 7.4 deprecated curly brace array access, PHP 8.0 has removed support for it completely.
    
    This fixes the instances of this syntax in SimplePie.
    
    Co-authored-by: jrfnl <[email protected]>
    jrfnl and jrfnl authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    dac5a3c View commit details
    Browse the repository at this point in the history
  5. PHP 8.0: required parameters are no longer allowed after optional par…

    …ameters (#656)
    
    By giving the `&$working` parameter a default value, this issue is circumvented.
    
    Co-authored-by: jrfnl <[email protected]>
    jrfnl and jrfnl authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    d18f05c View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2020

  1. Fix permanent_url for HTTP 301 (#660)

    Using cURL CURLOPT_FOLLOWLOCATION instead of the manual method in
    SimplePie hides the list of HTTP redirects along the way, and prevents
    the distinction of e.g. 301 vs. 302 redirects needed for
    `simplepie->subscribe_url(true)`.
    
    This patch disables CURLOPT_FOLLOWLOCATION in SimplePie, and fixes the
    manual method at the same time (curl_options where not given to
    following redirection requests).
    The use of CURLOPT_FOLLOWLOCATION was nevertheless not systematic (only
    when open_basedir was not set), so now there is only one logic
    independent of open_basedir.
    Alkarex authored Sep 17, 2020
    Configuration menu
    Copy the full SHA
    692e8bc View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2020

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

Commits on Oct 14, 2020

  1. Version 1.5.6 (#662)

    * Updated to version 1.5.6
    mblaney authored Oct 14, 2020
    Configuration menu
    Copy the full SHA
    1c68e14 View commit details
    Browse the repository at this point in the history
Loading