Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Community News:
Latest PECL Releases (02.04.2025)
Feb 04, 2025 @ 08:05:17

Latest PECL Releases:

  • openswoole 25.2.0
    . PHP 8.4 support

  • gRPC 1.70.0
    - gRPC Core 1.70.0 update
  • couchbase 4.2.6
    Enhancements ============
    • PCBC-992: Add zone aware replica reads (#201).

    Fixes

    • PCBC-1018: Do not destroy expired connection if it still being used (#200).

    • PCBC-1016: Fix trustCertificate option that was ignored previously (#195).

    • Update core to 1.0.5 (#203).

    • Fix PHP 8.4 deprecation warnings (#198).

    • Fix Undefined constant error (#196).

  • parallel 1.2.6
    - fix/update Windows CI #330 - upgrade docker images and add PHP 8.4 containers #331 - support in-tree build #334 - support building via pie #335, #336
  • jsonpath 3.0.0
    ## Breaking changes

    In comparisons involving numbers, numeric strings are now treated as numbers.

    Example:

    $data = [
        'items' => [
            [
                'id' => 1,
                'quantity' => 5,
            ],
            [
                'id' => 2,
                'quantity' => '8',
            ],
        ],
    ];
    

    Before: $.items[?(@.quantity > 0)] returns [['id' => 1, 'quantity' => 5]]. After: $.items[?(@.quantity > 0)] returns [['id' => 1, 'quantity' => 5], ['id' => 2, 'quantity' => '8']].

    What's Changed

    • Test also on PHP 8.4 for Windows and PHP 8.5 (nightly) for Linux, cache PHP-SDK in Windows by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/192
    • Allow numeric strings in number comparisons by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/191
  • PDO_INFORMIX 1.3.7
    Changed the config file to support CSDK 5.0 for informix 15.
tagged:

Link:


Trending Topics: