From e4b9a7a5e8425d8db67bee39c4db60f85f174684 Mon Sep 17 00:00:00 2001 From: T4rk1n Date: Thu, 1 May 2025 00:40:31 +0000 Subject: [PATCH 1/5] Update Dash HTML elements & attributes. --- .../dash-html-components/scripts/data/attributes.json | 8 ++++---- components/dash-html-components/scripts/data/elements.txt | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/components/dash-html-components/scripts/data/attributes.json b/components/dash-html-components/scripts/data/attributes.json index 356583979a..b426737bdb 100644 --- a/components/dash-html-components/scripts/data/attributes.json +++ b/components/dash-html-components/scripts/data/attributes.json @@ -248,28 +248,28 @@ "button", "input" ], - "description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner." + "description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner." }, "formMethod": { "elements": [ "button", "input" ], - "description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner." + "description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner." }, "formNoValidate": { "elements": [ "button", "input" ], - "description": "If the button/input is a submit button (e.g. type=\"submit\"), this boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner." + "description": "If the button/input is a submit button (e.g., type=\"submit\"), this boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner." }, "formTarget": { "elements": [ "button", "input" ], - "description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received after submitting the form. If this attribute is specified, it overrides the target attribute of the button's form owner." + "description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received after submitting the form. If this attribute is specified, it overrides the target attribute of the button's form owner." }, "headers": { "elements": [ diff --git a/components/dash-html-components/scripts/data/elements.txt b/components/dash-html-components/scripts/data/elements.txt index 7ab2efad36..dcd3eb5dfa 100644 --- a/components/dash-html-components/scripts/data/elements.txt +++ b/components/dash-html-components/scripts/data/elements.txt @@ -94,6 +94,7 @@ samp script section select +selectedcontent shadow slot small From 2fd72c6d9d52ebcb973b4645ae3ada24f6d04e6f Mon Sep 17 00:00:00 2001 From: philippe Date: Tue, 6 May 2025 09:26:13 -0400 Subject: [PATCH 2/5] Exclude selectedcontent html element --- components/dash-html-components/scripts/data/elements.txt | 1 - components/dash-html-components/scripts/extract-elements.js | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/dash-html-components/scripts/data/elements.txt b/components/dash-html-components/scripts/data/elements.txt index dcd3eb5dfa..7ab2efad36 100644 --- a/components/dash-html-components/scripts/data/elements.txt +++ b/components/dash-html-components/scripts/data/elements.txt @@ -94,7 +94,6 @@ samp script section select -selectedcontent shadow slot small diff --git a/components/dash-html-components/scripts/extract-elements.js b/components/dash-html-components/scripts/extract-elements.js index 4aa4d1b9dd..8c062f691c 100644 --- a/components/dash-html-components/scripts/extract-elements.js +++ b/components/dash-html-components/scripts/extract-elements.js @@ -22,7 +22,8 @@ function extractElements($) { 'noframes', // experimental, don't add yet 'portal', - 'fencedframe' + 'fencedframe', + 'selectedcontent', // No support beside latest chrome ]; // `
` is for some reason missing from the reference tables. const addElements = [ From e4cfd4035bb1c7439163e3c4775078625be13eb3 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 8 May 2025 10:32:43 -0400 Subject: [PATCH 3/5] lint --- components/dash-html-components/scripts/extract-elements.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dash-html-components/scripts/extract-elements.js b/components/dash-html-components/scripts/extract-elements.js index 8c062f691c..72a37f0486 100644 --- a/components/dash-html-components/scripts/extract-elements.js +++ b/components/dash-html-components/scripts/extract-elements.js @@ -23,7 +23,7 @@ function extractElements($) { // experimental, don't add yet 'portal', 'fencedframe', - 'selectedcontent', // No support beside latest chrome + 'selectedcontent', ]; // `
` is for some reason missing from the reference tables. const addElements = [ From 138ab1646dfd6f8bd17384e31e90997ed2cecfc8 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 8 May 2025 11:18:49 -0400 Subject: [PATCH 4/5] lock redis < 6.0.0 --- requirements/celery.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/celery.txt b/requirements/celery.txt index 0696a73b3c..935e65d265 100644 --- a/requirements/celery.txt +++ b/requirements/celery.txt @@ -1,3 +1,3 @@ # Dependencies used by the CeleryLongCallbackManager -redis>=3.5.3 +redis>=3.5.3,<6.0.0 celery[redis]>=5.1.2 From a9f604ac070502f814a27bd4938c3db7a05977f4 Mon Sep 17 00:00:00 2001 From: philippe Date: Fri, 9 May 2025 09:52:36 -0400 Subject: [PATCH 5/5] lock celery 5.4 --- requirements/celery.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/celery.txt b/requirements/celery.txt index 935e65d265..b0bcdb3a17 100644 --- a/requirements/celery.txt +++ b/requirements/celery.txt @@ -1,3 +1,3 @@ # Dependencies used by the CeleryLongCallbackManager redis>=3.5.3,<6.0.0 -celery[redis]>=5.1.2 +celery[redis]>=5.1.2,<=5.4.0