Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTO-180 merged upstream changes #10

Merged
merged 151 commits into from
Mar 28, 2024
Merged

NTO-180 merged upstream changes #10

merged 151 commits into from
Mar 28, 2024

Commits on Oct 5, 2022

  1. Add docker compose

    * Add apcu for PHP 5.5+
    * Disable APC on PHP 7+ as APCu 5 is not supported
    * Add ability to use a custom test runtime
    
    Co-authored-by: Thomas <th@it-solutions-hirsch.de>
    alquerci and thirsch committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    e8cbc9d View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2022

  1. Merge pull request FriendsOfSymfony1#262 from alquerci/add-docker-com…

    …pose
    
    Add consistent local environment for testing with docker and docker-compose
    thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    6b82513 View commit details
    Browse the repository at this point in the history
  2. Use GitHub actions for Continuous Integration tests

    Remove TravisCI integration
    thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    32b2a4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    21b7381 View commit details
    Browse the repository at this point in the history
  4. Merge pull request FriendsOfSymfony1#268 from FriendsOfSymfony1/switc…

    …h-to-github-actions
    
    Use GitHub actions for Continuous Integration tests
    thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    d0e631d View commit details
    Browse the repository at this point in the history
  5. PHP 8.1 > internal_method_return_types

    https://wiki.php.net/rfc/internal_method_return_types
    
    PHP 8.0 added return type for abstract methods on Iterator, ArrayAccess, Countable, IteratorAggregate
    PHP 8.1 made non implementation as a Deprecated Warning
    PHP 9.0 (no release date at this moment) will drop the support.
    
    Temporary Fix : adding this Attribute
    Will drop the Deprecated warning.
    
    Adding return type will break compatibility before PHP 7.4,
    Return type has been added on PHP 7.0, but "mixed" special type is required, and it has been added on PHP 7.4.
    In order to be compatible with future PHP 9.0, once it will be release, we will have to drop the support to PHP Version before 7.4
    
    Currently a lot of Unix distribution in LTS are running a PHP Version older than 7.4 so moving to the final solution of "add return type" should break a lot of setup for the moment.
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    245c7cc View commit details
    Browse the repository at this point in the history
  6. PHP 8.1 > Serializable Phase Out

    https://wiki.php.net/rfc/phase_out_serializable
    
    PHP 7.4 add a new Serialize mecanism
    PHP 8.1 made old method, "Serializable implementation" deprecated
    PHP 9.0 (no release date at this moment) will drop the support.
    
    Temporary Fix: Adding both method serialize/unserialize and __serialize/__unserialize
    
    In order to be compatible with future PHP 9.0, once it will be release, we will have to drop the support to PHP Version before 7.4.
    
    Currently a lot of Unix distribution in LTS are running a PHP Version older than 7.4 so moving to the final solution of "add return type" should break a lot of setup for the moment.
    
    Each class has been serialized/unserialized and compared on PHP 8.1.2 and 5.6.30
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    6401fcc View commit details
    Browse the repository at this point in the history
  7. PHP 8.0 & 8.1 > Deprecated of null to non-nullable internal function …

    …parameters
    
    Mainly ensure use of string instead of null / false by casting the variable into (string)
    Also fix method/function arguments with default value must be at the end.
    
    Thanks to @teymour
    FriendsOfSymfony1@cba71a4
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    029b0e7 View commit details
    Browse the repository at this point in the history
  8. PHP 8.1 > strftime deprecated.

    2 possible workaround, use partial implementation with php date method or use IntlDateFormatter.
    As symfony1 is not intended to evolve, it should not rely on currently unused PHP-Extension (nor update composer.json).
    
    I propose a fix to replace "strftime" by "date", with a translation of format for PHP 8.1+
    
    It will lose the ability of translating date of logs (does anybody use it ?) and it will deprecated a few strftime format (probably not used)
    Performances should remains OK
    
    I only tested it with a few formats (the default one and a few others)
    If you need some missing strftime formats, please add them.
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    dcb1ce3 View commit details
    Browse the repository at this point in the history
  9. PHP 8.1 > Unit Test

    sfException> fileExcerpt file can be null, and PHP 8.1 do not allow null on is_readable()
    
    sfBrowser> Move sf_test conf before getContext, because getContext can throw some sfException, which will raise some printStackTrace, hidden by another Exception "header already sent ..."
    
    lime.php> some trace can have no "file" (internal methods call)
    lime.php> handle_exception can handle Error/Throwable, not avaialble under php7.2: remove typing
    
    sfTestFunctionalBase> can throw exception
    
    Fix Select Unit test NewActivePendingExpired.
    DomDocument on recent php return a list of values, not concatened ones.
    
    Fix SessionStorage UnitTest.
    
    sfSessionStorage could not be restarted.
    Flag $sessionStarted as false when shutdown to avoid error during unit test which can start several sfSessionStorage
    
    Storage need to be shutdown to avoid:
    PHP Warning:  session_name(): Session name cannot be changed when a session is active
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    8450b13 View commit details
    Browse the repository at this point in the history
  10. Fix lime message: "An uncaught exception has been thrown" do not have…

    … "error" value
    
    uncaught exception does not populate error field
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    9cb7fb4 View commit details
    Browse the repository at this point in the history
  11. PHP 8.1 > uasort(): Returning bool from comparison function is deprec…

    …ated, return an integer less than, equal to, or greater than zero
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    25a5e71 View commit details
    Browse the repository at this point in the history
  12. Fix ValueError: DOMDocument::loadHTML(): Argument #1 ($source) must n…

    …ot be empty
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    09fc710 View commit details
    Browse the repository at this point in the history
  13. PHP 8.0 > fread()/count() behavior

    ValueError: fread(): Argument #2 ($length) must be greater than 0
    
    TypeError: count(): Argument #1 ($value) must be of type Countable|array Foo Given
    Use Symfony Polyfill symfony/polyfill@d330c00
    
    TypeError: count(): Argument #1 ($value) must be of type Countable|array, string given
    Do not use Symfony pollyfill, is_array is enought
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    df2ec65 View commit details
    Browse the repository at this point in the history
  14. Fix Declaration of sfPearRestTest::downloadHttp($url, $lastmodified =…

    … null, $accept = false) must be compatible with sfPearRest::downloadHttp($url, $lastmodified = null, $accept = false, $channel = false)
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    42112ab View commit details
    Browse the repository at this point in the history
  15. PHP 8.0 > mktime update

    8.0.0 	hour is no longer optional.
    8.0.0 	minute, second, month, day and year are nullable now.
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    29ab2a7 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    12f7b4c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    cae793e View commit details
    Browse the repository at this point in the history
  18. PHP 8.0 > Fix is_numeric behavior with trailing empty char

    Numeric strings ending with whitespace ("42 ") will now return true. Previously, false was return instead.
    
    Use same fix has main maintened Yaml lib :
    symfony/yaml@4152e36
    + performance improvement
    symfony/yaml@2b5f2ae
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    7341b43 View commit details
    Browse the repository at this point in the history
  19. PHP 8.0 > String to Number Comparison.

    When $previousIndent was equal to 0, and $matches['indent'] = "    "
    
    PHP(before 8.0)> (0 != "    ") ==> false
    PHP8.0+ > (0 != "     ")  ==> true
    
    In order to keep "false" value we avoid "0" as a valid value.
    
    More details here why here:
    https://www.php.net/manual/en/migration80.incompatible.php
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    b191cb8 View commit details
    Browse the repository at this point in the history
  20. PHP 8.1 > Change support to PHP 8.1

    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    956cb1a View commit details
    Browse the repository at this point in the history
  21. Fix UnitTest application/x-sharedlib

    /bin/ls can be reported as:
    - application/x-sharedlib
    - application/x-executable
    - application/x-pie-executable
    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    b0cb92e View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    bb22141 View commit details
    Browse the repository at this point in the history
  23. Refactor code and apply Coding Style fixes

    Tybaze authored and thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    d0d0d12 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    01fadb9 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    3bb8339 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    7798328 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    1e9b188 View commit details
    Browse the repository at this point in the history
  28. Merge pull request FriendsOfSymfony1#266 from Tybaze/compat_php8.1

    Ensure compatibility with PHP 8.0 & 8.1
    thePanz committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    071b8bf View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

  1. test environment for php 8.2

    thirsch committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    fa161a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f6d779c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d89618f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    89c24cf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    754c940 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    13bfee2 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Merge pull request FriendsOfSymfony1#274 from vemaeg/feature/php-8.2-…

    …changes
    
    Add support for PHP v8.2
    thePanz committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    6f50a31 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d94af7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ad07e0 View commit details
    Browse the repository at this point in the history
  4. PHP 8.0 > Class name must be a valid object or a string in case the c…

    …ontroller does not exist.
    thirsch committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    4820ada View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c55d53c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8b81a56 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Merge pull request FriendsOfSymfony1#272 from vemaeg/feature/more-php…

    …-8.1-fixes
    
    Fix(php) Fix a few more php 8 issues
    thePanz committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    9bba8c5 View commit details
    Browse the repository at this point in the history
  2. Prepared release 1.5.15

    thirsch committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    e432434 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

  1. Merge pull request FriendsOfSymfony1#275 from vemaeg/feature/release-…

    …preparations
    
    Prepared release 1.5.15
    thePanz committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    a72247f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9945f3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31d2c60 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2023

  1. Fix(deprecations) Fix deprecations in sfMessageSource_Aggregate (Frie…

    …ndsOfSymfony1#277)
    
    * Fix(deprecations) Fix deprecations in sfMessageSource_Aggregate, add return types from implemented sfIMessageSource
    thePanz committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    2c5a4d6 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

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

Commits on Mar 9, 2023

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

Commits on Sep 20, 2023

  1. Configuration menu
    Copy the full SHA
    abdecd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44c6bc6 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. updated config

    akhumphrey committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    1bfa5f3 View commit details
    Browse the repository at this point in the history
  2. updated config

    akhumphrey committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    0d59d3e View commit details
    Browse the repository at this point in the history
  3. updated config

    akhumphrey committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    72c0635 View commit details
    Browse the repository at this point in the history
  4. updated config

    akhumphrey committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    472854c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3fce81d View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Configuration menu
    Copy the full SHA
    96d2848 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ebb5e32 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    57ca872 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a5cfe0d View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

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

Commits on Nov 8, 2023

  1. removed route caching

    akhumphrey committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    3057041 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c142352 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3303581 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Fix: avoid creating dynamic property $options in sfViewCacheManager (F…

    …riendsOfSymfony1#290)
    
    Dynamic properties are deprecated since PHP8.2
    vimar committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    3c59273 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef9f881 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2826410 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. add php8.3

    connorhu authored and thePanz committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    8ba3ff2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a68033 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2023

  1. Configuration menu
    Copy the full SHA
    21c70f1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1fe8979 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    d9e2763 View commit details
    Browse the repository at this point in the history
  2. Fix APC cache tests

    - Using negative TTLs to force the immediate expiration of keys, while
      convenient in tests, doesn't work consistently with APC and is an
      undocumented feature. Using a low TTL and sleep() is what guarantees
      that it works for APC. See krakjoe/apcu#184
    
    - The setting apc.use_request_time interferes with key expiration when
      running on the CLI. Making sure it always has a sensible value for
      running the tests. See krakjoe/apcu#392
    mentalstring authored and thePanz committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    be784fc View commit details
    Browse the repository at this point in the history
  3. Add APCu support

    Support for the APCu extension (through sfAPCuCache) as an alternative
    to APC, which no longer works with recent versions of PHP.
    mentalstring authored and thePanz committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    1d14219 View commit details
    Browse the repository at this point in the history
  4. Fix sfCacheSessionStorageTest with PHP>=7.2

    From PHP 7.2 onward, session functions are stricter and may not work
    if output/headers have already been sent out. Using output buffering
    prevents this issue.
    mentalstring authored and thePanz committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    5615daa View commit details
    Browse the repository at this point in the history
  5. Remove test dependency on APC

    Replace the use of sfAPCCache with sfFileCache in
    sfCacheSessionStorageTest so that it doesn't depend on APC being
    available.
    mentalstring authored and thePanz committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    5837057 View commit details
    Browse the repository at this point in the history
  6. Fix deprecation on stropos() usage on sfDebug::shortenFilePath (Frien…

    …dsOfSymfony1#299)
    
    Fix PHP v8.x deprecation on strpos() usage with `null` as first parameter
    iricketson committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    1446798 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    57758f5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d1dc877 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6edd425 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Declare $params var

    iricketson committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    806ce84 View commit details
    Browse the repository at this point in the history
  2. Replace default with 0

    iricketson committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d60c2c1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d9c21af View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    64be8ed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0a2daf4 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2024

  1. Merge pull request FriendsOfSymfony1#307 from iricketson/fix/sfValida…

    …torIp
    
    [PHP] Replace default $flags variable with 0
    connorhu committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    d0f559c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f19a707 View commit details
    Browse the repository at this point in the history
  3. Merge pull request FriendsOfSymfony1#306 from iricketson/fix/sfDoctri…

    …neFormGenerator
    
    [PHP8] Declare sfDoctrineFormGenerator $params property
    connorhu committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    abdbd74 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Update README

    Fix build badge, update supported PHP version and other minor tweaks.
    mentalstring authored and thePanz committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    66e79cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    424ed4d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9d26d67 View commit details
    Browse the repository at this point in the history
  4. Fix PHP8.1 sfForm - Unsupported operand types: array + null on sfForm…

    …::updateValues()
    
    Avoid error:
    Fatal error: Uncaught TypeError: Unsupported operand types: array + null in lib\form\sfForm.class.php:319
    
    Step to reproduce :
    $form = new sfForm();
    $form->updateValues(array('foo' => 'value'));
    
    PHP 5.3 coding style
    
    May use sfForm::getValues(), but as sfForm::updateValues() is a hack, it could be used before bind ($this->isBound = true);
    Tybaze authored and thePanz committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    b88d698 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    2a15114 View commit details
    Browse the repository at this point in the history
  2. Merge pull request FriendsOfSymfony1#311 from FriendsOfSymfony1/fix-l…

    …ink-to-github-pipeline-badge
    
    Fix link to GitHub pipeline badge
    connorhu committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    d90dc72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e6e9f94 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. fix(phpdoc) remove version tag

    connorhu authored and thePanz committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    6354fd3 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Configuration menu
    Copy the full SHA
    38e21c2 View commit details
    Browse the repository at this point in the history
  2. applied php-cs-fixer

    akhumphrey committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    b167cb9 View commit details
    Browse the repository at this point in the history
  3. added missing properties

    akhumphrey committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    bfeea0b View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

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

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    eca1c5a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8bc7519 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. Updated gh workflow to use latest actions

    thirsch authored and thePanz committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    81205f6 View commit details
    Browse the repository at this point in the history
  2. Backported display_errors-handling to sf1

    thirsch authored and thePanz committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    1b79957 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    5d62a2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4c138b View commit details
    Browse the repository at this point in the history
  3. Set min versions of swiftmailer to 5.4.13 and 6.2.5 and updated swift…

    …mailer submodule (FriendsOfSymfony1#331)
    
    * Update min versions of swiftmailer to v5.4.13 or v6.2.5
    * Update swiftmailer code on submodule to v5.4.13
    thirsch committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    edb850f View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Sync changelog with latest releases (FriendsOfSymfony1#337)

    * Sync changelog with latest releases
    thePanz committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    146806f View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. Configuration menu
    Copy the full SHA
    b74c8d7 View commit details
    Browse the repository at this point in the history
  2. Remove(legacy): drop sfAPCCache cache as apc extension does not exist…

    … anymore
    
    Please use sfAPCUCache instead
    thePanz committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    c40ce1e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a810c4d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f1df8ba View commit details
    Browse the repository at this point in the history
  5. Remove(legacy): delete checks for 'magic_quotes_gpc' and 'register_gl…

    …obals' ini settings, as removed on PHP v5.4
    thePanz committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    e47ec1d View commit details
    Browse the repository at this point in the history
  6. Remove(legacy): delete EAccelerator cache, the extension is not exist…

    …ing for php v7.4
    
    See: https://github.com/eaccelerator/eaccelerator, where the following
    message is shown:
    
    > This project is deprecated and does not work with anything newer than PHP 5.3.
    > Please use a recent version of PHP with OPcache instead!
    thePanz committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    04ec0aa View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    019e25d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2b5a586 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4cab155 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    64d9fc0 View commit details
    Browse the repository at this point in the history
  11. Remove(legacy): drop PHP v5.3 check on sfRoute

    This removes a preliminary fix for a legacy PHP 5.3. issue with regexp excaping
    PHP bug reference: http://bugs.php.net/bug.php?id=47229
    thePanz committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    30a2fc5 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Update: Update php-cs-fixer to v3.51

    Apply rule fixes
    thePanz committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    ccbef01 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    53a2b12 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f0ba28d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4d8148a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    50a898b View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Hotfix: Add type checking for deserialized data in sfParameterHolder …

    …and sfNamespacedParameterHolder (CVE-2024-28861)
    darkpills authored and thePanz committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    0bd9d59 View commit details
    Browse the repository at this point in the history
  2. Update php-cs-fixer to v3.52

    thePanz committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    50c946b View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    c1b411f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9aa8ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70aa655 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1844457 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c2ea16d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ddc1528 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d86803d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7ddc3d1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8b68ee8 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    772db3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    970a325 View commit details
    Browse the repository at this point in the history
  3. corrected json format

    akhumphrey committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    b48ebbd View commit details
    Browse the repository at this point in the history
  4. use php8.2 when linting

    akhumphrey committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    793e466 View commit details
    Browse the repository at this point in the history
  5. don't build php8.1

    akhumphrey committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    4389e44 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ade9503 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. removed upstream submodule

    akhumphrey committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    44a6f52 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f3d14d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    10afc80 View commit details
    Browse the repository at this point in the history
  4. only test php82

    akhumphrey committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    438b327 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fea21bc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    22cdd1e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b17808f View commit details
    Browse the repository at this point in the history
  8. attributes don't use \

    akhumphrey committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    dec9025 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2185c0d View commit details
    Browse the repository at this point in the history