Skip to content

Commit 986d6ec

Browse files
committed
release v1.7.0
1 parent 216cb44 commit 986d6ec

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v1.7
78
releases/v1.6
89
releases/v1.5
910
releases/v1.4

docs/releases/v1.7.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
What's new in PyWebIO 1.7
2+
==========================
3+
4+
2022/10/17
5+
-----------
6+
7+
Highlights
8+
^^^^^^^^^^^
9+
* add session reconnect to aiohttp and fastapi backends (now, all platforms support session reconnect)
10+
11+
Detailed changes
12+
^^^^^^^^^^^^^^^^^
13+
* auto use local static when CND is not available
14+
* refine :func:`use_scope(clear=True) <pywebio.output.use_scope>` to avoid page flashing
15+
16+
Bug fix
17+
^^^^^^^^^^^^^^^^^
18+
* fix: :func:`textarea(code=True, required=True) <pywebio.input.textarea>` can't submit
19+
* fix: auto hold don't work on script mode
20+
* fix (`#389 <https://github.com/pywebio/PyWebIO/issues/389>`_): ``put_select()`` was hidden by ``put_tabs()``
21+
* fix: `input_update(datalist)` don't work when `datalist` is not provided in ``input()``
22+
* fix (`#459 <https://github.com/pywebio/PyWebIO/issues/459>`_): code textarea onchange fired when set value
23+
* fix (`#453 <https://github.com/pywebio/PyWebIO/issues/453>`_): ``put_table()`` error when table data is empty with rich header
24+
* fix load old static resource after version upgrade
25+
* fix cancel type raise error in single ``action()``
26+
* fix (`#377 <https://github.com/pywebio/PyWebIO/issues/377>`_): error on nested ``onchange`` callback
27+
* fix (`#468 <https://github.com/pywebio/PyWebIO/issues/468>`_): can't reset ``select()``
28+
* fix ``set_env(output_animation=False)`` don't work for image

pywebio/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
__package__ = 'pywebio'
22
__description__ = 'Write interactive web app in script way.'
33
__url__ = 'https://pywebio.readthedocs.io'
4-
__version__ = "1.6.2"
5-
__version_info__ = (1, 6, 2, 0)
4+
__version__ = "1.7.0"
5+
__version_info__ = (1, 7, 0, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = '[email protected]'
88
__license__ = 'MIT'

0 commit comments

Comments
 (0)