Releases: CopernicaMarketingSoftware/PHP-CPP
Version 1.5
PHP-CPP version 1.5 is mainly a bugfix release, and it has a small number of new features:
- PHP interfaces defined in C++ can now also have static methods
- Fixed segmentation fault crash when casting objects
- Fixed crash when calling chained C++ methods from a PHP script
- Allowed "Php::Value x = y["whatever"]" syntax in C++ code
- Fixed memory leak when calling function stored in a Php::Value object
- Fixed memory leak when a Php::Iterator object was being used
Version 1.4
New release with several bugfixes and some new features
- Added a function to load other extensions by path
- Fixed some symbols that were not being exported
- Value::rawValue() will now return nullptr in case the Value is not a string
- Value::get(int) and Value::contains(int) now also work on Objects implementing ArrayAccess
- Makefile will now add the version using sonames
Version 1.3.2
This release is mainly a bugfix release
- Implemented a simple sapi_name() method which will return the current sapi.
- On Windows with mingw EOF was not defined.
- Added access checks to Php::Value::contains.
- Fixed the Value::contains method and added the isCallable(name) function to see if the object has an accessible member function
- Changed default visibility for symbols in the PHP-CPP library to hidden and explicitly exported all symbols available from the public API.
- Fix compile issue with PHP 5.3
- Added article about dynamic loading
- Added DlUnrestricted example extension
- Fixed a crash when dynamicly loaded extensions were unloaded
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.