Skip to content

Bump mlua from 0.10.5 to 0.11.6 in /anf-rs#169

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/anf-rs/dev/mlua-0.11.6
Open

Bump mlua from 0.10.5 to 0.11.6 in /anf-rs#169
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/anf-rs/dev/mlua-0.11.6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 31, 2026

Copy link
Copy Markdown

Bumps mlua from 0.10.5 to 0.11.6.

Release notes

Sourced from mlua's releases.

v0.11.6

What's Changed

  • Lua 5.5 support under the new lua55 feature flag
  • Luau updated to 0.705+
  • Added AnyUserData::is_proxy
  • Added num_params, num_upvalues, is_vararg to FunctionInfo

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

Lua 5.5 notes

Lua 5.5 support external strings and mlua enable this optimisation for impl IntoLua for String/BString (owned versions to move Drop into Lua). Also the Lua::create_external_string function allow moving ownership to Lua for any Into<Vec<u8>> types.

v0.11.5

What's Changed

  • Luau updated to 0.701
  • Added Lua::set_memory_category and Lua::heap_dump functions to profile (Luau) memory
  • Added Lua::type_metatable helper to get metatable of a primitive type
  • Added Lua::traceback function to generate stack traces at different levels
  • Added add_method_once /add_async_method_once UserData methods (experimental)
  • Make AnyUserData::type_name public
  • impl IntoLuaMulti for &MultiValue

Full Changelog: mlua-rs/mlua@v0.11.4...v0.11.5

v0.11.4

What's Changed

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

Full Changelog: mlua-rs/mlua@v0.11.3...v0.11.4

v0.11.3

What's Changed

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

Full Changelog: mlua-rs/mlua@v0.11.2...v0.11.3

v0.11.2

What's Changed

... (truncated)

Changelog

Sourced from mlua's changelog.

v0.11.6 (Jan 27, 2026)

  • Added Lua 5.5 support (lua55 feature flag)
  • Luau updated to 0.705+
  • Added AnyUserData::is_proxy method to check if userdata is a proxy
  • Added num_params, num_upvalues, is_vararg to FunctionInfo

v0.11.5 (Nov 22, 2025)

  • Luau updated to 0.701
  • Added Lua::set_memory_category and Lua::heap_dump functions to profile (Luau) memory
  • Added Lua::type_metatable helper to get metatable of a primitive type
  • Added Lua::traceback function to generate stack traces at different levels
  • Added add_method_once /add_async_method_once UserData methods (experimental)
  • Make AnyUserData::type_name public
  • impl IntoLuaMulti for &MultiValue
  • Bugfixes and async perf improvements

v0.11.4 (Sep 29, 2025)

  • Make Value::to_serializable public
  • Add new serde option detect_mixed_tables (to encode mixed array+map tables)
  • Add ObjectLike::get_path helper (for tables and userdata)

v0.11.3 (Aug 30, 2025)

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

v0.11.2 (Aug 10, 2025)

  • Faster stack push for Variadic<T>
  • Fix handling Windows paths with drive letter in Luau require (#623)
  • Make Luau registered aliases ascii case-insensitive (#620)
  • Fix deserializing negative zeros -0.0 (#618)

v0.11.1 (Jul 15, 2025)

  • Fixed bug exhausting Lua auxiliary stack and leaving it without reserve (#615)
  • Lua::push_c_function now correctly handles OOM for Lua 5.1 and Luau

v0.11.0 (Jul 14, 2025)

Changes since v0.11.0-beta.3

  • Allow linking external Lua libraries in a build script (e.g. pluto) using external mlua-sys feature flag

... (truncated)

Commits

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.10.5 to 0.11.6.
- [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.10.5...v0.11.6)

---
updated-dependencies:
- dependency-name: mlua
  dependency-version: 0.11.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants