grasegger / oro

GNU General Public License v3.0
3 stars 1 forks source link

Update yew requirement from 0.14.1 to 0.17.1 in /src/frontend #22

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Updates the requirements on yew to permit the latest version.

Changelog

Sourced from yew's changelog.

0.17.1 (2020-07-01)

  • 🛠 Fixes

    • Fixed regression where component rendered lifecycle method was called before children components finish rendering. [[@jstarry], #1360]

Changelog

0.17.0 (2020-06-29)

Changelog

  • ⚡️ Features

    • Allow agents to send input messages to themselves. [[@mkawalec], #1278]

    • Rendering performance has been improved by ~20%. [[@jstarry], #1296, #1309]

    • html!: Elements can be specified with dynamic tag names. [[@siku2], #1266]

      In order to specify a dynamic tag name, wrap an expression with @{..}:

      let tag_name = "input";
      html! { <@{tag_name} value="Hello" /> }
      
    • HTML button element type can now be specified ("submit", "reset", or "button"). [[@captain-yossarian], #1033]

    • All global event listeners can be used as listeners (onerror, onloadend, and many more). [[@siku2], #1244]

    • PartialEq is now implemented for VChild when properties also implement PartialEq. [[@kellpossible], #1242]

    • Agent callbacks now accept Into<Message> to improve ergonomics. [[@totorigolo], #1215]

    • Agents can now send messages to themselves. [[@totorigolo], #1215]

  • 🛠 Fixes

    • Bincode dependency version has been loosened 1.2.1 -> 1. [[@jstarry], #1349]

    • Keyed list ordering algorithm has been fixed. [[@totorigolo] and [@jstarry], #1231]

    • html!: key and ref are no longer ignored for components with no properties. [[@jstarry], #1338]

    • html!: List rendering behavior is consistent no matter which syntax is chosen. [[@siku2], #1275]

      html! { for node_list } is now equivalent to html! { node_list } when node_list is a Vec<VNode>.

    • KeyboardService events can now have default behavior prevented. [[@ghpu], #1286]

    • Yew will check the current DOM input value before comparing with the desired value. [[@ShadoySV], #1268]

    • html!: Void elements (<br/>, <input />) are no longer allowed to have children. [[@kaoet], #1217]

    • Local agents no longer require Input and Output to implement Serializable. [[@mkawalec], #1195]

  • 🚨 Breaking changes

    • ConsoleService, DialogService, IntervalService, RenderService, TimeoutService, and WebSocketService methods are now static. [[@teymour-aldridge], #1313]

    • html!: Children no longer implements Renderable. [[@siku2], #1275]

      Replace instances of self.props.children.render() with self.props.children.clone().

Commits


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 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 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 the `.dependabot/config.yml` file in this repo: - Update frequency - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

Superseded by #23.