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

build(deps): bump the react group with 3 updates #132

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 23, 2023

Bumps the react group with 3 updates: react-bootstrap, react-redux and react-select.

Updates react-bootstrap from 0.33.1 to 2.9.1

Release notes

Sourced from react-bootstrap's releases.

v2.9.1

2.9.1 (2023-10-21)

Bug Fixes

v2.9.0

2.9.0 (2023-09-27)

Features

v2.9.0-beta.1

2.9.0-beta.1 (2023-08-07)

Bug Fixes

  • fix RSC error with createWithBsPrefix components (#6672) (49b3270)
  • DropdownItem: simplify component type (#6659) (d25e5f9)
  • FormControl: add size support when using plaintext (#6667) (57b4e29)
  • OverlayTrigger: position overlay properly when defaultShow set (#6657) (6bb3842)
  • ToggleButton: fix id to be required in props (#6658) (1b410eb)

v2.9.0-beta.0

2.9.0-beta.0 (2023-07-05)

Features

v2.8.0

2.8.0 (2023-06-23)

Bug Fixes

Features

... (truncated)

Changelog

Sourced from react-bootstrap's changelog.

2.9.1 (2023-10-21)

Bug Fixes

2.9.0 (2023-09-27)

Features

2.9.0-beta.1 (2023-08-07)

Bug Fixes

  • fix RSC error with createWithBsPrefix components (#6672) (49b3270)
  • DropdownItem: simplify component type (#6659) (d25e5f9)
  • FormControl: add size support when using plaintext (#6667) (57b4e29)
  • OverlayTrigger: position overlay properly when defaultShow set (#6657) (6bb3842)
  • ToggleButton: fix id to be required in props (#6658) (1b410eb)

2.9.0-beta.0 (2023-07-05)

Features

2.8.0 (2023-06-23)

... (truncated)

Commits
  • 6728619 Publish v2.9.1
  • 91fb12b fix(types): loosen color and gap types (#6713)
  • 4e609e2 fix(OverlayTrigger): convert to an arrow function to fix type issues (#6709)
  • 80afd3e Publish v2.9.0
  • 1f3be42 docs: fix misleading instruction for disabled on \<Form> (#6692)
  • 7a02a4b docs(NavDropdown): correct minor spelling error in example (#6689)
  • fe72dc3 chore(deps): update all non-major dependencies (#6680)
  • f4e4d0f docs: fix broken responsive navbar in docs page (#6673)
  • 4940ae9 chore(ci): remove ubuntu firefox install step (#6675)
  • 57836e2 feat(Toast): add transition callbacks (#6674)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by kytsang, a new releaser for react-bootstrap since your current version.


Updates react-redux from 7.2.8 to 8.1.3

Release notes

Sourced from react-redux's releases.

v8.1.3

This bugfix release fixes an issue with subscriptions being lost when lazy-loaded components are used with React Suspense, and includes stack traces in useSelector usage warnings .

What's Changed

Full Changelog: reduxjs/react-redux@v8.1.2...v8.1.3

v8.1.2

This version changes imports from the React package to namespace imports so the package can safely be imported in React Server Components as long as you don't actually use it - this is for example important if you want to use the React-specifc createApi function from Redux Toolkit.

Some other changes:

  • The behaviour of the "React Context Singletons" from 8.1.1 has been adjusted to also work if you have multiple React instances of the same version (those will now be separated) and if you are in an environment without globalThis (in this case it will fall back to the previous behaviour).
  • We do no longer use Proxies, which should help with some very outdated consumers, e.g. smart TVs, that cannot even polyfill Proxies.

Full Changelog: reduxjs/react-redux@v8.1.1...v8.1.2

v8.1.1

This bugfix release tweaks the recent lazy context setup logic to ensure a single React context instance per React version, and removes the recently added RTK peerdep to fix an issue with Yarn workspaces.

Changelog

React Context Singletons

React Context has always relied on reference identity. If you have two different copies of React or a library in a page, that can cause multiple versions of a context instance to be created, leading to problems like the infamous "Could not find react-redux context" error.

In v8.1.0, we reworked the internals to lazily create our single ReactReduxContext instance to avoid issues in a React Server Components environment.

This release further tweaks that to stash a single context instance per React version found in the page, thus hopefully avoiding the "multiple copies of the same context" error in the future.

What's Changed

Full Changelog: reduxjs/react-redux@v8.1.0...v8.1.1

v8.1.0

This feature release adds new development-mode safety checks for common errors (like poorly-written selectors), adds a workaround to fix crash errors when React-Redux hooks are imported into React Server Component files, and updates our hooks API docs page with improved explanations and updated links.

Changelog

Development Mode Checks for useSelector

We've had a number of users tell us over time that it's common to accidentally write selectors that have bad behavior and cause performance issues. The most common causes of this are either selectors that unconditionally return a new reference (such as state => state.todos.map() without any memoization ), or selectors that actually return the entire root state ( state => state ).

... (truncated)

Commits
  • 854f3e1 Release 8.1.3
  • 2057c5e Merge pull request #2068 from jeroenpx/feature/useSelector-in-combination-wit...
  • 6ca0567 Merge pull request #2072 from reduxjs/feature/master-ci-checks
  • f0324a1 Copy CI setup for RTK examples
  • 6c0ad9e Fix useSelector() in combination with lazy loaded components breaks with reac...
  • a1a32d1 Merge pull request #2064 from reduxjs/warning-stack
  • bc328d9 Add stack to dev mode checks
  • 4a7e129 Release 8.1.2
  • 2ac527b RSC-specific workarounds (#2050)
  • a669a94 add "publish" workflow
  • Additional commits viewable in compare view

Updates react-select from 5.7.0 to 5.8.0

Release notes

Sourced from react-select's releases.

[email protected]

Minor Changes

  • 884f1c42 #5758 Thanks @​Ke1sy! - 1. Added 'aria-activedescendant' for input and functionality to calculate it;

    1. Added role 'option' and 'aria-selected' for option;
    2. Added role 'listbox' for menu;
    3. Added tests for 'aria-activedescendant';
    4. Changes in aria-live region:
    • the instructions how to use select will be announced only one time when user focuses the input for the first time.
    • instructions for menu or selected value will be announced only once after focusing them.
    • removed aria-live for focused option because currently with correct aria-attributes it will be announced by screenreader natively as well as the status of this option (active or disabled).
    • separated ariaContext into ariaFocused, ariaResults, ariaGuidance to avoid announcing redundant information and higlight only current change.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Copy link
Author

dependabot bot commented on behalf of github Nov 23, 2023

The following labels could not be found: type:maintenance.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 23, 2023
Bumps the react group with 3 updates: [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap), [react-redux](https://github.com/reduxjs/react-redux) and [react-select](https://github.com/JedWatson/react-select).


Updates `react-bootstrap` from 0.33.1 to 2.9.1
- [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases)
- [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/react-bootstrap@v0.33.1...v2.9.1)

Updates `react-redux` from 7.2.8 to 8.1.3
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v7.2.8...v8.1.3)

Updates `react-select` from 5.7.0 to 5.8.0
- [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/[email protected]@5.8.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dependency-updates/react-a3695c64d3 branch from 2af0264 to 26f14b0 Compare November 23, 2023 07:24
@afuetterer afuetterer merged commit e53645a into dependency-updates Nov 23, 2023
5 of 9 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependency-updates/react-a3695c64d3 branch November 23, 2023 07:30
afuetterer pushed a commit that referenced this pull request Nov 23, 2023
Bumps the react group with 3 updates: [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap), [react-redux](https://github.com/reduxjs/react-redux) and [react-select](https://github.com/JedWatson/react-select).


Updates `react-bootstrap` from 0.33.1 to 2.9.1
- [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases)
- [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/react-bootstrap@v0.33.1...v2.9.1)

Updates `react-redux` from 7.2.8 to 8.1.3
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v7.2.8...v8.1.3)

Updates `react-select` from 5.7.0 to 5.8.0
- [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/[email protected]@5.8.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant