[PR #27] [CLOSED] Bump dash from 2.14.1 to 2.15.0 #82

Closed
opened 2026-03-23 20:28:57 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RADar-AZDelta/Rabbit-in-a-Blender/pull/27
Author: @dependabot[bot]
Created: 2/2/2024
Status: Closed

Base: mainHead: dependabot/pip/dash-2.15.0


📝 Commits (1)

  • bad59e2 Bump dash from 2.14.1 to 2.15.0

📊 Changes

1 file changed (+92 additions, -92 deletions)

View changed files

📝 Pipfile.lock (+92 -92)

📄 Description

Bumps dash from 2.14.1 to 2.15.0.

Release notes

Sourced from dash's releases.

Dash v2.15.0

Added

  • #2695 Adds triggered_id to dash_clientside.callback_context. Fixes #2692
  • #2723 Improve dcc Slider/RangeSlider tooltips. Fixes #1846
    • Add tooltip.template a string for the format template, {value} will be formatted with the actual value.
    • Add tooltip.style a style object to give to the div of the tooltip.
    • Add tooltip.transform a reference to a function in the window.dccFunctions namespace.
  • #2732 Add special key _dash_error to setProps, allowing component developers to send error without throwing in render. Usage props.setProps({_dash_error: new Error("custom error")})

Fixed

  • #2732 Sanitize html props that are vulnerable to xss vulnerability if user data is inserted. Fix Validate url to prevent XSS attacks #2729

Changed

  • #2652 dcc.Clipboard supports htm_content and triggers a copy to clipboard when n_clicks are changed
  • #2721 Remove ansi2html, fixes #2613

Dash v2.14.2

Fixed

  • #2700 Fix _allow_dynamic_callbacks for newly-added components.
Changelog

Sourced from dash's changelog.

[2.15.0] - 2024-01-31

Added

  • #2695 Adds triggered_id to dash_clientside.callback_context. Fixes #2692
  • #2723 Improve dcc Slider/RangeSlider tooltips. Fixes #1846
    • Add tooltip.template a string for the format template, {value} will be formatted with the actual value.
    • Add tooltip.style a style object to give to the div of the tooltip.
    • Add tooltip.transform a reference to a function in the window.dccFunctions namespace.
  • #2732 Add special key _dash_error to setProps, allowing component developers to send error without throwing in render. Usage props.setProps({_dash_error: new Error("custom error")})

Fixed

  • #2732 Sanitize html props that are vulnerable to xss vulnerability if user data is inserted. Fix Validate url to prevent XSS attacks #2729

Changed

  • #2652 dcc.Clipboard supports htm_content and triggers a copy to clipboard when n_clicks are changed
  • #2721 Remove ansi2html, fixes #2613

[2.14.2] - 2023-11-27

Fixed

  • #2700 Fix _allow_dynamic_callbacks for newly-added components.
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RADar-AZDelta/Rabbit-in-a-Blender/pull/27 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/2/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/pip/dash-2.15.0` --- ### 📝 Commits (1) - [`bad59e2`](https://github.com/RADar-AZDelta/Rabbit-in-a-Blender/commit/bad59e2261871408b4285600f2afc8440bb6ddf2) Bump dash from 2.14.1 to 2.15.0 ### 📊 Changes **1 file changed** (+92 additions, -92 deletions) <details> <summary>View changed files</summary> 📝 `Pipfile.lock` (+92 -92) </details> ### 📄 Description Bumps [dash](https://github.com/plotly/dash) from 2.14.1 to 2.15.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/plotly/dash/releases">dash's releases</a>.</em></p> <blockquote> <h2>Dash v2.15.0</h2> <h2>Added</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2695">#2695</a> Adds <code>triggered_id</code> to <code>dash_clientside.callback_context</code>. Fixes <a href="https://redirect.github.com/plotly/dash/issues/2692">#2692</a></li> <li><a href="https://redirect.github.com/plotly/dash/pull/2723">#2723</a> Improve dcc Slider/RangeSlider tooltips. Fixes <a href="https://redirect.github.com/plotly/dash/issues/1846">#1846</a> <ul> <li>Add <code>tooltip.template</code> a string for the format template, {value} will be formatted with the actual value.</li> <li>Add <code>tooltip.style</code> a style object to give to the div of the tooltip.</li> <li>Add <code>tooltip.transform</code> a reference to a function in the <code>window.dccFunctions</code> namespace.</li> </ul> </li> <li><a href="https://redirect.github.com/plotly/dash/pull/2732">#2732</a> Add special key <code>_dash_error</code> to <code>setProps</code>, allowing component developers to send error without throwing in render. Usage <code>props.setProps({_dash_error: new Error(&quot;custom error&quot;)})</code></li> </ul> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2732">#2732</a> Sanitize html props that are vulnerable to xss vulnerability if user data is inserted. Fix Validate url to prevent XSS attacks <a href="https://redirect.github.com/plotly/dash/issues/2729">#2729</a></li> </ul> <h2>Changed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2652">#2652</a> dcc.Clipboard supports htm_content and triggers a copy to clipboard when n_clicks are changed</li> <li><a href="https://redirect.github.com/plotly/dash/pull/2721">#2721</a> Remove ansi2html, fixes <a href="https://redirect.github.com/plotly/dash/issues/2713">#2613</a></li> </ul> <h2>Dash v2.14.2</h2> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2700">#2700</a> Fix <code>_allow_dynamic_callbacks</code> for newly-added components.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/plotly/dash/blob/dev/CHANGELOG.md">dash's changelog</a>.</em></p> <blockquote> <h2>[2.15.0] - 2024-01-31</h2> <h2>Added</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2695">#2695</a> Adds <code>triggered_id</code> to <code>dash_clientside.callback_context</code>. Fixes <a href="https://redirect.github.com/plotly/dash/issues/2692">#2692</a></li> <li><a href="https://redirect.github.com/plotly/dash/pull/2723">#2723</a> Improve dcc Slider/RangeSlider tooltips. Fixes <a href="https://redirect.github.com/plotly/dash/issues/1846">#1846</a> <ul> <li>Add <code>tooltip.template</code> a string for the format template, {value} will be formatted with the actual value.</li> <li>Add <code>tooltip.style</code> a style object to give to the div of the tooltip.</li> <li>Add <code>tooltip.transform</code> a reference to a function in the <code>window.dccFunctions</code> namespace.</li> </ul> </li> <li><a href="https://redirect.github.com/plotly/dash/pull/2732">#2732</a> Add special key <code>_dash_error</code> to <code>setProps</code>, allowing component developers to send error without throwing in render. Usage <code>props.setProps({_dash_error: new Error(&quot;custom error&quot;)})</code></li> </ul> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2732">#2732</a> Sanitize html props that are vulnerable to xss vulnerability if user data is inserted. Fix Validate url to prevent XSS attacks <a href="https://redirect.github.com/plotly/dash/issues/2729">#2729</a></li> </ul> <h2>Changed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2652">#2652</a> dcc.Clipboard supports htm_content and triggers a copy to clipboard when n_clicks are changed</li> <li><a href="https://redirect.github.com/plotly/dash/pull/2721">#2721</a> Remove ansi2html, fixes <a href="https://redirect.github.com/plotly/dash/issues/2713">#2613</a></li> </ul> <h2>[2.14.2] - 2023-11-27</h2> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2700">#2700</a> Fix <code>_allow_dynamic_callbacks</code> for newly-added components.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/plotly/dash/commit/115aa4ea1718ca107bf2bd944ff1b4600c80335d"><code>115aa4e</code></a> Merge pull request <a href="https://redirect.github.com/plotly/dash/issues/2739">#2739</a> from plotly/master-2.15.0</li> <li><a href="https://github.com/plotly/dash/commit/9243f93fef1758ec47c6a3d1699fb6caae4da0f9"><code>9243f93</code></a> build</li> <li><a href="https://github.com/plotly/dash/commit/83c54226425e89f2ad3e75afaf6ed0fee9080e90"><code>83c5422</code></a> Version 2.15.0 build artifacts</li> <li><a href="https://github.com/plotly/dash/commit/78d07c42a2a03415ac53cb709c9da4944d5cedad"><code>78d07c4</code></a> Merge branch 'dev' into master-2.15.0</li> <li><a href="https://github.com/plotly/dash/commit/6a8da527fd679d52cf8d5286116134504696131a"><code>6a8da52</code></a> Merge pull request <a href="https://redirect.github.com/plotly/dash/issues/2737">#2737</a> from plotly/version-2.15.0</li> <li><a href="https://github.com/plotly/dash/commit/7cb6f07cbce130226e116dda9c6d83966dac972d"><code>7cb6f07</code></a> build</li> <li><a href="https://github.com/plotly/dash/commit/da4261e3328f4b20310cfd10316475b547d60536"><code>da4261e</code></a> Fix changelog.</li> <li><a href="https://github.com/plotly/dash/commit/27751a8428e89eb8b0933f13441fb80cf768d1b2"><code>27751a8</code></a> Version 2.15.0</li> <li><a href="https://github.com/plotly/dash/commit/49ac14fe23df82d8dc141281999cf361007d3373"><code>49ac14f</code></a> Merge pull request <a href="https://redirect.github.com/plotly/dash/issues/2723">#2723</a> from plotly/slider-tips</li> <li><a href="https://github.com/plotly/dash/commit/06fb03a6fc4a1f8a41517cf25d1421474a4e53d5"><code>06fb03a</code></a> docstring typos</li> <li>Additional commits viewable in <a href="https://github.com/plotly/dash/compare/v2.14.1...v2.15.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dash&package-manager=pip&previous-version=2.14.1&new-version=2.15.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/RADar-AZDelta/Rabbit-in-a-Blender/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 20:28:57 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
RADar-AZDelta/archived-Rabbit-in-a-Blender#82
No description provided.