Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the egui group with 4 updates: eframe, egui-notify, egui_extras and egui_file.

Updates eframe from 0.30.0 to 0.33.3

Release notes

Sourced from eframe's releases.

0.33.3 - Improve kittest and text selection

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

egui

egui_kittest changelog

egui_extras changelog

0.33.2

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

egui changelog

⭐ Added

  • Add Plugin::on_widget_under_pointer to support widget inspector #7652 by @​juancampa
  • Add Response::total_drag_delta and PointerState::total_drag_delta #7708 by @​emilk

🔧 Changed

🐛 Fixed

eframe changelog

... (truncated)

Changelog

Sourced from eframe's changelog.

0.33.3 - 2025-12-11

0.33.2 - 2025-11-13

⭐ Added

  • Add Plugin::on_widget_under_pointer to support widget inspector #7652 by @​juancampa
  • Add Response::total_drag_delta and PointerState::total_drag_delta #7708 by @​emilk

🔧 Changed

🐛 Fixed

0.33.0 - 2025-10-09 - egui::Plugin, better kerning, kitdiff viewer

Highlights from this release:

  • egui::Plugin a improved way to create and access egui plugins
  • kitdiff, a viewer for egui_kittest image snapshots (and a general image diff tool)
  • better kerning

Improved kerning

As a step towards using parley for font rendering, @​valadaptive has refactored the font loading and rendering code. A result of this (next to the font rendering code being much nicer now) is improved kerning. Notice how the c moved away from the k:

Oct-09-2025 16-21-58

egui::Plugin trait

We've added a new trait-based plugin api, meant to replace Context::on_begin_pass and Context::on_end_pass. This makes it a lot easier to handle state in your plugins. Instead of having to write to egui memory it can live right on your plugin struct. The trait based api also makes easier to add new hooks that plugins can use. In addition to on_begin_pass and on_end_pass, the Plugin trait now has a input_hook and output_hook which you can use to inspect / modify the RawInput / FullOutput.

kitdiff, a image diff viewer

At rerun we have a ton of snapshots. Some PRs will change most of them (e.g. the one that updated egui and introduced the kerning improvements, ~500 snapshots changed!). If you really want to look at every changed snapshot it better be as efficient as possible, and the experience on github, fiddeling with the sliders, is kind of frustrating. In order to fix this, we've made kitdiff. You can use it locally via

  • kitdiff files . will search for .new.png and .diff.png files
  • kitdiff git will compare the current files to the default branch (main/master) Or in the browser via
  • going to https://rerun-io.github.io/kitdiff/ and pasting a PR or github artifact url
  • linking to kitdiff via e.g. a github workflow https://rerun-io.github.io/kitdiff/?url=<link_to_pr_or_artifact>

... (truncated)

Commits
  • 44cdd65 Release 0.33.3: update cargo version and changelog
  • 06b93d9 kittest: add drag-and-drop helpers (#7690)
  • 3657e42 Change text color of selected text (#7691)
  • dc4b24f Typo fix in drag-and-drop documentation (#7750)
  • 33fb2f3 Enforce consistent snapshot updates (#7744)
  • e6fff4b Treat . as a word-splitter in text navigation (#7741)
  • 978ec6c Update changelogs and version for 0.33.2
  • 0ef57d5 Fix ui.response().interact(Sense::click()) being flakey (#7713)
  • d06c28c Fix double negative in documentation (#7711)
  • 787c467 Prevent widgets sometimes appearing to move relative to each other (#7710)
  • Additional commits viewable in compare view

Updates egui-notify from 0.18.0 to 0.21.0

Commits

Updates egui_extras from 0.30.0 to 0.33.3

Release notes

Sourced from egui_extras's releases.

0.33.3 - Improve kittest and text selection

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

egui

egui_kittest changelog

egui_extras changelog

0.33.2

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

egui changelog

⭐ Added

  • Add Plugin::on_widget_under_pointer to support widget inspector #7652 by @​juancampa
  • Add Response::total_drag_delta and PointerState::total_drag_delta #7708 by @​emilk

🔧 Changed

🐛 Fixed

eframe changelog

... (truncated)

Changelog

Sourced from egui_extras's changelog.

0.33.3 - 2025-12-11

0.33.2 - 2025-11-13

⭐ Added

  • Add Plugin::on_widget_under_pointer to support widget inspector #7652 by @​juancampa
  • Add Response::total_drag_delta and PointerState::total_drag_delta #7708 by @​emilk

🔧 Changed

🐛 Fixed

0.33.0 - 2025-10-09 - egui::Plugin, better kerning, kitdiff viewer

Highlights from this release:

  • egui::Plugin a improved way to create and access egui plugins
  • kitdiff, a viewer for egui_kittest image snapshots (and a general image diff tool)
  • better kerning

Improved kerning

As a step towards using parley for font rendering, @​valadaptive has refactored the font loading and rendering code. A result of this (next to the font rendering code being much nicer now) is improved kerning. Notice how the c moved away from the k:

Oct-09-2025 16-21-58

egui::Plugin trait

We've added a new trait-based plugin api, meant to replace Context::on_begin_pass and Context::on_end_pass. This makes it a lot easier to handle state in your plugins. Instead of having to write to egui memory it can live right on your plugin struct. The trait based api also makes easier to add new hooks that plugins can use. In addition to on_begin_pass and on_end_pass, the Plugin trait now has a input_hook and output_hook which you can use to inspect / modify the RawInput / FullOutput.

kitdiff, a image diff viewer

At rerun we have a ton of snapshots. Some PRs will change most of them (e.g. the one that updated egui and introduced the kerning improvements, ~500 snapshots changed!). If you really want to look at every changed snapshot it better be as efficient as possible, and the experience on github, fiddeling with the sliders, is kind of frustrating. In order to fix this, we've made kitdiff. You can use it locally via

  • kitdiff files . will search for .new.png and .diff.png files
  • kitdiff git will compare the current files to the default branch (main/master) Or in the browser via
  • going to https://rerun-io.github.io/kitdiff/ and pasting a PR or github artifact url
  • linking to kitdiff via e.g. a github workflow https://rerun-io.github.io/kitdiff/?url=<link_to_pr_or_artifact>

... (truncated)

Commits

Updates egui_file from 0.21.1 to 0.24.0

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the egui group with 4 updates: [eframe](https://github.com/emilk/egui), [egui-notify](https://github.com/ItsEthra/egui-notify), [egui_extras](https://github.com/emilk/egui) and egui_file.


Updates `eframe` from 0.30.0 to 0.33.3
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md)
- [Commits](emilk/egui@0.30.0...0.33.3)

Updates `egui-notify` from 0.18.0 to 0.21.0
- [Changelog](https://github.com/ItsEthra/egui-notify/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ItsEthra/egui-notify/commits)

Updates `egui_extras` from 0.30.0 to 0.33.3
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md)
- [Commits](emilk/egui@0.30.0...0.33.3)

Updates `egui_file` from 0.21.1 to 0.24.0

---
updated-dependencies:
- dependency-name: eframe
  dependency-version: 0.33.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: egui
- dependency-name: egui-notify
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: egui
- dependency-name: egui_extras
  dependency-version: 0.33.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: egui
- dependency-name: egui_file
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: egui
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 1, 2026
@insolor insolor closed this Jan 1, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/egui-f7a924a085 branch January 1, 2026 10:41
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.

2 participants