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

Bump the minor-and-patch group with 14 updates #1148

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-and-patch group with 14 updates:

Package From To
@babel/core 7.23.0 7.23.2
@babel/preset-typescript 7.23.0 7.23.2
i18next 23.5.1 23.6.0
react-hook-form 7.46.2 7.48.2
react-i18next 13.2.2 13.3.1
react-select 5.7.7 5.8.0
webpack 5.88.2 5.89.0
@types/iarna__toml 2.0.3 2.0.5
@types/mustache 4.2.3 4.2.5
@types/node 20.8.0 20.9.0
@types/react 18.2.23 18.2.37
@types/react-beforeunload 2.1.2 2.1.4
@types/react-dom 18.2.8 18.2.15
@types/react-page-visibility 6.4.2 6.4.4

Updates @babel/core from 7.23.0 to 7.23.2

Release notes

Sourced from @​babel/core's releases.

v7.23.2 (2023-10-11)

NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release commit.

Thanks @​jimmydief for your first PR!

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Committers: 5

v7.23.1 (2023-09-25)

Re-publishing @babel/helpers due to a publishing error in 7.23.0.

Changelog

Sourced from @​babel/core's changelog.

v7.23.2 (2023-10-11)

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
Commits

Updates @babel/preset-typescript from 7.23.0 to 7.23.2

Release notes

Sourced from @​babel/preset-typescript's releases.

v7.23.2 (2023-10-11)

NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release commit.

Thanks @​jimmydief for your first PR!

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Committers: 5

v7.23.1 (2023-09-25)

Re-publishing @babel/helpers due to a publishing error in 7.23.0.

Changelog

Sourced from @​babel/preset-typescript's changelog.

v7.23.2 (2023-10-11)

🐛 Bug Fix

  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
Commits

Updates i18next from 23.5.1 to 23.6.0

Release notes

Sourced from i18next's releases.

v23.6.0

  • add interpolation data to response if returnDetails is true 2053
Changelog

Sourced from i18next's changelog.

23.6.0

  • add interpolation data to response if returnDetails is true 2053
Commits

Updates react-hook-form from 7.46.2 to 7.48.2

Release notes

Sourced from react-hook-form's releases.

Version 7.48.2

🐞 #11106 fix disabled prop not update dirty formState (#11143) 🐞 fix controller update with disabled prop from useForm (#11142)

Version 7.48.1

🐞 fix controller update with disabled prop from useForm

Version 7.48.0

🧱 feature: disable prop for useForm (#10496)

const App = () => {
  const [disabled, setDisabled] = useState(false);
  const { handleSubmit } = useForm({ disabled });
return (
<form
onSubmit={handleSubmit(async () => {
setDisabled(true);
await sleep(100);
setDisabled(false);
})}
/ >
);
}

😵‍💫 fixed typo in useFormContext (#11126) 🫡 strictly manage constants and improve types (#11101) 🐞 fix #11076 disable toggle issue (#11090) 🚀 fix: Solve the issue of race condition with resolver. (#10991) 📖 docs: fix useWatch example syntax error (#11005) 📝 readme arabic version (#10992)

thanks to @​Iyadchafroud @​domuk-k @​mehunk @​ssi02014 and @​tykhan

Version 7.47.0

🫡 allow keepIsSubmitSuccessful flag (#9640)

const { reset } = useForm()
<Form
onSubmit={() => {
reset(formValues, {
keepIsSubmitSuccessful: true,
});
}}
/>

... (truncated)

Commits

Updates react-i18next from 13.2.2 to 13.3.1

Changelog

Sourced from react-i18next's changelog.

13.3.1

  • optimize defaultVariables feature introduced in last release

13.3.0

  • Respect defaultVariables in the interpolation options 1685
Commits

Updates react-select from 5.7.7 to 5.8.0

Release notes

Sourced from react-select's releases.

react-select@5.8.0

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.
Commits

Updates webpack from 5.88.2 to 5.89.0

Release notes

Sourced from webpack's releases.

v5.89.0

New Features

Dependencies & Maintenance

Full Changelog: webpack/webpack@v5.88.2...v5.89.0

Commits
  • 8766092 5.89.0
  • 21c80e4 Merge pull request #17718 from bworline/require-preserve-chains
  • b14922c Refactor shared code
  • dc66572 update types
  • d36804e update types
  • d4e8485 initial
  • 1f13ff9 Merge pull request #17666 from webpack/dependabot/npm_and_yarn/types/node-20.6.0
  • f00e6e2 chore(deps-dev): bump @​types/node from 20.4.9 to 20.6.0
  • 853bfda Merge pull request #17427 from webpack/dependabot/npm_and_yarn/simple-git-3.19.1
  • 64707c9 Merge pull request #17483 from webpack/dependabot/npm_and_yarn/semver-5.7.2
  • Additional commits viewable in compare view

Updates @types/iarna__toml from 2.0.3 to 2.0.5

Commits

Updates @types/mustache from 4.2.3 to 4.2.5

Commits

Updates @types/node from 20.8.0 to 20.9.0

Commits

Updates @types/react from 18.2.23 to 18.2.37

Commits

Updates @types/react-beforeunload from 2.1.2 to 2.1.4

Commits

Updates @types/react-dom from 18.2.8 to 18.2.15

Commits

Updates @types/react-page-visibility from 6.4.2 to 6.4.4

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
i18next [>= 21.a, < 22]

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

Bumps the minor-and-patch group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.23.0` | `7.23.2` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.23.0` | `7.23.2` |
| [i18next](https://github.com/i18next/i18next) | `23.5.1` | `23.6.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.46.2` | `7.48.2` |
| [react-i18next](https://github.com/i18next/react-i18next) | `13.2.2` | `13.3.1` |
| [react-select](https://github.com/JedWatson/react-select) | `5.7.7` | `5.8.0` |
| [webpack](https://github.com/webpack/webpack) | `5.88.2` | `5.89.0` |
| [@types/iarna__toml](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/iarna__toml) | `2.0.3` | `2.0.5` |
| [@types/mustache](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mustache) | `4.2.3` | `4.2.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.8.0` | `20.9.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.23` | `18.2.37` |
| [@types/react-beforeunload](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-beforeunload) | `2.1.2` | `2.1.4` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.8` | `18.2.15` |
| [@types/react-page-visibility](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-page-visibility) | `6.4.2` | `6.4.4` |


Updates `@babel/core` from 7.23.0 to 7.23.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/@babel/core@7.23.2/packages/babel-core)

Updates `@babel/preset-typescript` from 7.23.0 to 7.23.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-preset-typescript)

Updates `i18next` from 23.5.1 to 23.6.0
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.5.1...v23.6.0)

Updates `react-hook-form` from 7.46.2 to 7.48.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.46.2...v7.48.2)

Updates `react-i18next` from 13.2.2 to 13.3.1
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v13.2.2...v13.3.1)

Updates `react-select` from 5.7.7 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/react-select@5.7.7...react-select@5.8.0)

Updates `webpack` from 5.88.2 to 5.89.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.88.2...v5.89.0)

Updates `@types/iarna__toml` from 2.0.3 to 2.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/iarna__toml)

Updates `@types/mustache` from 4.2.3 to 4.2.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mustache)

Updates `@types/node` from 20.8.0 to 20.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 18.2.23 to 18.2.37
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-beforeunload` from 2.1.2 to 2.1.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-beforeunload)

Updates `@types/react-dom` from 18.2.8 to 18.2.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@types/react-page-visibility` from 6.4.2 to 6.4.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-page-visibility)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-typescript"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: i18next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-i18next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: webpack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/iarna__toml"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/mustache"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-beforeunload"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-page-visibility"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the type:dependencies This updates a dependency file label Nov 8, 2023
@LukasKalbertodt LukasKalbertodt merged commit ec8afd0 into master Nov 8, 2023
4 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-640f579e59 branch November 8, 2023 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:dependencies This updates a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant