<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns="http://purl.org/rss/1.0/"
        xmlns:dc="http://purl.org/dc/elements/1.1/">

    <channel rdf:about="https://pecl.php.net">
        <link>https://pecl.php.net</link>
        <dc:creator>php-webmaster@lists.php.net</dc:creator>
        <dc:publisher>php-webmaster@lists.php.net</dc:publisher>
        <dc:language>en-us</dc:language>
        <items>
            <rdf:Seq>

                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=protobuf&amp;amp;release=4.30.0RC1"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=openswoole&amp;amp;release=25.2.0"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=gRPC&amp;amp;release=1.70.0"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=couchbase&amp;amp;release=4.2.6"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=parallel&amp;amp;release=1.2.6"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=jsonpath&amp;amp;release=3.0.0"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=PDO_INFORMIX&amp;amp;release=1.3.7"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=ice&amp;amp;release=1.11.0"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=jsonpath&amp;amp;release=2.1.1"/>
                                    <rdf:li rdf:resource="https://pecl.php.net/package-changelog.php?package=protobuf&amp;amp;release=3.25.6"/>
                
            </rdf:Seq>
        </items>

        <title>PECL: Latest releases</title>
        <description>The latest releases in PECL.</description>
    </channel>

            <item rdf:about="https://pecl.php.net/package-changelog.php?package=protobuf&amp;release=4.30.0RC1">
            <title>protobuf 4.30.0RC1</title>
            <link>https://pecl.php.net/package-changelog.php?package=protobuf&amp;amp;release=4.30.0RC1</link>
            <description>
                * See github.com/protocolbuffers/protobuf/releases/tag/v30.0-rc1 for release notes.            </description>
            <dc:date>2025-02-04T23:04:44-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=openswoole&amp;release=25.2.0">
            <title>openswoole 25.2.0</title>
            <link>https://pecl.php.net/package-changelog.php?package=openswoole&amp;amp;release=25.2.0</link>
            <description>
                . PHP 8.4 support            </description>
            <dc:date>2025-02-02T21:24:07-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=gRPC&amp;release=1.70.0">
            <title>gRPC 1.70.0</title>
            <link>https://pecl.php.net/package-changelog.php?package=gRPC&amp;amp;release=1.70.0</link>
            <description>
                - gRPC Core 1.70.0 update            </description>
            <dc:date>2025-01-30T23:00:49-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=couchbase&amp;release=4.2.6">
            <title>couchbase 4.2.6</title>
            <link>https://pecl.php.net/package-changelog.php?package=couchbase&amp;amp;release=4.2.6</link>
            <description>
                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).            </description>
            <dc:date>2025-01-29T23:53:44-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=parallel&amp;release=1.2.6">
            <title>parallel 1.2.6</title>
            <link>https://pecl.php.net/package-changelog.php?package=parallel&amp;amp;release=1.2.6</link>
            <description>
                - 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            </description>
            <dc:date>2025-01-29T15:09:05-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=jsonpath&amp;release=3.0.0">
            <title>jsonpath 3.0.0</title>
            <link>https://pecl.php.net/package-changelog.php?package=jsonpath&amp;amp;release=3.0.0</link>
            <description>
                ## Breaking changes

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

Example:
```
$data = [
    &#039;items&#039; =&gt; [
        [
            &#039;id&#039; =&gt; 1,
            &#039;quantity&#039; =&gt; 5,
        ],
        [
            &#039;id&#039; =&gt; 2,
            &#039;quantity&#039; =&gt; &#039;8&#039;,
        ],
    ],
];
```

Before: `$.items[?(@.quantity &gt; 0)]` returns `[[&#039;id&#039; =&gt; 1, &#039;quantity&#039; =&gt; 5]]`.
After: `$.items[?(@.quantity &gt; 0)]` returns `[[&#039;id&#039; =&gt; 1, &#039;quantity&#039; =&gt; 5], [&#039;id&#039; =&gt; 2, &#039;quantity&#039; =&gt; &#039;8&#039;]]`.

## What&#039;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            </description>
            <dc:date>2025-01-29T13:28:30-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=PDO_INFORMIX&amp;release=1.3.7">
            <title>PDO_INFORMIX 1.3.7</title>
            <link>https://pecl.php.net/package-changelog.php?package=PDO_INFORMIX&amp;amp;release=1.3.7</link>
            <description>
                Changed the config file to support CSDK 5.0 for informix 15.            </description>
            <dc:date>2025-01-29T07:12:25-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=ice&amp;release=1.11.0">
            <title>ice 1.11.0</title>
            <link>https://pecl.php.net/package-changelog.php?package=ice&amp;amp;release=1.11.0</link>
            <description>
                - PHP 7.4, drop support
- PHP 8.3 and PHP 8.4, add support #314
- Update zephir parser to 1.7.0
- Update zephir-lang/zephir@c79b710            </description>
            <dc:date>2025-01-26T16:04:12-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=jsonpath&amp;release=2.1.1">
            <title>jsonpath 2.1.1</title>
            <link>https://pecl.php.net/package-changelog.php?package=jsonpath&amp;amp;release=2.1.1</link>
            <description>
                * Add link to PHP Extensions Repository for Windows DLLs by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/180
* Add dependabot configuration by @dawitnida in https://github.com/supermetrics-public/pecl-jsonpath/pull/181
* Bump actions/checkout from 2 to 4 by @dependabot in https://github.com/supermetrics-public/pecl-jsonpath/pull/183
* Bump DoozyX/clang-format-lint-action from 0.12 to 0.17 by @dependabot in https://github.com/supermetrics-public/pecl-jsonpath/pull/182
* Bump schneegans/dynamic-badges-action from 1.0.0 to 1.7.0 by @dependabot in https://github.com/supermetrics-public/pecl-jsonpath/pull/184
* Bump php/setup-php-sdk from 0.8 to 0.9 by @dependabot in https://github.com/supermetrics-public/pecl-jsonpath/pull/185
* Bump DoozyX/clang-format-lint-action from 0.17 to 0.18 by @dependabot in https://github.com/supermetrics-public/pecl-jsonpath/pull/186
* Add composer.json for compatibility with PIE by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/187
* Fix segmentation fault when matching regex string against non-string values by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/190            </description>
            <dc:date>2025-01-26T01:03:43-05:00</dc:date>
        </item>
            <item rdf:about="https://pecl.php.net/package-changelog.php?package=protobuf&amp;release=3.25.6">
            <title>protobuf 3.25.6</title>
            <link>https://pecl.php.net/package-changelog.php?package=protobuf&amp;amp;release=3.25.6</link>
            <description>
                * See github.com/protocolbuffers/protobuf/releases/tag/v25.6 for release notes.            </description>
            <dc:date>2025-01-24T20:33:54-05:00</dc:date>
        </item>
    
</rdf:RDF>
