Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Issue 691 - Update plotlyjs (#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet authored Nov 4, 2019
1 parent e0af839 commit 10aa10e
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 46 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Updated
- [#693](https://github.com/plotly/dash-core-components/pull/693) Upgraded plotly.js to 1.51.1
- [Feature release 1.51.0](https://github.com/plotly/plotly.js/releases/tag/v1.51.0) which contains:
- A new `image` trace type to display 3- or 4-channel color images as data
- `automargin` for `pie` charts for better readability when labeling lots of small slices
- Toggle-type `updatemenus`
- `zh-CN` localization
- And various other small features and bug fixes
- Patch release [1.51.1](https://github.com/plotly/plotly.js/releases/tag/v1.51.1) containing several bug fixes.

## [1.4.0] - 2019-10-29
### Added
- [#616](https://github.com/plotly/dash-core-components/pull/616) Async Graph and Plotly.js
Expand Down
4 changes: 2 additions & 2 deletions dash_core_components_base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
'dynamic': True
},
{
'relative_package_path': 'plotly-1.50.1.min.js',
'relative_package_path': 'plotly-1.51.1.min.js',
'external_url': (
'https://unpkg.com/dash-core-components@{}'
'/dash_core_components/plotly-1.50.1.min.js'
'/dash_core_components/plotly-1.51.1.min.js'
).format(__version__),
'namespace': 'dash_core_components',
'async': 'eager'
Expand Down
79 changes: 39 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"color": "^3.1.0",
"fast-isnumeric": "^1.1.3",
"moment": "^2.20.1",
"plotly.js": "1.50.1",
"plotly.js": "1.51.1",
"prop-types": "^15.6.0",
"ramda": "^0.26.1",
"rc-slider": "^8.6.11",
Expand Down
4 changes: 1 addition & 3 deletions tests/integration/calendar/test_date_picker_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,7 @@ def cb(clicks):
switch.click()

memorized = dash_dcc.select_date_single("dps-memory", day="4")
amnesiaed = dash_dcc.select_date_single(
"dps-none", day="1", outside_month=True
)
amnesiaed = dash_dcc.select_date_single("dps-none", day="11")

switch.click()
assert dash_dcc.wait_for_text_to_equal("#out", "switched")
Expand Down

0 comments on commit 10aa10e

Please sign in to comment.