Skip to content

Commit

Permalink
release 1.10.5
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Dec 5, 2022
1 parent 6108cdd commit 70fc247
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
31 changes: 31 additions & 0 deletions doc/content/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,37 @@ is_template: False
Changelog
=========

.. changelog-header:: 1.10.5 (2022-11-05)

Changes
~~~~~~~

* HTML

* Frontend Widget capabilities were added to the abstract node class

* Previously only nodes, subclassing ``lona.html.Widget``, could define a
frontend widget. Now, any node, besides text nodes, can do so.

This is in preparation of making the widget API obsolete at first, and
removing it entirely in Lona2.


Bugfixes
~~~~~~~~

* HTML

* Handling of non-string attributes like ``True`` was fixed in string
representations

* Previously code like ``str(Option(bubble_up=True))`` crashed

* collect-static

* A regression, added in 1.10.2, was fixed


.. changelog-header:: 1.10.4 (2022-09-26)

Changes
Expand Down
4 changes: 4 additions & 0 deletions doc/content/end-user-documentation/html.rst
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,10 @@ handle the event.
Frontend Widgets
~~~~~~~~~~~~~~~~
.. note::
Frontend widget support for ``lona.html.Node`` was added in 1.10.5
Widgets and nodes can define a Javascript based frontend widget, to include
client side code. This is useful to integrate with third party Javascript
libraries.
Expand Down
2 changes: 1 addition & 1 deletion lona/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
if e.name != 'typing_extensions':
raise

VERSION = (1, 10, 4)
VERSION = (1, 10, 5)
VERSION_STRING = '.'.join(str(i) for i in VERSION)

0 comments on commit 70fc247

Please sign in to comment.