Skip to content

chore: Bump Eto.Platform.Windows from 2.8.3 to 2.11.0#7

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Eto.Platform.Windows-2.11.0
Closed

chore: Bump Eto.Platform.Windows from 2.8.3 to 2.11.0#7
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Eto.Platform.Windows-2.11.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 3, 2026

Copy link
Copy Markdown

Updated Eto.Platform.Windows from 2.8.3 to 2.11.0.

Release notes

Sourced from Eto.Platform.Windows's releases.

2.11.0

What's Changed

🚀 Features

🐛 Bug Fixes

Other Changes

... (truncated)

2.10.2

This is primarily to fix the assembly version numbers of the last two releases of 2.10.x, which didn't match the actual release version.

What's Changed

New Contributors

Full Changelog: picoe/Eto@2.10.1...2.10.2

2.10.1

New Features

Hot Reload

Eto.Forms now supports hot reload when supported by the runtime/debugger, and even hot reload of .xeto and .jeto files for all other platforms. To enable hot reload, simply add the following to your startup:

#if DEBUG
    Eto.HotReloadService.Initialize();
#endif

and for any control you'd like to support hot reload for, add this attribute to your class, giving the name of the method to call when the class or .xeto/.jeto changes:

[HotReload(nameof(InitializeComponent))]
public class MyControl : Panel
{
  void InitializeComponent()
  {
    XamlReader.Load(this); // or however you populate this control

    // other initialization logic that can be re-executed
  }
}

As of this writing, only VS 2022 supports code-based hot reload. It appears that the C# Dev Kit for VS Code is getting some love in this regard, but it's not fully there just yet.

2.10.1 What's Changed

2.10.0 What's Changed

2.10.0

New Features

Hot Reload

Eto.Forms now supports hot reload when supported by the runtime/debugger, and even hot reload of .xeto and .jeto files for all other platforms. To enable hot reload, simply add the following to your startup:

#if DEBUG
    HotReloadService.Initialize();
#endif

and for any control you'd like to support hot reload for, add this attribute to your class, giving the name of the method to call when the class or .xeto/.jeto changes:

[HotReload(nameof(InitializeComponent))]
public class MyControl : Panel
{
  void InitializeComponent()
  {
    XamlReader.Load(this); // or however you populate this control

    // other initialization logic that can be re-executed
  }
}

As of this writing, only VS 2022 supports code-based hot reload. It appears that the C# Dev Kit for VS Code is getting some love in this regard, but it's not fully there just yet.

What's Changed

2.9.0

⭐ New Features

  • Wpf: Isolate resource dictionaries by specifying Version and PublicKey #​2716
  • TextArea.ScrollToStart/End fixes #​2712
  • Wpf: Focus the family text box when showing the FontDialog #​2708
  • Wpf: Drawable updates for large canvases in a scrollable #​2707
  • Add Form.ShowAsync #​2706
  • Update .gitignore to ignore .DS_Store #​2686
  • Window OnLoadComplete and GetPreferredSize improvements #​2684
  • Make OperatingSystemPlatform lazy and use newer APIs for OS detection #​2679
  • WPF/WinForms: Performance updates for Tree/GridView #​2663
  • Gtk: Use Gtk.Box vs deprecated HBox/VBox #​2662
  • Remove TypeHelper which was used for netstandard1.0 support #​2661
  • No need to use reflection anymore to get converter properties/supported #​2660
  • Fix an event handler leak in Binding.RemovePropertyEvent #​2644
  • Failed to initialize WebView2 error message spelling #​2641
  • Use Eto types for to/from native screen points and fill in comments #​2640
  • Add WpfHelpers.ToEtoScreen/ToNativeScreen helper methods #​2639

🪲 Bug Fixes

  • Wpf: Use public key token for WPF resources instead of full key #​2718
  • WPF: Don't force layout when child preferred size changes #​2717
  • Fix issue mapping view to model in SelectableFilterCollection #​2715
  • Fix building Mac64 projects with mono #​2714
  • Wpf: Fix TextBox.Text so it clears the undo buffer when set #​2713
  • Mac: Fix turning off TextArea.Wrap with Right or Center alignment #​2711
  • Wpf: Fix Scrollable when child size is changed #​2709
  • Wpf: Fix memory leak with Screen.GetImage() #​2701
  • System.Xml RoslynCodeTaskFactory Build Problem macOS #​2700
  • Mac: Fix issue updating items in a GridView #​2699
  • Localization updates #​2697
  • Wpf: Setting Dialog.Visible=false after shown should not crash #​2696
  • Wpf: Fix issue that could cause an endless loop with Tree/GridView #​2692
  • Wpf: Clear owner before setting Visible to false #​2690
  • WinForms: Don't crash when displaying an empty form #​2689
  • Mac: Fix position of window with AutoSize or changing ClientSize #​2688
  • Form visibility fixes #​2687
  • Wpf: Allow DataGrid and Window background to be styled #​2685
  • Wpf: Ignore exceptions when calling GC.TryStartNoGCRegion #​2683
  • Wpf: Fix issue restoring column focus if the column has been removed #​2682
  • Mac: Check for null handler in Tree/GridView delegates and data sources #​2680
  • Mac: Don't call SizeChanged if disposed #​2678
  • Mac: Fix crash when setting background color on some controls and size changes to zero #​2677
  • SelectableFilterCollection SelectRow() fails on sorted/filtered collection #​2676
  • Eto.Wpf.Forms.Screen.GetImage creates memory leaks #​2674
  • Wpf: Only enable NoGCRegion if not in that mode already #​2672
  • Mac: Implement Keymap.Convert #​2671
  • GTK: Make MouseWheel event cancelable #​2670
    ... (truncated)

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)

---
updated-dependencies:
- dependency-name: Eto.Platform.Windows
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Apr 3, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, security. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Apr 4, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/nuget/Eto.Platform.Windows-2.11.0 branch April 4, 2026 10:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant