17
0

Accepting request 884139 from home:bnavigator:branches:devel:languages:python:numeric

- Update to version 1.16.0
  * #863 Adds a new Download component. Along with this several 
    utility functions are added to help construct the appropriate 
    data format:
      dcc.send_file - send a file from disk
      dcc.send_data_frame - send a DataFrame, using one of its 
      writer methods
      dcc.send_bytes - send a bytestring or the result of a 
      bytestring writer
      dcc.send_string - send a string or the result of a string 
      writer
  * #923 Set autoComplete to off in dcc.Dropdown. This fixes #808
  * #930 Fixed a bug #867 with DatePickerRange that would 
    sometimes shift the allowed dates by one day.
  * #934 Fixed a bug in EnhancedTab component that ignored 
    disabled_className property
- Release 1.15.0
  * #905 Make sure the figure prop of dcc.Graph receives updates 
    from user interactions in the graph, by using the same layout 
    object as provided in the prop rather than cloning it. Fixes 
    #879.
  * #903 Part of fixing dash import bug
    https://github.com/plotly/dash/issues/1143
  * #911, #906
    Upgraded Plotly.js to 1.58.4
       Patch Release 1.58.4
       Patch Release 1.58.3
  * #888 Adds a drag_value prop to dcc.Sliderto be able to fire
    callbacks from dragging and releasing the slider.
- Skip python36 buildrequire for pandas tests: No numpy, no pandas 
  (we don't test it right now anyway)

OBS-URL: https://build.opensuse.org/request/show/884139
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-dash-core-components?expand=0&rev=10
This commit is contained in:
2021-04-12 08:30:51 +00:00
committed by Git OBS Bridge
parent 16390d2d38
commit be467a6dd3
4 changed files with 43 additions and 7 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Fri Apr 9 21:02:04 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to version 1.16.0
* #863 Adds a new Download component. Along with this several
utility functions are added to help construct the appropriate
data format:
dcc.send_file - send a file from disk
dcc.send_data_frame - send a DataFrame, using one of its
writer methods
dcc.send_bytes - send a bytestring or the result of a
bytestring writer
dcc.send_string - send a string or the result of a string
writer
* #923 Set autoComplete to off in dcc.Dropdown. This fixes #808
* #930 Fixed a bug #867 with DatePickerRange that would
sometimes shift the allowed dates by one day.
* #934 Fixed a bug in EnhancedTab component that ignored
disabled_className property
- Release 1.15.0
* #905 Make sure the figure prop of dcc.Graph receives updates
from user interactions in the graph, by using the same layout
object as provided in the prop rather than cloning it. Fixes
#879.
* #903 Part of fixing dash import bug
https://github.com/plotly/dash/issues/1143
* #911, #906
Upgraded Plotly.js to 1.58.4
Patch Release 1.58.4
Patch Release 1.58.3
* #888 Adds a drag_value prop to dcc.Sliderto be able to fire
callbacks from dragging and releasing the slider.
- Skip python36 buildrequire for pandas tests: No numpy, no pandas
(we don't test it right now anyway)
-------------------------------------------------------------------
Sun Jan 3 17:42:34 UTC 2021 - Benjamin Greiner <code@bnavigator.de>