dependabot[bot] opened a new pull request, #808: URL: https://github.com/apache/sedona-db/pull/808
Bumps [i_overlay](https://github.com/iShape-Rust/iOverlay) from 4.0.6 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/iShape-Rust/iOverlay/releases">i_overlay's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <h3>Migration: <code>FloatPointCompatible</code> now uses an associated scalar type</h3> <p><code>FloatPointCompatible</code> no longer takes the scalar as a generic parameter. Implementations should define <code>type Scalar</code> instead.</p> <p>Before:</p> <pre lang="rust"><code>impl FloatPointCompatible<f32> for MyPoint { fn from_xy(x: f32, y: f32) -> Self { ... } fn x(&self) -> f32 { ... } fn y(&self) -> f32 { ... } } </code></pre> <p>After:</p> <pre lang="rust"><code>impl FloatPointCompatible for MyPoint { type Scalar = f32; <pre><code>fn from_xy(x: f32, y: f32) -&gt; Self { ... } fn x(&amp;self) -&gt; f32 { ... } fn y(&amp;self) -&gt; f32 { ... } </code></pre> <p>}<br /> </code></pre></p> <p>Public float overlay APIs were simplified accordingly. Types that previously carried both point and scalar generics now generally use only the point type, with scalar values expressed as <code>P::Scalar</code>.</p> <h2>v5.0.0</h2> <p>Starting with <code>5.0.0</code>, <code>i_overlay</code> follows SemVer release cycles.</p> <h3>Changes</h3> <ul> <li>Switched release policy to SemVer.</li> <li>Added <code>cargo-semver-checks</code> to CI.</li> </ul> <h2>v4.5.0</h2> <h3>Changes</h3> <ul> <li>Changed: Reworked buffering algorithm. Now it's relay on default boolean overlay graph. Old legacy buffering overlay graph removed. New algorithm must be more precision stable and safe.</li> <li>Added: Unit tests.</li> </ul> <h2>v4.2.1</h2> <h3>Changes</h3> <ul> <li>Changed: License updated from <strong>MIT</strong> to dual <strong>MIT</strong> OR <strong>Apache-2.0</strong>.</li> <li>Added: Integration tests.</li> </ul> <h2>v4.2.0</h2> <h3>Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/34bf825e39aa169c54a4488141a0dcee1c7a7f5a"><code>34bf825</code></a> fix dep</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/c1dad912b44408a7fcbc409997e5be6d68d3e0cd"><code>c1dad91</code></a> Merge pull request <a href="https://redirect.github.com/iShape-Rust/iOverlay/issues/73">#73</a> from iShape-Rust/feature/float_point_compatible</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/98b6e3972bdade31fab29cb4c5cf9a1cbe29d903"><code>98b6e39</code></a> more api adjust</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/ead6e632288d5161eff109fefc43b29d6c7c198d"><code>ead6e63</code></a> adjust api to new FloatPointCompatible</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/fc151090239bd1ff8959fde07580ce9384dc3ba8"><code>fc15109</code></a> Merge pull request <a href="https://redirect.github.com/iShape-Rust/iOverlay/issues/71">#71</a> from iShape-Rust/feature/semver</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/d75b418c5aae6ddb574981c3f8a67fd57e9287fb"><code>d75b418</code></a> migrate to semver release cycles</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/e564dc79ab465c898b6a727681d194c82d57a1ae"><code>e564dc7</code></a> Merge pull request <a href="https://redirect.github.com/iShape-Rust/iOverlay/issues/68">#68</a> from iShape-Rust/feature/code_refactoring</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/aa196d25d0653fbee713cc04774200e71cf3e8be"><code>aa196d2</code></a> Merge branch 'main' of github.com:iShape-Rust/iOverlay into feature/code_refa...</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/945581220fb936ce521ef29d56c5ffc9d281c79d"><code>9455812</code></a> Merge pull request <a href="https://redirect.github.com/iShape-Rust/iOverlay/issues/67">#67</a> from iShape-Rust/feature/outline_tests</li> <li><a href="https://github.com/iShape-Rust/iOverlay/commit/4a9b48f34d234d538b87e4d142dc85cee04e8ca3"><code>4a9b48f</code></a> performance fix</li> <li>Additional commits viewable in <a href="https://github.com/iShape-Rust/iOverlay/compare/4.0.6...6.0.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]
