The NetBSD Project

CVS log for pkgsrc/databases/php-redis3/Attic/distinfo

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / databases / php-redis3

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.5, Sun Mar 7 13:05:07 2021 UTC (3 years, 1 month ago) by taca
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +1 -1 lines
FILE REMOVED

databases/php-redis3: remove pacakge

Remove php-redis3 package.  It was php-redis for php70 and later, but now
php-redis take over its role.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Sep 10 13:26:15 2019 UTC (4 years, 7 months ago) by otis
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.3: +5 -5 lines
Diff to previous 1.3 (colored)

php-redis3: update to 3.1.6

Update php-redis3 from release 3.1.3 to release 3.1.6.

* Changes between 3.1.3 and 3.1.4:

    The primary new feature phpredis 3.1.4 is the ability to send MULTI .. EXEC blocks in pipeline mode.  There are
    also many bugfixes and minor improvements to the api, listed below:

    * Allow mixing MULTI and PIPELINE modes (experimental)!  [5874b0] (Pavlo Yatsukhnenko)

    * Added integration for coverty static analysis and fixed several warnings
      [faac8b0, eff7398, 4766c25, 0438ab4, 1e0b065, 733732a, 26eeda5, 735025, 42f1c9, af71d4] (Pavlo Yatsukhnenko)
    * Fixed link to redis cluster documentation [3b0b06] (Pavlo Yatsukhnenko)
    * Remove unused PHP_RINIT and PHP_RSHUTDOWN functions [c760bf] (Pavlo Yatsukhnenko)
    * Removed duplicate HGET in redis array hash table, formatting [d0b9c5] (Pavlo Yatsukhnenko)
    * Treat NULL bulk as success for session read [659450] (Pavlo Yatsukhnenko)
    * Refactor redis_send_discard [ea15ce] (Pavlo Yatsukhnenko)
    * Updated runtime exception handling [8dcaa4, 7c1407] (Pavlo Yatsukhnenko)
    * Added a github issue template [61aba9] (Pavlo Yatsukhnenko)
    * Initialize gc member of zend_string [37f569) (Pavlo Yatsukhnenko)
    * Fix valgrind warnings [471ce07, 1ab89e1, b624a8b] (Pavlo Yatsukhnenko)
    * Fix php5/php7 compatibility layer [1ab89e, 4e3225] (Pavlo Yatsukhnenko)
    * Fix typo in README.markdown [e47e44] (Mark Shehata)
    * Improve redis array rehash [577a91] (Pavlo Yatsukhnenko)
    * Change redis array pure_cmds from zval to hashtable [a56ed7] (Pavlo Yatsukhnenko)
    * Don't try to set TCP_NODELAY on a unix socket and don't warn on multiple
      calls to pipeline [d11798, 77aeba] (Michael Grunder)
    * Use zend_string rather than char* for various context fields (err, prefix, etc) [2bf7b2] (Pavlo Yatsukhnenko)
    * Various other library fixes [142b51, 4452f6, e672f4, 658ee3, c9df77, 4a0a46] (Pavlo Yatsukhnenko)

* Changes between 3.1.4 and 3.1.5:

    This is interim release which contains only bug fixes.

    * Fix segfault when extending Redis class in PHP 5 [d23eff] (Pavlo Yatsukhnenko)
    * Fix RedisCluster constructor with PHP 7 strict scalar type [5c21d7] (Pavlo Yatsukhnenko)
    * Allow to use empty string as persistant_id [344de5] (Pavlo Yatsukhnenko)
    * Fix cluster_init_seeds. [db1347] (@adlagares)
    * Fix z_seeds may be a reference [42581a] (@janic716)
    * PHP >=7.3 uses zend_string for php_url elements [b566fb] (@fmk)

* Changes between 3.1.5 and 3.1.6:

    This release conains only fix of RedisArray distributor hashing function
    which was broken in 3.1.4. Huge thanks to @rexchen123

Revision 1.3 / (download) - annotate - [select for diffs], Fri Aug 18 10:14:21 2017 UTC (6 years, 8 months ago) by taca
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Changes since 1.2: +5 -5 lines
Diff to previous 1.2 (colored)

Update php-redis3 to 3.1.3.

phpredis 3.1.3

This release contains two big improvements:

1. Adding a new printf like command construction function with additionaly
   format specifiers specific to phpredis.
2. Implementation of custom objects for Redis and RedisArray wich eliminates
   double hash lookup.

Also many small improvements and bug fixes were made.

* A printf like method to construct a Redis RESP command [a4a0ed, d75081,
  bdd287, 0eaeae, b3d00d] (Michael Grunder)
* Use custom objects instead of zend_list for storing Redis/RedisArray
  [a765f8, 8fa85a] (Pavlo Yatsukhnenko)
* Make sure redisCluster members are all initialized on (re)creation [162d88]
  (Michael Grunder)
* Fix Null Bulk String response parsing in cluster library [058753] (Alberto
  Fern?ndez)
* Add hStrLen command [c52077, fb88e1] (Pavlo Yatsukhnenko)
* Add optional COUNT argument to sPop [d2e203] (Michael Grunder)
* Allow sInterStore to take one arg [26aec4, 4cd06b] (Michael Grunder)
* Allow MIGRATE to accept multiple keys [9aa3db] (Michael Grunder)
* Allow using numeric string in zInter command [ba0070] (Pavlo Yatsukhnenko)
* Use crc32 table from PHP distro [f81694] (Pavlo Yatsukhnenko)
* Use ZVAL_DEREF macros for dereference input variables [ad4596] (Pavlo
  Yatsukhnenko)
* Add configureoption tag to package.xml [750963] (Pavlo Yatsukhnenko)
* Fix read_timeout [18149e, b56dc4] (Pavlo Yatsukhnenko)
* Fix zval_get_string impl for PHP5 [4e56ba] (Pavlo Yatsukhnenko)
* Fix Redis/RedisArray segfaults [be5c1f, 635c3a, 1f8dde, 43e1e0] (Pavlo
  Yatsukhnenko)
* Fix memory leak and potential segfault [aa6ff7, 88efaa] (Michael Grunder)
* Throw exception for all non recoverable errors [e37239] (Pavlo Yatsukhnenko)
* Assume "NULL bulk" reply as success (empty session data) [4a81e1] (Pavlo
  Yatsukhnenko)
* Increase read buffers size [520e06] (Pavlo Yatsukhnenko)
* Better documentation [f0c25a, c5991f, 9ec9ae] (Michael Grunder)
* Better TravisCI integration [e37c08] (Pavlo Yatsukhnenko)
* Refactoring (Pavlo Yatsukhnenko, Michael Grunder)

Revision 1.2 / (download) - annotate - [select for diffs], Sun Mar 12 14:28:26 2017 UTC (7 years, 1 month ago) by taca
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1
Changes since 1.1: +5 -5 lines
Diff to previous 1.1 (colored)

Update php-redis3 to 3.1.1.

phpredis 3.1.1

* Additional test updates for 32 bit systems (@remicollet)
* ARM rounding issue in tests (@remicollet)
* Use new zend_list_close instead of zend_list_delete when reconnecting.
* Refactoring of redis_boolean_response_impl and redis_sock_write
  (@yatsukhnenko)


phpredis 3.1.1

This release contains mostly fixes for issues introduced when merging
the php 5 and 7 codebase into a single branch.

* Fixed a segfault in igbinary serialization (@yatsukhnenko)
* Restore 2.2.8/3.0.0 functionality to distinguish between an error
  and simply empty session data. (@remicollet)
* Fix double to string conversion function (@yatsukhnenko)
* Use PHP_FE_END definition when available (@remicollet)
* Fixed various 'static function declared but not used' warnings
* Fixes to various calls which were typecasting pointers to the
  wrong size. (@remicollet)

* Added php session unit test (@yatsukhnenko)
* Added explicit module dependancy for igbinary (@remicollet)
* Added phpinfo serialization information (@remicollet)


phpredis 3.1.1RC2

* Additional test updates for 32 bit systems (@remicollet)
* ARM rounding issue in tests (@remicollet)
* Use new zend_list_close instead of zend_list_delete when reconnecting.
* Refactoring of redis_boolean_response_impl and redis_sock_write
  (@yatsukhnenko)


phpredis 3.1.1.RC1

This release contains mostly fixes for issues introduced when merging the php
5 and 7 codebase into a single branch.

* Fixed a segfault in igbinary serialization (@yatsukhnenko)
* Restore 2.2.8/3.0.0 functionality to distinguish between an error
  and simply empty session data. (@remicollet)
* Fix double to string conversion function (@yatsukhnenko)
* Use PHP_FE_END definition when available (@remicollet)
* Fixed various 'static function declared but not used' warnings
* Fixes to various calls which were typecasting pointers to the
  wrong size. (@remicollet)

* Added php session unit test (@yatsukhnenko)
* Added explicit module dependancy for igbinary (@remicollet)
* Added phpinfo serialization information (@remicollet)


phpredis 3.1.0

In this version of phpredis codebase was unified to work with all versions of
php \o/ Also many bug fixes and some improvements has been made.

--- Improvements ---

* Support the client to Redis Cluster just having one master (andyli) [892e5646]
* Allow both long and strings that are longs for zrangebyscore offset/limit
  (Michael Grunder) [bdcdd2aa]
* Process NX|XX, CH and INCR options in zAdd command (Pavlo Yatsukhnenko)
  [71c9f7c8]

--- Fixes ---

* Fix incrby/decrby for large integers (Michael Grunder) [3a12758a]
* Use static declarations for spl_ce_RuntimeException decl (Jeremy Mikola)
  [a9857d69]
* Fixed method call problem causes session handler to display two times
  (ZiHang Gao) [24f86c49]
* psetex method returns '+OK' on success, not true (sitri@ndxbn) [afcd8445]
* Fix integer overflow for long (>32bit) increments in hIncrBy (iyesin)
  [58e1d799]
* Move zend_object handler to the end (Michael Grunder) [34107966]
* Using setOption on redis array causes immediate connection (Pavlo
  Yatsukhnenko) [f1a85b38]

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Jul 26 09:37:23 2016 UTC (7 years, 8 months ago) by jdolecek
Branch: TNF
CVS Tags: pkgsrc-base, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

phpredis 3.0.0

This version of phpredis supports cluster and is intended for php versions
7.0.0 and higher. To compile cluster-enabled phpredis for older versions
of php, please use the 2.2.8 pecl package.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Jul 26 09:37:23 2016 UTC (7 years, 8 months ago) by jdolecek
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>