pyo3/CHANGELOG.md

308 lines
12 KiB
Markdown
Raw Normal View History

2018-05-30 13:03:31 +00:00
# Changelog
2018-07-30 20:52:22 +00:00
All notable changes to this project will be documented in this file.
2018-07-30 20:52:22 +00:00
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
2018-11-04 23:32:46 +00:00
## [Unreleased]
2019-04-04 07:47:21 +00:00
### Added
2019-04-23 16:55:35 +00:00
* PyPy support by omerbenamram in [#393](https://github.com/PyO3/pyo3/pull/393)
2019-04-04 07:47:21 +00:00
* Have `PyModule` generate an index of its members (`__all__` list).
2019-04-17 10:04:53 +00:00
* Allow `slf: PyRef<T>` for pyclass(#419)
2019-04-24 06:58:26 +00:00
* Allow to use lifetime specifiers in `pymethods`
2019-04-26 08:11:23 +00:00
* Add `marshal` module. [#460](https://github.com/PyO3/pyo3/pull/460)
2019-04-04 07:47:21 +00:00
### Changed
* Methods decorated with `#[getter]` and `#[setter]` can now omit wrapping the
result type in `PyResult` if they don't raise exceptions.
2019-04-04 07:47:21 +00:00
### Fixed
2019-03-30 19:23:31 +00:00
* `type_object::PyTypeObject` has been marked unsafe because breaking the contract `type_object::PyTypeObject::init_type` can lead to UB.
* Fixed automatic derive of `PySequenceProtocol` implementation in [#423](https://github.com/PyO3/pyo3/pull/423).
2019-04-09 10:02:19 +00:00
* Capitalization & better wording to README.md.
* Docstrings of properties is now properly set using the doc of the `#[getter]` method.
* Fixed issues with `pymethods` crashing on doc comments containing double quotes.
* `PySet::new` and `PyFrozenSet::new` now return `PyResult<&Py[Frozen]Set>`; exceptions are raised if
the items are not hashable.
2019-03-30 19:23:31 +00:00
2019-03-28 11:49:59 +00:00
## [0.6.0] - 2018-03-28
### Regressions
* Currently, [#341](https://github.com/PyO3/pyo3/issues/341) causes `cargo test` to fail with weird linking errors when the `extension-module` feature is activated. For now you can work around this by making the `extension-module` feature optional and running the tests with `cargo test --no-default-features`:
```toml
[dependencies.pyo3]
version = "0.6.0"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
```
2018-11-12 21:25:45 +00:00
### Added
2019-02-01 13:01:18 +00:00
* Added a `wrap_pymodule!` macro similar to the existing `wrap_pyfunction!` macro. Only available on python 3
* Added support for cross compiling (e.g. to arm v7) by mtp401 in [#327](https://github.com/PyO3/pyo3/pull/327). See the "Cross Compiling" section in the "Building and Distribution" chapter of the guide for more details.
* The `PyRef` and `PyRefMut` types, which allow to differentiate between an instance of a rust struct on the rust heap and an instance that is embedded inside a python object. By kngwyu in [#335](https://github.com/PyO3/pyo3/pull/335)
2019-02-23 17:01:22 +00:00
* Added `FromPy<T>` and `IntoPy<T>` which are equivalent to `From<T>` and `Into<T>` except that they require a gil token.
* Added `ManagedPyRef`, which should eventually replace `ToBorrowedObject`.
2018-11-12 21:25:45 +00:00
### Changed
2018-11-12 21:28:45 +00:00
2019-03-05 04:15:34 +00:00
* Renamed `PyObjectRef` to `PyAny` in #388
2018-11-12 21:25:45 +00:00
* Renamed `add_function` to `add_wrapped` as it now also supports modules.
* Renamed `#[pymodinit]` to `#[pymodule]`
* `py.init(|| value)` becomes `Py::new(value)`
* `py.init_ref(|| value)` becomes `PyRef::new(value)`
* `py.init_mut(|| value)` becomes `PyRefMut::new(value)`.
* `PyRawObject::init` is now infallible, e.g. it returns `()` instead of `PyResult<()>`.
* Renamed `py_exception!` to `create_exception!` and refactored the error macros.
2019-02-01 13:01:18 +00:00
* Renamed `wrap_function!` to `wrap_pyfunction!`
* Renamed `#[prop(get, set)]` to `#[pyo3(get, set)]`
* `#[pyfunction]` now supports the same arguments as `#[pyfn()]`
* Some macros now emit proper spanned errors instead of panics.
2019-02-01 13:01:18 +00:00
* Migrated to the 2018 edition
2019-02-23 17:01:22 +00:00
* `crate::types::exceptions` moved to `crate::exceptions`
* Replace `IntoPyTuple` with `IntoPy<Py<PyTuple>>`.
* `IntoPyPointer` and `ToPyPointer` moved into the crate root.
* `class::CompareOp` moved into `class::basic::CompareOp`
* PyTypeObject is now a direct subtrait PyTypeCreate, removing the old cyclical implementation in [#350](https://github.com/PyO3/pyo3/pull/350)
2019-02-19 21:30:22 +00:00
* Add `PyList::{sort, reverse}` by chr1sj0nes in [#357](https://github.com/PyO3/pyo3/pull/357) and [#358](https://github.com/PyO3/pyo3/pull/358)
2019-02-23 17:01:22 +00:00
* Renamed the `typeob` module to `type_object`
2018-11-12 21:25:45 +00:00
### Removed
2018-11-12 13:20:40 +00:00
* `PyToken` was removed due to unsoundness (See [#94](https://github.com/PyO3/pyo3/issues/94)).
* Removed the unnecessary type parameter from `PyObjectAlloc`
2019-02-23 17:01:22 +00:00
* `NoArgs`. Just use an empty tuple
* `PyObjectWithGIL`. `PyNativeType` is sufficient now that PyToken is removed.
### Fixed
* A soudness hole where every instances of a `#[pyclass]` struct was considered to be part of a python object, even though you can create instances that are not part of the python heap. This was fixed through `PyRef` and `PyRefMut`.
2019-03-19 17:42:17 +00:00
* Fix kwargs support in [#328](https://github.com/PyO3/pyo3/pull/328).
* Add full support for `__dict__` in [#403](https://github.com/PyO3/pyo3/pull/403).
## [0.5.3] - 2019-01-04
### Fixed
* Fix memory leak in ArrayList by kngwyu [#316](https://github.com/PyO3/pyo3/pull/316)
2018-11-25 23:16:47 +00:00
## [0.5.2] - 2018-11-26
2018-11-24 12:16:36 +00:00
### Fixed
* Fix undeterministic segfaults when creating many objects by kngwyu in [#281](https://github.com/PyO3/pyo3/pull/281)
2018-11-25 23:16:47 +00:00
## [0.5.1] - 2018-11-24
Yanked
2018-11-24 12:16:36 +00:00
2018-11-04 23:32:46 +00:00
## [0.5.0] - 2018-11-11
2018-08-20 20:53:43 +00:00
### Added
2018-09-24 02:49:52 +00:00
* `#[pyclass]` objects can now be returned from rust functions
2018-09-21 21:32:48 +00:00
* `PyComplex` by kngwyu in [#226](https://github.com/PyO3/pyo3/pull/226)
2018-09-25 14:19:23 +00:00
* `PyDict::from_sequence()`, equivalent to `dict([(key, val), ...])`
* Bindings for the `datetime` standard library types: `PyDate`, `PyTime`, `PyDateTime`, `PyTzInfo`, `PyDelta` with associated `ffi` types, by pganssle [#200](https://github.com/PyO3/pyo3/pull/200).
* `PyString`, `PyUnicode`, and `PyBytes` now have an `as_bytes()` method that returns `&[u8]`.
2018-10-03 19:04:24 +00:00
* `PyObjectProtocol::get_type_ptr()` by ijl in [#242](https://github.com/PyO3/pyo3/pull/242)
2018-09-21 21:32:48 +00:00
### Removed
* Removed most entries from the prelude. The new prelude is small and clear.
* Slowly removing specialization uses
* `PyString`, `PyUnicode`, and `PyBytes` no longer have a `data()` method
(replaced by `as_bytes()`) and `PyStringData` has been removed.
* The pyobject_extract macro
2018-09-21 21:32:48 +00:00
### Changed
* Removes the types from the root module and the prelude. They now live in `pyo3::types` instead.
2018-08-21 21:51:13 +00:00
* All exceptions are consturcted with `py_err` instead of `new`, as they return `PyErr` and not `Self`.
* `as_mut` and friends take and `&mut self` instead of `&self`
2018-11-02 15:30:12 +00:00
* `ObjectProtocol::call` now takes an `Option<&PyDict>` for the kwargs instead of an `IntoPyDictPointer`.
* `IntoPyDictPointer` was replace by `IntoPyDict` which doesn't convert `PyDict` itself anymore and returns a `PyDict` instead of `*mut PyObject`.
2018-08-31 19:11:08 +00:00
* `PyTuple::new` now takes an `IntoIterator` instead of a slice
2018-09-21 21:32:48 +00:00
* Updated to syn 0.15
* Splitted `PyTypeObject` into `PyTypeObject` without the create method and `PyTypeCreate` with requires `PyObjectAlloc<Self> + PyTypeInfo + Sized`.
2018-11-02 15:30:12 +00:00
* Ran `cargo edition --fix` which prefixed path with `crate::` for rust 2018
2018-11-04 23:32:46 +00:00
* Renamed `async` to `pyasync` as async will be a keyword in the 2018 edition.
* Starting to use `NonNull<*mut PyObject>` for Py and PyObject by ijl [#260](https://github.com/PyO3/pyo3/pull/260)
2018-08-21 21:51:13 +00:00
### Fixed
* Added an explanation that the GIL can temporarily be released even while holding a GILGuard.
2018-08-21 21:51:13 +00:00
* Lots of clippy errors
2018-09-24 02:49:52 +00:00
* Fix segfault on calling an unknown method on a PyObject
2018-10-29 16:36:06 +00:00
* Work around a [bug](https://github.com/rust-lang/rust/issues/55380) in the rust compiler by kngwyu [#252](https://github.com/PyO3/pyo3/pull/252)
2018-11-04 23:32:46 +00:00
* Fixed a segfault with subclassing pyo3 create classes and using `__class__` by kngwyu [#263](https://github.com/PyO3/pyo3/pull/263)
2018-08-20 12:30:52 +00:00
## [0.4.1] - 2018-08-20
### Fixed
* Fixed compilation on nightly since `use_extern_macros` was stabilized
2018-08-11 15:35:03 +00:00
### Changed
* PyTryFrom's error is always to `PyDowncastError`
### Removed
* The pyobject_downcast macro
2018-07-30 21:10:50 +00:00
## [0.4.0] - 2018-07-30
2018-07-30 20:52:22 +00:00
### Removed
* Conversions from tuples to PyDict due to [rust-lang/rust#52050](https://github.com/rust-lang/rust/issues/52050)
2018-07-30 20:52:22 +00:00
### Changed
* Merged both examples into one
* Rustfmt all the things :heavy_check_mark:
2018-07-30 21:10:50 +00:00
* Switched to [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
2018-07-30 20:52:22 +00:00
## [0.3.2] - 2018-07-22
### Changed
2018-07-22 19:35:54 +00:00
* Replaced `concat_idents` with mashup
2018-07-30 20:52:22 +00:00
## [0.3.1] - 2018-07-18
### Fixed
* Fixed scoping bug in pyobject_native_type that would break rust-numpy
2018-07-30 20:52:22 +00:00
## [0.3.0] - 2018-07-18
### Changed
2018-07-08 21:41:18 +00:00
* Upgraded to syn 0.14 which means much better error messages :tada:
* 128 bit integer support by [kngwyu](https://github.com/kngwyu) ([#137](https://github.com/PyO3/pyo3/pull/173))
* `proc_macro` has been stabilized on nightly ([rust-lang/rust#52081](https://github.com/rust-lang/rust/pull/52081)). This means that we can remove the `proc_macro` feature, but now we need the `use_extern_macros` from the 2018 edition instead.
* All proc macro are now prefixed with `py` and live in the prelude. This means you can use `#[pyclass]`, `#[pymethods]`, `#[pyproto]`, `#[pyfunction]` and `#[pymodinit]` directly, at least after a `use pyo3::prelude::*`. They were also moved into a module called `proc_macro`. You shouldn't use `#[pyo3::proc_macro::pyclass]` or other longer paths in attributes because `proc_macro_path_invoc` isn't going to be stabilized soon.
* Renamed the `base` option in the `pyclass` macro to `extends`.
* `#[pymodinit]` uses the function name as module name, unless the name is overrriden with `#[pymodinit(name)]`
2018-07-08 21:41:18 +00:00
* The guide is now properly versioned.
2018-07-30 20:52:22 +00:00
### Added
2018-07-08 21:41:18 +00:00
* A few internal macros became part of the public api ([#155](https://github.com/PyO3/pyo3/pull/155), [#186](https://github.com/PyO3/pyo3/pull/186))
* Always clone in getters. This allows using the get-annotation on all Clone-Types
2018-07-30 20:52:22 +00:00
## [0.2.7] - 2018-05-18
### Fixed
2018-02-10 19:27:45 +00:00
2018-05-30 13:03:31 +00:00
* Fix nightly breakage with proc_macro_path
2018-02-21 18:29:14 +00:00
2018-07-30 20:52:22 +00:00
## [0.2.6] - 2018-04-03
### Fixed
2018-02-10 19:27:45 +00:00
2018-05-30 13:03:31 +00:00
* Fix compatibility with TryFrom trait #137
2018-02-11 17:38:50 +00:00
2018-07-30 20:52:22 +00:00
## [0.2.5] - 2018-02-21
2018-09-24 02:49:52 +00:00
### Added
2018-05-30 13:03:31 +00:00
* CPython 3.7 support
2018-07-30 20:52:22 +00:00
### Fixed
2018-05-30 13:03:31 +00:00
* Embedded CPython 3.7b1 crashes on initialization #110
* Generated extension functions are weakly typed #108
* call_method*() crashes when the method does not exist #113
2018-02-21 18:35:49 +00:00
* Allow importing exceptions from nested modules #116
2018-07-30 20:52:22 +00:00
## [0.2.4] - 2018-01-19
### Added
* Allow to get mutable ref from PyObject #106
* Drop `RefFromPyObject` trait
* Add Python::register_any() method
2018-07-30 20:52:22 +00:00
2018-09-24 02:49:52 +00:00
### Fixed
2018-07-30 20:52:22 +00:00
2018-01-17 16:09:44 +00:00
* Fix impl `FromPyObject` for `Py<T>`
2017-12-26 21:42:32 +00:00
* Mark method that work with raw pointers as unsafe #95
2018-07-30 20:52:22 +00:00
## [0.2.3] - 11-27-2017
2017-12-26 21:42:32 +00:00
2018-07-30 20:52:22 +00:00
### Fixed
2017-11-27 18:59:45 +00:00
* Proper `c_char` usage #93
2018-07-30 20:52:22 +00:00
### Changed
2017-11-27 19:27:09 +00:00
* Rustup to 1.23.0-nightly 2017-11-07
2018-07-30 20:52:22 +00:00
### Removed
* Remove use of now unneeded 'AsciiExt' trait
## [0.2.2] - 09-26-2017
### Changed
* Rustup to 1.22.0-nightly 2017-09-30
2018-07-30 20:52:22 +00:00
## [0.2.1] - 09-26-2017
### Fixed
* Fix rustc const_fn nightly breakage
2018-07-30 20:52:22 +00:00
## [0.2.0] - 08-12-2017
### Changed
* Allow to add gc support without implementing PyGCProtocol #57
* Refactor `PyErr` implementation. Drop `py` parameter from constructor.
2018-07-30 20:52:22 +00:00
2018-09-24 02:49:52 +00:00
### Added
2018-07-30 20:52:22 +00:00
* Added inheritance support #15
* Added weakref support #56
2017-07-27 15:05:15 +00:00
* Added subclass support #64
2017-07-28 14:21:59 +00:00
* Added `self.__dict__` supoort #68
2017-07-31 17:42:55 +00:00
* Added `pyo3::prelude` module #70
2017-08-03 19:32:02 +00:00
* Better `Iterator` support for PyTuple, PyList, PyDict #75
* Introduce IntoPyDictPointer similar to IntoPyTuple #69
2018-07-30 21:10:50 +00:00
## 0.1.0 - 07-23-2017
2018-07-30 20:52:22 +00:00
### Added
* Initial release
2018-07-30 20:52:22 +00:00
2019-03-28 11:49:59 +00:00
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/pyo3/pyo3/compare/v0.5.3...v0.6.0
[0.5.3]: https://github.com/pyo3/pyo3/compare/v0.5.2...v0.5.3
2018-11-25 23:16:47 +00:00
[0.5.2]: https://github.com/pyo3/pyo3/compare/v0.5.0...v0.5.2
2018-11-04 23:32:46 +00:00
[0.5.0]: https://github.com/pyo3/pyo3/compare/v0.4.1...v0.5.0
2018-08-20 12:30:52 +00:00
[0.4.1]: https://github.com/pyo3/pyo3/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/pyo3/pyo3/compare/v0.3.2...v0.4.0
2018-07-30 20:52:22 +00:00
[0.3.2]: https://github.com/pyo3/pyo3/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/pyo3/pyo3/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/pyo3/pyo3/compare/v0.2.7...v0.3.0
[0.2.7]: https://github.com/pyo3/pyo3/compare/v0.2.6...v0.2.7
[0.2.6]: https://github.com/pyo3/pyo3/compare/v0.2.5...v0.2.6
[0.2.5]: https://github.com/pyo3/pyo3/compare/v0.2.4...v0.2.5
[0.2.4]: https://github.com/pyo3/pyo3/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/pyo3/pyo3/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/pyo3/pyo3/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/pyo3/pyo3/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/pyo3/pyo3/compare/v0.1.0...v0.2.0