dependabot[bot] opened a new pull request, #41015: URL: https://github.com/apache/superset/pull/41015
Bumps [flask-wtf](https://github.com/pallets-eco/flask-wtf) from 1.2.2 to 1.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets-eco/flask-wtf/releases">flask-wtf's releases</a>.</em></p> <blockquote> <h2>v1.3.0</h2> <h2>What's Changed</h2> <ul> <li>pre-commit autoupdate by <a href="https://github.com/azmeuk"><code>@azmeuk</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/607">pallets-eco/flask-wtf#607</a></li> <li>remove slsa provenance by <a href="https://github.com/davidism"><code>@davidism</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/638">pallets-eco/flask-wtf#638</a></li> <li>Support for Python 3.14 by <a href="https://github.com/azmeuk"><code>@azmeuk</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/648">pallets-eco/flask-wtf#648</a></li> <li>Try not to read uploaded files into memory by <a href="https://github.com/Zverik"><code>@Zverik</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/635">pallets-eco/flask-wtf#635</a></li> <li>Migrate the project to uv by <a href="https://github.com/azmeuk"><code>@azmeuk</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/649">pallets-eco/flask-wtf#649</a></li> <li>ReCaptcha field testing mode documentation by <a href="https://github.com/OmeirP"><code>@OmeirP</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/650">pallets-eco/flask-wtf#650</a></li> <li>Allow nonce in reCaptcha by <a href="https://github.com/kesara"><code>@kesara</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/312">pallets-eco/flask-wtf#312</a></li> <li>CSRF meta tag helper by <a href="https://github.com/azmeuk"><code>@azmeuk</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/674">pallets-eco/flask-wtf#674</a></li> <li>widget support the kwargs to add custom html attributes by <a href="https://github.com/thivolle-cazat-cedric"><code>@thivolle-cazat-cedric</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/353">pallets-eco/flask-wtf#353</a></li> <li>Respect exempts in CSRFProtect.protect() by <a href="https://github.com/rauchy"><code>@rauchy</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/419">pallets-eco/flask-wtf#419</a></li> <li>Adding RECAPTCHA_ENABLE to disable recaptcha by <a href="https://github.com/rnt"><code>@rnt</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/509">pallets-eco/flask-wtf#509</a></li> <li>Improve CSRF Documentation by <a href="https://github.com/israel-oye"><code>@israel-oye</code></a> in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/584">pallets-eco/flask-wtf#584</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Zverik"><code>@Zverik</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/635">pallets-eco/flask-wtf#635</a></li> <li><a href="https://github.com/OmeirP"><code>@OmeirP</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/650">pallets-eco/flask-wtf#650</a></li> <li><a href="https://github.com/kesara"><code>@kesara</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/312">pallets-eco/flask-wtf#312</a></li> <li><a href="https://github.com/thivolle-cazat-cedric"><code>@thivolle-cazat-cedric</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/353">pallets-eco/flask-wtf#353</a></li> <li><a href="https://github.com/rauchy"><code>@rauchy</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/419">pallets-eco/flask-wtf#419</a></li> <li><a href="https://github.com/rnt"><code>@rnt</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/509">pallets-eco/flask-wtf#509</a></li> <li><a href="https://github.com/israel-oye"><code>@israel-oye</code></a> made their first contribution in <a href="https://redirect.github.com/pallets-eco/flask-wtf/pull/584">pallets-eco/flask-wtf#584</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pallets-eco/flask-wtf/compare/v1.2.2...v1.3.0">https://github.com/pallets-eco/flask-wtf/compare/v1.2.2...v1.3.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pallets-eco/flask-wtf/blob/main/docs/changes.rst">flask-wtf's changelog</a>.</em></p> <blockquote> <h2>Version 1.3.0</h2> <p>Released 2026-04-23</p> <ul> <li>Don't read the whole uploaded files to know their size. :pr:<code>635</code></li> <li>Stop support for Python 3.9. Start support for Python 3.14. :pr:<code>648</code></li> <li>Migrate the project to uv. :pr:<code>649</code></li> <li>Allow setting a <code>nonce</code> on :class:<code>~flask_wtf.recaptcha.RecaptchaField</code> (string or zero-argument callable) for nonce-based Content Security Policies. :pr:<code>312</code></li> <li>Add <code>csrf_meta_tag()</code> helper and <code>WTF_CSRF_META_NAME</code> setting to render the CSRF token as an HTML <code><meta></code> tag.</li> <li>Forward keyword arguments passed to the reCAPTCHA widget as HTML attributes on the captcha <code><div></code>, with the field id used as a default <code>id</code>. :pr:<code>353</code></li> <li>Add <code>apply_exemptions</code> parameter to :meth:<code>~flask_wtf.csrf.CSRFProtect.protect</code> so <code>@csrf.exempt</code> keeps working when validation is triggered manually. :pr:<code>419</code></li> <li>Add <code>RECAPTCHA_ENABLED</code> setting. :pr:<code>509</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/63eb4d3bd55735fc136bdc6f23a90ca2b220b602"><code>63eb4d3</code></a> chore: bump to v1.3.0</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/192ece3da0d98682c13e12574d7b1fc938bdd8e8"><code>192ece3</code></a> Improve CSRF Documentation (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/584">#584</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/1f8522d4a362ee66ab12a1ebf55379501dfcef0d"><code>1f8522d</code></a> Adding RECAPTCHA_ENABLE to disable recaptcha (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/509">#509</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/64b9215be16dc123f7eb187494dbba6bd0e5c2cd"><code>64b9215</code></a> Respect exempts in CSRFProtect.protect() (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/419">#419</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/adf674f80c5c5e55c050729e3ec086b4d6cb0f26"><code>adf674f</code></a> widget support the kwargs to add custom html attributes (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/353">#353</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/ea1f797112f857c783dcd2c6e3954357df8e1bb7"><code>ea1f797</code></a> feat: CSRF meta tag helper (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/674">#674</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/412e3efda3703b141ca75afbcbf0538a7797b713"><code>412e3ef</code></a> Allow nonce in reCaptcha (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/312">#312</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/a7b764a1fa8f4ea960d81104c364a2d29429e1b8"><code>a7b764a</code></a> ReCaptcha field testing mode documentation (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/650">#650</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/c053c0ec11560e68e558636962bbec1115a7ae2a"><code>c053c0e</code></a> chore(deps-dev): bump pytest from 9.0.1 to 9.0.3 (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/673">#673</a>)</li> <li><a href="https://github.com/pallets-eco/flask-wtf/commit/ca2216cdf72717aa3c2355ba5f454080c78d9273"><code>ca2216c</code></a> chore(deps): bump uv from 0.9.11 to 0.11.6 (<a href="https://redirect.github.com/pallets-eco/flask-wtf/issues/672">#672</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pallets-eco/flask-wtf/compare/v1.2.2...v1.3.0">compare view</a></li> </ul> </details> <br /> [](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 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) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
