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

Update dependency @aws-amplify/datastore to v5 #425

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-amplify/datastore (source) 3.12.12 -> 5.0.35 age adoption passing confidence

Release Notes

aws-amplify/amplify-js (@​aws-amplify/datastore)

v5.0.35

Compare Source

v5.0.34

Compare Source

v5.0.33

Compare Source

v5.0.32

Compare Source

v5.0.31

Compare Source

v5.0.30

Compare Source

v5.0.29

Compare Source

v5.0.28

Compare Source

v5.0.27

Compare Source

v5.0.26

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

Compare Source

v5.0.22

Compare Source

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

Compare Source

v5.0.19: 2023-03-13 Amplify JS release - [email protected]

Compare Source

What's Changed

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

v5.0.18: 2023-03-07 Amplify JS release - [email protected]

Compare Source

What's Changed

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

v5.0.17: 2023-03-06 Amplify JS release - aws - [email protected]

Compare Source

What's Changed

New Contributors

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

v5.0.16: 2023-02-23 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.16

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: 2023-01-13 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.10

v5.0.9: 2023-01-09 Amplify JS release - [email protected]

Compare Source

What's Changed

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

v5.0.8: 2022-12-27 Amplify JS release - [email protected]

Compare Source

What's Changed

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

v5.0.7

Compare Source

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

Compare Source

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

Compare Source

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

v4.7.12

Compare Source

v4.7.11

Compare Source

v4.7.10

Compare Source

v4.7.9

Compare Source

v4.7.8

Compare Source

v4.7.7

Compare Source

v4.7.6

Compare Source

v4.7.5

Compare Source

v4.7.4

Compare Source

v4.7.3

Compare Source

v4.7.2

Compare Source

v4.7.1

Compare Source

v4.7.0

Compare Source

v4.6.5

Compare Source

v4.6.4

Compare Source

v4.6.3

Compare Source

v4.6.2

Compare Source

v4.6.1

Compare Source

v4.6.0

Compare Source

v4.5.1

Compare Source

v4.5.0

Compare Source

v4.4.1

Compare Source

v4.4.0

Compare Source

v4.3.0

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.11

Compare Source

v4.1.10

Compare Source

v4.1.9

Compare Source

v4.1.8

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.17

Compare Source

v4.0.16

Compare Source

v4.0.15

Compare Source

v4.0.14

Compare Source

v4.0.13

Compare Source

v4.0.12

Compare Source

v4.0.11

Compare Source

v4.0.10

Compare Source

v4.0.9

Compare Source

v4.0.8

Compare Source

v4.0.7

Compare Source

v4.0.6

Compare Source

v4.0.5

Compare Source

v4.0.4

[Compare Source](https://togithub.com/aws-amplify/amplify-js/compare/@aws-amplify/[email protected]...@aws-amplify/d


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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-datastore-5.x branch 3 times, most recently from ec08820 to ed05151 Compare November 21, 2023 02:14
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 2 times, most recently from 31b6b15 to 922e1c4 Compare November 29, 2023 12:51
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from 922e1c4 to 0bbdfd2 Compare December 5, 2023 19:03
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 2 times, most recently from 2c61e74 to c7a08dc Compare December 19, 2023 00:50
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from c7a08dc to 0ec0682 Compare December 22, 2023 03:17
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 3 times, most recently from 417cf20 to 2be0ad2 Compare January 12, 2024 01:13
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from 2be0ad2 to 0f51651 Compare January 23, 2024 01:14
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 17 times, most recently from bc344f1 to 21bf6fc Compare February 3, 2024 15:04
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 7 times, most recently from d14b8f5 to c2184cd Compare February 20, 2024 01:44
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 2 times, most recently from 6736d1c to fbd6a8e Compare March 5, 2024 19:13
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 6 times, most recently from 1f29850 to 58df12f Compare March 15, 2024 10:33
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 2 times, most recently from 37f3c22 to b391b0d Compare March 25, 2024 23:18
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 4 times, most recently from 1a7ce30 to ade2cdd Compare April 3, 2024 00:08
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from ade2cdd to 7c7b553 Compare April 9, 2024 22:30
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 3 times, most recently from 04a0231 to 6bf3b28 Compare April 29, 2024 20:12
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch 2 times, most recently from fa7a3eb to 3022885 Compare May 13, 2024 21:02
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from 3022885 to cb1977d Compare May 23, 2024 00:48
@renovate renovate bot force-pushed the renovate/aws-amplify-datastore-5.x branch from cb1977d to 0c9a5b6 Compare May 23, 2024 23:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
0 participants