Skip to content

Commit ee88361

Browse files
authored
Merge pull request #2623 from plotly/master-2.12.0
Master 2.12.0
2 parents a159913 + 8461114 commit ee88361

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+7712
-6290
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
orbs:
44
win: circleci/[email protected]
55
percy: percy/[email protected]
6-
browser-tools: circleci/browser-tools@1.2.4
6+
browser-tools: circleci/browser-tools@1.4.3
77

88
jobs:
99
artifacts:

.github/workflows/update-html.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: update-html
2+
run-name: Update dash html components attributes
3+
on:
4+
schedule:
5+
- cron: 10 0 1 * *
6+
workflow_dispatch:
7+
inputs:
8+
name:
9+
description: Name of the run
10+
required: false
11+
type: string
12+
13+
jobs:
14+
update-attributes:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
ref: dev
20+
- uses: actions/setup-node@v3
21+
- name: Extract elements
22+
working-directory: ./components/dash-html-components
23+
run: |
24+
npm ci
25+
npm run extract
26+
- name: Create Pull Request
27+
uses: peter-evans/create-pull-request@v5
28+
with:
29+
commit-message: Update Dash HTML elements & attributes.
30+
body: Automated HTML attributes update.

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
6+
## [2.12.0] - 2023-08-14
7+
8+
## Fixed
9+
10+
- [#2619](https://github.com/plotly/dash/pull/2619) Fix for dash-table column IDs containing special characters
11+
- [#2616](https://github.com/plotly/dash/pull/2616) Add mapping of tsconfig compiler option `moduleResolution`, fixes [#2618](https://github.com/plotly/dash/issues/2618)
12+
- [#2596](https://github.com/plotly/dash/pull/2596) Fix react-dom throwing unique key prop error for markdown table, fix [#1433](https://github.com/plotly/dash/issues/1433)
13+
- [#2589](https://github.com/plotly/dash/pull/2589) CSS for input elements not scoped to Dash application
14+
- [#2599](https://github.com/plotly/dash/pull/2599) Fix background callback cancel inputs used in multiple callbacks and mixed cancel inputs across pages.
15+
16+
## Changed
17+
18+
- [#2593](https://github.com/plotly/dash/pull/2593) dcc.Input accepts a number for its debounce argument
19+
20+
## Updated
21+
22+
- [#2621](https://github.com/plotly/dash/pull/2621) Update plotly.js to 2.25.2 from 2.24.2
23+
- Feature release [2.25.0](https://github.com/plotly/plotly.js/releases/tag/v2.25.0), Add "Equal Earth" project, options to include legends for shapes, Plotly.deleteActivateShape.
24+
- Patch release [2.24.3](https://github.com/plotly/plotly.js/releases/tag/v2.24.3) Fix for doubles clicks and legend group.
25+
- Patch release [2.25.1](https://github.com/plotly/plotly.js/releases/tag/v2.25.1) Fix clearing legend using react.
26+
- Patch release [2.25.2](https://github.com/plotly/plotly.js/releases/tag/v2.25.2) Fix potential prototype pollution in plot API calls.
27+
528
## [2.11.1] - 2023-06-29
629

730
## Fixed

components/dash-core-components/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
}],
118118
"no-magic-numbers": ["error", {
119119
"ignoreArrayIndexes": true,
120-
"ignore": [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 100, 10, 16, 0.5, 25]
120+
"ignore": [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 100, 10, 16, 0.5, 25, 1000]
121121
}],
122122
"no-underscore-dangle": ["off"],
123123
"no-useless-escape": ["off"]

0 commit comments

Comments
 (0)