andyfangdz / resume

Resume, really over-engineered
https://cv.andyfang.me
0 stars 0 forks source link

Update material-ui to the latest version 🚀 #7

Closed greenkeeper[bot] closed 6 years ago

greenkeeper[bot] commented 6 years ago

Version 0.19.0 of material-ui just got published.

Dependency material-ui
Current Version 0.18.7
Type dependency

The version 0.19.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of material-ui. Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes v0.19.0
Aug 15, 2017

Big thanks to the 11 contributors who made this release possible.
As always, we are focusing on bug fixes but this time, we introduce an exceptional breaking change.

Breaking Changes
  • [core] Removed module's reliance on react-tap-event-plugin (#7624) @lostpebble

This change is paving the way toward supporting the upcoming react@16 release a.k.a Fiber.
The react-tap-event-plugin dependency was removed, it was first introduced 3 years ago in order to remove the click delay on mobile devices.
Mobiles devices' browsers have improved since then, it's no longer required.
It's time to remove that dependency as we have done it a year ago on the v1-beta branch.
You need to replace the onTouchTap property callbacks with onClick.

-<div onTouchTap={this.handleEvent} />
+<div onClick={this.handleEvent} />

Thanks @lostpebble for your hard work!

Component Fixes / Enhancements
Docs
Core
Not sure how things should work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

andyfangdz commented 6 years ago

Closing pending upgrade to material-ui v1.