Overview

Request 690692 accepted

- Update to 3.1.3
* Fix --disable-memcached-session by ifdef-ing session INI handler
callbacks (#396, #420)
- Update to 3.1.2
* Fix --enable-memcached-protocol was set to yes by default, reverted
to no (#418)
- Update to 3.1.1
* Fix --disable-memcached-sasl and --disable-memcached-session replaced
by --enable variants (#416)
- Update to 3.1.0
* Support for PHP 7.3 (#385, #390)
* Add INI setting to choose session consistent hash (ketama or
ketama_weighted) (#344, #392)
* Add support for libmemcached encryption (#345, #381)
* Add error reporting to session code (#165)
* Expose build configuration via PECL (#383)
* Fix hanging getStats() when binary protocol and non-blocking
are both enabled (#348)
* Fix session persistence by checking memcached behavior values
before setting (#379)
* Fix memcached.sess_persistent not working with
memcached.sess_binary_protocol = On (#375)
* Configure warns if libmemcached needs sasl.h (#341, #380)
* Resolve various INI deviations in 3.0.3 (#351)
* Turn off sess_binary_protocol by default with older libmemcached
(#330)
* Impove Windows builds (#411)
* Support Homebrew ZLIB path (#410)
* Remove forgotten unused comment about -lpthread (#406)
* Git ignore configure.ac (#405)
* Replace obsolete macros AC_TRY_FOO with AC_FOO_IFELSE (#403)
* Remove unused defines (#354)
* Change session_lock and sess_prefix default ini values (#340, #350)
* Use new fast_zpp parameter parsing API (#302, #311)
- Update to 3.0.4
* PHP 7.0 - 7.1 - 7.2 release of memcached extension. Note that support for
libmemcached 0.x series has been discontinued and the oldest actively tested
version is 1.0.2. It is highly recommended to use version 1.0.18 of
libmemcached.
* Fix corrupted interned strings (#338)
* Fix unit tests for compatibility with PHP 7.2 (#358, #359)
* Fix \x0a in key name locks up connection and triggers a fatal timeout error (#339)
* Fix missing optional parameter getStats($type) (#337)
* Fix typo in skip message (#331)
* Fix build warnings (329)
* Document GET_EXTENDED flag, add/rename other missing/misnamed constants (#335)
- Build extension with fvisibility=hidden to limit symbol
exposure and/or symbols clashes.
- Add refs fate#322501 bsc#1045750 to keep SLE Checker bots happy
- updated to 3.0.3
* Fix crash when checking session data with older versions
of libmemcached (#328)
* Fix crash due to zend_mm_corrupted when fetching session
data (#327)
- updated to 3.0.2
* Update warning for touch command in binary protocol mode with
libmemcached below 1.0.18 (#322)
* Add tests for 64-bit
increment/decrement/incrementByKey/decrementByKey (#321)
* Fix tests for 32-bit
increment/decrement/incrementByKey/decrementByKey (#319)
- updated to 3.0.1
* Add API entries for flushBuffers() and getAllKeys() (#316)
* Ignore specific errors from memcached_dump for getAllKeys()
with newer memcached servers (#315)
* Fix compiling with memcached binary protocol enabled (#312)
* Restore php_libmemcached_compat with workaround for missing
memcached_exists (#314)
* Travis CI purge old versions of memcached and libmemcached (#309)
- updated to 3.0.0
API
* The method signature of get, getByKey, getMulti, and getMultiByKey changed.
* get* and getMulti* commands no longer take cas or user flags parameters.
* get* and getMulti* commands now take the Memcached::GET_EXTENDED flag to
retrieve user flags and cas tokens.
* Fixes getStats command to return all stats from all servers
* Fixes allKeys command behaviour
* Fixes error where cache callback for get command was not setting
expiration time properly
* Added server type to server list
* Remove use_sasl ini-variable and initialise sasl as needed
* CAS tokens are returned as integers and they overflow to strings as needed
Session handler
* The session memcached protocol config name was changed, and the default
protocol was changed from text to binary protocol. If your memcached
setup does not support the binary protocol(e.g. if using twemproxy),
then set memcached.sess_binary_protocol = Off. (Previously called
memcached.sess_binary)
* Session lock algorithm updated (new ini-values
memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and
memcached.sess_lock_retries)
* Session extension uses PHP allocators (still some work to do on the rest
of the extension)
* Ini-values take effect during session_start or session_regenerate_id
* Fixes crash with session_regenerate_id (work-around for PHP bug)
Tests
* Fix several problematic tests
- renamed to php7-memcached
- updated to git6ace07d
- do not require php5-igbinary for 13.1
- update to version 2.2.0
* Added the OPT_SERVER_TIMEOUT_LIMIT behaviour
- update to version 2.2.0RC1
* Fixes incorrect size when compressing serialized objects
* Fixes endianess of compressed values
- update to version 2.2.0b1
* Reinstate support for libememcached 0.x series
* Added SASL support to session handler
* Added Memcached::flushBuffers as per GH #78
* Fixes GH #54: Fixed UDP server adding with newer libmemcached
* Fixed PHP bug #65334: (Segfault if uncompress value failed)
* Fixes GH #14: get with cas token fails to fetch all results
* Fixes GH #68: memcached 2.1.0 requires libmemcached 1.0.10
* Fixes GH #69: compiling on CentOS 6.4 with libmemcached 1.0.17
* Merged PR #91: More granular session locking support
* Added session handler settings:
- memcached.sess_number_of_replicas
- memcached.sess_randomize_replica_read
- memcached.sess_remove_failed
- memcached.sess_connect_timeout
* Added support for memcached protocol handlers
* Added Memcached::setBucket for virtual bucket support
* Added support for msgpack serialization
* Memcached::setSaslAuthData returns correct status on success
* Added support for user-defined flags in set and get operations
- replaced source package with the original from github,
added pull_request_42.patch and pull_request_56.patch
- initial package for version 2.1.0
* Drop support for libmemcached 0.x series, now 1.0.x is required
* Add support for virtual bucket distribution
* Fix compilation against PHP 5.2

Request History
Johannes Weberhofer's avatar

weberho created request

- Update to 3.1.3
* Fix --disable-memcached-session by ifdef-ing session INI handler
callbacks (#396, #420)
- Update to 3.1.2
* Fix --enable-memcached-protocol was set to yes by default, reverted
to no (#418)
- Update to 3.1.1
* Fix --disable-memcached-sasl and --disable-memcached-session replaced
by --enable variants (#416)
- Update to 3.1.0
* Support for PHP 7.3 (#385, #390)
* Add INI setting to choose session consistent hash (ketama or
ketama_weighted) (#344, #392)
* Add support for libmemcached encryption (#345, #381)
* Add error reporting to session code (#165)
* Expose build configuration via PECL (#383)
* Fix hanging getStats() when binary protocol and non-blocking
are both enabled (#348)
* Fix session persistence by checking memcached behavior values
before setting (#379)
* Fix memcached.sess_persistent not working with
memcached.sess_binary_protocol = On (#375)
* Configure warns if libmemcached needs sasl.h (#341, #380)
* Resolve various INI deviations in 3.0.3 (#351)
* Turn off sess_binary_protocol by default with older libmemcached
(#330)
* Impove Windows builds (#411)
* Support Homebrew ZLIB path (#410)
* Remove forgotten unused comment about -lpthread (#406)
* Git ignore configure.ac (#405)
* Replace obsolete macros AC_TRY_FOO with AC_FOO_IFELSE (#403)
* Remove unused defines (#354)
* Change session_lock and sess_prefix default ini values (#340, #350)
* Use new fast_zpp parameter parsing API (#302, #311)
- Update to 3.0.4
* PHP 7.0 - 7.1 - 7.2 release of memcached extension. Note that support for
libmemcached 0.x series has been discontinued and the oldest actively tested
version is 1.0.2. It is highly recommended to use version 1.0.18 of
libmemcached.
* Fix corrupted interned strings (#338)
* Fix unit tests for compatibility with PHP 7.2 (#358, #359)
* Fix \x0a in key name locks up connection and triggers a fatal timeout error (#339)
* Fix missing optional parameter getStats($type) (#337)
* Fix typo in skip message (#331)
* Fix build warnings (329)
* Document GET_EXTENDED flag, add/rename other missing/misnamed constants (#335)
- Build extension with fvisibility=hidden to limit symbol
exposure and/or symbols clashes.
- Add refs fate#322501 bsc#1045750 to keep SLE Checker bots happy
- updated to 3.0.3
* Fix crash when checking session data with older versions
of libmemcached (#328)
* Fix crash due to zend_mm_corrupted when fetching session
data (#327)
- updated to 3.0.2
* Update warning for touch command in binary protocol mode with
libmemcached below 1.0.18 (#322)
* Add tests for 64-bit
increment/decrement/incrementByKey/decrementByKey (#321)
* Fix tests for 32-bit
increment/decrement/incrementByKey/decrementByKey (#319)
- updated to 3.0.1
* Add API entries for flushBuffers() and getAllKeys() (#316)
* Ignore specific errors from memcached_dump for getAllKeys()
with newer memcached servers (#315)
* Fix compiling with memcached binary protocol enabled (#312)
* Restore php_libmemcached_compat with workaround for missing
memcached_exists (#314)
* Travis CI purge old versions of memcached and libmemcached (#309)
- updated to 3.0.0
API
* The method signature of get, getByKey, getMulti, and getMultiByKey changed.
* get* and getMulti* commands no longer take cas or user flags parameters.
* get* and getMulti* commands now take the Memcached::GET_EXTENDED flag to
retrieve user flags and cas tokens.
* Fixes getStats command to return all stats from all servers
* Fixes allKeys command behaviour
* Fixes error where cache callback for get command was not setting
expiration time properly
* Added server type to server list
* Remove use_sasl ini-variable and initialise sasl as needed
* CAS tokens are returned as integers and they overflow to strings as needed
Session handler
* The session memcached protocol config name was changed, and the default
protocol was changed from text to binary protocol. If your memcached
setup does not support the binary protocol(e.g. if using twemproxy),
then set memcached.sess_binary_protocol = Off. (Previously called
memcached.sess_binary)
* Session lock algorithm updated (new ini-values
memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and
memcached.sess_lock_retries)
* Session extension uses PHP allocators (still some work to do on the rest
of the extension)
* Ini-values take effect during session_start or session_regenerate_id
* Fixes crash with session_regenerate_id (work-around for PHP bug)
Tests
* Fix several problematic tests
- renamed to php7-memcached
- updated to git6ace07d
- do not require php5-igbinary for 13.1
- update to version 2.2.0
* Added the OPT_SERVER_TIMEOUT_LIMIT behaviour
- update to version 2.2.0RC1
* Fixes incorrect size when compressing serialized objects
* Fixes endianess of compressed values
- update to version 2.2.0b1
* Reinstate support for libememcached 0.x series
* Added SASL support to session handler
* Added Memcached::flushBuffers as per GH #78
* Fixes GH #54: Fixed UDP server adding with newer libmemcached
* Fixed PHP bug #65334: (Segfault if uncompress value failed)
* Fixes GH #14: get with cas token fails to fetch all results
* Fixes GH #68: memcached 2.1.0 requires libmemcached 1.0.10
* Fixes GH #69: compiling on CentOS 6.4 with libmemcached 1.0.17
* Merged PR #91: More granular session locking support
* Added session handler settings:
- memcached.sess_number_of_replicas
- memcached.sess_randomize_replica_read
- memcached.sess_remove_failed
- memcached.sess_connect_timeout
* Added support for memcached protocol handlers
* Added Memcached::setBucket for virtual bucket support
* Added support for msgpack serialization
* Memcached::setSaslAuthData returns correct status on success
* Added support for user-defined flags in set and get operations
- replaced source package with the original from github,
added pull_request_42.patch and pull_request_56.patch
- initial package for version 2.1.0
* Drop support for libmemcached 0.x series, now 1.0.x is required
* Add support for virtual bucket distribution
* Fix compilation against PHP 5.2


Origin Manager's avatar

origin-manager added leap-reviewers as a reviewer

Changing to a lower priority origin.

origin: openSUSE:Factory
origin_old: openSUSE:Leap:15.0:Update


Origin Manager's avatar

origin-manager accepted review

origin: openSUSE:Factory
origin_old: openSUSE:Leap:15.0:Update


Factory Auto's avatar

factory-auto accepted review

Check script succeeded


Staging Bot's avatar

staging-bot added as a reviewer

Being evaluated by staging project "openSUSE:Leap:15.1:Staging:adi:6"


Staging Bot's avatar

staging-bot accepted review

Picked openSUSE:Leap:15.1:Staging:adi:6


Max Lin's avatar

mlin7442 accepted review

ok


Staging Bot's avatar

staging-bot accepted review

ready to accept


Staging Bot's avatar

staging-bot approved review

ready to accept


Ludwig Nussel's avatar

lnussel_factory accepted request

Accept to openSUSE:Leap:15.1

openSUSE Build Service is sponsored by