1
Fork 0
generated from lucas/rust-template

Update Rust crate mlua to v0.10.5 #9

Merged
lucas merged 1 commit from renovate/mlua-0.x-lockfile into master 2025-05-30 11:45:59 +02:00
Collaborator

This PR contains the following updates:

Package Type Update Change
mlua dependencies patch 0.10.0 -> 0.10.5

Release Notes

mlua-rs/mlua (mlua)

v0.10.5

Compare Source

What's Changed

  • mlua-sys is back to v0.6.x (Luau 0.663)
  • Reverted: Trigger abort when Luau userdata destructors are panic (requires new mlua-sys)
  • Reverted: Added large (52bit) integers support for Luau (breaking change)

Full Changelog: https://github.com/mlua-rs/mlua/compare/v0.10.4...v0.10.5

v0.10.4

Compare Source

  • Luau updated to 0.672
  • New serde option encode_empty_tables_as_array to serialize empty tables as arrays
  • Added WeakLua and Lua::weak() to create weak references to Lua state
  • Trigger abort when Luau userdata destructors are panic (Luau GC does not support it)
  • Added AnyUserData::type_id() method to get the type id of the userdata
  • Added Chunk::name(), Chunk::environment() and Chunk::mode() functions
  • Support borrowing underlying wrapped types for UserDataRef and UserDataRefMut (under userdata-wrappers feature)
  • Added large (52bit) integers support for Luau
  • Enable serde for bstr if serialize feature flag is enabled
  • Recursive warnings (Lua 5.4) are no longer allowed
  • Implemented IntoLua/FromLua for BorrowedString and BorrowedBytes
  • Implemented IntoLua/FromLua for char
  • Enable Thread::reset() for all Lua versions (limited support for 5.1-5.3)
  • Bugfixes and improvements

v0.10.3

Compare Source

  • Set Default for Value to be Nil
  • Allow exhaustive match on Value (#​502)
  • Add Table::set_safeenv method (Luau)

v0.10.2

Compare Source

  • Switch proc-macro-error to proc-macro-error2 (#​493)
  • Do not allow Lua to run GC finalizers on ref thread (#​491)
  • Fix chunks loading in Luau when memory limit is enforced (#​488)
  • Added String::wrap method to wrap arbitrary AsRef<[u8]> into impl IntoLua
  • Better FreeBSD/OpenBSD support (thanks to cos)
  • Delay "any" userdata metatable creation until first instance is created (#​482)
  • Reduce amount of generated code for UserData (less generics)

v0.10.1

Compare Source

  • Minimal Luau updated to 0.650
  • Added Luau native vector library support (this can change behavior if you use vector function!)
  • Added Lua String::display method
  • Improved pretty-printing for Lua tables (#​478)
  • Added Scope::create_any_userdata to create Lua objects from any non-'static Rust types
  • Added AnyUserData::destroy method
  • New userdata-wrappers feature to impl UserData for Rc<T>/Arc<T>/Rc<RefCell<T>>/Arc<Mutex<T>> (similar to v0.9)
  • UserDataRef in send mode now uses shared lock if T: Sync (and exclusive lock otherwise)
  • Added Scope::add_destructor to attach custom destructors
  • Added Lua::try_app_data_ref and Lua::try_app_data_mut methods
  • Added From<Vec> and Into<Vec> support to MultiValue and Variadic types
  • Bug fixes and improvements (#​477 #​479)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [mlua](https://github.com/mlua-rs/mlua) | dependencies | patch | `0.10.0` -> `0.10.5` | --- ### Release Notes <details> <summary>mlua-rs/mlua (mlua)</summary> ### [`v0.10.5`](https://github.com/mlua-rs/mlua/releases/tag/v0.10.5) [Compare Source](https://github.com/mlua-rs/mlua/compare/v0.10.4...v0.10.5) #### What's Changed - mlua-sys is back to v0.6.x (Luau 0.663) - Reverted: Trigger abort when Luau userdata destructors are panic (requires new mlua-sys) - Reverted: Added large (52bit) integers support for Luau (breaking change) **Full Changelog**: https://github.com/mlua-rs/mlua/compare/v0.10.4...v0.10.5 ### [`v0.10.4`](https://github.com/mlua-rs/mlua/blob/HEAD/CHANGELOG.md#v0104-May-5th-2025) [Compare Source](https://github.com/mlua-rs/mlua/compare/v0.10.3...v0.10.4) - Luau updated to 0.672 - New serde option `encode_empty_tables_as_array` to serialize empty tables as arrays - Added `WeakLua` and `Lua::weak()` to create weak references to Lua state - Trigger abort when Luau userdata destructors are panic (Luau GC does not support it) - Added `AnyUserData::type_id()` method to get the type id of the userdata - Added `Chunk::name()`, `Chunk::environment()` and `Chunk::mode()` functions - Support borrowing underlying wrapped types for `UserDataRef` and `UserDataRefMut` (under `userdata-wrappers` feature) - Added large (52bit) integers support for Luau - Enable `serde` for `bstr` if `serialize` feature flag is enabled - Recursive warnings (Lua 5.4) are no longer allowed - Implemented `IntoLua`/`FromLua` for `BorrowedString` and `BorrowedBytes` - Implemented `IntoLua`/`FromLua` for `char` - Enable `Thread::reset()` for all Lua versions (limited support for 5.1-5.3) - Bugfixes and improvements ### [`v0.10.3`](https://github.com/mlua-rs/mlua/blob/HEAD/CHANGELOG.md#v0103-Jan-27th-2025) [Compare Source](https://github.com/mlua-rs/mlua/compare/v0.10.2...v0.10.3) - Set `Default` for `Value` to be `Nil` - Allow exhaustive match on `Value` ([#&#8203;502](https://github.com/mlua-rs/mlua/issues/502)) - Add `Table::set_safeenv` method (Luau) ### [`v0.10.2`](https://github.com/mlua-rs/mlua/blob/HEAD/CHANGELOG.md#v0102-Dec-1st-2024) [Compare Source](https://github.com/mlua-rs/mlua/compare/v0.10.1...v0.10.2) - Switch proc-macro-error to proc-macro-error2 ([#&#8203;493](https://github.com/mlua-rs/mlua/issues/493)) - Do not allow Lua to run GC finalizers on ref thread ([#&#8203;491](https://github.com/mlua-rs/mlua/issues/491)) - Fix chunks loading in Luau when memory limit is enforced ([#&#8203;488](https://github.com/mlua-rs/mlua/issues/488)) - Added `String::wrap` method to wrap arbitrary `AsRef<[u8]>` into `impl IntoLua` - Better FreeBSD/OpenBSD support (thanks to cos) - Delay "any" userdata metatable creation until first instance is created ([#&#8203;482](https://github.com/mlua-rs/mlua/issues/482)) - Reduce amount of generated code for `UserData` (less generics) ### [`v0.10.1`](https://github.com/mlua-rs/mlua/blob/HEAD/CHANGELOG.md#v0101-Nov-9th-2024) [Compare Source](https://github.com/mlua-rs/mlua/compare/v0.10.0...v0.10.1) - Minimal Luau updated to 0.650 - Added Luau native vector library support (this can change behavior if you use `vector` function!) - Added Lua `String::display` method - Improved pretty-printing for Lua tables ([#&#8203;478](https://github.com/mlua-rs/mlua/issues/478)) - Added `Scope::create_any_userdata` to create Lua objects from any non-`'static` Rust types - Added `AnyUserData::destroy` method - New `userdata-wrappers` feature to `impl UserData` for `Rc<T>`/`Arc<T>`/`Rc<RefCell<T>>`/`Arc<Mutex<T>>` (similar to v0.9) - `UserDataRef` in `send` mode now uses shared lock if `T: Sync` (and exclusive lock otherwise) - Added `Scope::add_destructor` to attach custom destructors - Added `Lua::try_app_data_ref` and `Lua::try_app_data_mut` methods - Added `From<Vec>` and `Into<Vec>` support to `MultiValue` and `Variadic` types - Bug fixes and improvements ([#&#8203;477](https://github.com/mlua-rs/mlua/issues/477) [#&#8203;479](https://github.com/mlua-rs/mlua/issues/479)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMiIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-botbot force-pushed renovate/mlua-0.x-lockfile from 9df70aa494 to b0c88e1460 2025-04-22 15:16:33 +02:00 Compare
renovate-botbot force-pushed renovate/mlua-0.x-lockfile from b0c88e1460 to a2eabcb9de 2025-05-04 15:01:34 +02:00 Compare
renovate-botbot force-pushed renovate/mlua-0.x-lockfile from a2eabcb9de to e3d80cc5fd 2025-05-05 17:16:32 +02:00 Compare
renovate-botbot changed title from Update Rust crate mlua to v0.10.3 to Update Rust crate mlua to v0.10.4 2025-05-05 17:16:33 +02:00
renovate-botbot changed title from Update Rust crate mlua to v0.10.4 to Update Rust crate mlua to v0.10.3 2025-05-06 23:16:23 +02:00
renovate-botbot force-pushed renovate/mlua-0.x-lockfile from e3d80cc5fd to eec2fd1c47 2025-05-06 23:16:25 +02:00 Compare
renovate-botbot force-pushed renovate/mlua-0.x-lockfile from eec2fd1c47 to 24f17d0b06 2025-05-24 15:16:33 +02:00 Compare
renovate-botbot changed title from Update Rust crate mlua to v0.10.3 to Update Rust crate mlua to v0.10.5 2025-05-24 15:16:33 +02:00
lucas merged commit d7e4584812 into master 2025-05-30 11:45:59 +02:00
lucas deleted branch renovate/mlua-0.x-lockfile 2025-05-30 11:45:59 +02:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: lucas/ntfy-collector#9
No description provided.