2008-09-28 15:55:44 by Tonnerre Lombard | Files touched by this commit (2) |
Log message:
Upgrade PHP PECL alternative PHP cache extension (apc) to version 3.0.19
to fix arbitrary code execution problems (CVE-2008-1488).
Changes since 3.0.16:
* Fix for CVE-2008-1488.
* Fix apc_add() cache expunge bug.
* Added parameter to apc_fetch to determine success/failure when fetching
booleans.
* Fix for bug 13504.
* Move expunge callback groundwork to 3.1 (Rasmus)
* Fix fd-leak.
* Fix double-free on builtin functions.
* Initial PHP 5.3 support.
|
2008-06-12 04:14:58 by Joerg Sonnenberger | Files touched by this commit (1134) |
Log message:
Add DESTDIR support.
|
2008-03-21 01:09:12 by John Klos | Files touched by this commit (2) |
Log message:
Bring APC to 3.0.16. This fixes a number of issues:
3.0.16
* Fix for longstanding cache-full crash (Christian Seiler)
http://news.php.net/php.pecl.dev/4951 for the details
* Added optional shm unmap on a fatal signal feature (Lucas Nealan)
* Added PTHREAD_MUTEX_ADAPTIVE_NP option pthread locks (Paul Saab)
* Minor cleanups (Lucas Nealan)
* Added configure option to enable apc_cache_info('filehits') (Shire)
3.0.15
* Eliminate a per-request time() syscall (Rasmus)
* Added rfc1867 prefix, name, and freq ini options (Shire)
* Allow deletion of individual user cache entries via apc.php (Sara)
* Fix overzealous cleanup during RSHUTDOWN (Gopal)
* Fix memory alignment and locking issues (Gopal)
* Make apc_compile insert/replace entries (Shire)
* Make mixed inheritance recompile & cache afresh (Gopal)
* Make nostat mode search include_path for canonicalization (Gopal)
* ZTS & other compile fixes (Gopal, Edin, Shire)
|
2007-09-05 00:45:57 by Jaromir Dolecek | Files touched by this commit (2) |
Log message:
Update do APC 3.0.14. Changes since 3.0.12 are miscellaneous bugfixes.
New in 3.0.14:
* Build fix (Shire)
* Don't hook the upload hook if APC is disabled (Rasmus)
* Local shadow cache support (Gopal)
* Avoid uneccessary loops over op_arrays for "known" auto-globals (Gopal)
* Fix apc_add() to overwrite timed out user entries (Rasmus)
* Fix double inclusion of files with conditional classes in php4 (Gopal)
* Allocator fixes to reduce fragmentation (Gopal)
New in 3.0.13:
* PHP 5.2 file upload progress tracking support (Rasmus)
* Pthread mutex and spin locks (Shire)
* Recursive zval support for apc_fetch/_store (Shire, Gopal)
* apc.stat_ctime flag for ctime checks (Rasmus)
* Multiple key fetches with apc_fetch (Shire)
* Canary checks for shm memory deallocation (Gopal)
* Add hooks for external optimizer (Shire)
* Obsolete and remove apc optimizer (Gopal)
* APC info changes - cache insert rate, hit and miss rates (Shire)
* Fix apc_load_constants (Gopal)
* Rewrite dump opcode code to use vld (Gopal)
* Use apc_[ewn]print functions for error reporting (Shire)
* Auto global fixes and refactoring (Gopal, Shire)
* Fix memory leaks in object serialization (Ilia)
* Memory cleanup code for destructor order (Gopal)
* Win32 build fixes (Ilia, Wez)
* ZTS and Php 4 build fixes (Bjori)
* Add apc_add() function (Rasmus)
* Add optional limited flag to apc_sma_info() (Rasmus)
Also fixes:
PR: 33424 by FUKAUMI Naoki
|
2006-11-06 22:11:46 by Jaromir Dolecek | Files touched by this commit (2) |
Log message:
Update php-apc to 3.0.12p2 - changes are several fixes and PHP 5.2
compatibility
|
2006-06-04 18:26:56 by Joerg Sonnenberger | Files touched by this commit (73) |
Log message:
Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).
While going through the tree, fix some more packages which had similiar
issues with too strict conflicts, bump the revisions of those.
|
2006-06-02 20:28:01 by Joerg Sonnenberger | Files touched by this commit (136) |
Log message:
Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*,
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or
ap2-* respectively. Add new variables to simplify the Makefile
handling. Add CONFLICTS on the old names. Reset revisions of bumped
packages. ap-php will now depend on the default Apache and PHP version.
All programs using it have an implicit option of the Apache version
as well.
OK from jlam@ and adrianp@.
|
2006-05-03 16:02:30 by Todd Vierling | Files touched by this commit (4) |
Log message:
PHP module "apc" -- Alternative PHP Cache 3.0.10. From DESCR:
APC is the Alternative PHP Cache, which provides a way of boosting the
performance of PHP on heavily-loaded sites by allowing scripts to be cached
in a compiled state, so that the overhead of parsing and compiling can be
almost completely eliminated.
|