2021-04-24 03:39:06 +02:00
|
|
|
# Changelog
|
|
|
|
|
2021-09-27 15:23:13 +02:00
|
|
|
- `PhpException` no longer requires a lifetime [#80].
|
|
|
|
- Added `PhpException` and `PhpResult` to prelude [#80].
|
2021-09-28 14:07:30 +02:00
|
|
|
- Fixed `ZendString` missing last character [#82].
|
2021-09-27 15:23:13 +02:00
|
|
|
|
|
|
|
[#80]: https://github.com/davidcole1340/ext-php-rs/pull/80
|
2021-09-28 14:07:30 +02:00
|
|
|
[#82]: https://github.com/davidcole1340/ext-php-rs/pull/82
|
2021-09-27 15:23:13 +02:00
|
|
|
|
2021-09-27 14:31:55 +02:00
|
|
|
## Version 0.5.0
|
|
|
|
|
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
- Method names are now renamed to snake case by default [#63].
|
|
|
|
- Refactored `ZendHashTable` into an owned and borrowed variant [#76].
|
|
|
|
- Creating a new hashtable is done through the `OwnedHashTable` struct, which
|
|
|
|
is then dereferenced to `&HashTable`, as `String` is to `&str`.
|
|
|
|
- Refactored `ZendString` into an owned and borrowed variant [#77].
|
|
|
|
- Creating a new Zend string is done through the `ZendString` struct, which is
|
|
|
|
then dereferenced to `&ZendStr`, as `String` is to `&str`.
|
|
|
|
- Class properties are now defined as struct properties, removing the old
|
|
|
|
property system in the process [#69].
|
|
|
|
|
|
|
|
### Enhancements
|
|
|
|
|
|
|
|
- Added interfaces and parent class to the `Debug` implementation for
|
|
|
|
`ClassEntry` [@72b0491].
|
|
|
|
- Rust unit type `()` now has a datatype of `void` [@8b3ed08].
|
|
|
|
- Functions returning Rust objects will now display their full classname in
|
|
|
|
reflection [#64].
|
|
|
|
- Fixed alignment of class objects in memory [#66].
|
|
|
|
|
|
|
|
Thanks to the contributors for this release:
|
|
|
|
|
|
|
|
- @davidcole1340
|
|
|
|
- @vodik
|
|
|
|
|
|
|
|
[#63]: https://github.com/davidcole1340/ext-php-rs/pull/63
|
|
|
|
[#76]: https://github.com/davidcole1340/ext-php-rs/pull/76
|
|
|
|
[#77]: https://github.com/davidcole1340/ext-php-rs/pull/77
|
|
|
|
[#69]: https://github.com/davidcole1340/ext-php-rs/pull/69
|
|
|
|
[#64]: https://github.com/davidcole1340/ext-php-rs/pull/64
|
|
|
|
[#66]: https://github.com/davidcole1340/ext-php-rs/pull/66
|
|
|
|
[@72b0491]: https://github.com/davidcole1340/ext-php-rs/commit/72b0491
|
|
|
|
[@8b3ed08]: https://github.com/davidcole1340/ext-php-rs/commit/8b3ed08
|
|
|
|
|
|
|
|
## Version 0.2.0 - 0.4.0
|
|
|
|
|
|
|
|
- Added macros!
|
|
|
|
- Missed a bit :(
|
|
|
|
|
2021-08-11 02:39:56 +02:00
|
|
|
## Version 0.1.0
|
2021-08-11 02:38:50 +02:00
|
|
|
|
|
|
|
- `Zval::reference()` returns a reference instead of a dereferenced pointer.
|
|
|
|
- Added `ZendHashTable::iter()` - note this is changing in a future version.
|
2021-09-27 14:31:55 +02:00
|
|
|
- `ClassBuilder::extends()` now takes a reference rather than a pointer to match
|
|
|
|
the return type of `ClassEntry::exception()`.
|
2021-08-11 02:38:50 +02:00
|
|
|
- `ClassEntry::build()` now returns a reference - same reason as above.
|
|
|
|
- Improve library 'safety' by removing `unwrap` calls:
|
2021-09-27 14:31:55 +02:00
|
|
|
- `.build()` returns `Result` on `FunctionBuilder`, `ClassBuilder` and
|
|
|
|
`ModuleBuilder`.
|
|
|
|
- `.property()` and `.constant()` return `Result` on `ClassBuilder`.
|
|
|
|
- `.register_constant()` returns `Result`.
|
|
|
|
- `.try_call()` on callables now return `Result` rather than `Option`.
|
|
|
|
- `throw()` and `throw_with_code()` now returns `Result`.
|
|
|
|
- `new()` and `new_interned()` on `ZendString` now returns a `Result`.
|
|
|
|
- For `ZendHashTable`:
|
|
|
|
- `insert()`, `insert_at_index()` now returns a
|
|
|
|
`Result<HashTableInsertResult>`, where `Err` failed, `Ok(Ok)` inserts
|
|
|
|
successfully without overwrite, and `Ok(OkWithOverwrite(&Zval))` inserts
|
|
|
|
successfully with overwrite.
|
|
|
|
- `push()` now returns a `Result`.
|
|
|
|
- Converting from a `Vec` or `HashMap` to a `ZendHashTable` is fallible, so
|
|
|
|
it now implementes `TryFrom` as opposed to `From`.
|
|
|
|
- For `Zval`:
|
|
|
|
- `set_string()` now returns a `Result`, and takes a second parameter
|
|
|
|
(persistent).
|
|
|
|
- `set_persistent_string()` has now been removed in favour of
|
|
|
|
`set_string()`.
|
|
|
|
- `set_interned_string()` also returns a `Result`.
|
|
|
|
- `set_array()` now only takes a `ZendHashTable`, you must convert your
|
|
|
|
`Vec` or `HashMap` by calling `try_into()` and handling the error.
|
2021-08-11 02:38:50 +02:00
|
|
|
|
2021-05-21 07:16:36 +02:00
|
|
|
## Version 0.0.7
|
|
|
|
|
|
|
|
- Added support for thread-safe PHP (@davidcole1340) #37
|
|
|
|
- Added ability to add properties to classes (@davidcole1340) #39
|
|
|
|
- Added better interactions with objects (@davidcole1340) #41
|
|
|
|
|
2021-05-11 11:49:09 +02:00
|
|
|
## Version 0.0.6
|
|
|
|
|
2021-09-27 14:31:55 +02:00
|
|
|
- Fixed `panic!` when a PHP binary string was given to a function
|
|
|
|
(@davidcole1340) [c:d73788e]
|
|
|
|
- Fixed memory leak when returning an array from Rust to PHP (@davidcole1340)
|
|
|
|
#34
|
|
|
|
- Documentation is now deployed to
|
|
|
|
[GitHub Pages](https://davidcol1340.github.io/ext-php-rs) (@davidcole1340) #35
|
|
|
|
- Added ability to unpack and pack binary strings similar to PHP
|
|
|
|
(@davidcole1340) #32
|
2021-05-11 11:49:09 +02:00
|
|
|
- Allowed `default-features` to be true for Bindgen (@willbrowningme) #36
|
|
|
|
|
2021-04-24 03:39:06 +02:00
|
|
|
## Version 0.0.5
|
|
|
|
|
2021-09-27 14:31:55 +02:00
|
|
|
- Relicensed project under MIT or Apache 2.0 as per Rust crate guidelines
|
|
|
|
(@davidcole1340) [c:439f2ae]
|
|
|
|
- Added `parse_args!` macro to simplify argument parsing (@davidcole1340)
|
|
|
|
[c:45c7242]
|
|
|
|
- Added ability to throw exceptions from Rust to PHP (@davidcole1340)
|
|
|
|
[c:45c7242]
|
2021-04-24 03:39:06 +02:00
|
|
|
- Added ability to register global constants (@davidcole1340) [c:472e26e]
|
|
|
|
- Implemented `From<ZendHashTable>` for `Vec` (@davidcole1340) [c:3917c41]
|
2021-09-27 14:31:55 +02:00
|
|
|
- Expanded implementations for converting to `Zval` from primitives
|
|
|
|
(@davidcole1340) [c:d4c6aa2]
|
2021-04-24 03:39:06 +02:00
|
|
|
- Replaced unit errors with an `Error` enum (@davidcole1340) [c:f11451f]
|
2021-09-27 14:31:55 +02:00
|
|
|
- Added `Debug` and `Clone` implementations for most structs (@davidcole1340)
|
|
|
|
[c:62a43e6]
|