Skip to content

Commit 95be4bb

Browse files
chore(deps): bump dulwich from 1.1.0 to 1.2.5 in /docker/poetry in the pip group across 1 directory (#5481)
Bumps the pip group with 1 update in the /docker/poetry directory: [dulwich](https://github.com/dulwich/dulwich). Updates `dulwich` from 1.1.0 to 1.2.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dulwich/dulwich/releases">dulwich's releases</a>.</em></p> <blockquote> <h2>dulwich 1.2.5</h2> <p>This is a security release. All users are encouraged to upgrade.</p> <h2>Security fixes</h2> <ul> <li> <p><strong>GHSA-gfhv-vqv2-4544</strong> -- Validate submodule paths in <code>porcelain.submodule_update</code> (and thus <code>porcelain.clone(recurse_submodules=True)</code>). A crafted upstream repository could carry a submodule whose path was <code>.git/hooks</code> (or any other path inside <code>.git</code> or above the work tree), causing the submodule's tree contents to be written there with their executable bits intact. The dulwich analogue of git's CVE-2024-32002 / CVE-2024-32004. (Reported by tonghuaroot)</p> </li> <li> <p><strong>CVE-2026-42305</strong> -- Harden tree path validation against entry names that are harmless on POSIX but dangerous when checked out on Windows. <code>validate_path_element_ntfs</code> now also rejects Windows path separators, the alternate data stream marker <code>:</code>, NTFS 8.3 short-name aliases of <code>.git</code>, and reserved Windows device names. <code>core.protectNTFS</code> now defaults to true on every platform, and both <code>core.protectNTFS</code> and <code>core.protectHFS</code> are now read under their correct option names. (Reported by Christopher Toth)</p> </li> <li> <p><strong>CVE-2026-42563</strong> -- Shell-quote values substituted into <code>ProcessMergeDriver</code> commands. A malicious branch could inject shell commands when a merge driver referencing <code>%P</code> was configured. (Reported by Ravishanker Kusuma (hayageek))</p> </li> <li> <p><strong>CVE-2026-47712</strong> -- Sanitize commit subjects used in <code>porcelain.format_patch</code> filenames so a malicious subject (e.g. <code>x/../../x</code>) cannot direct the generated patch outside <code>outdir</code>. (Reported by Christopher Toth)</p> </li> <li> <p><strong>receive.maxInputSize</strong> -- Honour <code>receive.maxInputSize</code> in <code>ReceivePackHandler</code>. Previously a remote unauthenticated client could send a tiny crafted pack that declared a huge <code>dest_size</code> and trigger hundreds of MB of allocation over <code>git-receive-pack</code>. (Reported by Liyi, Ziyue, Strick, Maurice and Chenchen @ University of Sydney)</p> </li> </ul> <h2>dulwich-1.2.4</h2> <p>Tolerate ref names with empty path components (e.g. `refs/tags//v1.0`) for now, emitting a `DeprecationWarning` rather than raising a `RefFormatError`. Such names are constructed by older Poetry releases (fixed in Poetry 2.4.0) and were silently accepted before Dulwich 1.2.3. `local_branch_name`, `local_tag_name` and `local_replace_name` likewise warn about, and strip, a leading slash instead of raising `ValueError`. Both will become errors again in a future release. (Jelmer Vernooij, <a href="https://redirect.github.com/dulwich/dulwich/issues/2192">#2192</a>)</p> <h2>dulwich-1.2.1</h2> <h2>Changes since 1.2.0</h2> <ul> <li> <p>Derive the LFS endpoint as the remote's on-disk LFS store (<code>&lt;remote&gt;/.git/lfs</code> for worktrees, <code>&lt;remote&gt;/lfs</code> for bare repos) when <code>remote.origin.url</code> points at a local filesystem path or <code>file://</code> URL, matching git-lfs behaviour. Previously the built-in smudge filter constructed an HTTP-style <code>&lt;remote&gt;.git/info/lfs</code> path that did not exist on disk, leaving LFS-tracked files as pointers when cloning from a local repo.</p> </li> <li> <p>Deduplicate objects when writing a multi-pack-index. Objects present in multiple packs (e.g. after <code>git gc</code> creates a cruft pack) would otherwise produce an OIDL chunk with repeated SHAs, causing <code>git multi-pack-index verify</code> to fail with &quot;oid lookup out of order&quot;. (<a href="https://redirect.github.com/dulwich/dulwich/issues/2152">#2152</a>)</p> </li> <li> <p>Extend ignorecase and precomposeunicode support to index lookups. (<a href="https://redirect.github.com/dulwich/dulwich/issues/1807">#1807</a>)</p> </li> </ul> <h2>1.2.0</h2> <h2>Notable changes since 1.1.0</h2> <h3>New features</h3> <ul> <li>Add <code>am</code> command and <code>porcelain.am()</code> for applying mailbox-style email patches (<code>git am</code>), with state persistence for <code>--continue</code>, <code>--skip</code>, <code>--abort</code>, and <code>--quit</code> recovery (<a href="https://redirect.github.com/dulwich/dulwich/issues/1692">#1692</a>).</li> <li>Add <code>apply</code> command and <code>porcelain.apply_patch()</code> for applying unified diffs, including rename/copy detection, binary patches with Git's base85 encoding, and <code>--3way</code> merge fallback (<a href="https://redirect.github.com/dulwich/dulwich/issues/1784">#1784</a>).</li> <li>Expand <code>log</code> command options: <code>--oneline</code>, <code>--abbrev-commit</code>, <code>--author</code>, <code>--committer</code>, <code>--grep</code>, <code>--since</code>/<code>--after</code>, <code>--until</code>/<code>--before</code>, <code>-n</code>/<code>--max-count</code>, <code>--no-merges</code>, <code>--merges</code>, <code>--stat</code>, <code>-p</code>/<code>--patch</code>, <code>--name-only</code>, and <code>--follow</code> (<a href="https://redirect.github.com/dulwich/dulwich/issues/1779">#1779</a>).</li> <li>Add support for push options (<code>-o</code>/<code>--push-option</code>) in <code>push</code>, enabling AGit flow and other server-side push option workflows.</li> <li>Add missing push options: <code>--all</code>, <code>--tags</code>, <code>--delete</code>, <code>--dry-run</code>, <code>--prune</code>, <code>--set-upstream</code>, <code>--follow-tags</code>, and <code>--mirror</code> (<a href="https://redirect.github.com/dulwich/dulwich/issues/1844">#1844</a>).</li> <li>Add support for atomic push operations (<code>--atomic</code>): either all ref updates succeed or none are applied (<a href="https://redirect.github.com/dulwich/dulwich/issues/1781">#1781</a>).</li> <li>Add support for <code>extensions.relativeworktrees</code> repository extension, allowing worktrees to use relative paths (<a href="https://redirect.github.com/dulwich/dulwich/issues/2112">#2112</a>).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jelmer/dulwich/blob/main/NEWS">dulwich's changelog</a>.</em></p> <blockquote> <p>1.2.5 2026-05-28</p> <ul> <li> <p>SECURITY(GHSA-gfhv-vqv2-4544): Validate submodule paths in <code>porcelain.submodule_update</code> (and thus <code>porcelain.clone(recurse_submodules=True)</code>). A crafted upstream repository could carry a submodule whose path was <code>.git/hooks</code> (or any other path inside <code>.git</code> or above the work tree), causing the submodule's tree contents to be written there with their executable bits intact -- dropping a hook that later commands would run. Submodule paths are now rejected if they are absolute or carry a component that the configured path validator refuses, and the submodule's own tree is materialized with the same validator. This is the dulwich analogue of git's CVE-2024-32002 / CVE-2024-32004. (Jelmer Vernooij; reported by tonghuaroot)</p> </li> <li> <p>SECURITY(CVE-2026-42305): Harden tree path validation against entry names that are harmless on POSIX but dangerous when checked out on Windows. A crafted tree could previously carry such names through to the work tree. <code>validate_path_element_ntfs</code> now also rejects:</p> <ul> <li>Windows path separators, so an entry named <code>.git\hooks\pre-commit.exe</code> can no longer materialize a file inside <code>.git</code> that Git for Windows would execute.</li> <li>The alternate data stream marker <code>:</code> (e.g. <code>.git::$INDEX_ALLOCATION</code>, which writes into <code>.git</code> directly).</li> <li>NTFS 8.3 short-name aliases of <code>.git</code> (<code>git~&lt;digits&gt;</code>); only <code>git~1</code> was rejected before.</li> <li>Reserved Windows device names (<code>CON</code>, <code>PRN</code>, <code>AUX</code>, <code>NUL</code>, <code>COM1</code>-<code>COM9</code>, <code>LPT1</code>-<code>LPT9</code>), including with an extension or trailing dots/spaces such as <code>NUL.txt</code> or <code>COM1 .bar</code>.</li> </ul> <p>In addition, <code>core.protectNTFS</code> now defaults to true on every platform (matching git after CVE-2019-1353), so a POSIX clone no longer accepts paths that would be unsafe on a later Windows clone, and both <code>core.protectNTFS</code> and <code>core.protectHFS</code> are now read under their correct option names, having previously been silently ignored. POSIX users who need literal NTFS-unsafe filenames can opt out with <code>core.protectNTFS=false</code>. (Jelmer Vernooij; reported by Christopher Toth)</p> </li> <li> <p>SECURITY (CVE-2026-42563): Shell-quote values substituted into <code>ProcessMergeDriver</code> commands. <code>%P</code> is a path from the git tree, so a malicious branch could inject shell commands when the user had a merge driver configured that referenced <code>%P</code>. (Jelmer Vernooij; reported by Ravishanker Kusuma (hayageek))</p> </li> <li> <p>SECURITY(CVE-2026-47712): Sanitize commit subjects used in <code>porcelain.format_patch</code> filenames so a malicious subject (e.g. <code>x/../../x</code>) cannot direct the generated patch outside <code>outdir</code>. <code>get_summary</code> now matches git's <code>format_sanitized_subject</code>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jelmer/dulwich/commit/073f4dfa9840af2da59887ed828b026b609faa6c"><code>073f4df</code></a> Release 1.2.5</li> <li><a href="https://github.com/jelmer/dulwich/commit/5f85d3e4b0d47dd7fbf37934f9a4b9b6b98bb467"><code>5f85d3e</code></a> tests: fix Windows-only failures in NTFS and merge-driver tests</li> <li><a href="https://github.com/jelmer/dulwich/commit/25313ad7f9d5036b03617dc3dfc284a586966dab"><code>25313ad</code></a> Merge branch 'advisory-5'</li> <li><a href="https://github.com/jelmer/dulwich/commit/1ca18147a1d03b61c2ae203c46bf0b2a2f5dd421"><code>1ca1814</code></a> submodule: Reject unsafe submodule paths in submodule_update</li> <li><a href="https://github.com/jelmer/dulwich/commit/3559ef15c1e2a8d2a56c98f36b53b29c5d60b9fd"><code>3559ef1</code></a> Merge branch 'advisory-4'</li> <li><a href="https://github.com/jelmer/dulwich/commit/f860ca489d63624ae6d7c7945fbbd19018b8125c"><code>f860ca4</code></a> server: Honour receive.maxInputSize to bound received packs</li> <li><a href="https://github.com/jelmer/dulwich/commit/0fd6e6bb61f8017b1af4b5fdbf7602ddbcf6d17e"><code>0fd6e6b</code></a> Merge branch 'advisory-3'</li> <li><a href="https://github.com/jelmer/dulwich/commit/0110b885a1ab5b2128473263a6ff5b7230732e49"><code>0110b88</code></a> Merge branch 'advisory-2'</li> <li><a href="https://github.com/jelmer/dulwich/commit/49eb56e51aad637fc23d54bf2a08cb42739b8290"><code>49eb56e</code></a> Add NEWS entry for CVE-2026-42305</li> <li><a href="https://github.com/jelmer/dulwich/commit/57efc4aa1581e038915a0fd79365be53b150f4a9"><code>57efc4a</code></a> Merge branch 'advisory-1'</li> <li>Additional commits viewable in <a href="https://github.com/dulwich/dulwich/compare/dulwich-1.1.0...dulwich-1.2.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dulwich&package-manager=pip&previous-version=1.1.0&new-version=1.2.5)](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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/google/osv.dev/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5705afe commit 95be4bb

1 file changed

Lines changed: 43 additions & 37 deletions

File tree

docker/poetry/requirements.txt

Lines changed: 43 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -287,43 +287,49 @@ distlib==0.4.0 \
287287
--hash=sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16 \
288288
--hash=sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d
289289
# via virtualenv
290-
dulwich==1.1.0 \
291-
--hash=sha256:06c18293fb2c715f035052f0c74f56e5ff52925ad4d0b5a0ebf16118daa5e340 \
292-
--hash=sha256:0890fff677c617efbac0cd4584bec9753388e6cd6336e7131338ea034b47e899 \
293-
--hash=sha256:1b1b9adaf82301fd7b360a5fa521cec1623cb9d77a0c5a09d04396637b39eb48 \
294-
--hash=sha256:2f5a455e67f9ddd018299ce8dd05861a2696d35c6af91e9acdb4af0767bc0b8b \
295-
--hash=sha256:2f6dd0c5fc45c84790d4a48d168d07f0aa817fcb879d2632e6cee603e98a843c \
296-
--hash=sha256:333b0f93b289b14f98870317fb0583fdf73d5341f21fd09c694aa88bb06ad911 \
297-
--hash=sha256:37be136c7a85a64ae0cf8030f4fb2fa4860cff653ad3bcf13c49bf59fea2020c \
298-
--hash=sha256:3ba0cb28848dd8fd80d4389d1b83968da172376cea34f9bdb39043970fa1a045 \
299-
--hash=sha256:49c39844b4abe53612d18add7762faf886ade70384a101912e0849f56f885913 \
300-
--hash=sha256:518307ab080746ee9c32fc13e76ad4f7df8f7665bb85922e974037dd9415541a \
301-
--hash=sha256:59e10ca543b752fa4b467a9ce420ad95b65e232f817f91809e64fe76eb8e27c6 \
302-
--hash=sha256:5a662942f123614077f14bc31e66f6adce09561cc25da1ef716c13be8dba56c5 \
303-
--hash=sha256:693c450a5d327a6a5276f5292d3dd0bc473066d2fd2a2d69a990d7738535deb6 \
304-
--hash=sha256:6d5a0be4a84cc6ad23b6dcf2f9cbf2a0a65dd907612ad38312b2259ebe7bae56 \
305-
--hash=sha256:6e318970e405987d10c1fd8d1e45f4e8c75874e771a5512f6fbb51b13d5a3108 \
306-
--hash=sha256:8cf55f0de4cf90155aa3ab228c8ef9e7e10f7c785339f1688fb71f6adaae302c \
307-
--hash=sha256:904f09ae3364dc8c026812b0478f2411a973f404aa2654ea18d9f340b3915872 \
308-
--hash=sha256:941735c87b3657019d197bb72f0e9ec03cbdbf959dc0869e672f5c6871597442 \
309-
--hash=sha256:9a32f92c2eb86c84a175261f8fb983b6765bb31618d79d0c0dd68fab6f6ca94a \
310-
--hash=sha256:9aa855db9fee0a7065ae9ffb38e14e353876d82f17e33e1a1fb3830eb8d0cf43 \
311-
--hash=sha256:9b1bbb785f29f9eb51cddb9d80f82dac03939b7444961283b09adac19a823e88 \
312-
--hash=sha256:a05a1049b3928205672913f4c490cf7b08afaa3e7ee7e55e15476e696412672f \
313-
--hash=sha256:a0f3421802225caedd11e95ce40f6a8d3c7a5df906489b6a5f49a20f88f62928 \
314-
--hash=sha256:a1959be27d8201fcee8612da8afecd8e7992d8db8767dcef8704264db09db2ad \
315-
--hash=sha256:b223d00cf564c99986945bd18a74e2e9ef85e713cfe5ad61d04184c386d52fed \
316-
--hash=sha256:ba6f3f0807868f788b7f1d53b9ac0be3e425136b16563994f5ef6ecf5b7c7863 \
317-
--hash=sha256:bcd67e7f9bdffb4b660330c4597d251cd33e74f5df6898a2c1e6a1730a62af06 \
318-
--hash=sha256:be593608a57f5cfa2a1b9927c1b486c3007f5a6f34ff251feaeca3a6a43d4780 \
319-
--hash=sha256:c9752d25f01e92587f8db52e50daf3e970deb49555340653ea44ba5e60f0f416 \
320-
--hash=sha256:cb5e28210e34e6473d982cdf99e420dd2791e7af4d9be796fa760055951d82df \
321-
--hash=sha256:d491e05d434a403f2ed7454002f39ce6fb9ae8de93bded368721bdb9a1f41778 \
322-
--hash=sha256:dff1b67e0f76fcaae8f7345c05b1c4f00c11a6c42ace20864e80e7964af31827 \
323-
--hash=sha256:e738163865dfccf155ef5fa3a2b2c849f38dadc6f009d2be355864233899bb4b \
324-
--hash=sha256:eb5440145bb2bbab71cdfa149fd297a8b7d4db889ab90c58d7a07009a73c1d28 \
325-
--hash=sha256:f8789e14981be2d33c3c36a14ec55ae06780c0a865e9df107016c4489a4a022a \
326-
--hash=sha256:fc38cc6f60c5e475fa61dcd2b743113f35377602c1ba1c82264898d97a7d3c48
290+
dulwich==1.2.5 \
291+
--hash=sha256:00b54a1d56ddbacdd8eadd6d4787a51b3a05fefa30eadbf9165fd283a00b90ed \
292+
--hash=sha256:0395b2c8924c3424bafe2d9c1edd5348cc4b21ce9c1d6655bf01f9a5c47164c8 \
293+
--hash=sha256:07cb75b58216440e2c170fff4f3d55a5f387358d9489863af8cb11f24ee37121 \
294+
--hash=sha256:1679b376433a0fc7f36586afda1d4ed7427afa7a79d4bf17e5014474eea69fa4 \
295+
--hash=sha256:1699a4cf8d44c174408325a9594a1498d05786cea34e3004c8732420ee1b8182 \
296+
--hash=sha256:1ba83ec3cfb4c506c277400357a51523c8258fa07b841ee06e8e1071da4cfed1 \
297+
--hash=sha256:1c151a7f3995ccf9d433a603b747e76141a7ebe7c385c8909e9f7e7a6422c28f \
298+
--hash=sha256:2f10dafa1ef5660b1331364bc8d68446448608a8d8f493ed0e260eaf5133e71c \
299+
--hash=sha256:2f90d68bfa97c4ca71de7507984365aefe27b6d248cb28dc99644d0f3ae8c60b \
300+
--hash=sha256:41ccffb0521f3f9ad73fac78772f321d731607336cee48911e7c26963459481c \
301+
--hash=sha256:46db47394ba8a95748ae739f5d3a5a3e1724a2f857bf2437bc71bfc0baaed91d \
302+
--hash=sha256:5108acead814d1de8b6262d6d8fb90af7e82f5a4d83788b6b48e39d01800a92f \
303+
--hash=sha256:517fb7e20f91d2bd48dc5de9edc90ff8974a5512ce7f243284b191f8be6344c3 \
304+
--hash=sha256:53599909d54a2fae49fcd50047f1daf4b8b9eda6a5500a08b71da689f5431c24 \
305+
--hash=sha256:556593fd11637f80f6018bee1916b1a84f5b420423b470ebb3f1a782ad6ef081 \
306+
--hash=sha256:5e067b7feceb7034bc99e7c7143a704f1d97d4be7027d9a0aa5a83c0657ff091 \
307+
--hash=sha256:66aded7d364341b55941973a1562323f25bd205f0809692b687ec36ccd31242c \
308+
--hash=sha256:6c683c0f4a062894b6826c61102d415dae86ade61a10003c82ccc2b91858d5fb \
309+
--hash=sha256:701a9ecf7a8a44f5e2459e46befa93530cf36a8b1ae3140aefc007db1d7d0207 \
310+
--hash=sha256:77d2d2e43ad975459491de1ebf47990c74ff17f12586c8561e9890239bc422db \
311+
--hash=sha256:827366331603150de5976d72dd456a3fd5fc91e856471dc1d10fd64758c05f02 \
312+
--hash=sha256:8929134acf4ff967203df7600b38535f9b5b590462067a7e30dbce01acb97af9 \
313+
--hash=sha256:8e55f36a7f52ba0976dd72100273523908b16fb9dda6ce96d9aa9df9cceed4cc \
314+
--hash=sha256:9008ef25cabd379cda4fa86000fc38ca14b72afe17db798a8c85c0b2b7ce4d1e \
315+
--hash=sha256:93d2d87acf75d60c5a2b8c5c8a45aff17bbbd00c17bdccb4ba013d3ab590a65f \
316+
--hash=sha256:9693d2c9e226b2ea855c1dc3a87e2f4d972f7523fc0f7924e5997e9f4c23d97f \
317+
--hash=sha256:9b6d234f1f91335e9f01d9daac42ddc2d2e5c2fdbe285d8eeef50353b283648a \
318+
--hash=sha256:9f3c98f5fa90a842c1f545463834f712aa2eed785fc3d5e42836c0df2d691bb6 \
319+
--hash=sha256:9fc113c1348c7eb22c4e8790f68b562bb4f42a721fafb813e89a57e9cd632040 \
320+
--hash=sha256:a5549f4afc973e0a15ea6b0244d57f848d3f3ee13dac557eb311024aebebf128 \
321+
--hash=sha256:a6620963196c49212c511cd909f367dacf771f199a27d116f357cc671ea956c7 \
322+
--hash=sha256:a70477c991e96cfe8fdd7c866e7251faf71b38bfeb51d6f27554c9cce1caabf3 \
323+
--hash=sha256:ade416833214f3ee13af9b0199fff4de00fa6e0fde3deced776532fd91df5515 \
324+
--hash=sha256:c65230abaa52c72093b70d3b499d5689d1d8f9627e88ad3c3b4f8154e86ac0c8 \
325+
--hash=sha256:ccc58f26a1b94bef255316311678b03854f7192069bdf11cf501a6c85f61b83c \
326+
--hash=sha256:d33bae2b3292ed0235522682316251658187f43b1ebad6cd2b127069b94afb3b \
327+
--hash=sha256:d46e35c473646efb3b2ff8032f37ac5b6d48da52a669577187d3796a6d5987a3 \
328+
--hash=sha256:d8f7ea8f47e38e5b0de3fab97e07e9c9161ffddc90b3964512cab2b7749df4e6 \
329+
--hash=sha256:dd9569bc26174a3437d749114d36c81fc6c7478b55370ae50125e34e9629e4fe \
330+
--hash=sha256:df4ac3746099562c8160d78d55bb2fa10c9ada7ef970af3e2536bd133cb7830e \
331+
--hash=sha256:e128cddeccae4146b556684a0d5426454fff5bfe7306862e5a8ce6b471568af4 \
332+
--hash=sha256:fa37da7ad16c47391016b5f984fb60e175e1ab0b478f04920fd6d1f61123ce4d
327333
# via poetry
328334
fastjsonschema==2.21.2 \
329335
--hash=sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463 \

0 commit comments

Comments
 (0)