All Versions
21
Latest Version
Avg Release Cycle
41 days
Latest Release
2591 days ago

Changelog History
Page 2

  • v0.4.1 Changes

    January 26, 2016
    • ๐Ÿ“ฆ [F] Made a mistake while publishing the bower package; fixed.
  • v0.4.0 Changes

    January 26, 2016
    • [B] spring helper's format has changed from spring(10, [120, 12]) to spring(10, {stiffness: 120, damping: 12}).
    • ๐Ÿ’… [B] style, styles and styles of the three respective components now only accept either a number to interpolate, or a spring configuration to interpolate. Previously, it accepted (and ignored) random key/value pairs mixed in, such as {x: spring(0), y: 'helloWorld'}. y Doesn't belong there and should be placed elsewhere, e.g. directly on the (actual react) style of the component you're assigning the interpolating values on.
    • โฌ†๏ธ [B] TransitionMotion got an all-around clearer API. See the upgrade guide and README section for more.
    • ๐Ÿ’… [B] Motion's' defaultStyle, informally accepted the format {x: spring(0)}. This is now officially unsupported. The correct format has always been {x: 0}. Setting a default style of {x: spring(whatever)} did not make sense; the configuration only applies for a style, aka destination value. Same modification applies to StaggeredMotion and TransitionMotion's defaultStyles & willEnter.
    • [B] TransitionMotion's willEnter/willLeave's signature has changed.
    • ๐Ÿšš [B] The reorderKeys helper is no longer needed thanks to the changes to TransitionMotion. It's now removed.
    • ๐Ÿ— [B] React-Native specific build gone. RN 0.18+ uses the vanilla Npm React package, so there's no more need for us to export a wrapper.
    • [F] Bunch of bugs gone: #225, #212, #179, #157, #90, #88.
    • [I] spring has acquired a new field as part of the new signature: precision tuning!
    • [I] Fully typed via Flow types.
    • ๐ŸŽ [I] Performance improvements.
  • v0.3.1 Changes

    October 14, 2015
    • ๐Ÿ’… [F] Handle null and undefined in style/styles. #181
    • [I] Library's now partially annotated with Flow.
    • [I] Related to above, the src/ folder is now exposed on npm so that you can take advantage of Flow by using: import {Motion} from 'react-motion/src/react-motion' directly, instead of the old, prebuilt import {Motion} from 'react-motion'. This is experimental and intentionally undocumented. You'll have to adjust your webpack/browserify configurations to require these original source files correctly. No harm trying of course. It's just some type annotations =).
  • v0.3.0 Changes

    September 30, 2015
  • v0.2.7 Changes

    August 06, 2015
    • [F] Small bug where nested springs don't animate. #123
    • ๐Ÿ‘ [I] Support for all React 0.14.0 betas.
  • v0.2.6 Changes

    July 31, 2015
    • โš  [F] React-native warning's now gone, but also put into a separate file path. To require react-motion on react-native, do require('react-motion/native').
    • ๐Ÿ‘ [I] Support for React 0.14.0-beta1.
  • v0.2.4 Changes

    July 29, 2015
    • ๐Ÿ‘ [I] React-native support!
    • [I] Allow returning null from children function. #101
    • 0๏ธโƒฃ [I] defaultValue for specifying a... default value, upon mounting.
    • ๐Ÿ‘€ [I] TransitionSpring's willLeave API got simplified and now asks for an object as a return value instead of null. null is still supported, but is deprecated and will be removed in the next version. See the new docs on it here.
    • ๐Ÿ”ง [I] Exposed a few tasteful default spring configurations under the new exported presets.
  • v0.2.2 Changes

    July 24, 2015
    • ๐Ÿง [F] Import some internal modules correctly for Ubuntu/Linux node (case-sensitive for them).
    • [F] Nested springs work again.
  • v0.2.0 Changes

    July 22, 2015
    • ๐Ÿšฆ [B] willLeave returning false will now keep the key. Only null and undefined will serve as a signal to kill the disappeared key.
    • [B] willLeave previously failed to expose the second argument correspondingValueOfKeyThatJustLeft. It's now exposed correctly.
    • [F] Definitively fix the previous problem of mis-detecting React Element as object.
    • [F] willLeave is now called only once per disappearing key. It was called more than once previously as a implementation detail. Though you should never have put side-effects in willLeave. It's still discouraged now.
    • [F] If you have some this.props.handlerThatSetStateAndUnmountsSpringInOwnerRender() in Spring's endValue, Spring's already scheduled requestAnimationFrame will no longer cause an extra setState since it's unmounted. But in general, please don't put side-effect in endValue.
    • [I] Stabilize the spring algorithm. No more erratic behavior with a big amount of animated items or tab switching (which usually slows down requestAnimationFrame). #57
    • ๐Ÿ‘ [I] Partial (total?) support for IE9 by using a requestAnimationFrame polyfill.
  • v0.1.0 Changes

    July 14, 2015
    • [B] Breaking API: TransitionSpring's willEnter's callback signature is now (keyThatEnters, correspondingValue, endValueYouJustSpecified, currentInterpolatedValue, currentSpeed) (added correspondingValue as the second argument). Same for willLeave.
    • 0๏ธโƒฃ [B] Spring is now no longer exposed as a default, but simply as "Spring": require('react-motion').Spring. Or import {Spring} from 'react-motion'.
    • [B] Spring and TransitionSpring's children function now expect a ReactElement. The components will no longer wrap the return value in a div for you. #44 #20
    • ๐Ÿšš [I] Move React to from dependencies to peerDependencies. #35
    • โœ… [I] Internal cleanups + tests, for happier contributors.
    • [F] Mis-detecting React Element as object.
    • โšก๏ธ [F] Accidentally updating values at the first level of endValue without {val: ...} wrapper.