[PR #1188] [MERGED] build(deps): bump mlua from 0.11.3 to 0.11.4 #6834

Closed
opened 2026-05-23 01:57:14 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/1188
Author: @dependabot[bot]
Created: 10/6/2025
Status: Merged
Merged: 10/6/2025
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/mlua-0.11.4


📝 Commits (1)

  • f475ba3 build(deps): bump mlua from 0.11.3 to 0.11.4

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps mlua from 0.11.3 to 0.11.4.

Release notes

Sourced from mlua's releases.

v0.11.4

What's Changed

  • Make Value::to_serializable public
  • Added new serde option detect_mixed_tables (to encode mixed array+map tables)
  • Added ObjectLike::get_path helper (for tables and userdata) for easy access of nested data
  • Added (experimental) __namecall optimization for Luau

Full Changelog: https://github.com/mlua-rs/mlua/compare/v0.11.3...v0.11.4

Changelog

Sourced from mlua's changelog.

v0.11.4 (Sep 29, 2025)

  • Make Value::to_serializable public
  • Add new serde option detect_mixed_tables (to encode mixed array+map tables)
  • Add ObjectLike::get_path helper (for tables and userdata)
Commits
  • 247208e v0.11.4
  • e08768c Derive Default for Value (clippy)
  • 5b38af9 AsyncCallFuture is Unpin
  • 54907f8 Add SerializableValue to lib and prelude exports
  • ae512f2 Remove const from SerializableValue (it's not really useful)
  • 53c159b Unhide Value::to_serializable
  • 2beca6e Add test for Table::for_each_value
  • 09da7a4 Add new serde option "detect_mixed_tables"
  • bad2037 Simplify Table::clear method
  • 40b507c Add ObjectLike::get_path helper
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/JakeStanger/ironbar/pull/1188 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/6/2025 **Status:** ✅ Merged **Merged:** 10/6/2025 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/mlua-0.11.4` --- ### 📝 Commits (1) - [`f475ba3`](https://github.com/JakeStanger/ironbar/commit/f475ba3e609fbd88fdacd5b40a729f01f842c573) build(deps): bump mlua from 0.11.3 to 0.11.4 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.3 to 0.11.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mlua-rs/mlua/releases">mlua's releases</a>.</em></p> <blockquote> <h2>v0.11.4</h2> <h2>What's Changed</h2> <ul> <li>Make <code>Value::to_serializable</code> public</li> <li>Added new <code>serde</code> option <code>detect_mixed_tables</code> (to encode mixed array+map tables)</li> <li>Added <code>ObjectLike::get_path</code> helper (for tables and userdata) for easy access of nested data</li> <li>Added (experimental) <code>__namecall</code> optimization for Luau</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mlua-rs/mlua/compare/v0.11.3...v0.11.4">https://github.com/mlua-rs/mlua/compare/v0.11.3...v0.11.4</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md">mlua's changelog</a>.</em></p> <blockquote> <h2>v0.11.4 (Sep 29, 2025)</h2> <ul> <li>Make <code>Value::to_serializable</code> public</li> <li>Add new serde option <code>detect_mixed_tables</code> (to encode mixed array+map tables)</li> <li>Add <code>ObjectLike::get_path</code> helper (for tables and userdata)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mlua-rs/mlua/commit/247208edb1f5d76d9694646a45a44f8e7053b1dd"><code>247208e</code></a> v0.11.4</li> <li><a href="https://github.com/mlua-rs/mlua/commit/e08768cc5e2154245fa16a3ae31431ee4dc0981e"><code>e08768c</code></a> Derive <code>Default</code> for <code>Value</code> (clippy)</li> <li><a href="https://github.com/mlua-rs/mlua/commit/5b38af9746885af710675325ee4dd83bd89f633e"><code>5b38af9</code></a> <code>AsyncCallFuture</code> is Unpin</li> <li><a href="https://github.com/mlua-rs/mlua/commit/54907f80c5cac3d37d765abe5d4deb3661b3fec2"><code>54907f8</code></a> Add <code>SerializableValue</code> to lib and prelude exports</li> <li><a href="https://github.com/mlua-rs/mlua/commit/ae512f2b496c03eb33e2eda72b4956dd2fe29b5e"><code>ae512f2</code></a> Remove const from SerializableValue (it's not really useful)</li> <li><a href="https://github.com/mlua-rs/mlua/commit/53c159b6cbd1299a360fa6dd99667e41b97a7be9"><code>53c159b</code></a> Unhide <code>Value::to_serializable</code></li> <li><a href="https://github.com/mlua-rs/mlua/commit/2beca6ebe19602a545f24e2d35dc0e426495aa39"><code>2beca6e</code></a> Add test for <code>Table::for_each_value</code></li> <li><a href="https://github.com/mlua-rs/mlua/commit/09da7a41e5310593537c89b4d181a8666514f28b"><code>09da7a4</code></a> Add new serde option &quot;detect_mixed_tables&quot;</li> <li><a href="https://github.com/mlua-rs/mlua/commit/bad20374ad95b43270d2fa4f8ea0e8ddee7ba1d7"><code>bad2037</code></a> Simplify <code>Table::clear</code> method</li> <li><a href="https://github.com/mlua-rs/mlua/commit/40b507c3ecd3f067c77b463aaf846c7a050db4f4"><code>40b507c</code></a> Add <code>ObjectLike::get_path</code> helper</li> <li>Additional commits viewable in <a href="https://github.com/mlua-rs/mlua/compare/v0.11.3...v0.11.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mlua&package-manager=cargo&previous-version=0.11.3&new-version=0.11.4)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-23 01:57:14 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#6834
No description provided.