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 to v5 #281

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-amplify (source) 4.3.46 -> 5.3.3 age adoption passing confidence

Release Notes

aws-amplify/amplify-js (aws-amplify)

v5.3.3

Compare Source

v5.3.2: 2023-06-27 Amplify JS release - [email protected]

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.3.2

v5.3.1

Compare Source

v5.3.0: 2023-06-19 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.3.0

v5.2.7: 2023-06-15 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.2.7

v5.2.6

Compare Source

v5.2.5: 2023-06-05 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/commits/[email protected]

v5.2.4

Compare Source

v5.2.3

Compare Source

v5.2.2

Compare Source

v5.2.1

Compare Source

v5.2.0: 2023-05-04 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/commits/[email protected]

v5.1.4

Compare Source

v5.1.3

Compare Source

v5.1.2

Compare Source

v5.1.1

Compare Source

v5.1.0

Compare Source

v5.0.25: 2023-04-06 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.25

v5.0.24: Amplify JS release - [email protected]

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.24

v5.0.23: 2023-03-30 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.23

v5.0.22: 2023-03-23 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.22

v5.0.21: 2023-03-21 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.21

v5.0.20: 2023-03-16 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/commits/[email protected]

v5.0.19

Compare Source

v5.0.18

Compare Source

v5.0.17

Compare Source

v5.0.16

Compare Source

v5.0.15

Compare Source

v5.0.14

Compare Source

v5.0.13

Compare Source

v5.0.12

Compare Source

v5.0.11

Compare Source

v5.0.10

Compare Source

v5.0.9

Compare Source

v5.0.8

Compare Source

v5.0.7: 2022-12-15 Amplify JS release - [email protected]

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.7

v5.0.6: 2022-12-14 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.6

v5.0.5

Compare Source

v5.0.4: 2022-11-22 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.4

v5.0.3: 2022-11-18 Amplify JS release - [email protected] Latest

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.3

v5.0.2: 2022-11-16 Amplify JS release - [email protected]

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.2

v5.0.1

Compare Source

v5.0.0: 2022-11-14 Amplify JS release - [email protected]

Compare Source

New Features:

  • @aws-amplify/api, @aws-amplify/pubsub
  • @aws-amplify/storage
    • Storage.list supports paginated results. You can also set a set page size by using the pageSize attribute.
    • More information about Storage.list on the Storage documentation
  • @aws-amplify/datastore
    • Lazy loading

      • You can now asynchronously fetch related data in one-line of code. For example: if a post has many comments, you can lazy load comments using the async toArray() function:await post.comments.toArray(). You can also lazy load hasOne relationships, for example: await post.author. DataStore also takes advantage of JavaScript’s built-in async iterator support to make it easier for you to author for loops:
          for await (const comment of post.comments) {
           console.log(comment) // iterates over each comment!
          }
      
    • Nested predicates

      • You can now query based on conditions of related models. For example, if you only want to get the comments of posts with a title starting with “Amplify”, you can now do the following:
        await DataStore.query(Comment, c => c.post.title.beginsWith(“Amplify”)
      • More information about DataStore nested predicates on the DataStore documentation
    • PR 10477

  • New Notifications category @aws-amplify/notifications with support for AWS Pinpoint In-App Messaging channel.
    • You can setup contextual UI messages that can you can show your users when users trigger specific events. PR 10430
    • More information about In-App Messaging on In-App Messaging documentation

Breaking changes:

  • Default exports removed from, e.g.import Auth from '@​aws-amplify/auth' is no longer supported
    • @aws-amplify/analytics
    • @aws-amplify/api-rest
    • @aws-amplify/api-graphql
    • @aws-amplify/api
    • @aws-amplify/cache
    • @aws-amplify/datastore
    • @aws-amplify/geo
    • @aws-amplify/interactions
    • @aws-amplify/predictions
    • @aws-amplify/pub
    • @aws-amplify/storage
    • @aws-amplify/xr
    • aws-amplify
  • @aws-amplify/api, @aws-amplify/pubsub: Network subscriptions are automatically reconnected and observables stays available (previously observables were closed after network issues)
  • @aws-amplify/analytics: Analytics.record no longer accepts string as its first param
  • aws-amplify
    • Amplify.Auth,Amplify.Cache, Amplify.ServiceWorker static members are no longer available on Amplify singleton #​10562
    • Removed CSS modules export
  • @aws-amplify/pubsub: Removed misspelled type export MqttProvidertOptions from MqttOverWSProvider provider
  • @aws-amplify/core: Removed JS export from in favor of individual function exports #​10528
  • @aws-amplify/storage: Storage.list now accepts pageSize instead of maxKeys and also the return value is an object that has result and pagination info.
  • Deprecated legacy UI packages (You can migrate to the new UI packages by following this link):
    • @aws-amplify/ui-vue@"< 1.x"
    • @aws-amplify/ui-react@"< 1.x"
    • @aws-amplify/ui-angular@"< 1.x"
    • @aws-amplify/ui-components@"< 1.x"
    • aws-amplify-vue (all versions)
    • aws-amplify-angular (all versions)
    • aws-amplify-react (all versions)

Breaking change upgrade notes

Other changes:

  • Bundle size reduction:
    • Reduced by 10% on average when authentication (tested with create-react-app)
    • Reduced by 35% on average when unauthenticated (guest) users (tested with create-react-app)
    • Replaced dependencies with smaller alternatives
    • Optimize bundle size for unauthenticated use cases, e.g. recording events or loading images for guests users
    • tslib is used across all the packages with importHelpers option enabled
  • Removed unnecessary artifacts from npm packages reducing installation size

All Changes

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/[email protected]@5.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 38c09ee to 9c24e62 Compare December 6, 2022 21:27
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from 2946c4d to b08225f Compare December 16, 2022 02:35
@renovate renovate bot changed the title fix(deps): update dependency aws-amplify to v5 Update dependency aws-amplify to v5 Dec 17, 2022
@renovate renovate bot changed the title Update dependency aws-amplify to v5 fix(deps): update dependency aws-amplify to v5 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 9 times, most recently from 74f50fb to 6410e3a Compare December 22, 2022 07:14
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 6410e3a to 4e84a68 Compare December 28, 2022 02:08
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from 05cf688 to 3ac6e3b Compare January 14, 2023 00:50
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 3ac6e3b to 5c71d8a Compare January 19, 2023 22:37
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 5c71d8a to 96c23d5 Compare January 30, 2023 21:09
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from 2003cce to 81829de Compare February 10, 2023 01:30
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 81829de to 6903f11 Compare February 17, 2023 01:17
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 6903f11 to b6ddb1e Compare February 24, 2023 03:05
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 3 times, most recently from 9baada2 to 96d479c Compare March 14, 2023 00:21
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from f9af4b5 to 42f0bde Compare March 22, 2023 00:14
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from 1c2b889 to 3356d12 Compare March 26, 2023 03:57
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 11 times, most recently from e087271 to 02dafad Compare April 21, 2023 11:14
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 5 times, most recently from 47db4c4 to be445f5 Compare April 28, 2023 13:33
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from be445f5 to 22605be Compare May 4, 2023 23:25
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 2 times, most recently from 133ef1c to bc19169 Compare May 18, 2023 23:46
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 3 times, most recently from 84a92bb to aec39bb Compare May 27, 2023 04:56
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from aec39bb to cbaed74 Compare June 5, 2023 18:24
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch 3 times, most recently from f6bfc69 to 31a5519 Compare June 20, 2023 05:17
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 31a5519 to 78e8a6d Compare June 21, 2023 22:00
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from 270c416 to e6cdfd4 Compare June 29, 2023 23:46
@renovate renovate bot force-pushed the renovate/aws-amplify-5.x branch from e6cdfd4 to d012d7e Compare July 2, 2023 09:35
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