Bump winit from 0.24.0 to 0.25.0 #3

Closed
dependabot-preview[bot] wants to merge 1 commit from dependabot/cargo/winit-0.25.0 into master
dependabot-preview[bot] commented 2021-05-17 06:28:58 +00:00 (Migrated from github.com)

Bumps winit from 0.24.0 to 0.25.0.

Changelog

Sourced from winit's changelog.

0.25.0 (2021-05-15)

  • Breaking: On macOS, replace WindowBuilderExtMacOS::with_activation_policy with EventLoopExtMacOS::set_activation_policy
  • On macOS, wait with activating the application until the application has initialized.
  • On macOS, fix creating new windows when the application has a main menu.
  • On Windows, fix fractional deltas for mouse wheel device events.
  • On macOS, fix segmentation fault after dropping the main window.
  • On Android, InputEvent::KeyEvent is partially implemented providing the key scancode.
  • Added is_maximized method to Window.
  • On Windows, fix bug where clicking the decoration bar would make the cursor blink.
  • On Windows, fix bug causing newly created windows to erroneously display the "wait" (spinning) cursor.
  • On macOS, wake up the event loop immediately when a redraw is requested.
  • On Windows, change the default window size (1024x768) to match the default on other desktop platforms (800x600).
  • On Windows, fix bug causing mouse capture to not be released.
  • On Windows, fix fullscreen not preserving minimized/maximized state.
  • On Android, unimplemented events are marked as unhandled on the native event loop.
  • On Windows, added WindowBuilderExtWindows::with_menu to set a custom menu at window creation time.
  • On Android, bump ndk and ndk-glue to 0.3: use predefined constants for event ident.
  • On macOS, fix objects captured by the event loop closure not being dropped on panic.
  • On Windows, fixed WindowEvent::ThemeChanged not properly firing and fixed Window::theme returning the wrong theme.
  • On Web, added support for DeviceEvent::MouseMotion to listen for relative mouse movements.
  • Added WindowBuilder::with_position to allow setting the position of a Window on creation. Supported on Windows, macOS and X11.
  • Added Window::drag_window. Implemented on Windows, macOS, X11 and Wayland.
  • On X11, bump mio to 0.7.
  • On Windows, added WindowBuilderExtWindows::with_owner_window to allow creating popup windows.
  • On Windows, added WindowExtWindows::set_enable to allow creating modal popup windows.
  • On macOS, emit RedrawRequested events immediately while the window is being resized.
  • Implement Default, Hash, and Eq for LogicalPosition, PhysicalPosition, LogicalSize, and PhysicalSize.
  • On macOS, initialize the Menu Bar with minimal defaults. (Can be prevented using enable_default_menu_creation)
  • On macOS, change the default behavior for first click when the window was unfocused. Now the window becomes focused and then emits a MouseInput event on a "first mouse click".
  • Implement mint (math interoperability standard types) conversions (under feature flag mint).
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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)
Bumps [winit](https://github.com/rust-windowing/winit) from 0.24.0 to 0.25.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md">winit's changelog</a>.</em></p> <blockquote> <h1>0.25.0 (2021-05-15)</h1> <ul> <li><strong>Breaking:</strong> On macOS, replace <code>WindowBuilderExtMacOS::with_activation_policy</code> with <code>EventLoopExtMacOS::set_activation_policy</code></li> <li>On macOS, wait with activating the application until the application has initialized.</li> <li>On macOS, fix creating new windows when the application has a main menu.</li> <li>On Windows, fix fractional deltas for mouse wheel device events.</li> <li>On macOS, fix segmentation fault after dropping the main window.</li> <li>On Android, <code>InputEvent::KeyEvent</code> is partially implemented providing the key scancode.</li> <li>Added <code>is_maximized</code> method to <code>Window</code>.</li> <li>On Windows, fix bug where clicking the decoration bar would make the cursor blink.</li> <li>On Windows, fix bug causing newly created windows to erroneously display the &quot;wait&quot; (spinning) cursor.</li> <li>On macOS, wake up the event loop immediately when a redraw is requested.</li> <li>On Windows, change the default window size (1024x768) to match the default on other desktop platforms (800x600).</li> <li>On Windows, fix bug causing mouse capture to not be released.</li> <li>On Windows, fix fullscreen not preserving minimized/maximized state.</li> <li>On Android, unimplemented events are marked as unhandled on the native event loop.</li> <li>On Windows, added <code>WindowBuilderExtWindows::with_menu</code> to set a custom menu at window creation time.</li> <li>On Android, bump <code>ndk</code> and <code>ndk-glue</code> to 0.3: use predefined constants for event <code>ident</code>.</li> <li>On macOS, fix objects captured by the event loop closure not being dropped on panic.</li> <li>On Windows, fixed <code>WindowEvent::ThemeChanged</code> not properly firing and fixed <code>Window::theme</code> returning the wrong theme.</li> <li>On Web, added support for <code>DeviceEvent::MouseMotion</code> to listen for relative mouse movements.</li> <li>Added <code>WindowBuilder::with_position</code> to allow setting the position of a <code>Window</code> on creation. Supported on Windows, macOS and X11.</li> <li>Added <code>Window::drag_window</code>. Implemented on Windows, macOS, X11 and Wayland.</li> <li>On X11, bump <code>mio</code> to 0.7.</li> <li>On Windows, added <code>WindowBuilderExtWindows::with_owner_window</code> to allow creating popup windows.</li> <li>On Windows, added <code>WindowExtWindows::set_enable</code> to allow creating modal popup windows.</li> <li>On macOS, emit <code>RedrawRequested</code> events immediately while the window is being resized.</li> <li>Implement <code>Default</code>, <code>Hash</code>, and <code>Eq</code> for <code>LogicalPosition</code>, <code>PhysicalPosition</code>, <code>LogicalSize</code>, and <code>PhysicalSize</code>.</li> <li>On macOS, initialize the Menu Bar with minimal defaults. (Can be prevented using <code>enable_default_menu_creation</code>)</li> <li>On macOS, change the default behavior for first click when the window was unfocused. Now the window becomes focused and then emits a <code>MouseInput</code> event on a &quot;first mouse click&quot;.</li> <li>Implement mint (math interoperability standard types) conversions (under feature flag <code>mint</code>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-windowing/winit/commit/316d8306ab203b92ed0b4d3695e7ab46da04b8ca"><code>316d830</code></a> Merge branch 'master' of <a href="https://github.com/rust-windowing/winit">https://github.com/rust-windowing/winit</a></li> <li><a href="https://github.com/rust-windowing/winit/commit/91591c4e94fc31b5cd3b9e0438873a97abb35a17"><code>91591c4</code></a> Release 0.25.0 (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1939">#1939</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/3f155167bafe1318c2024d21eb1bc55f75730c14"><code>3f15516</code></a> Release 0.25.0</li> <li><a href="https://github.com/rust-windowing/winit/commit/078b9719cc3ba06630291d5bc05c90787bd84c4f"><code>078b971</code></a> implement mint conversions (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1930">#1930</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/41d9826ee9e2a05eca6805aa94655efd98b0451c"><code>41d9826</code></a> Fix incorrect changelog entry for <a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1524">#1524</a> (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1916">#1916</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/0152508a393ccb46764a733f489a25cc23885a0c"><code>0152508</code></a> Allow preventing the creation of the default menu (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1923">#1923</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/cdeb1c3828885852ebcf3119f082fba7f26749a0"><code>cdeb1c3</code></a> Require setting the activation policy on the event loop (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1922">#1922</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/0986fae06665d8fb0e1866f57c2efabdc7abf4d3"><code>0986fae</code></a> Add accept_first_mouse for macOS (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1882">#1882</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/277515636dacf3a7c8b74a1567b9148695c4b43d"><code>2775156</code></a> MacOS: Only activate after the application has finished launching (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1903">#1903</a>)</li> <li><a href="https://github.com/rust-windowing/winit/commit/45aacd840752bc1af07677da44af4911dbd701c8"><code>45aacd8</code></a> Use <code>initialFirstResponder</code> instead of <code>makeFirstResponder</code> (<a href="https://github-redirect.dependabot.com/rust-windowing/winit/issues/1920">#1920</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rust-windowing/winit/compare/v0.24.0...v0.25.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=winit&package-manager=cargo&previous-version=0.24.0&new-version=0.25.0)](https://dependabot.com/compatibility-score/?dependency-name=winit&package-manager=cargo&previous-version=0.24.0&new-version=0.25.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-automerge-start) [//]: # (dependabot-automerge-end) --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <details> <summary>Dependabot commands and options</summary> <br /> 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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
ElhamAryanpur (Migrated from github.com) reviewed 2021-05-17 06:28:58 +00:00
dependabot-preview[bot] commented 2021-08-12 17:53:20 +00:00 (Migrated from github.com)

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.

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

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`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

Pull request closed

Sign in to join this conversation.
No description provided.