File tree Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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__ = 'wang0.618@qq.com'
88__license__ = 'MIT'
You can’t perform that action at this time.
0 commit comments