-
-
Notifications
You must be signed in to change notification settings - Fork 673
Run yarn upgrade, after treating some deps individually.
#4789
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
bf31d81
deps: Finish a recent Sentry sdk upgrade by updating the CocoaPod.
chrisbobbe 0f5fe03
Revert "postinstall: Don't run `pod install` unless it's necessary."
chrisbobbe 2f575d5
android build: Upgrade Android Gradle Plugin to 3.5.4.
chrisbobbe d48ad71
deps: Sync react-dom's range with react's.
chrisbobbe 727016c
deps: Add caret in react-native-url-polyfill and upgrade.
chrisbobbe 74e1418
deps: Switch to expo-web-browser, from stale react-native-safari-view.
chrisbobbe f9a20ca
deps: Upgrade react-intl to 5.20.1, the latest.
chrisbobbe 04592ee
deps: Put an explicit upper bound on react-native-vector-icons.
chrisbobbe 08f74e6
deps: Upgrade react-native-image-picker; use tilde.
chrisbobbe 9e64279
deps: Upgrade flow-typed.
chrisbobbe 9501761
deps: Upgrade prettier.
chrisbobbe 78a7763
deps: Run `yarn upgrade`.
chrisbobbe 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,144 @@ | ||
| /** | ||
| * Flowtype definitions for WebBrowser | ||
| * Generated by Flowgen from a Typescript Definition | ||
| * Flowgen v1.14.1 | ||
| */ | ||
|
|
||
| declare module 'expo-web-browser' { | ||
| import type { | ||
| WebBrowserAuthSessionResult, | ||
| WebBrowserCoolDownResult, | ||
| WebBrowserCustomTabsResults, | ||
| WebBrowserMayInitWithUrlResult, | ||
| WebBrowserOpenOptions, | ||
| WebBrowserRedirectResult, | ||
| WebBrowserResult, | ||
| WebBrowserResultType, | ||
| WebBrowserWarmUpResult, | ||
| WebBrowserWindowFeatures, | ||
| } from 'expo-web-browser/build/WebBrowser.types'; | ||
|
|
||
| declare export * from './WebBrowser.types' | ||
| declare export function getCustomTabsSupportingBrowsersAsync(): Promise<WebBrowserCustomTabsResults>; | ||
| declare export function warmUpAsync(browserPackage?: string): Promise<WebBrowserWarmUpResult>; | ||
| declare export function mayInitWithUrlAsync( | ||
| url: string, | ||
| browserPackage?: string, | ||
| ): Promise<WebBrowserMayInitWithUrlResult>; | ||
| declare export function coolDownAsync(browserPackage?: string): Promise<WebBrowserCoolDownResult>; | ||
| declare export function openBrowserAsync( | ||
| url: string, | ||
| browserParams?: WebBrowserOpenOptions, | ||
| ): Promise<WebBrowserResult>; | ||
| declare export function dismissBrowser(): void; | ||
| declare export function openAuthSessionAsync( | ||
| url: string, | ||
| redirectUrl: string, | ||
| browserParams?: WebBrowserOpenOptions, | ||
| ): Promise<WebBrowserAuthSessionResult>; | ||
| declare export function dismissAuthSession(): void; | ||
|
|
||
| /** | ||
| * Attempts to complete an auth session in the browser. | ||
| * @param options | ||
| */ | ||
| declare export function maybeCompleteAuthSession(options?: { | ||
| skipRedirectCheck?: boolean, | ||
| ... | ||
| }): { | ||
| type: 'success' | 'failed', | ||
| message: string, | ||
| ... | ||
| }; | ||
| } | ||
|
|
||
| declare module 'expo-web-browser/build/WebBrowser.types' { | ||
| declare export type RedirectEvent = { | ||
| url: string, | ||
| ... | ||
| }; | ||
| declare export type WebBrowserWindowFeatures = { | ||
| [key: string]: number | boolean | string, | ||
| ..., | ||
| }; | ||
| declare export type WebBrowserOpenOptions = { | ||
| /** | ||
| * Color of the toolbar in either #AARRGGBB or #RRGGBB format. | ||
| */ | ||
| toolbarColor?: string, | ||
| browserPackage?: string, | ||
|
|
||
| /** | ||
| * Whether the toolbar should be hiding when a user scrolls the website. | ||
| */ | ||
| enableBarCollapsing?: boolean, | ||
|
|
||
| /** | ||
| * Android only | ||
| */ | ||
| /** | ||
| * Color of the secondary toolbar in either #AARRGGBB or #RRGGBB format. | ||
| */ | ||
| secondaryToolbarColor?: string, | ||
|
|
||
| /** | ||
| * Whether the browser should show the title of website on the toolbar. | ||
| */ | ||
| showTitle?: boolean, | ||
| enableDefaultShareMenuItem?: boolean, | ||
|
|
||
| /** | ||
| * Whether browsed website should be shown as separate entry in Android recents/multitasking view. | ||
| * Default: `false` | ||
| */ | ||
| showInRecents?: boolean, | ||
|
|
||
| /** | ||
| * iOS only | ||
| */ | ||
| controlsColor?: string, | ||
| dismissButtonStyle?: 'done' | 'close' | 'cancel', | ||
| readerMode?: boolean, | ||
|
|
||
| /** | ||
| * **Web:** name to assign to the popup window. | ||
| */ | ||
| windowName?: string, | ||
|
|
||
| /** | ||
| * **Web:** features to use with `window.open()` | ||
| */ | ||
| windowFeatures?: string | WebBrowserWindowFeatures, | ||
| ... | ||
| }; | ||
| declare export type WebBrowserAuthSessionResult = WebBrowserRedirectResult | WebBrowserResult; | ||
| declare export type WebBrowserCustomTabsResults = { | ||
| defaultBrowserPackage?: string, | ||
| preferredBrowserPackage?: string, | ||
| browserPackages: string[], | ||
| servicePackages: string[], | ||
| ... | ||
| }; | ||
| declare export var WebBrowserResultType: {| | ||
| +CANCEL: 'cancel', // "cancel" | ||
| +DISMISS: 'dismiss', // "dismiss" | ||
| +OPENED: 'opened', // "opened" | ||
| +LOCKED: 'locked', // "locked" | ||
| |}; | ||
| declare export type WebBrowserResult = { | ||
| type: $Values<typeof WebBrowserResultType>, | ||
| ... | ||
| }; | ||
| declare export type WebBrowserRedirectResult = { | ||
| type: 'success', | ||
| url: string, | ||
| ... | ||
| }; | ||
| declare export type ServiceActionResult = { | ||
| servicePackage?: string, | ||
| ... | ||
| }; | ||
| declare export type WebBrowserMayInitWithUrlResult = ServiceActionResult; | ||
| declare export type WebBrowserWarmUpResult = ServiceActionResult; | ||
| declare export type WebBrowserCoolDownResult = ServiceActionResult; | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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.
Any ideas/plans on how to fix this in general?
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.
Hmm. I think I'll revert 683f387 for now, and ponder a better fix later.