diff --git a/CHANGELOG.md b/CHANGELOG.md index 7115ac8f29..cf6d350d73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,18 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] -### Added +### Added - [#1923](https://github.com/plotly/dash/pull/1923): -- `dash.get_relative_path` -- `dash.strip_relative_path` -- `dash.get_asset_url` -This is similar to `dash.callback` where you don't need the `app` object. It makes it possible to use these -functions in the `pages` folder of a multi-page app without running into the circular `app` imports issue. + - `dash.get_relative_path` + - `dash.strip_relative_path` + - `dash.get_asset_url` + This is similar to `dash.callback` where you don't need the `app` object. It makes it possible to use these + functions in the `pages` folder of a multi-page app without running into the circular `app` imports issue. + +### Updated +- [#1911](https://github.com/plotly/dash/pull/1911) Upgrade Plotly.js to v2.9.0 (from v2.8.3). + - Adds `ticklabelstep` to axes to reduce tick labels while still showing all ticks. + - Displays the plotly.js version when hovering on the modebar. This helps debugging situations where there might be multiple sources of plotly.js, for example `/assets` vs the versions built into `dcc` or `ddk`. ## [2.1.0] - 2022-01-22 diff --git a/components/dash-core-components/package-lock.json b/components/dash-core-components/package-lock.json index fa49d2791f..33a181f3ad 100644 --- a/components/dash-core-components/package-lock.json +++ b/components/dash-core-components/package-lock.json @@ -21,7 +21,7 @@ "highlight.js": "^11.3.1", "moment": "^2.29.1", "node-polyfill-webpack-plugin": "^1.1.4", - "plotly.js-dist-min": "2.8.3", + "plotly.js-dist-min": "2.9.0", "prop-types": "^15.7.2", "ramda": "^0.27.1", "rc-slider": "^9.7.5", @@ -7116,9 +7116,9 @@ } }, "node_modules/plotly.js-dist-min": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/plotly.js-dist-min/-/plotly.js-dist-min-2.8.3.tgz", - "integrity": "sha512-TjovBrqIbedUfjGWNMMs++az3lF4hsIAB8EjqM/mC0cPrO7Wg86lBkHAsRbMra5aWyXA+M52yiQUUKBfThqwzg==" + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/plotly.js-dist-min/-/plotly.js-dist-min-2.9.0.tgz", + "integrity": "sha512-qQCf8XpYcMpbG5nH6PPc0/gXVQdKUkKQ7mjux3DlXARsOzRf9EbRqwFMSzLz2aElJyrXHunYkxtXW+xswzXz3A==" }, "node_modules/postcss": { "version": "8.4.5", @@ -15020,9 +15020,9 @@ } }, "plotly.js-dist-min": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/plotly.js-dist-min/-/plotly.js-dist-min-2.8.3.tgz", - "integrity": "sha512-TjovBrqIbedUfjGWNMMs++az3lF4hsIAB8EjqM/mC0cPrO7Wg86lBkHAsRbMra5aWyXA+M52yiQUUKBfThqwzg==" + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/plotly.js-dist-min/-/plotly.js-dist-min-2.9.0.tgz", + "integrity": "sha512-qQCf8XpYcMpbG5nH6PPc0/gXVQdKUkKQ7mjux3DlXARsOzRf9EbRqwFMSzLz2aElJyrXHunYkxtXW+xswzXz3A==" }, "postcss": { "version": "8.4.5", diff --git a/components/dash-core-components/package.json b/components/dash-core-components/package.json index ca0d8ab4b1..60f82d6ded 100644 --- a/components/dash-core-components/package.json +++ b/components/dash-core-components/package.json @@ -48,7 +48,7 @@ "highlight.js": "^11.3.1", "moment": "^2.29.1", "node-polyfill-webpack-plugin": "^1.1.4", - "plotly.js-dist-min": "2.8.3", + "plotly.js-dist-min": "2.9.0", "prop-types": "^15.7.2", "ramda": "^0.27.1", "rc-slider": "^9.7.5",