From a8d7ff0b97e46073be21aabca84b10effbfd8365 Mon Sep 17 00:00:00 2001 From: Craig Barratt <19445341+craigbarratt@users.noreply.github.com> Date: Sat, 27 Jul 2024 17:56:55 -0700 Subject: [PATCH] post-release doc update --- docs/new_features.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/new_features.rst b/docs/new_features.rst index 605ac09..b28975f 100644 --- a/docs/new_features.rst +++ b/docs/new_features.rst @@ -20,3 +20,24 @@ to see the development version of the documentation. If you want to see development progress since 1.6.0, see `new features `__ in the latest documentation, or look at the `GitHub repository `__. + +Planned new features post 1.6.0 include: + +- Services defined in pyscript should support entity methods if they include an ``entity_id`` keyword argument. +- Consider supporting the built-in functions that do I/O, such as ``open``, ``read`` and ``write``, which + are not currently supported to avoid I/O in the main event loop, and also to avoid security issues if people + share pyscripts. The ``print`` function only logs a message, rather than implements the real ``print`` features, + such as specifying an output file handle. Support might be added in the future using an executor job, perhaps + enabled when ``allow_all_imports`` is set. + +The new features since 1.6.0 in master include: + +None yet. + +Breaking changes since 1.6.0 include: + +None yet. + +Bug fixes since 1.6.0 include: + +None yet.