Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump react-select from 3.1.0 to 5.2.1 in /superset-frontend #2

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 19, 2021

Bumps react-select from 3.1.0 to 5.2.1.

Release notes

Sourced from react-select's releases.

react-select@5.2.1

Patch Changes

react-select@5.2.0

Minor Changes

Patch Changes

react-select@5.1.0

Minor Changes

Patch Changes

  • fdd01e66 #4833 Thanks @​ebonow! - Value container display property should be grid when isMulti and has no value so the Placeholder component is positioned correctly with the Input

  • 0937604f #4823 Thanks @​mikunpham! - Fix the issue where input contents are moved to the left due to multiple space characters.

  • ec80b577 #4803 Thanks @​Methuselah96! - Import CSSObject from @​emotion/react instead of @​emotion/serialize

react-select@5.0.0

Upgrade Guide

Summary

  • Convert to TypeScript (#4489) - TypeScript types now come packaged with react-select so you no longer need to have @types/react-select installed; we no longer include Flow types
  • Drop IE11 support (#4625, #4720, #4634) - this allows us to make changes to our CSS that we've wanted to make for a long time as well as remove unnecessary JS solutions (those changes are noted below)
  • Use forwardRef for all wrapped components (#4489) - this means that if you were accessing anything on the Select instance using a ref, the ref will now reference the internal Select directly (see below for how to upgrade)
  • Replace HOCs with hooks (#4489) - if you were using our HOCs to create custom Selects (i.e., makeCreatableSelect, mangeState, makeAsyncSelect) these have now been replaced by hooks (i.e., useCreatable, useStateManager, useAsync)
  • Remove dependency on AutosizeInput (#4625) - our new solution uses CSS grid which IE11 does not fully support; also .prefix__input now targets the input and NOT the container
  • Improve screen reader experience (#4676) - this isn't a breaking change in the API but it does change the screen reader announcements
  • Use CSS grid for single value layout (#4720) - this also isn't a breaking change in the API but is it a change in the styles since it switches to using CSS grid (not fully supported by IE11) for single-value Selects
  • Remove readonly attribute on our DummyInput (#4634) - this results in better accessibility but uses caret-color which is not available on IE11

Details

... (truncated)

Changelog

Sourced from react-select's changelog.

@​react-select/docs

3.1.1

Patch Changes

  • 638f5455 #4702 Thanks @​Methuselah96! - The Option generic is no longer required to extend the OptionBase type

  • Updated dependencies [10225290]:

  • Updated dependencies [53f1972b]:

  • Updated dependencies [b41f4ceb]:

  • Updated dependencies [4b028829]:

  • Updated dependencies [7fcec537]:

  • Updated dependencies [ca2c0e5b]:

  • Updated dependencies [9e82aadc]:

  • Updated dependencies [638f5455]:

  • Updated dependencies [23cea0b5]:

  • Updated dependencies [ef87c3ac]:

    • react-select@undefined

3.1.1-beta.1

Patch Changes

  • 638f5455 #4702 Thanks @​Methuselah96! - The Option generic is no longer required to extend the OptionBase type

  • Updated dependencies [10225290]:

  • Updated dependencies [53f1972b]:

  • Updated dependencies [b41f4ceb]:

  • Updated dependencies [7fcec537]:

  • Updated dependencies [9e82aadc]:

  • Updated dependencies [638f5455]:

    • react-select@undefined

3.1.1-beta.0

Patch Changes

  • Updated dependencies [4b028829]:
  • Updated dependencies [ef87c3ac]:
    • react-select@undefined
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.


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 @github
Copy link
Author

dependabot bot commented on behalf of github Nov 19, 2021

The following labels could not be found: npm, dependabot.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/superset-frontend/react-select-5.2.1 branch 2 times, most recently from 98266bb to 0e59444 Compare November 23, 2021 10:57
michael-s-molina pushed a commit that referenced this pull request Dec 1, 2021
* feat: add plugin for Kepler

* fix: add dep and update naming for consistency

* fix: lint issues
Bumps [react-select](https://github.com/JedWatson/react-select) from 3.1.0 to 5.2.1.
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/react-select@3.1.0...react-select@5.2.1)

---
updated-dependencies:
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/superset-frontend/react-select-5.2.1 branch from 0e59444 to 40885ab Compare December 1, 2021 10:54
michael-s-molina added a commit that referenced this pull request Jan 28, 2022
michael-s-molina added a commit that referenced this pull request Jan 31, 2022
* fix: Explore long URL problem

* Fixes lint problems

* Fixes default value

* Removes duplicated test

* Fixes share menu items

* Fixes tests

* Debounces form_data updates

* Rewrites debounce function

* Moves history update outside the functional component

* Mocks lodash function in tests

* Fixes Cypress test

* Fixes Cypress test #2
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 2, 2022

Superseded by #11.

@dependabot dependabot bot closed this Feb 2, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/superset-frontend/react-select-5.2.1 branch February 2, 2022 03:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants