ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

ci(rust): bump mlua from 0.11.6 to 0.12.1 - #99

Merged
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1
Sep 2, 2026
Merged

ci(rust): bump mlua from 0.11.6 to 0.12.1#99
opieter-aws merged 1 commit into
mainfrom
dependabot/cargo/mlua-0.12.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps mlua from 0.11.6 to 0.12.1.

Release notes

Sourced from mlua's releases.

v0.12.1

What's Changed

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

Full Changelog: mlua-rs/mlua@v0.12.0...v0.12.1

v0.12.0

Highlights

More ergonomic UserData building blocks

  • Declaratively implement UserData with #[derive(UserData)] and register methods/fields with the new #[mlua::userdata_impl] attribute macro.
  • UserDataOwned<T> wrapper takes ownership of userdata and implements FromLua
  • UserDataMethods::add_method_once/add_async_method_once
  • __todebugstring metamethod for pretty-printing userdata when debugging
  • MaybeSync trait for userdata under the send feature

Reorganized public API

Types are now grouped into focused modules: chunk, debug, error, function, table, string, state, thread, userdata and luau.

Thread lifecycle callbacks

Hook into coroutine create/resume/yield events across all Lua versions (when using mlua API).

Luau improvements

Latest Luau with extended require-by-string support and JIT options.

Garbage-collector interface refactor

Lua::gc_inc / Lua::gc_gen are replaced by a Lua::gc_set_mode, with GcIncParams/GcGenParams for fine-grained tuning.

What's Changed (since v0.12.0-rc.2)

  • Crate root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

Full Changelog: mlua-rs/mlua@v0.11.6...v0.12.0

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.12.1 (Aug 29, 2026)

  • Lua 5.5 updated to 5.5.1
  • Luau updated to 0.736
  • Allow #[mlua::userdata_impl] to be used in a different module from #[derive(UserData)] (#726)
  • Fix coroutine stack handling after yielding from hooks (#723)

v0.12.0 (Jul 05, 2026)

Changes since v0.12.0-rc.2

  • Create root re-exports are refactored (only essentials are re-exported, the rest is in the new submodules)
  • Added ThreadStatus::Normal and Thread::is_normal (mimic coroutine.status)
  • Added Lua::set_jit_options with support of Luau JIT inliner (Luau)
  • Added Value::as_vector/Value::is_vector (Luau)
  • Added Table::remove
  • serde: tables with the array metatable are always encoded as arrays (incl. detect_mixed_tables option)
  • impl Hash for BorrowedStr/BorrowedBytes
  • Lua::current_thread resolves implicit async threads to their root owner (#706)
  • Bugfixes and improvements

v0.12.0-rc.2 (Jun 06, 2026)

  • Add #[derive(UserData)] and #[mlua::userdata_impl] macros
  • Support thread create/resume/yield callbacks for all Lua versions (including Luau)
  • Support to_alias_override/to_alias_fallback in Require trait (Luau)
  • Prevent XRc overflow when dropping RawLua with foreign Lua state
  • implement Not for StdLib (#699)
  • Fix String::to_pointer return NULL in Lua <5.4

v0.12.0-rc.1 (Apr 21, 2026)

  • Rust 2024 edition
  • Removed Error::ToLuaConversionError variant as it was unused (and not practically useful)
  • New modules to group data types: chunk, debug, error, function, table, string, state, thread, userdata, luau
  • Support __todebugstring metamethod for pretty formatting userdata value (for debugging)
  • New MaybeSync trait that is required for userdata types
  • Removed lifetime from BorrowedStr and BorrowedBytes
  • New Thread methods: is_resumable, is_running, is_finished, is_error
  • Added Thread::state to get raw Lua state pointer
  • Luau TextRequirer is renamed to FsRequirer
  • GC interface refactor: Lua::gc_inc/Lua::gc_gen is replaced with gc_set_mode
  • Added GcIncParams and GcGenParams for GC tuning
  • New UserDataMethods::add_method_once and UserDataMethods::add_async_method_once
  • Initial Luau integer64 type support
  • Changed interface of Function::wrap/wrap_mut/wrap_async to support any Error type
  • Changed AnyUserData::type_name to return LuaString instead
  • Added UserDataOwned<T> wrapper to take ownership of userdata T and implements FromLua
Commits
  • 4fd87af v0.12.1
  • 983c384 mlua-sys: v0.12.0
  • 0224864 mlua_derive: v0.12.1
  • aca3bb3 Update CHANGELOG
  • 8ceeceb Create C closures under lua_cpcall so an allocation failure doesn't escape ...
  • 4bca98f clippy
  • 87dc0c1 mlua_derive: Make userdata_impl independent from module where UserData is d...
  • 7539003 mlua-sys: Bump luau-src to v0.21 (Luau 0.736)
  • e9b9844 mlua-sys: bump luau-src to 551+
  • 66b9f08 Fix coroutine stack handling after hook yields
  • 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 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)

Bumps [mlua](https://github.com/mlua-rs/mlua) from 0.11.6 to 0.12.1.
- [Release notes](https://github.com/mlua-rs/mlua/releases)
- [Changelog](https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md)
- [Commits](mlua-rs/mlua@v0.11.6...v0.12.1)
---
updated-dependencies:
- dependency-name: mlua
dependency-version: 0.12.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 2, 2026
@dependabot
dependabotBot requested a review from a team as a code ownerSeptember 2, 2026 12:54
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabotdependabotBot added the rust Pull requests that update rust code label Sep 2, 2026
@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent Does this version bump break anything or is it good to merge?

@strandly-the-agentstrandly-the-agent left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TL;DR: good to merge. mlua 0.11→0.12 is a breaking release, but none of its breaking changes touch what this repo uses — confirmed both by a usage audit and by a 42-probe differential run of the lua builtin against 0.11.6 vs 0.12.1 (identical behavior; only tostring pointer addresses differ).

All mlua usage lives in src/builtins/lua.rs, and its whole surface — mlua::prelude::*, Lua::new_with, set_memory_limit, set_global_hook with HookTriggers::new().every_nth_instruction(4096) / VmState::Continue, raw_set, create_async_function, eval_async — is unchanged in 0.12. The removed/refactored APIs (gc_inc/gc_gen, Function::wrap* signatures, AnyUserData::type_name, Error::ToLuaConversionError, the serde behavior change — serde feature isn't enabled here) appear nowhere in the tree, and no mlua types leak into this crate's public API. CI is green on the exact head (d413f5b) across all three OSes.

One non-blocking heads-up: this bump raises the effective MSRV from 1.85 to 1.88 — mlua 0.12.1 declares rust-version = "1.88", while CONTRIBUTING.md:65 still says "Rust 1.85+". CI (dtolnay/rust-toolchain@stable) won't catch it; contributors on 1.85–1.87 will hit a clear cargo error. Worth a one-line CONTRIBUTING update in a follow-up rather than editing this Dependabot branch.

Verification ledger & analysis

Verified

  • ✅ Head reviewed: d413f5b, based on current main tip (6fecd79), GitHub reports MERGEABLE
  • ✅ Diff is manifest + lockfile only: mlua 0.11.6→0.12.1, mlua-sys 0.10.0→0.12.0, lua-src 550.0.0→551.0.1, luajit-src 210.6.6→210.7.3; features unchanged (["lua54", "async", "vendored"])
  • ✅ crates.io: all four lockfile checksums independently match the registry; none of the versions are yanked
  • ✅ CI on the exact head: Rust (ubuntu/macos/windows) ✅, Python (3.10–3.14 × 3 OSes) ✅, Node (20/22/24 × 3 OSes) ✅, Security audit ✅, CI Gate ✅, CodeQL neutral
  • ✅ Local differential probe run (independent reviewer pass): 42 probes of the lua builtin executed against both mlua 0.11.6 and 0.12.1, same release profile — every status, stdout, stderr and latency bucket identical; only diffs are pointer addresses in tostring(userdata/table/thread) output (3 hunks)

Behavioral-risk spot-checks (0.11→0.12 changes vs. this code, probe-confirmed)

  • Timeout hook × coroutines (src/builtins/lua.rs:165-186): the hook still fires inside Lua-created threads — while true do end in coroutine.create returns execution timeout exceeded, async-then-loop still trips it. The hook only returns VmState::Continue and never yields, so 0.12.1's hook-yield stack fix is inert here
  • Async functions × coroutines (create_async_function): io.open/os.execute/require/dofile inside coroutine.create/wrap, nested coroutines, and coroutine.status after an async yield all behave identically to 0.11.6; Lua::current_thread isn't used, so 0.12's async-thread-resolution change can't reach the yield_now workaround (src/builtins/lua.rs:954)
  • set_memory_limit (src/builtins/lua.rs:161): still enforced — string.rep("A", 200MB) yields not enough memory on 0.12.1
  • Error text surfaced to users: the os.exit sentinel and timeout message are preserved verbatim by 0.12's error Display chain, traceback shape unchanged
  • serde array-encoding change: mlua's serde feature isn't enabled, so not applicable
  • Vendored interpreter sources update via lua-src/luajit-src; repo pins lua54; luajit-src appears in the lockfile but isn't compiled

Reading order: Cargo.toml (the one-line version bump), then Cargo.lock (the four resolved records). src/builtins/lua.rs is unchanged — read it only if you want to see the usage surface this verdict is based on.

Appendix — non-blocking (2)

  • ⚪ MSRV drift (detailed above): CONTRIBUTING.md:65 says Rust 1.85+, effective MSRV is now 1.88. Suggest a follow-up one-liner; happy to open it if useful.
  • ⚪ Pre-existing (not this PR): the shell matches mlua error text by substring — the os.exit sentinel at src/builtins/lua.rs:121/:317 and contains("timeout") in tests/lua_integration.rs:970 — while no test asserts the exact strings. A future mlua Display change would silently degrade exit-code plumbing to a generic exit 1. Fine today (0.12 preserves both verbatim), but worth hardening eventually.

Evidence uploaded to the artifacts bucket: mlua-usage-audit.txt, checksum-verification.txt, probe-mlua-0.11.6.log, probe-mlua-0.12.1.log, probe-diff.txt, zz_probe.rs (probe source — untracked scratch, not part of the PR).

@opieter-aws

Copy link
Copy Markdown

@strandly-the-agent make a PR with edit to CONTRIBUTING.md

@opieter-aws
opieter-aws merged commit 7b0e596 into mainSep 2, 2026
31 checks passed
@opieter-aws
opieter-aws deleted the dependabot/cargo/mlua-0.12.1 branch September 2, 2026 15:52
@strandly-the-agent

Copy link
Copy Markdown

I prepared the commit but can't open the PR: strandly-the-agent has no push access to this repo (403 on push, 404 on branch creation via the API), and repo forking is blocked by my guardrails. The change is one line:

-- **Rust** 1.85+ (stable; required by Rust edition 2024). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).+- **Rust** 1.88+ (stable; required by `mlua` 0.12). Install via [rustup](https://rustup.rs/). `cargo fmt` and `cargo clippy` require the `rustfmt` and `clippy` components (included with the default profile).

A git am-ready patch (commit message included) is in the artifacts bucket as contributing-msrv-1.88.patch. If you give strandly-the-agent write access (or an existing fork), say the word and I'll open the PR myself.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@opieter-aws@strandly-the-agent