[PR #1137] [MERGED] build(deps): bump mlua from 0.11.2 to 0.11.3 #5394

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

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/1137
Author: @dependabot[bot]
Created: 9/2/2025
Status: Merged
Merged: 9/2/2025
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/mlua-0.11.3


📝 Commits (1)

  • c1a796f build(deps): bump mlua from 0.11.2 to 0.11.3

📊 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.2 to 0.11.3.

Release notes

Sourced from mlua's releases.

v0.11.3

What's Changed

  • Added Lua::yield_with to use as coroutine.yield functional replacement in async functions for any Lua (see doc examples)
  • Do not try to yield at non-yielable points in Luau interrupt (#632)
  • Added Buffer::cursor method (Luau)
  • Added Lua::create_buffer_with_capacity method (Luau)
  • Make Lua reference values cheap to clone in Rust (only increments ref count)
  • Fix panic on large (>67M entries) table creation

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

Changelog

Sourced from mlua's changelog.

v0.11.3 (Aug 30, 2025)

  • Add Lua::yield_with to use as coroutine.yield functional replacement in async functions for any Lua
  • Do not try to yield at non-yielable points in Luau interrupt (#632)
  • Add Buffer::cursor method (Luau)
  • Add Lua::create_buffer_with_capacity method (Luau)
  • Make Lua reference values cheap to clone (only increments ref count)
  • Fix panic on large (>67M entries) table creation
Commits
  • 13ff0ca v0.11.3
  • 44f49e3 Update CHANGELOG
  • e1ee405 Add new benchmark to measure complex userdata method calls
  • f06d002 Add test to emulate method through field
  • d399559 Add Lua::yield_with to allow yielding Rust async functions and exchange val...
  • 30735d5 Fix thread recovery when pushing a bad arg
  • 75c23e5 Add lua_cpcall to Luau ffi (0.688+)
  • 347856b Do not try to yield at non-yielable points in Luau interrupt
  • 774a63b Add Buffer::cursor() method
  • c481c87 Add Lua::create_buffer_with_capacity method
  • 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/1137 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/2/2025 **Status:** ✅ Merged **Merged:** 9/2/2025 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/mlua-0.11.3` --- ### 📝 Commits (1) - [`c1a796f`](https://github.com/JakeStanger/ironbar/commit/c1a796fa588ab2dea607074ed7f7e520b887cc4b) build(deps): bump mlua from 0.11.2 to 0.11.3 ### 📊 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.2 to 0.11.3. <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.3</h2> <h2>What's Changed</h2> <ul> <li>Added <code>Lua::yield_with</code> to use as <code>coroutine.yield</code> functional replacement in async functions for any Lua (see doc examples)</li> <li>Do not try to yield at non-yielable points in Luau interrupt (<a href="https://redirect.github.com/mlua-rs/mlua/issues/632">#632</a>)</li> <li>Added <code>Buffer::cursor</code> method (Luau)</li> <li>Added <code>Lua::create_buffer_with_capacity</code> method (Luau)</li> <li>Make Lua reference values cheap to clone in Rust (only increments ref count)</li> <li>Fix panic on large (&gt;67M entries) table creation</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mlua-rs/mlua/compare/v0.11.2...v0.11.3">https://github.com/mlua-rs/mlua/compare/v0.11.2...v0.11.3</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.3 (Aug 30, 2025)</h2> <ul> <li>Add <code>Lua::yield_with</code> to use as <code>coroutine.yield</code> functional replacement in async functions for any Lua</li> <li>Do not try to yield at non-yielable points in Luau interrupt (<a href="https://redirect.github.com/mlua-rs/mlua/issues/632">#632</a>)</li> <li>Add <code>Buffer::cursor</code> method (Luau)</li> <li>Add <code>Lua::create_buffer_with_capacity</code> method (Luau)</li> <li>Make Lua reference values cheap to clone (only increments ref count)</li> <li>Fix panic on large (&gt;67M entries) table creation</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mlua-rs/mlua/commit/13ff0ca798b116d436e1a79f5eff4b008c97fced"><code>13ff0ca</code></a> v0.11.3</li> <li><a href="https://github.com/mlua-rs/mlua/commit/44f49e35d69a4e606e00ab9a3453495506053f56"><code>44f49e3</code></a> Update CHANGELOG</li> <li><a href="https://github.com/mlua-rs/mlua/commit/e1ee4058a6d8977b4f8de51a491ca8d407cc93af"><code>e1ee405</code></a> Add new benchmark to measure complex userdata method calls</li> <li><a href="https://github.com/mlua-rs/mlua/commit/f06d0020ea58459c7c5d287e31611f69e0d9197f"><code>f06d002</code></a> Add test to emulate method through field</li> <li><a href="https://github.com/mlua-rs/mlua/commit/d399559d30ad3c20293b3c6a0aea24c776974b5c"><code>d399559</code></a> Add <code>Lua::yield_with</code> to allow yielding Rust async functions and exchange val...</li> <li><a href="https://github.com/mlua-rs/mlua/commit/30735d5ff1f6e31287f8d7626c1b465656cd1775"><code>30735d5</code></a> Fix thread recovery when pushing a bad arg</li> <li><a href="https://github.com/mlua-rs/mlua/commit/75c23e5853c4dac90346a51eab9c32c158d98a07"><code>75c23e5</code></a> Add <code>lua_cpcall</code> to Luau ffi (0.688+)</li> <li><a href="https://github.com/mlua-rs/mlua/commit/347856b806bc6f8783f277e8e0ae339e414feed7"><code>347856b</code></a> Do not try to yield at non-yielable points in Luau interrupt</li> <li><a href="https://github.com/mlua-rs/mlua/commit/774a63beceaca8031408ee1468429e5131f2c93d"><code>774a63b</code></a> Add <code>Buffer::cursor()</code> method</li> <li><a href="https://github.com/mlua-rs/mlua/commit/c481c87eac9cb73694b7ad02da76859a02f728c7"><code>c481c87</code></a> Add <code>Lua::create_buffer_with_capacity</code> method</li> <li>Additional commits viewable in <a href="https://github.com/mlua-rs/mlua/compare/v0.11.2...v0.11.3">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.2&new-version=0.11.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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-23 00:57:06 +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#5394
No description provided.