Releases: CopernicaMarketingSoftware/PHP-CPP
Version 1.3.1
This release is mainly a bugfix release
- Added a couple of extra checks to ensure that PHP-CPP also compilers on these olders compilers
- Fixed compile issue for 32bit systems (issue 167)
- Fixed segmentation fault when an exception was thrown from out of an __invoke() or __call() method
- Refactored the initialization and shutdown of extension objects
- Fixed initialization of the PhpCpp::Functor class
- Fixed memory leak in classimpl
- Fixed compile issue on multithread setups
- Dlsym() call has been replaced with DL_FETCH_SYMBOL(), and default move constructor has been removed
- Fixed ambiguous call (MSVC compiler) - Re-factored operator[] access to the get() function.
- Added missing static cast of void* to DL_HANDLE
- Added missing return statement
- Fix test (fixes issue 167)
- Merge pull request #169 from ovr/patch-1 (Fix indent )
- Merge pull request #173 from atvise/fix_win_ambigious_call - Fixed ambiguous call (MSVC compiler)
- Merge pull request #175 from atvise/fix_win_missing_static_cast Added missing static cast of void* to DL_HANDLE
- Merge pull request #176 from atvise/fix_missing_returns Added missing return statement
- Removed unused code
Version 1.3
A new release of PHP-CPP with bug fixes and new features. The highlights are:
- Value::unset() method has been fixed to make it possible to remove array/object members
- Reduced amount of code by using variadic templates
- All move and assignment operators are marked as 'noexcept'
- Fixed chaining methods, it now is possible to "return this"
- FIxed memory leaks
- Added Php::Script and Php::File classes that can evaluate PHP scripts
- Added methods Php::include(), Php::include_once(), Php::require() and Php::require_once()
- Fixed return value of Php::eval() function (this could break existing applications that rely on old behavior)
- It now is possible to iterate over super-globals like Php::POST, Php::SERVER, etcetera
- Added Php::Function class that allows one to capture C++ lambdas and pass them over to PHP user space
- Added support for constants using the Php::Constant class
- Added functions Php::define(), Php::defined() and Php::constant()
- Added version check to ensure that a compiled extension is compatible with the installed version of PHP-CPP
Version 1.2.2
This release is mainly a bugfix version
- Fixed a memory leak with Php::Value objects not being freed correctly when returned
- Php::Object("MyClass") no longer crashes when there is no __construct() function
- It is now slightly easier to cross compile
Version 1.2.1
Minor release which adds a few minor things.
- Php::Value can now be casted to a std::set
- Php::ByVal and Php::ByRef will now be type-less if no type provided
- Makefile will now respect the specified php-config binary
- Makefile will now build a static library as well
Version 1.2
This is mainly a bugfix version + some new features and change in behavior of some functions.
- New feature: Php::Value objects can now also be compared with other Php::Value objects using C++ comparison operators like ==, <, >, etcetera.
- Fix: magic methods were not working for objects created with Php::Object("MyClass", new MyClass())
- Fix: moving nullptr to a Php::Value object caused a crash
- Fix: infinite loop when compariting value objects with each other using operator ==
- New feature: A C++ class does no longer have to have a default constructor to be usable from PHP
- Changed behavior: PHP-CPP used to throw PHP exceptions to user space when an error occured, while the Zend engine would trigger a fatal error in similar situations and stop further execution. This was a difference between PHP-CPP and the Zend engine. This has been changed: now PHP-CPP also triggers fatal errors when the programmer makes a mistake (instead of throwing exceptions).
- Fix: methods and properties from base classes were not available in derived classes
- New feature: Php::eval() function
- New feature: Php::class_exists() function
- New feature: Php::is_a() and Php::is_subclass_of() functions
- New feature: Methods Php::Value::instanceOf() and Php::Value::derivedFrom()
- Fix: creating a Php::Value based on a std::map would not result in an array variable being created
- Fix: for objects created using Php::Object() constructor, the __construct() method was not called
- Fix: traversing through array properties was not always working when property names started with a null byte
- Fix: casting a Php::value holding an array to a map with string keys, will now turn the keys into numeric string keys ("1", "2", etcetera)
- Fix: "apachectl reload" caused a crash on PHP 5.3 environments
- Changed behavior: setting or retrieving properties of a Php::Value that start with a null byte (to rely on the Zend implementation of private properties) will no longer work (PHP-CPP users should never rely on specific Zend features)
Version 1.1.1
This release fixes a bug that caused apache to crash when the "apache reload" command was given while an extension based on PHP-CPP was installed.
Version 1.1
Release 1.1 of the PHP-CPP library contains a number of small bug fixes, and support for php.ini variables.
The source code and directory structure of the library has been refactored to prepare for future support of HHVM, so that extensions written with PHP-CPP can be used in combination with Zend, and in combination with HHVM. This is work in progress: currently PHP-CPP extensions only work with Zend.
The most important changes in version 1.1 are:
- Support for php.ini entries.
- Restructured source code to be engine agnostic.
Version 1.0
This is the first stable release of the PHP-CPP library. Since the previous release various bugs have been fixed and a number of small features have been added. These are the highlights:
- Support for TRSM (multi-threading PHP installations)
- Test framework has been added to the source distribution
- Fixed iterating over arrays
- Fixed populating multidimensional arrays
- Allow chaining of class/method/property registration methods.
- Class and interface inheritance can be specified in the get_module() startup function
- Fixed super-global Php::SERVER when running as Apache module with just-in-time population
- Added support for static class properties
Version 0.9.2
This release has mainly bug fixes, and some small new necessary features:
- A unit test framework has been added
- Object properties could not have initial negative values
- C++ iterators were not correct when iterating over PHP classes that implemented Iterator or IteratorAggregate
- Output streams 'Php::out', 'Php::notice', 'Php::warning' and 'Php::error' and 'Php::deprecated' have been added
- Setting up multidimensional arrays was not working correctly
Version 0.9.1
In PHP-CPP version 0.9.1 several small memory corruption bugs have been fixed, and some changes have been made that prevented the library from being compiled for different PHP versions or with different compilers than the ones used by us.
No new features have been introduced. Just like PHP-CPP v0.9 this is a feature-freeze releases that prepares for the upcoming v1.0 version.