This is an automated email from the ASF dual-hosted git repository.

kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 9e9a2b131 chore(deps): Bump time from 0.3.44 to 0.3.47 in 
/bindings/python (#2282)
9e9a2b131 is described below

commit 9e9a2b1312f4f7f3d071464c08e0606a61ff512e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Mar 24 09:22:59 2026 -0700

    chore(deps): Bump time from 0.3.44 to 0.3.47 in /bindings/python (#2282)
    
    Bumps [time](https://github.com/time-rs/time) from 0.3.44 to 0.3.47.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/time-rs/time/releases";>time's
    releases</a>.</em></p>
    <blockquote>
    <h2>v0.3.47</h2>
    <p>See the <a
    href="https://github.com/time-rs/time/blob/main/CHANGELOG.md";>changelog</a>
    for details.</p>
    <h2>v0.3.46</h2>
    <p>See the <a
    href="https://github.com/time-rs/time/blob/main/CHANGELOG.md";>changelog</a>
    for details.</p>
    <h2>v0.3.45</h2>
    <p>See the <a
    href="https://github.com/time-rs/time/blob/main/CHANGELOG.md";>changelog</a>
    for details.</p>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/time-rs/time/blob/main/CHANGELOG.md";>time's
    changelog</a>.</em></p>
    <blockquote>
    <h2>0.3.47 [2026-02-05]</h2>
    <h3>Security</h3>
    <ul>
    <li>
    <p>The possibility of a stack exhaustion denial of service attack when
    parsing RFC 2822 has been
    eliminated. Previously, it was possible to craft input that would cause
    unbounded recursion. Now,
    the depth of the recursion is tracked, causing an error to be returned
    if it exceeds a reasonable
    limit.</p>
    <p>This attack vector requires parsing user-provided input, with any
    type, using the RFC 2822 format.</p>
    </li>
    </ul>
    <h3>Compatibility</h3>
    <ul>
    <li>Attempting to format a value with a well-known format (i.e. RFC
    3339, RFC 2822, or ISO 8601) will
    error at compile time if the type being formatted does not provide
    sufficient information. This
    would previously fail at runtime. Similarly, attempting to format a
    value with ISO 8601 that is
    only configured for parsing (i.e. <code>Iso8601::PARSING</code>) will
    error at compile time.</li>
    </ul>
    <h3>Added</h3>
    <ul>
    <li>Builder methods for format description modifiers, eliminating the
    need for verbose initialization
    when done manually.</li>
    <li><code>date!(2026-W01-2)</code> is now supported. Previously, a space
    was required between <code>W</code> and <code>01</code>.</li>
    <li><code>[end]</code> now has a <code>trailing_input</code> modifier
    which can either be <code>prohibit</code> (the default) or
    <code>discard</code>. When it is <code>discard</code>, all remaining
    input is ignored. Note that if there are components
    after <code>[end]</code>, they will still attempt to be parsed, likely
    resulting in an error.</li>
    </ul>
    <h3>Changed</h3>
    <ul>
    <li>More performance gains when parsing.</li>
    </ul>
    <h3>Fixed</h3>
    <ul>
    <li>If manually formatting a value, the number of bytes written was one
    short for some components.
    This has been fixed such that the number of bytes written is always
    correct.</li>
    <li>The possibility of integer overflow when parsing an owned format
    description has been effectively
    eliminated. This would previously wrap when overflow checks were
    disabled. Instead of storing the
    depth as <code>u8</code>, it is stored as <code>u32</code>. This would
    require multiple gigabytes of nested input to
    overflow, at which point we've got other problems and trivial
    mitigations are available by
    downstream users.</li>
    </ul>
    <h2>0.3.46 [2026-01-23]</h2>
    <h3>Added</h3>
    <ul>
    <li>All possible panics are now documented for the relevant
    methods.</li>
    <li>The need to use <code>#[serde(default)]</code> when using custom
    <code>serde</code> formats is documented. This applies
    only when deserializing an <code>Option&lt;T&gt;</code>.</li>
    <li><code>Duration::nanoseconds_i128</code> has been made public,
    mirroring
    <code>std::time::Duration::from_nanos_u128</code>.</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    
href="https://github.com/time-rs/time/commit/d5144cd2874862d46466c900910cd8577d066019";><code>d5144cd</code></a>
    v0.3.47 release</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/f6206b050fd54817d8872834b4d61f605570e89b";><code>f6206b0</code></a>
    Guard against integer overflow in release mode</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/1c63dc7985b8fa26bd8c689423cc56b7a03841ee";><code>1c63dc7</code></a>
    Avoid denial of service when parsing Rfc2822</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/5940df6e72efb63d246ca1ca59a0f836ad32ad8a";><code>5940df6</code></a>
    Add builder methods to avoid verbose construction</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/00881a4da1bc5a6cb6313052e5017dbd7daa40f0";><code>00881a4</code></a>
    Manually format macros everywhere</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/bb723b6d826e46c174d75cd08987061984b0ceb7";><code>bb723b6</code></a>
    Add <code>trailing_input</code> modifier to <code>end</code></li>
    <li><a
    
href="https://github.com/time-rs/time/commit/31c4f8e0b56e6ae24fe0d6ef0e492b6741dda783";><code>31c4f8e</code></a>
    Permit <code>W12</code> in <code>date!</code> macro</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/490a17bf306576850f33a86d3ca95d96db7b1dcd";><code>490a17b</code></a>
    Mark error paths in well-known formats as cold</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/6cb1896a600be1538ecfab8f233fe9cfe9fa8951";><code>6cb1896</code></a>
    Optimize <code>Rfc2822</code> parsing</li>
    <li><a
    
href="https://github.com/time-rs/time/commit/6d264d59c25e3da0453c3defebf4640b0086a006";><code>6d264d5</code></a>
    Remove erroneous <code>#[inline(never)]</code> attributes</li>
    <li>Additional commits viewable in <a
    href="https://github.com/time-rs/time/compare/v0.3.44...v0.3.47";>compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=time&package-manager=cargo&previous-version=0.3.44&new-version=0.3.47)](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)
    You can disable automated security fix PRs for this repo from the
    [Security Alerts
    page](https://github.com/apache/iceberg-rust/network/alerts).
    
    </details>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 bindings/python/Cargo.lock | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/bindings/python/Cargo.lock b/bindings/python/Cargo.lock
index 842a9260b..3ce0df6e4 100644
--- a/bindings/python/Cargo.lock
+++ b/bindings/python/Cargo.lock
@@ -2978,9 +2978,9 @@ dependencies = [
 
 [[package]]
 name = "num-conv"
-version = "0.1.0"
+version = "0.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
 
 [[package]]
 name = "num-integer"
@@ -4409,30 +4409,30 @@ dependencies = [
 
 [[package]]
 name = "time"
-version = "0.3.44"
+version = "0.3.47"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
+checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
 dependencies = [
  "deranged",
  "itoa",
  "num-conv",
  "powerfmt",
- "serde",
+ "serde_core",
  "time-core",
  "time-macros",
 ]
 
 [[package]]
 name = "time-core"
-version = "0.1.6"
+version = "0.1.8"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
+checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
 
 [[package]]
 name = "time-macros"
-version = "0.2.24"
+version = "0.2.27"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
+checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
 dependencies = [
  "num-conv",
  "time-core",

Reply via email to