Sun Dec 19 15:15:44 2021 UTC ()
databases/php-redis: update to 5.3.5

5.3.4 (2021-03-24)

This release fixes a multi/pipeline segfault on apple silicon as well as
two small compression related bugs.

You can find a detailed list of changes in Changelog.md and package.xml

* Fix multi/pipeline segfault on Apple silicon [e0796d48] (Michael Grunder)
* Pass compression flag on HMGET in RedisCluster [edc724e6] (Adam Olley)
* Abide by ZSTD error return constants [8400ed1c] (Michael Grunder)
* Fix timing related CI session tests [9b986bf8] (Michael Grunder)

* Sponsors
~ Audiomack - https://audiomack.com
~ Open LMS - https://openlms.net
~ BlueHost - https://bluehost.com
~ Object Cache Pro for WordPress - https://objectcache.pro
~ Avtandil Kikabidze - https://github.com/akalongman
~ Zaher Ghaibeh - https://github.com/zaherg
~ BatchLabs - https://batch.com

5.3.5 (2021-12-18)

This release adds support for exponential backoff w/jitter, experimental
support for detecting a dirty connection, as well as many other fixes
and improvements.

You can find a detailed list of changes in Changelog.md and package.xml
or by inspecting the git commit logs.

--- Sponsors ---

Audiomack - https://audiomack.com
Open LMS - https://openlms.net
BlueHost - https://bluehost.com
Object Cache Pro for WordPress - https://objectcache.pro
Avtandil Kikabidze - https://github.com/akalongman
Zaher Ghaibeh - https://github.com/zaherg
BatchLabs - https://batch.com
Luis Zarate - https://github.com/jlzaratec

* Fixed segfault in redis_setoption_handler [692e4e84] (Pavlo Yatsukhnenko)
* Fix masters array in the event of a cluster failover [bce692962] (Bar Shaul)
* Fix 32 bit type error [672dec87f] (Remi Collet)
* Fix radix character in certain locales [89a871e24] (Pavlo Yatsukhnenko)
* ZSTD Validation fix [6a77ef5cd] (Michael Grunder)
* Remove superfluous typecast [b2871471f] (Remi Collet)

* Updated documentation [f84168657, d017788e7, 20ac84710, 0adf05260,
aee29bf73, 09a095e72, 12ffbf33a, ff331af98, a6bdb8731, 305c15840,
1aa10e93a, d78b0c79d, c6d37c27c, a6303f5b9, d144bd2c7, a6fb815ef, 9ef862bc6]
(neodisco, Clement Tessier, T. Todua, dengliming, Maxime Cornet,
Emanuele Filannino Michael Grunder)

* Travis CI Fixes
[a43f4586e, 4fde8178f, 7bd5415ac, fdb8c4bb7, d4f407470]
(Pavlo Yatsukhnenko)

* Minor fixes/cleanup
[2e190adc1, 99975b592, 9d0879fa5, 22b06457b]
(Pavlo Yatsukhnenko)

* Fix RedisArray constructor bug
[85dc883ba](https://github.com/phpredis/phpredis/commit/85dc883ba)
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))

* Moved to GitHub Actions
[4d2afa786, 502d09fd5] (Pavlo Yatsukhnenko)

* Use more appropriate array iteration macro
[6008900c2] (Pavlo Yatsukhnenko)

* Clean up session tests
[ab25ae7f3] (Michael Grunder)

* RedisArray refactors [1250f0001, 017b2ea7f, 37ed3f079]
(Pavlo Yatsukhnenko)

* Use zend_parse_parameters_none helper
[a26b14dbe] (Remi Collet)

* Support for various exponential backoff strategies
[#1986, #1993, 732eb8dcb, 05129c3a3, 5bba6a7fc],
(Nathaniel Braun)

* Added experimental support for detecting a dirty connection
[d68579562] (Michael Grunder)

* Created distinct compression utility methods (pack/unpack)
[#1939, da2790aec] (Michael Grunder)

* SMISMEMBER Command
[#1894, ae2382472, ed283e1ab] (Pavlo Yatsukhnenko)

* Fix typo in cluster_scan_resp [44affad2] (Michael Grunder)


(taca)
diff -r1.15 -r1.16 pkgsrc/databases/php-redis/Makefile
diff -r1.8 -r1.9 pkgsrc/databases/php-redis/distinfo

cvs diff -r1.15 -r1.16 pkgsrc/databases/php-redis/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/php-redis/Makefile 2021/03/29 00:09:35 1.15
+++ pkgsrc/databases/php-redis/Makefile 2021/12/19 15:15:44 1.16
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: Makefile,v 1.15 2021/03/29 00:09:35 taca Exp $ 1# $NetBSD: Makefile,v 1.16 2021/12/19 15:15:44 taca Exp $
2# 2#
3 3
4MODNAME= redis 4MODNAME= redis
5PECL_VERSION= 5.3.3 5PECL_VERSION= 5.3.5
6PECL_LEGACY_VERSION_SCHEME= yes 6PECL_LEGACY_VERSION_SCHEME= yes
7PECL_DISTNAME= ${PECL_VERSION} 7PECL_DISTNAME= ${PECL_VERSION}
8CATEGORIES= databases 8CATEGORIES= databases
9MASTER_SITES= ${MASTER_SITE_GITHUB:=nicolasff/} 9MASTER_SITES= ${MASTER_SITE_GITHUB:=nicolasff/}
10GITHUB_PROJECT= phpredis 10GITHUB_PROJECT= phpredis
11EXTRACT_SUFX= .tar.gz 11EXTRACT_SUFX= .tar.gz
12 12
13MAINTAINER= pkgsrc-users@NetBSD.org 13MAINTAINER= pkgsrc-users@NetBSD.org
14HOMEPAGE= https://github.com/nicolasff/phpredis 14HOMEPAGE= https://github.com/nicolasff/phpredis
15COMMENT= PHP extension for Redis 15COMMENT= PHP extension for Redis
16LICENSE= php 16LICENSE= php
17 17
18PHP_VERSIONS_INCOMPATIBLE= 56 18PHP_VERSIONS_INCOMPATIBLE= 56

cvs diff -r1.8 -r1.9 pkgsrc/databases/php-redis/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/php-redis/distinfo 2021/10/26 10:09:44 1.8
+++ pkgsrc/databases/php-redis/distinfo 2021/12/19 15:15:44 1.9
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.8 2021/10/26 10:09:44 nia Exp $ 1$NetBSD: distinfo,v 1.9 2021/12/19 15:15:44 taca Exp $
2 2
3BLAKE2s (php-redis/5.3.3.tar.gz) = f28b26e64384f1134bcbe190812ff47064c139e53cf218a8f941fcf88b9ca2bd 3BLAKE2s (php-redis/5.3.5.tar.gz) = 1e6a6d56b95c93890898ae3974232506f3f2ec3b6fb6f0382b9e0f71c874fb15
4SHA512 (php-redis/5.3.3.tar.gz) = 1d004dc36c82cbb6a1537103d35b5b9ba29a0eec3ec4aa8c6af71f0b40fdcb7671501d395c8925f200cc81efd1a862ee9aca05624e0c79051714aa8b0abbe3ec 4SHA512 (php-redis/5.3.5.tar.gz) = 4114d1e8b7c19b4ad04e078a01fc8666c029ada49ad7807f7aebc40ca849ca901ed2b55636d7e7528c0ac1d3d37b73839b60e89661959e46714477857b289b0b
5Size (php-redis/5.3.3.tar.gz) = 284558 bytes 5Size (php-redis/5.3.5.tar.gz) = 293275 bytes