Avatar for the Jij-Inc user
Jij-Inc
ommx
BlogDocsChangelog

Performance History

Latest Results

Start developing OMMX Python SDK 2.0.9 (#626) Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: termoshtt <1238153+termoshtt@users.noreply.github.com>
main
11 days ago
Make local registry configurable (#622) ## 🚨 Breaking Changes / Deprecations - **Deprecated:** `data_dir()` function is now deprecated. Use `get_local_registry_root()` instead. - **Deprecated:** `image_dir()` function is now deprecated. Use `get_image_dir()` instead. - This follows Rust semver conventions - deprecation requires a minor version bump (2.0.4 → 2.1.0). ## ✨ New Features ### Configurable Local Registry Root The local registry root directory can now be configured through three methods (in priority order): 1. **API Call**: `set_local_registry_root(path)` - Explicitly set the path programmatically 2. **Environment Variable**: `OMMX_LOCAL_REGISTRY_ROOT` - Set via environment variable 3. **Default**: System project data directory - Fallback behavior ### New API Functions - `set_local_registry_root(path)` - Set registry root (can only be called once) - `get_local_registry_root()` - Get registry root path (returns `&'static Path`) - `get_image_dir(image_name)` - Get image directory path (returns `PathBuf`, no Result) ## 🏗️ Implementation Details - Uses `OnceLock` for thread-safe, immutable storage once initialized - Provides informative logging when registry path is determined - **Directory creation behavior change**: `get_local_registry_root()` does NOT create directories automatically (unlike deprecated `data_dir()`) - **Return type simplification**: `get_image_dir()` returns `PathBuf` directly instead of `Result<PathBuf>` - Improved error handling and logging throughout ## 🧹 Additional Improvements - Updated terminology from "OMMX artifacts" to "local registry" for consistency - Fixed lifetime annotation warnings in `Cow` return types - Updated log messages to use "local registry" terminology consistently - Fixed all deprecated function usage throughout the codebase ## ⚠️ Migration Guide **Old Code:** ```rust let path = ommx::artifact::data_dir()?; // Deprecated let image_path = ommx::artifact::image_dir(&image_name)?; // Deprecated ``` **New Code:** ```rust // Option 1: Use new API directly let path = ommx::artifact::get_local_registry_root(); let image_path = ommx::artifact::get_image_dir(&image_name); // Option 2: Set custom path first ommx::artifact::set_local_registry_root("/custom/path")?; let path = ommx::artifact::get_local_registry_root(); let image_path = ommx::artifact::get_image_dir(&image_name); // Option 3: Use environment variable // OMMX_LOCAL_REGISTRY_ROOT=/custom/path let path = ommx::artifact::get_local_registry_root(); let image_path = ommx::artifact::get_image_dir(&image_name); ``` **Key Differences:** - `get_local_registry_root()` returns `&'static Path` (no Result) - `get_image_dir()` returns `PathBuf` (no Result) - `get_local_registry_root()` does NOT create directories automatically - If you need directory creation, call `std::fs::create_dir_all()` explicitly --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
main
13 days ago
Bump the dependencies group with 3 updates (#620) Bumps the dependencies group with 3 updates: [indexmap](https://github.com/indexmap-rs/indexmap), [thiserror](https://github.com/dtolnay/thiserror) and [url](https://github.com/servo/rust-url). Updates `indexmap` from 2.10.0 to 2.11.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md">indexmap's changelog</a>.</em></p> <blockquote> <h2>2.11.0 (2025-08-22)</h2> <ul> <li>Added <code>insert_sorted_by</code> and <code>insert_sorted_by_key</code> methods to <code>IndexMap</code>, <code>IndexSet</code>, and <code>VacantEntry</code>, like customizable versions of <code>insert_sorted</code>.</li> <li>Added <code>is_sorted</code>, <code>is_sorted_by</code>, and <code>is_sorted_by_key</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, as well as their <code>Slice</code> counterparts.</li> <li>Added <code>sort_by_key</code> and <code>sort_unstable_by_key</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, as well as parallel counterparts.</li> <li>Added <code>replace_index</code> methods to <code>IndexMap</code>, <code>IndexSet</code>, and <code>VacantEntry</code> to replace the key (or set value) at a given index.</li> <li>Added optional <code>sval</code> serialization support.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indexmap-rs/indexmap/commit/91d53adb3239cd4e12b671db7656c99b10fedc53"><code>91d53ad</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/409">#409</a> from cuviper/release-2.11.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/cf566a7060526aada9d7680a7cc3b9cf004a055a"><code>cf566a7</code></a> Release 2.11.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/2e173dcf755b55982ca8fb568cb823b72629ce73"><code>2e173dc</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/408">#408</a> from cuviper/is_sorted</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/e4bb7d03b92ad7768fb26b5f062fefda6af0dc72"><code>e4bb7d0</code></a> Add <code>is_sorted</code>{,<code>_by</code>,<code>_by_key</code>}</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/0f40489b1a6f6a4781ec45f6b30f6e8327b1b04c"><code>0f40489</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/407">#407</a> from cuviper/sort_by_key</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/ab9e461b895184bd4926a8d4555f05d1a6c50666"><code>ab9e461</code></a> Add <code>sort_by_key</code> and <code>sort_unstable_by_key</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/a468ca41bbbc04afd293e00ad57d7a8ed60cb89e"><code>a468ca4</code></a> Normalize to ASCII apostrophes</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/7939ae9c21b12aa5386cb9d3ecb4f7bb598341a6"><code>7939ae9</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/406">#406</a> from cuviper/more-insert_sorted_by</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/354345b5a250be9d565e3b60f311a435141e6412"><code>354345b</code></a> Take <em>two</em> entries in <code>insert_sorted_by</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/314ec7dbda48cfd7135e3aef894e7db627d6be21"><code>314ec7d</code></a> Add quick checks for <code>insert_sorted_by</code></li> <li>Additional commits viewable in <a href="https://github.com/indexmap-rs/indexmap/compare/2.10.0...2.11.0">compare view</a></li> </ul> </details> <br /> Updates `thiserror` from 2.0.15 to 2.0.16 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>2.0.16</h2> <ul> <li>Add to &quot;no-std&quot; crates.io category (<a href="https://redirect.github.com/dtolnay/thiserror/issues/429">#429</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/40b58536cc4570d7e94575d1c90ebb07edf9aba0"><code>40b5853</code></a> Release 2.0.16</li> <li><a href="https://github.com/dtolnay/thiserror/commit/83dfb5f99ba0ac9dc0ad800cc7adc64c28a2a918"><code>83dfb5f</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/thiserror/issues/429">#429</a> from dtolnay/nostd</li> <li><a href="https://github.com/dtolnay/thiserror/commit/9b4a99fb90bdb8feb2d3d4212a6aa3427418ea2b"><code>9b4a99f</code></a> Add to &quot;no-std&quot; crates.io category</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/2.0.15...2.0.16">compare view</a></li> </ul> </details> <br /> Updates `url` from 2.5.4 to 2.5.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/servo/rust-url/releases">url's releases</a>.</em></p> <blockquote> <h2>v2.5.5</h2> <h2>What's Changed</h2> <ul> <li>ci: downgrade crates when building for Rust 1.67.0 by <a href="https://github.com/mxinden"><code>@​mxinden</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1003">servo/rust-url#1003</a></li> <li>ci: run unit tests with sanitizers by <a href="https://github.com/mxinden"><code>@​mxinden</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1002">servo/rust-url#1002</a></li> <li>fix small typo by <a href="https://github.com/hkBst"><code>@​hkBst</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1011">servo/rust-url#1011</a></li> <li>chore: fix clippy errors on main by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1019">servo/rust-url#1019</a></li> <li>perf: remove heap allocation in parse_query by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1020">servo/rust-url#1020</a></li> <li>perf: slightly improve parsing a port by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1022">servo/rust-url#1022</a></li> <li>perf: improve to_file_path() by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1018">servo/rust-url#1018</a></li> <li>perf: make parse_scheme slightly faster by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1025">servo/rust-url#1025</a></li> <li>update LICENSE-MIT by <a href="https://github.com/wmjae"><code>@​wmjae</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1029">servo/rust-url#1029</a></li> <li>perf: url encode path segments in longer string slices by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1026">servo/rust-url#1026</a></li> <li>Disable the default features on serde by <a href="https://github.com/rilipco"><code>@​rilipco</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1033">servo/rust-url#1033</a></li> <li>docs: base url relative join by <a href="https://github.com/tisonkun"><code>@​tisonkun</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1013">servo/rust-url#1013</a></li> <li>perf: remove heap allocation in parse_host by <a href="https://github.com/dsherret"><code>@​dsherret</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1021">servo/rust-url#1021</a></li> <li>Update tests to Unicode 16.0 by <a href="https://github.com/hsivonen"><code>@​hsivonen</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1045">servo/rust-url#1045</a></li> <li>Add some some basic functions to <code>Mime</code> by <a href="https://github.com/mrobinson"><code>@​mrobinson</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1047">servo/rust-url#1047</a></li> <li>ran <code>cargo clippy --fix -- -Wclippy::use_self</code> by <a href="https://github.com/mrobinson"><code>@​mrobinson</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1048">servo/rust-url#1048</a></li> <li>Fix MSRV and clippy CI by <a href="https://github.com/Manishearth"><code>@​Manishearth</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1058">servo/rust-url#1058</a></li> <li>Update <code>Url::domain</code> docs to show that it includes subdomain by <a href="https://github.com/supercoolspy"><code>@​supercoolspy</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1057">servo/rust-url#1057</a></li> <li>set_hostname should error when encountering colon ':' by <a href="https://github.com/edgul"><code>@​edgul</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1060">servo/rust-url#1060</a></li> <li>version bump to 2.5.5 by <a href="https://github.com/edgul"><code>@​edgul</code></a> in <a href="https://redirect.github.com/servo/rust-url/pull/1061">servo/rust-url#1061</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mxinden"><code>@​mxinden</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1003">servo/rust-url#1003</a></li> <li><a href="https://github.com/hkBst"><code>@​hkBst</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1011">servo/rust-url#1011</a></li> <li><a href="https://github.com/wmjae"><code>@​wmjae</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1029">servo/rust-url#1029</a></li> <li><a href="https://github.com/rilipco"><code>@​rilipco</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1033">servo/rust-url#1033</a></li> <li><a href="https://github.com/tisonkun"><code>@​tisonkun</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1013">servo/rust-url#1013</a></li> <li><a href="https://github.com/supercoolspy"><code>@​supercoolspy</code></a> made their first contribution in <a href="https://redirect.github.com/servo/rust-url/pull/1057">servo/rust-url#1057</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/servo/rust-url/compare/v2.5.4...v2.5.5">https://github.com/servo/rust-url/compare/v2.5.4...v2.5.5</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/servo/rust-url/commits">compare view</a></li> </ul> </details> <br /> 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 <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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Toshiki Teramura <toshiki.teramura@gmail.com>
main
21 days ago
Bump actions/upload-pages-artifact from 3 to 4 in the dependencies group (#619) Bumps the dependencies group with 1 update: [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). Updates `actions/upload-pages-artifact` from 3 to 4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload-pages-artifact/releases">actions/upload-pages-artifact's releases</a>.</em></p> <blockquote> <h2>v4.0.0</h2> <h2>What's Changed</h2> <ul> <li>Potentially breaking change: hidden files (specifically dotfiles) will not be included in the artifact by <a href="https://github.com/tsusdere"><code>@​tsusdere</code></a> in <a href="https://redirect.github.com/actions/upload-pages-artifact/pull/102">actions/upload-pages-artifact#102</a> If you need to include dotfiles in your artifact: instead of using this action, create your own artifact according to these requirements <a href="https://github.com/actions/upload-pages-artifact?tab=readme-ov-file#artifact-validation">https://github.com/actions/upload-pages-artifact?tab=readme-ov-file#artifact-validation</a></li> <li>Pin <code>actions/upload-artifact</code> to SHA by <a href="https://github.com/heavymachinery"><code>@​heavymachinery</code></a> in <a href="https://redirect.github.com/actions/upload-pages-artifact/pull/127">actions/upload-pages-artifact#127</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload-pages-artifact/compare/v3.0.1...v4.0.0">https://github.com/actions/upload-pages-artifact/compare/v3.0.1...v4.0.0</a></p> <h2>v3.0.1</h2> <h1>Changelog</h1> <ul> <li>Group tar's output to prevent it from messing up action logs <a href="https://github.com/SilverRainZ"><code>@​SilverRainZ</code></a> (<a href="https://redirect.github.com/actions/upload-pages-artifact/issues/94">#94</a>)</li> <li>Update README.md <a href="https://github.com/uiolee"><code>@​uiolee</code></a> (<a href="https://redirect.github.com/actions/upload-pages-artifact/issues/88">#88</a>)</li> <li>Bump the non-breaking-changes group with 1 update <a href="https://github.com/dependabot"><code>@​dependabot</code></a> (<a href="https://redirect.github.com/actions/upload-pages-artifact/issues/92">#92</a>)</li> <li>Update Dependabot config to group non-breaking changes <a href="https://github.com/JamesMGreene"><code>@​JamesMGreene</code></a> (<a href="https://redirect.github.com/actions/upload-pages-artifact/issues/91">#91</a>)</li> <li>Bump actions/checkout from 3 to 4 <a href="https://github.com/dependabot"><code>@​dependabot</code></a> (<a href="https://redirect.github.com/actions/upload-pages-artifact/issues/76">#76</a>)</li> </ul> <p>See details of <a href="https://github.com/actions/upload-pages-artifact/compare/v3.0.0...v3.0.1">all code changes</a> since previous release.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/upload-pages-artifact/commit/7b1f4a764d45c48632c6b24a0339c27f5614fb0b"><code>7b1f4a7</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-pages-artifact/issues/127">#127</a> from heavymachinery/pin-sha</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/4cc19c7d3f3e6c87c68366501382a03c8b1ba6db"><code>4cc19c7</code></a> Pin <code>actions/upload-artifact</code> to SHA</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/2d163be3ddce01512f3eea7ac5b7023b5d643ce1"><code>2d163be</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-pages-artifact/issues/107">#107</a> from KittyChiu/main</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/c70484322b1c476728dcd37fac23c4dea2a0c51a"><code>c704843</code></a> fix: linted README</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/9605915f1d2fc79418cdce4d5fbe80511c457655"><code>9605915</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-pages-artifact/issues/106">#106</a> from KittyChiu/kittychiu/update-readme-1</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/e59cdfe6d6b061aab8f0619e759cded914f3ab03"><code>e59cdfe</code></a> Update README.md</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/a2d67043267d885050434d297d3dd3a3a14fd899"><code>a2d6704</code></a> doc: updated usage section in readme</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/984864e7b70fb5cb764344dc9c4b5c087662ef50"><code>984864e</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-pages-artifact/issues/105">#105</a> from actions/Jcambass-patch-1</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/45dc78884ca148c05eddcd8ac0a804d3365e9014"><code>45dc788</code></a> Add workflow file for publishing releases to immutable action package</li> <li><a href="https://github.com/actions/upload-pages-artifact/commit/efaad07812d4b9ad2e8667cd46426fdfb7c22e22"><code>efaad07</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-pages-artifact/issues/102">#102</a> from actions/hidden-files</li> <li>Additional commits viewable in <a href="https://github.com/actions/upload-pages-artifact/compare/v3...v4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-pages-artifact&package-manager=github_actions&previous-version=3&new-version=4)](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 <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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
main
21 days ago

Active Branches

No pull requests foundAs pull requests are created, their performance will appear here.
© 2025 CodSpeed Technology
Home Terms Privacy Docs