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

   Bumps [duckdb](https://github.com/duckdb/duckdb) from 0.10.2 to 0.10.3.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/duckdb/duckdb/releases";>duckdb's releases</a>.</em></p>
   <blockquote>
   <h2>v0.10.3 Bugfix Release</h2>
   <p>This is a bug fix release for various issues discovered after we released 
0.10.2. There are no new major features, just bug fixes. Database files created 
by DuckDB v0.10.* or v0.9.* can be read by DuckDB v0.10.3.</p>
   <h2>Highlights</h2>
   <p>Even though this is &quot;only&quot; a bug fix release, there have been 
some major areas of work that warrant a separate mention:</p>
   <ul>
   <li>We have added a feature to update extensions using the <code>UPDATE 
EXTENSIONS</code> syntax <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11677";>#11677</a></li>
   <li>There have been some serious internal improvements around 
<strong>checkpointing</strong>, most notably, checkpoints can run while other 
connections are reading, and no longer block new connections while 
checkpointing <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11918";>#11918</a>. Also, 
<code>FORCE CHECKPOINT</code>  no longer actively cancels transactions, it now 
waits until it can checkpoint <a 
href="https://redirect.github.com/duckdb/duckdb/issues/12061";>#12061</a></li>
   <li>DuckDB now has native support to load data from HuggingFace using the 
<code>hf://</code> prefix <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11831";>#11831</a></li>
   <li>We have slightly changed <code>NULL</code> casting behaviour with the 
<code>MAP</code> type <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11745";>#11745</a></li>
   <li>The Java JDBC driver has been moved to its own repo: <a 
href="https://github.com/duckdb/duckdb-java";>https://github.com/duckdb/duckdb-java</a>
 <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11873";>#11873</a></li>
   <li>DuckDB now cleanly compiles with <code>-Wconversion</code> and all 
conversions are actually being checked <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11716";>#11716</a>, <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11673";>#11673</a></li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>Add setting to control the maximum swap space by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/10978";>duckdb/duckdb#10978</a></li>
   <li>[Python][Dev] Dynamically generate the Connection wrapper methods by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11202";>duckdb/duckdb#11202</a></li>
   <li>Fixes duckdb wasm by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11688";>duckdb/duckdb#11688</a></li>
   <li>Checked conversions between signed and unsigned integers by <a 
href="https://github.com/hannes";><code>@​hannes</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11673";>duckdb/duckdb#11673</a></li>
   <li>Bump Julia to v0.10.2 by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11700";>duckdb/duckdb#11700</a></li>
   <li>Minor improvements to sql_reduce script by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11701";>duckdb/duckdb#11701</a></li>
   <li>Properly avoid build-time dependency on Python by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11713";>duckdb/duckdb#11713</a></li>
   <li>Test dockerized compilation in Alpine:latest and Ubuntu:20.04 by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11708";>duckdb/duckdb#11708</a></li>
   <li>[COPY CSV] Enable TIMESTAMP_TZ formats by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11711";>duckdb/duckdb#11711</a></li>
   <li>Full conversion warnings / checks by <a 
href="https://github.com/hannes";><code>@​hannes</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11716";>duckdb/duckdb#11716</a></li>
   <li>[Safety] Add safety checks to <code>shared_ptr</code> access by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11696";>duckdb/duckdb#11696</a></li>
   <li>Remove bound_defaults from BoundCreateTableInfo by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11721";>duckdb/duckdb#11721</a></li>
   <li>Improve mkdir error reporting by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11723";>duckdb/duckdb#11723</a></li>
   <li>[Dev] Fix failing CI in Python SQLLogicTest Runner by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11724";>duckdb/duckdb#11724</a></li>
   <li>More docker tests, fix compilation up to C++23 standard by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11725";>duckdb/duckdb#11725</a></li>
   <li>Upload staging: from 'git describe --tags' to 'git log -1' by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11715";>duckdb/duckdb#11715</a></li>
   <li>Internal <a 
href="https://redirect.github.com/duckdb/duckdb/issues/1848";>#1848</a>: Window 
Progress by <a href="https://github.com/hawkfish";><code>@​hawkfish</code></a> 
in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11702";>duckdb/duckdb#11702</a></li>
   <li>Remove BoundConstraint from the TableCatalogEntry by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11735";>duckdb/duckdb#11735</a></li>
   <li>Implicit Cast for any Date/Timestamp by <a 
href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11733";>duckdb/duckdb#11733</a></li>
   <li>feat: rewrite which_secret() into a table function by <a 
href="https://github.com/stephaniewang526";><code>@​stephaniewang526</code></a> 
in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11726";>duckdb/duckdb#11726</a></li>
   <li>[Map] Rework <code>MAP</code> creation method behavior when input is 
NULL by <a href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11730";>duckdb/duckdb#11730</a></li>
   <li>[Dev] Always use <code>SQLStatement-&gt;Copy()</code> when 
ALTERNATIVE_VERIFY is defined by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11732";>duckdb/duckdb#11732</a></li>
   <li>Reconstruct Error Messages for Flush Cast by <a 
href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11736";>duckdb/duckdb#11736</a></li>
   <li>Getting Rid of Value.TryCast in the CSV Sniffer by <a 
href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11717";>duckdb/duckdb#11717</a></li>
   <li>Fix Join order optimizer so that plan generation is always via the most 
current entry in the DP table. by <a 
href="https://github.com/Tmonster";><code>@​Tmonster</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11719";>duckdb/duckdb#11719</a></li>
   <li>fix(py): support DuckDBPyType#children for array and enum by <a 
href="https://github.com/Mause";><code>@​Mause</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11754";>duckdb/duckdb#11754</a></li>
   <li>Consider not null values when doing export database by <a 
href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11679";>duckdb/duckdb#11679</a></li>
   <li>Add missing space in error message by <a 
href="https://github.com/szarnyasg";><code>@​szarnyasg</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11759";>duckdb/duckdb#11759</a></li>
   <li>Allow to build python packages without c++ sources by <a 
href="https://github.com/carlopi";><code>@​carlopi</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11758";>duckdb/duckdb#11758</a></li>
   <li>No Mark to Semi join conversion in statistics propagation by <a 
href="https://github.com/Tmonster";><code>@​Tmonster</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11596";>duckdb/duckdb#11596</a></li>
   <li>Hive partitioned write: lazy partitioning initialization by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11765";>duckdb/duckdb#11765</a></li>
   <li>Hive partitioning: avoid calling CreateDirectories for every flush, 
instead create the directory for a partition only when that partition is 
instantiated by <a 
href="https://github.com/Mytherin";><code>@​Mytherin</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11777";>duckdb/duckdb#11777</a></li>
   <li>[Parquet] Support reading the non-standard NULL ConvertedType by <a 
href="https://github.com/Tishj";><code>@​Tishj</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11774";>duckdb/duckdb#11774</a></li>
   <li>Only store CSV Errors if we are doing rejects table, otherwise just 
ignore it. by <a href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11763";>duckdb/duckdb#11763</a></li>
   <li>CI: Add job for 'expected behavior' label by <a 
href="https://github.com/szarnyasg";><code>@​szarnyasg</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11784";>duckdb/duckdb#11784</a></li>
   <li>Move recursive_query_csv.test to slow test by <a 
href="https://github.com/pdet";><code>@​pdet</code></a> in <a 
href="https://redirect.github.com/duckdb/duckdb/pull/11770";>duckdb/duckdb#11770</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/202ebd80f4cc49c78a3893dec2d7d19f9aad8436";><code>202ebd8</code></a>
 Merge pull request <a 
href="https://redirect.github.com/duckdb/duckdb/issues/12169";>#12169</a> from 
Tishj/python_disallow_cross_connection_replace...</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/f12d6d2dc90bc7316c4e0a040abfa7fa1dea2c6c";><code>f12d6d2</code></a>
 Merge pull request <a 
href="https://redirect.github.com/duckdb/duckdb/issues/12163";>#12163</a> from 
Tishj/relation_disable_view_from_materialized_...</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/04c93e3cfd9db780d763664e721450ed6f90bb97";><code>04c93e3</code></a>
 Merge remote-tracking branch 'upstream/main' into 
python_disallow_cross_conne...</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/e09a0440ee544e84af89cd92c10766cd0eb1dced";><code>e09a044</code></a>
 Merge pull request <a 
href="https://redirect.github.com/duckdb/duckdb/issues/12097";>#12097</a> from 
pdet/pandas_object_analyzer</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/cfdece72a5fa9d24288e6afe3a2b74be112c496e";><code>cfdece7</code></a>
 use TryGetContext instead</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/ad0612daa7d66d48230b427940293074010269a0";><code>ad0612d</code></a>
 disallow cross connection replacement scans, add test</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/c5ab63a79dd1281ee2327c262d0877302795721b";><code>c5ab63a</code></a>
 a VIEW created from a MaterializedRelation is not stable, because the 
QueryNo...</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/529759ae8e8feb6127e5fe12a8c02dc64c93abde";><code>529759a</code></a>
 Merge branch 'main' into install-extension-version-merged</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/8e757df15d1ad685afd0e05bb2e000741e0c2663";><code>8e757df</code></a>
 Merge pull request <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11914";>#11914</a> from 
cpcloud/run-pyodide-tests</li>
   <li><a 
href="https://github.com/duckdb/duckdb/commit/f84c289c304d1347674e416eb16371b2aa8d6641";><code>f84c289</code></a>
 Merge pull request <a 
href="https://redirect.github.com/duckdb/duckdb/issues/11493";>#11493</a> from 
Tishj/catalog_entry_retriever</li>
   <li>Additional commits viewable in <a 
href="https://github.com/duckdb/duckdb/compare/v0.10.2...v0.10.3";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=duckdb&package-manager=pip&previous-version=0.10.2&new-version=0.10.3)](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

Reply via email to