Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: makspll/bevy_mod_scripting
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.0
Choose a base ref
Loading
...
head repository: makspll/bevy_mod_scripting
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.1
Choose a head ref
Loading
  • 6 commits
  • 17 files changed
  • 2 contributors

Commits on Mar 29, 2025

  1. Configuration menu
    Copy the full SHA
    c4b94f5 View commit details
    Browse the repository at this point in the history
  2. chore: fix failing text

    makspll committed Mar 29, 2025
    Configuration menu
    Copy the full SHA
    29e92e2 View commit details
    Browse the repository at this point in the history
  3. chore(mdbook_lad_preprocessor): release v0.1.6 (#400)

    ## 🤖 New release
    
    * `mdbook_lad_preprocessor`: 0.1.5 -> 0.1.6 (✓ API compatible changes)
    
    <details><summary><i><b>Changelog</b></i></summary><p>
    
    <blockquote>
    
    ##
    [0.1.6](v0.1.5-mdbook_lad_preprocessor...v0.1.6-mdbook_lad_preprocessor)
    - 2025-03-29
    
    ### Fixed
    
    - types links being broken again
    </blockquote>
    
    
    </p></details>
    
    ---
    This PR was generated with
    [release-plz](https://github.com/release-plz/release-plz/).
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Mar 29, 2025
    Configuration menu
    Copy the full SHA
    378ea84 View commit details
    Browse the repository at this point in the history
  4. feat: bump bevy to 0.15.3 (#401)

    # Summary
    Long overdue, bumps bevy to 0.15.3 before 0.16 comes out
    makspll authored Mar 29, 2025
    Configuration menu
    Copy the full SHA
    78a4ab7 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2025

  1. chore: release (#402)

    ## 🤖 New release
    
    * `bevy_mod_scripting_derive`: 0.11.0 -> 0.11.1
    * `bevy_system_reflection`: 0.1.0 -> 0.1.1 (✓ API compatible changes)
    * `bevy_mod_scripting_core`: 0.11.0 -> 0.11.1 (✓ API compatible changes)
    * `bevy_mod_scripting_lua`: 0.11.0 -> 0.11.1 (✓ API compatible changes)
    * `bevy_mod_scripting_rhai`: 0.11.0 -> 0.11.1 (✓ API compatible changes)
    * `bevy_mod_scripting_functions`: 0.11.0 -> 0.11.1 (✓ API compatible
    changes)
    * `ladfile_builder`: 0.3.0 -> 0.3.1 (✓ API compatible changes)
    * `bevy_mod_scripting`: 0.11.0 -> 0.11.1 (✓ API compatible changes)
    
    <details><summary><i><b>Changelog</b></i></summary><p>
    
    ## `bevy_mod_scripting_derive`
    
    <blockquote>
    
    ##
    [0.11.0](bevy_mod_scripting_derive-v0.10.0...bevy_mod_scripting_derive-v0.11.0)
    - 2025-03-29
    
    ### Added
    
    - overhaul mdbook preprocessor, prettify generated docs, support dummy
    globals ([#377](#377))
    </blockquote>
    
    
    ## `bevy_mod_scripting_core`
    
    <blockquote>
    
    ##
    [0.11.0](bevy_mod_scripting_core-v0.10.0...bevy_mod_scripting_core-v0.11.0)
    - 2025-03-29
    
    ### Added
    
    - optimize access map
    ([#395](#395))
    - optimize `get` and `set` functions, add `MagicFunctions` sub-registry
    ([#397](#397))
    - improve tracing spans, add `profile_with_tracy` feature flag
    ([#394](#394))
    - add `profile_with_tracy` feature which plays nicely with bevy's
    `bevy/trace_tracy` feature
    ([#393](#393))
    - Add initial benchmarks, integrate them into CI & add getters/settters
    for `Scripts` resource
    ([#381](#381))
    - add ScriptValue override for printing opaque values
    ([#380](#380))
    - ✨ Dynamic Script Components, `register_new_component`
    binding, `remove_component` no longer requires `ReflectComponent` data
    ([#379](#379))
    - overhaul mdbook preprocessor, prettify generated docs, support dummy
    globals ([#377](#377))
    
    ### Fixed
    
    - fix global type cache not containing generic types
    ([#388](#388))
    
    ### Other
    
    - switch to hashbrown hashmap in the function registry
    ([#399](#399))
    - try play with hashing for access maps
    ([#398](#398))
    - allow check creation for bencher
    </blockquote>
    
    ## `bevy_mod_scripting_lua`
    
    <blockquote>
    
    ##
    [0.11.0](bevy_mod_scripting_lua-v0.10.0...bevy_mod_scripting_lua-v0.11.0)
    - 2025-03-29
    
    ### Added
    
    - optimize `get` and `set` functions, add `MagicFunctions` sub-registry
    ([#397](#397))
    - allow the conversion of lua functions into `ScriptValue` via
    `DynamicScriptFunction`
    ([#396](#396))
    - Add initial benchmarks, integrate them into CI & add getters/settters
    for `Scripts` resource
    ([#381](#381))
    - ✨ Dynamic Script Components, `register_new_component`
    binding, `remove_component` no longer requires `ReflectComponent` data
    ([#379](#379))
    </blockquote>
    
    ## `bevy_mod_scripting_rhai`
    
    <blockquote>
    
    ##
    [0.11.0](bevy_mod_scripting_rhai-v0.10.0...bevy_mod_scripting_rhai-v0.11.0)
    - 2025-03-29
    
    ### Added
    
    - [**breaking**] bump bersion
    - optimize `get` and `set` functions, add `MagicFunctions` sub-registry
    ([#397](#397))
    - Add initial benchmarks, integrate them into CI & add getters/settters
    for `Scripts` resource
    ([#381](#381))
    </blockquote>
    
    ## `bevy_mod_scripting_functions`
    
    <blockquote>
    
    ##
    [0.11.0](bevy_mod_scripting_functions-v0.10.0...bevy_mod_scripting_functions-v0.11.0)
    - 2025-03-29
    
    ### Added
    
    - optimize `get` and `set` functions, add `MagicFunctions` sub-registry
    ([#397](#397))
    - ✨ Dynamic Script Components, `register_new_component`
    binding, `remove_component` no longer requires `ReflectComponent` data
    ([#379](#379))
    - overhaul mdbook preprocessor, prettify generated docs, support dummy
    globals ([#377](#377))
    </blockquote>
    
    ## `ladfile_builder`
    
    <blockquote>
    
    ##
    [0.3.1](v0.3.0-ladfile_builder...v0.3.1-ladfile_builder)
    - 2025-03-29
    
    ### Added
    
    - bump bevy to 0.15.3
    ([#401](#401))
    </blockquote>
    
    ## `bevy_mod_scripting`
    
    <blockquote>
    
    ##
    [0.11.1](v0.11.0...v0.11.1)
    - 2025-03-29
    
    ### Added
    
    - bump bevy to 0.15.3
    ([#401](#401))
    </blockquote>
    
    
    </p></details>
    
    ---
    This PR was generated with
    [release-plz](https://github.com/release-plz/release-plz/).
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    c3b50fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba14095 View commit details
    Browse the repository at this point in the history
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.