All Versions
16
Latest Version
Avg Release Cycle
46 days
Latest Release
1611 days ago

Changelog History
Page 2

  • v2.4.3

    April 17, 2019
  • v2.4.2 Changes

    March 11, 2019

    ๐Ÿ› Bug fixes

    • #3446 Fix bug with select input value not being selectable. Thanks @kangweichan
    • #3445 Fix accessibility bug. Disabled options are now focusable and announced by screen-readers but not selectable. Thanks @sarahbethfederman

    โšก๏ธ Updates

  • v2.4.1 Changes

    March 11, 2019

    ๐Ÿ› Bug fixes

    • #3432 Fix bug with select menu's not working on mobile.
  • v2.4.0 Changes

    February 15, 2019

    ๐Ÿ› Bug fixes

    • ๐Ÿšš #3427 remove focusOption() invocation on ENTER press if the menu is not open.
    • ๐Ÿ‘€ #3402 fix menu scroll being reset on focus of a select with an open menu in ie11. See #3342 for details. Thanks timothypage
    • ๐Ÿ›  #3420 fixed select menu being opened on click, when openMenuOnClick is false. Thanks caleb and rscotten
    • ๐Ÿ›  #3419 fixed bug with ScrollCaptor operating on an undefined scrollTarget. Thanks iulian-radu-at
    • #3411 fix bug where Enter key press on select with a closed menu wouldn't propagate up. Resolves #2217.
    • ๐Ÿšš #3407 remove unnecessary aria-roles from menu and options. This is now all handled by our aria-live implementation. Resolves #3355. Thanks sarahbethfederman.
    • #3393, fix aria live announcement text for removing a selected option. Thanks msharkeyiii.
    • โšก๏ธ #3350 Updated to 0.91 of flow. Updated types to pass stricter type checking, in later versions of flow. Thanks DragonWW

    โšก๏ธ Updates

    • โšก๏ธ #3370 Updated memoize-one dependency to 5.0.0. Thanks adam187
    • โšก๏ธ #3366 Update build tooling, to leverage babel 7. Thanks DragonWW
  • v2.3.0 Changes

    January 18, 2019

    ๐Ÿ› Bug fixes

    • #3315 add RAF call to Collapse component getRef() such that getBoundingClientRect() is invoked consistently.
    • #3275 wrap String invocation around inputValue to avoid calling toLowerCase on invalid elements. thanks tavareshenrique
    • #3357, fix loadOptions call in Async select to always pass in a string for the inputValue.
    • โฌ†๏ธ #3346 Revert work done in CSP nonce PR #3260 to unblock react-select usage in an SSR setting. Users who need nonce support still, please pin your version of react-select at 2.2.0. Nonce support will be re-added in 3.0.0 along with an upgrade to emotion 10; which includes nonce support without having to provide a custom emotion instance.

    ๐Ÿ”‹ Features

    • #3115 menu-is-open modifier added to control class when the menu is open. @s20lee
  • v2.2.0 Changes

    December 28, 2018

    ๐Ÿ› Bug Fixes

    • #3296 Fix for tab interactions when in composition mode with an IME. Thanks yshr446 for the PR.
    • ๐Ÿšš #3302 Fix to breaking android and mobile safari touch bug #2755, by adding more conscientious checks to the onTouchStart and onTouchMove listeners. Thanks xakep139 for the PR.
    • #3303 Input and GroupHeading components now get passed the selectProps prop, thanks maxmarchuk for the PR.
    • ๐Ÿ’… #3260 As a result of the CSP nonce support feature, the emotion instance is now cached and passed down to all internal components, meaning that users looking to heavily customise their Select components can do so without externally importing emotion, and nonce instances are respected per select instance. Please see this segment in the docs for a more detailed explanation.
    • #3299 fix to assistive text on menu open.

    ๐Ÿ”‹ Features

    • ๐Ÿ‘ #3260 Add CSP nonce support to Select, thanks Avaq and Andarist for the heavy lifting.