Skip to content

Commit

Permalink
release 1.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Sep 3, 2021
1 parent d70cfba commit e6ec226
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions doc/content/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,36 @@ toctree: False
Changelog
=========

`1.5.1 <https://github.com/lona-web-org/lona/releases/tag/1.5.1>`_ (2021-09-03)
-------------------------------------------------------------------------------

Bugfixes
~~~~~~~~

* html

* ``html.TextInput.disabled``, ``html.Select.disabled``: These values are
always bool now

* Previously these could be a bool or an empty string

* Unsafe type checks on nodes were fixed

* This could lead to infinite loops when iterating over nodes before

* input event

* ``IndexError`` in events, that have no associated node, were fixed

* Javascript client

* All disconnect hooks are disabled now on page unload

* Previously all hooks ran when reloading or unloading the page which
lead to "Server disconnected" error messages in Firefox when leaving the
page


`1.5 <https://github.com/lona-web-org/lona/releases/tag/1.5>`_ (2021-09-01)
---------------------------------------------------------------------------

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 @@

pass

VERSION = (1, 5)
VERSION = (1, 5, 1)
VERSION_STRING = '{}'.format('.'.join([str(i) for i in VERSION]))

0 comments on commit e6ec226

Please sign in to comment.