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 the deps group across 1 directory with 10 updates #566

Merged
merged 1 commit into from
May 14, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 14, 2024

Bumps the deps group with 10 updates in the / directory:

Package From To
aws-amplify 6.3.0 6.3.1
aws-sdk 2.1617.0 2.1620.0
material-ui-confirm 3.0.12 3.0.15
react-router-dom 6.23.0 6.23.1
@types/mdast 4.0.3 4.0.4
@types/node 20.12.11 20.12.12
@types/react 18.3.1 18.3.2
core-js 3.37.0 3.37.1
esbuild 0.21.1 0.21.2
rimraf 5.0.5 5.0.7

Updates aws-amplify from 6.3.0 to 6.3.1

Release notes

Sourced from aws-amplify's releases.

2024-05-13 Amplify JS release - aws-amplify@6.3.1

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.3.0...aws-amplify@6.3.1

Commits
  • 7436f23 chore(release): Publish [skip release]
  • 28b7fc3 release: Amplify JS release (#13366)
  • f17cdf0 fix: Wait for endpoint creation to identify user (#13353)
  • 57a77b5 chore(repo): 👋🥺 tslint (#13354)
  • f980eba chore(deps-dev): bump next from 14.1.0 to 14.1.1 (#13355)
  • b1dec5a chore(repo): run linter fix against staged files in pre-commit hook (#13349)
  • 2ce82f9 chore(datastore): remove tslint and enable eslint (#13316)
  • 6ae339a chore: Merge release into main (#13345)
  • ff5ae8c Merge branch 'main' into temp/release-merge-1715111358
  • 780e8b2 chore(release): update API docs [skip release]
  • Additional commits viewable in compare view

Updates aws-sdk from 2.1617.0 to 2.1620.0

Release notes

Sourced from aws-sdk's releases.

Release v2.1620.0

See changelog for more information.

Release v2.1619.0

See changelog for more information.

Release v2.1618.0

See changelog for more information.

Commits

Updates material-ui-confirm from 3.0.12 to 3.0.15

Changelog

Sourced from material-ui-confirm's changelog.

3.0.15

  • Improved the behaviour with missing ConfirmProvider (#98) @​joshkel

3.0.14

  • Fix compatibility with React 17 (regression from 3.0.13)

3.0.13

  • Automatically close the dialog when the calling component is unmounted (for example, router navigation)
Commits

Updates react-router-dom from 6.23.0 to 6.23.1

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.23.1

Patch Changes

  • Check for document existence when checking startViewTransition (#11544)
  • Change the react-router-dom/server import back to react-router-dom instead of index.ts (#11514)
  • Updated dependencies:
    • @remix-run/router@1.16.1
    • react-router@6.23.1
Commits
  • aef5c4a chore: Update version for release (#11551)
  • 26bc8e2 chore: Update version for release (pre) (#11545)
  • 031478d Add defensive window.document check when checking for startViewTransition (#1...
  • 9651465 chore: Update version for release (pre) (#11516)
  • fdff9dd Fix react-router-dom/server index.ts import from pnpm migration (#11514)
  • See full diff in compare view

Updates @types/mdast from 4.0.3 to 4.0.4

Commits

Updates @types/node from 20.12.11 to 20.12.12

Commits

Updates @types/react from 18.3.1 to 18.3.2

Commits

Updates core-js from 3.37.0 to 3.37.1

Changelog

Sourced from core-js's changelog.

3.37.1 - 2024.05.14
Commits

Updates esbuild from 0.21.1 to 0.21.2

Release notes

Sourced from esbuild's releases.

v0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

Changelog

Sourced from esbuild's changelog.

0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

Commits

Updates rimraf from 5.0.5 to 5.0.7

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

Bumps the deps group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aws-amplify](https://github.com/aws-amplify/amplify-js) | `6.3.0` | `6.3.1` |
| [aws-sdk](https://github.com/aws/aws-sdk-js) | `2.1617.0` | `2.1620.0` |
| [material-ui-confirm](https://github.com/jonatanklosko/material-ui-confirm) | `3.0.12` | `3.0.15` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.23.0` | `6.23.1` |
| [@types/mdast](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mdast) | `4.0.3` | `4.0.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.11` | `20.12.12` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.1` | `18.3.2` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.37.0` | `3.37.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.21.1` | `0.21.2` |
| [rimraf](https://github.com/isaacs/rimraf) | `5.0.5` | `5.0.7` |



Updates `aws-amplify` from 6.3.0 to 6.3.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.3.0...aws-amplify@6.3.1)

Updates `aws-sdk` from 2.1617.0 to 2.1620.0
- [Release notes](https://github.com/aws/aws-sdk-js/releases)
- [Commits](aws/aws-sdk-js@v2.1617.0...v2.1620.0)

Updates `material-ui-confirm` from 3.0.12 to 3.0.15
- [Changelog](https://github.com/jonatanklosko/material-ui-confirm/blob/master/CHANGELOG.md)
- [Commits](jonatanklosko/material-ui-confirm@v3.0.12...v3.0.15)

Updates `react-router-dom` from 6.23.0 to 6.23.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.23.1/packages/react-router-dom)

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

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

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

Updates `core-js` from 3.37.0 to 3.37.1
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.37.1/packages/core-js)

Updates `esbuild` from 0.21.1 to 0.21.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.21.1...v0.21.2)

Updates `rimraf` from 5.0.5 to 5.0.7
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v5.0.5...v5.0.7)

---
updated-dependencies:
- dependency-name: aws-amplify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: aws-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: material-ui-confirm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@types/mdast"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: core-js
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rimraf
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 14, 2024
@kurkle kurkle merged commit 004d260 into main May 14, 2024
12 checks passed
@kurkle kurkle deleted the dependabot/npm_and_yarn/deps-47dc43e6af branch May 14, 2024 21:02
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.

None yet

1 participant