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

fix(deps): update dependency @aws-amplify/ui-react to version 5.3.3 🌟 - abandoned #1474

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-amplify/ui-react (source) 5.0.4 -> 5.3.3 age adoption passing confidence
aws-amplify (source) 5.3.3 -> 5.3.15 age adoption passing confidence

Release Notes

aws-amplify/amplify-ui (@​aws-amplify/ui-react)

v5.3.3

Compare Source

Patch Changes

v5.3.2

Compare Source

Patch Changes
  • #​4649 1dbe3f46c Thanks @​dbanksdesign! - fix(storage): fixing drop handler for file extensions

    Previously, adding a file extension for an acceptedFileTypes when a customer would drop a file it would show as rejected even if it was a valid file type. This fixes that issue.

v5.3.1

Compare Source

Patch Changes

v5.3.0

Compare Source

Minor Changes
  • #​4348 276968530 Thanks @​hbuchel! - feat(react/ui): add new Fieldset Primitive

    Usage:

    <Fieldset legend="Legend test">
       // Fieldset content/form controls
    </Fieldset>
    
  • #​4359 ec495a6f6 Thanks @​dbanksdesign! - feat(react): DropZone component

    export default function DefaultDropZoneExample() {
      const [files, setFiles] = React.useState([]);
      return (
        <>
          <DropZone
            onDropComplete={({ files }) => {
              setFiles(files);
            }}
          >
            Drag images here
          </DropZone>
          {files.map((file) => (
            <Text key={file.name}>{file.name}</Text>
          ))}
        </>
      );
    }
Patch Changes

v5.2.0

Compare Source

Minor Changes
  • #​4268 f8c5b77e4 Thanks @​dbanksdesign! - feat(react): Add IconsProvider to customize icons globally for all Amplify UI components

    Components that use icons:

    • Alert
    • Checkbox
    • Expander
    • Field
    • Menu
    • Pagination
    • PasswordField
    • Rating
    • SearchField
    • Select
    • StepperField
    • StorageManager

    Wrap your application with the <IconsProvider> (or whatever part of your app you want to customize the icons).

    <IconsProvider icons={{
      alert: {
        info: <MdInfo />
      }
    }}>
      {/* ... */}
    </IconProvider>

    Works well with the react-icons package!

Patch Changes

v5.1.1

Compare Source

Patch Changes

v5.1.0

Compare Source

Minor Changes
  • #​4288 30624bd4f Thanks @​dbanksdesign! - New component: Breadcrumbs!

    A composable component for displaying breadcrumb navigation

    <Breadcrumbs
      items={[
        {
          href: '/',
          label: 'Home',
        },
        {
          href: '/category',
          label: 'Category',
        },
        {
          href: '/category/type',
          label: 'Type',
        },
      ]}
    />
    <Breadcrumbs.Container>
      {breadcrumbs.map(({ href, label }, idx) => {
        const isCurrent = breadcrumbs.length - 1 === idx;
        return (
          <Breadcrumbs.Item>
            <Breadcrumbs.Link isCurrent={isCurrent} href={href}>
              {label}
            </Breadcrumbs.Link>
            {isCurrent ? null : <Breadcrumbs.Separator>/</Breadcrumbs.Separator>}
          </Breadcrumbs.Item>
        );
      })}
    </Breadcrumbs.Container>
Patch Changes

v5.0.7

Compare Source

Patch Changes

v5.0.6

Compare Source

Patch Changes

v5.0.5

Compare Source

Patch Changes
aws-amplify/amplify-js (aws-amplify)

v5.3.15

Compare Source

v5.3.14

Compare Source

v5.3.13

Compare Source

v5.3.12: 2023-11-06 Amplify JS release - aws-amplify@5.3.12

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.11...aws-amplify@5.3.12

v5.3.11: 2023-09-14 Amplify JS release - aws-amplify@5.3.11

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.10...aws-amplify@5.3.11

v5.3.10: 2023-08-23 Amplify JS release - aws-amplify@5.3.10

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.9...aws-amplify@5.3.10

v5.3.9: 2023-08-22 Amplify JS release - aws-amplify@5.3.9

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.8...aws-amplify@5.3.9

v5.3.8: 2023-08-16 Amplify JS release - aws-amplify@5.3.8

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.7...aws-amplify@5.3.8

v5.3.7: 2023-08-10 Amplify JS release - aws-amplify@5.3.7

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.6...aws-amplify@5.3.7

v5.3.6: 2023-07-31 Amplify JS release - aws-amplify@5.3.6

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.3.5...aws-amplify@5.3.6

v5.3.5

Compare Source

v5.3.4

Compare Source


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@cypress-app-bot
Copy link

See the guidelines for reviewing dependency updates for info on how to review dependency update PRs.

Copy link

cypress bot commented Feb 4, 2024

1 flaky test on run #6302 ↗︎

0 392 2 0 Flakiness 1

Details:

Merge branch 'develop' into renovate/aws-amplify
Project: cypress-realworld-app Commit: 8c4b1773fe
Status: Passed Duration: 09:12 💡
Started: Feb 5, 2024 5:58 PM Ended: Feb 5, 2024 6:07 PM
Flakiness  cypress/tests/ui/transaction-feeds.spec.ts • 1 flaky test • Component

View Output

Test Artifacts
Transaction Feed > renders and paginates all transaction feeds > paginates personal transaction feed Test Replay Screenshots

Review all test suite changes for PR #1474 ↗︎

Copy link
Contributor Author

renovate bot commented Feb 5, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot changed the title fix(deps): update dependency @aws-amplify/ui-react to version 5.3.3 🌟 fix(deps): update dependency @aws-amplify/ui-react to version 5.3.3 🌟 - abandoned Mar 4, 2024
Copy link
Contributor Author

renovate bot commented Mar 4, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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.

2 participants