Skip to content

Updates deps #2441

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ This project adheres to [Semantic Versioning](https://semver.org/).

- [#2425](https://github.com/plotly/dash/pull/2425) Moved the logger namespace to `dash.dash`, as library logger it should be on that namespace instead of the user app.

## Updated

- [#2241](https://github.com/plotly/dash/pull/2441) Update Plotly.js to v2.18.2 from v2.18.0.
- Patch releases [2.18.2](https://github.com/plotly/plotly.js/releases/tag/v2.18.2) and [2.18.1](https://github.com/plotly/plotly.js/releases/tag/v2.18.1)

## [2.8.1] - 2023-01-30

## Fixed
Expand Down
14 changes: 7 additions & 7 deletions components/dash-core-components/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 components/dash-core-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"mathjax": "^3.2.2",
"moment": "^2.29.4",
"node-polyfill-webpack-plugin": "^2.0.1",
"plotly.js-dist-min": "2.18.0",
"plotly.js-dist-min": "2.18.2",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"rc-slider": "^9.7.5",
Expand Down
24 changes: 12 additions & 12 deletions components/dash-table/package-lock.json

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

4 changes: 3 additions & 1 deletion dash/_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@ def update(self, E=None, **F):

# pylint: disable=no-self-use
def sort(self):
raise KeyError("sort is reserved for future use, use brackets to access this key on your object")
raise KeyError(
"sort is reserved for future use, use brackets to access this key on your object"
)

def to_plotly_json(self):
return {
Expand Down
1 change: 1 addition & 0 deletions dash/dash-renderer/init.template
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def _set_react_version(v_react, v_reactdom=None):
_env_react_version = os.getenv("REACT_VERSION")
if _env_react_version:
_set_react_version(_env_react_version)
print(f"EXPERIMENTAL: Using react version from env: {_env_react_version}")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤦 thanks!

else:
_set_react_version("$react", "$reactdom")

Expand Down
12 changes: 6 additions & 6 deletions dash/dash-renderer/package-lock.json

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

1 change: 0 additions & 1 deletion dash/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def to_json(self):


class DashDependency: # pylint: disable=too-few-public-methods

def __init__(self, component_id, component_property):

if isinstance(component_id, Component):
Expand Down
1 change: 1 addition & 0 deletions dash/testing/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def __init__(self, **kwargs):
)
from dash.testing.browser import Browser
from dash.testing.composite import DashComposite, DashRComposite, DashJuliaComposite

# pylint: disable=unused-import
import dash_testing_stub # noqa: F401

Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

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