-
Notifications
You must be signed in to change notification settings - Fork 249
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
feat(api): Subscription Reconnection #2074
Merged
Equartey
merged 53 commits into
aws-amplify:feat/api-next
from
Equartey:feat/graphql-sub-reconnect
Sep 30, 2022
Merged
Changes from 18 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
110672a
chore!(api): migrate API category type definitions (#1640)
66d99bf
chore(api): API Native Bridge for .addPlugin() (#1756)
Equartey 2ff8e51
chore(api): API Pigeon update (#1813)
Equartey f4211af
feat(api): REST methods in dart with auth mode none (#1783)
5608b59
feat!(api): GraphQL API key auth mode (#1858)
Equartey 985b045
feat!(core,auth): auth providers definition and CognitoIamAuthProvide…
7b6ce8e
feat(core,api): IAM auth mode for HTTP requests (REST and GQL) (#1893)
cb6fbdb
feat(api): GraphQL Custom Request Headers (#1938)
Equartey a1e8d9d
feat(auth,api): cognito user pools auth provider & auth mode for API …
3ac59f4
fix(auth): correct auth providers imports from rebase (#2042)
4009458
feat(api): .subscribe() for GraphQL (#1915)
48c9582
chore(api): Api Example - generate files for multi-plaform (#2080)
Equartey bef7f19
feat(api): Subscription Reconnection
Equartey fcc53a0
fix: unexposed retryTimeout
Equartey 32178ca
fix: more robust uri replacement
Equartey 8bc47dd
fix: syntax errors
Equartey 826d470
fix: code review feedback 1
Equartey b786902
fix: export retry package
Equartey 2abff51
fix: Hub Event errors
Equartey 80aa0d5
fix: typos & PR comments
Equartey 7fc1cea
fix: review comments
Equartey ff85ce2
fix: hub events types
Equartey 9ddea6b
chore!(api): migrate API category type definitions (#1640)
8e52487
chore(api): API Native Bridge for .addPlugin() (#1756)
Equartey 4941901
chore(api): API Pigeon update (#1813)
Equartey e780b22
feat(api): REST methods in dart with auth mode none (#1783)
daaff32
feat!(api): GraphQL API key auth mode (#1858)
Equartey d2bafc9
feat!(core,auth): auth providers definition and CognitoIamAuthProvide…
d6f6405
feat(core,api): IAM auth mode for HTTP requests (REST and GQL) (#1893)
d6d6019
feat(api): GraphQL Custom Request Headers (#1938)
Equartey 5829de8
feat(auth,api): cognito user pools auth provider & auth mode for API …
f6c1c1b
fix(auth): correct auth providers imports from rebase (#2042)
2e05c6f
feat(api): .subscribe() for GraphQL (#1915)
3cae1e9
fix: unit & integ tests passing
Equartey e411b69
Merge branch 'feat/api-next' into feat/graphql-sub-reconnect
Equartey ea0950e
fix: removed dup var
Equartey 76d9907
chore(api): Api Example - generate files for multi-plaform (#2080)
Equartey 50f878e
Merge branch 'feat/api-next' into feat/graphql-sub-reconnect
Equartey e721775
Merge branch 'next' into feat/api-next
Equartey 85c4227
Merge branch 'feat/api-next' into feat/graphql-sub-reconnect
Equartey e6230c5
chore(api): Refactor http client & cancelable operation (#2119)
Equartey 12de4f0
Merge branch 'feat/api-next' into feat/graphql-sub-reconnect
Equartey 5431552
fix: unit tests sans-reconnect & hub events
Equartey c926e66
Merge branch 'feat/api-next' into feat/graphql-sub-reconnect
Equartey 426e0fa
Nothing gets past Travis 💪
Equartey 51e8917
Integration file clean up
Equartey 4aab1e1
missed two files
Equartey b8677e9
Removed http dep
Equartey 3264fc7
Types, Lints, overrides, and Passing Tests.
Equartey d3896e7
Fixed pingClient init value
Equartey 6b5bf50
fix: some nits
Equartey dc00c44
fix: some nits
Equartey b1f162b
fix: ios network none issue on second sub
Equartey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
# | ||
|
||
list(APPEND FLUTTER_PLUGIN_LIST | ||
connectivity_plus_windows | ||
) | ||
|
||
list(APPEND FLUTTER_FFI_PLUGIN_LIST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
# | ||
|
||
list(APPEND FLUTTER_PLUGIN_LIST | ||
connectivity_plus_windows | ||
) | ||
|
||
list(APPEND FLUTTER_FFI_PLUGIN_LIST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when I run
aft bs
I get similar file modifications inpackages/api/amplify_api/example/macos/Flutter/GeneratedPluginRegistrant.swift
. Should that be added as well?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I noticed some extra generated files didn't committed. Will include them next push 👍