dependabot[bot] opened a new pull request, #2454:
URL: https://github.com/apache/iceberg-python/pull/2454

   Bumps [daft](https://github.com/Eventual-Inc/Daft) from 0.5.22 to 0.6.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/Eventual-Inc/Daft/releases";>daft's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.6.0</h2>
   <h2>What's Changed 🚀</h2>
   <p>v0.6.0 marks the official release of our new ray-based distributed 
engine, Flotilla! If you are already using the ray runner, you do not need to 
change anything. Setting the <code>DAFT_RUNNER=ray</code> environment variable, 
or within your python program via <code>daft.context.set_runner_ray()</code>, 
will use Flotilla by default.</p>
   <p>All operations except cross join, sort merge join, and pivot are 
currently supported. We will be working on adding support for them soon! If you 
need to use the legacy ray runner, please set 
<code>daft.set_execution_config(use_legacy_ray_runner=True)</code></p>
   <h2>💥 Breaking Changes</h2>
   <p><code>SQLCatalog</code> was deprecated in v0.5 and is now removed, in 
favor of the <code>bindings</code> kwargs.</p>
   <p>Before:</p>
   <pre lang="py"><code>catalog = SQLCatalog({&quot;test_data&quot;: df})
   result = daft.sql(&quot;SELECT * FROM test_data&quot;, catalog=catalog)
   </code></pre>
   <p>After:</p>
   <pre lang="py"><code>bindings = {&quot;test_data&quot;: df}
   result = daft.sql(&quot;SELECT * FROM test_data&quot;, **bindings)
   </code></pre>
   <hr />
   <ul>
   <li>feat!: revert daft.func behavior on literal arguments <a 
href="https://github.com/kevinzwang";><code>@​kevinzwang</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5087";>#5087</a>)</li>
   <li>revert!: &quot;revert: Temporarily revert &quot;Remove deprecated APIs 
for 0.6&quot; <a 
href="https://github.com/desmondcheongzx";><code>@​desmondcheongzx</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5084";>#5084</a>)</li>
   </ul>
   <h2>✨ Features</h2>
   <ul>
   <li>feat(embed_text): Support LM Studio as a provider <a 
href="https://github.com/desmondcheongzx";><code>@​desmondcheongzx</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5103";>#5103</a>)</li>
   <li>feat: Implement embed_image() <a 
href="https://github.com/desmondcheongzx";><code>@​desmondcheongzx</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5101";>#5101</a>)</li>
   <li>feat!: revert daft.func behavior on literal arguments <a 
href="https://github.com/kevinzwang";><code>@​kevinzwang</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5087";>#5087</a>)</li>
   <li>feat: Automatically grab embedding dimensions for sentence transformers 
<a href="https://github.com/desmondcheongzx";><code>@​desmondcheongzx</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5078";>#5078</a>)</li>
   <li>feat: add mcap datasource reader <a 
href="https://github.com/Jay-ju";><code>@​Jay-ju</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/4727";>#4727</a>)</li>
   </ul>
   <h2>🐛 Bug Fixes</h2>
   <ul>
   <li>fix: Undo skipcheck change <a 
href="https://github.com/srilman";><code>@​srilman</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5131";>#5131</a>)</li>
   <li>fix: fix youtube video reading <a 
href="https://github.com/rchowell";><code>@​rchowell</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5126";>#5126</a>)</li>
   <li>fix: Remove flotilla fallback <a 
href="https://github.com/colin-ho";><code>@​colin-ho</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5114";>#5114</a>)</li>
   <li>fix: Add nulls in json reads if a line doesn't contain the field from 
the schema <a href="https://github.com/colin-ho";><code>@​colin-ho</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/4993";>#4993</a>)</li>
   <li>fix: Check if UDFs are Serializable <a 
href="https://github.com/srilman";><code>@​srilman</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5091";>#5091</a>)</li>
   <li>fix: nightly property test <a 
href="https://github.com/malcolmgreaves";><code>@​malcolmgreaves</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5076";>#5076</a>)</li>
   <li>fix: Handle Unserializable Errors in Process UDFs <a 
href="https://github.com/srilman";><code>@​srilman</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5075";>#5075</a>)</li>
   <li>fix: Implement Multi-Column Aggregations with List-like columns  <a 
href="https://github.com/srilman";><code>@​srilman</code></a> (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5017";>#5017</a>)</li>
   </ul>
   <h2>🚀 Performance</h2>
   <ul>
   <li>perf: Implement count pushdown for parquet <a 
href="https://github.com/desmondcheongzx";><code>@​desmondcheongzx</code></a> 
(<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5038";>#5038</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/ef36735e5fb71ae3b01b10b7fcbbc2efefa81082";><code>ef36735</code></a>
 ci: fix test-wheels job in build-wheel.yml (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5134";>#5134</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/927e22b68afa27e1a57ac86a44e8686bf1af4efb";><code>927e22b</code></a>
 ci: Truncate the # of concurrent jobs in PR CI (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5122";>#5122</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/f1877168fac26f8fbfbf166b77413759753dd7c2";><code>f187716</code></a>
 fix: Undo skipcheck change (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5131";>#5131</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/6f2f3601e8d182cfea9088d705fabdaeee8f40cd";><code>6f2f360</code></a>
 fix: fix youtube video reading (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5126";>#5126</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/3adbdba34974a029e53e8daae5cd3b0b3284b4b2";><code>3adbdba</code></a>
 refactor: proper organization for providers and protocols in daft.ai (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5125";>#5125</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/5c3cea58d9c4658f92a654b505a9599caa59fc36";><code>5c3cea5</code></a>
 perf: Implement count pushdown for parquet (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5038";>#5038</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/8f1fee8615447f89e9e909617899f271d1d40826";><code>8f1fee8</code></a>
 chore: Add AGENTS.md (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5124";>#5124</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/6b9dacd400ececb0bf1c97410875c33e37383675";><code>6b9dacd</code></a>
 docs: fix navigation labels to match section names (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5121";>#5121</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/e36a830b7246ed4c660566587b6a135fa903f233";><code>e36a830</code></a>
 ci: Run tests before publish (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5009";>#5009</a>)</li>
   <li><a 
href="https://github.com/Eventual-Inc/Daft/commit/d3e782fae53a32407c1c4dca933ebded0c5fb194";><code>d3e782f</code></a>
 ci: Always run the <code>unit-tests</code> required check (<a 
href="https://redirect.github.com/Eventual-Inc/Daft/issues/5119";>#5119</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/Eventual-Inc/Daft/compare/v0.5.22...v0.6.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=daft&package-manager=pip&previous-version=0.5.22&new-version=0.6.0)](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 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]

Reply via email to