Skip to content

Commit

Permalink
release 1.10.2
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Jul 31, 2022
1 parent 9f4fc1c commit d07b3b4
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.2 (2022-07-31)


Changes
~~~~~~~

* Server

* Add setting to set aiohttp ``client_max_size``

* Client

* Window shortcuts were added

* In most applications Lona has only one window.
The Shortcuts ``window.get_default_window()`` and ``window.run_view()``
were added to access this first window as the default window.


Bugfixes
~~~~~~~~

* Client

* Window id reuse was fixed

* Previously Lona generated a new window id by incrementing the current
window count. This lead to potential reuse of ids, when a window got
removed


.. changelog-header:: 1.10.1 (2022-04-03)


Expand Down
4 changes: 4 additions & 0 deletions doc/content/end-user-documentation/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ Server
:name: AIOHTTP_CLIENT_MAX_SIZE
:path: lona.default_settings.AIOHTTP_CLIENT_MAX_SIZE

.. note::

Added in 1.10.2

This value is used to set the ``client_max_size`` value for the aiohttp server.
It defines the maximum body size of a post request accepted by the server.
See
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, 1)
VERSION = (1, 10, 2)
VERSION_STRING = '.'.join(str(i) for i in VERSION)

0 comments on commit d07b3b4

Please sign in to comment.