dependabot[bot] opened a new pull request, #1080: URL: https://github.com/apache/iceberg-python/pull/1080
Bumps [getdaft](https://github.com/Eventual-Inc/Daft) from 0.2.33 to 0.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Eventual-Inc/Daft/releases">getdaft's releases</a>.</em></p> <blockquote> <h2>v0.3.0</h2> <h2>‼️ v0.2 → v0.3 Migration Guide ‼️</h2> <p>We're proud to release version 0.3.0 of Daft! Please note that with this minor version increment, v0.3 contains several breaking changes:</p> <ul> <li><code>daft.read_delta_lake</code> <ul> <li>This function was deprecated in favor of <code>daft.read_deltalake</code> in v0.2.26 and is now removed. (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2663">#2663</a>)</li> </ul> </li> <li><code>daft.read_parquet</code> / <code>daft.read_csv</code> / <code>daft.read_json</code> <ul> <li>Schema hints are deprecated in favor of <code>infer_schema</code> (whether to turn on schema inference) and <code>schema</code> (a definitive schema if infer_schema is False, otherwise it is used as a schema hint that is applied post inference). (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2326">#2326</a>)</li> </ul> </li> <li><code>Expression.str.normalize()</code> <ul> <li>Parameters are now all False by default, and need to individually be toggled on. (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2647">#2647</a>)</li> </ul> </li> <li><code>DataFrame.agg</code> / <code>GroupedDataFrame.agg</code> <ul> <li>Tuple syntax for aggregations was deprecated in v0.2.18 and is now no longer supported. Please use aggregation expressions instead. (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2663">#2663</a>)</li> <li>Ex: <code>df.agg([(col("x"), "sum"), (col("y"), "mean")])</code> should be written instead as <code>df.agg(col("x").sum(), col("y").mean())</code></li> </ul> </li> <li><code>DataFrame.count</code> <ul> <li>Calling <code>.count()</code> with no arguments will now return a DataFrame with column “count” which contains the length of the entire DataFrame, instead of the count for each of the columns (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/1996">#1996</a>)</li> </ul> </li> <li><code>DataFrame.with_column</code> <ul> <li>Resource requests should now be specified on UDF expressions (<code>@udf(num_gpus=…)</code>) instead of on Projections (through <code>.with_column(..., resource_request=...)</code> (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2654">#2654</a>)</li> </ul> </li> <li><code>DataFrame.join</code> <ul> <li>When joining two DataFrames, columns will now be merged only if they exactly match join keys. (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2631">#2631</a>)</li> <li>Ex:</li> </ul> </li> </ul> <pre lang="python"><code>df1 = daft.from_pydict({ "a": ["x", "y"], "b": [1, 2] }) <p>df2 = daft.from_pydict({ "a": ["y", "z"], "b": [20, 30] })</p> <p>result_df = df1.join( df2, left_on=[col("a"), col("b")], right_on=[col("a"), col("b")/10], # NOTE THE "/10" how="outer" )</p> <p>result_df.sort("a").collect() </code></pre></p> <pre><code># before ╭──────┬───────╮ │ a ┆ b │ │ --- ┆ --- │ │ Utf8 ┆ Int64 │ ╞══════╪═══════╡ │ x ┆ 1 │ ├╌╌╌╌╌╌┼╌╌╌╌╌╌╌┤ </tr></table> </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Eventual-Inc/Daft/commit/b3f5260740cb6ab5013671b31d6a8a1e89fc4002"><code>b3f5260</code></a> [CHORE] fix merge conflict in repr tests (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2700">#2700</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/fbce3ac4baa3ae1f894ded8632b6de8a752f8040"><code>fbce3ac</code></a> [BUG] Fix Parquet reads with chunk sizing (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2658">#2658</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/dbcc4bb98fc2664652ede5df8049579819b7a52d"><code>dbcc4bb</code></a> [PERF] Add ability to automatically choose broadcast for anti/semi joins (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2699">#2699</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/73c07424db205776897f269d20edb044c3c7405d"><code>73c0742</code></a> [CHORE] Fix FOTW <a href="https://redirect.github.com/Eventual-Inc/Daft/issues/001">#001</a> images notebook (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2697">#2697</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/416a02dbfa982eb37ec4b862597e211ef602e69d"><code>416a02d</code></a> [FEAT] Ellipsize scan task sources if too many (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2695">#2695</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/f34837d11a2dfab329a0908fd83250b86a41d3f8"><code>f34837d</code></a> [FEAT] Allow user provided schema and schema inference length for read_sql (#...</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/2127672131cfefb463f8dd0fddf0456e405bbaf9"><code>2127672</code></a> [BUG]: repr mermaid fix (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2688">#2688</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/7237a8aae162e5765412bff6f11e19604f2aec34"><code>7237a8a</code></a> [BUG] Use Daft Pickle instead of Ray Pickle and use bincode for serializing (...</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/6f87625fc6f6ec31a5c9c327ee0223269eeddb11"><code>6f87625</code></a> [DOCS] Add join types, renaming behavior, and example to join docs (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2691">#2691</a>)</li> <li><a href="https://github.com/Eventual-Inc/Daft/commit/5f5bdf9da437be3592be455f1ad384ddc877499e"><code>5f5bdf9</code></a> [CHORE] Deprecate schema hints (<a href="https://redirect.github.com/Eventual-Inc/Daft/issues/2655">#2655</a>)</li> <li>Additional commits viewable in <a href="https://github.com/Eventual-Inc/Daft/compare/v0.2.33...v0.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 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org