Skip to content
This repository was archived by the owner on Sep 7, 2024. It is now read-only.

fix(deps): update dependency @aws-amplify/datastore to v5 (main) - #60

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-aws-amplify-datastore-5.x
Open

fix(deps): update dependency @aws-amplify/datastore to v5 (main)#60
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/main-aws-amplify-datastore-5.x

Conversation

@renovate

@renovate renovate Bot commented Nov 17, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

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

Release Notes

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

v5.0.49

Compare Source

v5.0.48

Compare Source

v5.0.47

Compare Source

v5.0.46

Compare Source

v5.0.45

Compare Source

v5.0.44

Compare Source

v5.0.43

Compare Source

v5.0.42

Compare Source

v5.0.41

Compare Source

v5.0.40

Compare Source

v5.0.39

Compare Source

v5.0.38

Compare Source

v5.0.37

Compare Source

v5.0.36

Compare Source

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 - aws-amplify@5.0.25

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.24...aws-amplify@5.0.25

v5.0.24: Amplify JS release - aws-amplify@5.0.24

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.23...aws-amplify@5.0.24

v5.0.23

Compare Source

v5.0.22

Compare Source

v5.0.21: 2023-03-21 Amplify JS release - aws-amplify@5.0.21

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.20...aws-amplify@5.0.21

v5.0.20

Compare Source

v5.0.19: 2023-03-13 Amplify JS release - aws-amplify@5.0.19

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/commits/aws-amplify@5.0.19

v5.0.18: 2023-03-07 Amplify JS release - aws-amplify@5.0.18

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/commits/aws-amplify@5.0.18

v5.0.17: 2023-03-06 Amplify JS release - aws - amplify@5.0.17

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.16...aws-amplify@5.0.17

v5.0.16: 2023-02-23 Amplify JS release - aws-amplify@5.0.16

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.15...aws-amplify@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 - aws-amplify@5.0.10

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.9...aws-amplify@5.0.10

v5.0.9: 2023-01-09 Amplify JS release - aws-amplify@5.0.9

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.8...aws-amplify@5.0.9

v5.0.8: 2022-12-27 Amplify JS release - aws-amplify@5.0.8

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.7...aws-amplify@5.0.8

v5.0.7

Compare Source

v5.0.6: 2022-12-14 Amplify JS release - aws-amplify@5.0.6

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.5...aws-amplify@5.0.6

v5.0.5

Compare Source

v5.0.4

Compare Source

v5.0.3: 2022-11-18 Amplify JS release - aws-amplify@5.0.3 Latest

Compare Source

What's Changed

Full Changelog: https://github.com/aws-amplify/amplify-js/compare/aws-amplify@5.0.2...aws-amplify@5.0.3

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0: 2022-11-14 Amplify JS release - aws-amplify@5.0.0

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/aws-amplify@4.3.43...aws-amplify@5.0.0

v4.7.13

Compare Source

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


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 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 was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from cee86b6 to 23d54a7 Compare November 22, 2023 21:51
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 23d54a7 to b946df4 Compare December 5, 2023 20:24
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from ff50646 to 4d49487 Compare December 19, 2023 01:39
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 4d49487 to 9638a08 Compare December 22, 2023 03:17
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from cb3fdf3 to 4d95f12 Compare January 10, 2024 19:58
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 4d95f12 to a1a0404 Compare January 12, 2024 00:55
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from a1a0404 to 9e8db13 Compare January 23, 2024 01:06
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 3 times, most recently from 4a2b672 to fad6cdf Compare February 6, 2024 22:43
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from fad6cdf to f227f10 Compare February 10, 2024 00:44
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from f227f10 to da2ece4 Compare February 20, 2024 01:54
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from da2ece4 to a6c0e42 Compare February 27, 2024 21:50
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from b3a48d0 to f7328e0 Compare March 12, 2024 02:16
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 3 times, most recently from 4ecbabf to 42f6d47 Compare March 26, 2024 02:11
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 4 times, most recently from 311b808 to dd0ed6b Compare April 3, 2024 00:21
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from dd0ed6b to 7ad3549 Compare April 9, 2024 23:19
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 3 times, most recently from 654ff5e to 5b4ccef Compare April 29, 2024 16:35
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 10 times, most recently from e9cc2f3 to 81b83c6 Compare May 2, 2024 08:09
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from a8ef2d4 to 1db3419 Compare May 13, 2024 18:24
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from 4dcf1b1 to 06147b7 Compare May 23, 2024 23:09
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from 17d4107 to b916e4b Compare June 7, 2024 03:42
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from b916e4b to 67ef063 Compare June 25, 2024 01:18
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 67ef063 to 1c4319d Compare July 9, 2024 01:28
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 3 times, most recently from 761a85d to 3d5649b Compare July 24, 2024 02:15
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from 220c004 to f82a87b Compare August 6, 2024 00:23
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from f82a87b to 4ce1339 Compare August 8, 2024 01:58
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch 2 times, most recently from 588b605 to 2e8d9d0 Compare August 21, 2024 22:23
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 2e8d9d0 to 60a270f Compare August 26, 2024 21:25
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from 60a270f to b3831f5 Compare September 3, 2024 22:10
@renovate
renovate Bot force-pushed the renovate/main-aws-amplify-datastore-5.x branch from b3831f5 to 245e3ca Compare September 4, 2024 22:49
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants