Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump more native deps (#7129)

* Undo expo modules patch

* Upgrade expo modules release

* Patch facebook/react-native#46944

* Remove explicit prebuild config dep

* Bump to rm duplicates

authored by

dan and committed by
GitHub
3ed237b6 21c28827

+135 -116
+3 -4
package.json
··· 120 120 "emoji-mart": "^5.5.2", 121 121 "emoji-regex": "^10.4.0", 122 122 "eventemitter3": "^5.0.1", 123 - "expo": "~52.0.17", 123 + "expo": "~52.0.19", 124 124 "expo-application": "^6.0.1", 125 125 "expo-blur": "^14.0.1", 126 126 "expo-build-properties": "^0.13.1", ··· 128 128 "expo-clipboard": "^7.0.0", 129 129 "expo-dev-client": "^5.0.4", 130 130 "expo-device": "~7.0.1", 131 - "expo-file-system": "^18.0.4", 131 + "expo-file-system": "^18.0.6", 132 132 "expo-font": "~13.0.1", 133 133 "expo-haptics": "^14.0.0", 134 134 "expo-image": "~2.0.3", ··· 141 141 "expo-navigation-bar": "~4.0.4", 142 142 "expo-notifications": "~0.29.11", 143 143 "expo-sharing": "^13.0.0", 144 - "expo-splash-screen": "~0.29.16", 144 + "expo-splash-screen": "~0.29.18", 145 145 "expo-status-bar": "~2.0.0", 146 146 "expo-system-ui": "^4.0.4", 147 147 "expo-task-manager": "~12.0.3", ··· 213 213 "@babel/runtime": "^7.26.0", 214 214 "@did-plc/server": "^0.0.1", 215 215 "@expo/config-plugins": "9.0.10", 216 - "@expo/prebuild-config": "8.0.22", 217 216 "@lingui/cli": "^4.14.1", 218 217 "@lingui/macro": "^4.14.1", 219 218 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
patches/expo-modules-core+2.1.1.md patches/expo-modules-core+2.1.2.md
-35
patches/expo-modules-core+2.1.1.patch
··· 1 - diff --git a/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt b/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 2 - index 47c4d15..afe138d 100644 3 - --- a/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 4 - +++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 5 - @@ -125,6 +125,10 @@ internal fun peekResponseBody( 6 - } 7 - 8 - internal fun shouldParseBody(response: Response): Boolean { 9 - + if (response.request.url.encodedPath == "/bitdrift_public.protobuf.client.v1.ApiService/Mux") { 10 - + return false 11 - + } 12 - + 13 - // Check for Content-Type 14 - val skipContentTypes = listOf( 15 - "text/event-stream", // Server Sent Events 16 - diff --git a/node_modules/expo-modules-core/src/uuid/uuid.ts b/node_modules/expo-modules-core/src/uuid/uuid.ts 17 - index 148beac..fabdff5 100644 18 - --- a/node_modules/expo-modules-core/src/uuid/uuid.ts 19 - +++ b/node_modules/expo-modules-core/src/uuid/uuid.ts 20 - @@ -5,6 +5,7 @@ const nativeUuidv4 = globalThis?.expo?.uuidv4; 21 - const nativeUuidv5 = globalThis?.expo?.uuidv5; 22 - 23 - function uuidv4(): string { 24 - + const nativeUuidv4 = globalThis?.expo?.uuidv4; 25 - if (!nativeUuidv4) { 26 - throw Error( 27 - "Native UUID version 4 generator implementation wasn't found in `expo-modules-core`" 28 - @@ -23,6 +24,7 @@ function uuidv5(name: string, namespace: string | number[]) { 29 - throw new Error('`namespace` must be a valid UUID string or an Array of 16 byte values'); 30 - } 31 - 32 - + const nativeUuidv5 = globalThis?.expo?.uuidv5; 33 - if (!nativeUuidv5) { 34 - throw Error("Native UUID type 5 generator implementation wasn't found in `expo-modules-core`"); 35 - }
+15
patches/expo-modules-core+2.1.2.patch
··· 1 + diff --git a/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt b/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 2 + index 47c4d15..afe138d 100644 3 + --- a/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 4 + +++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/kotlin/devtools/ExpoNetworkInspectOkHttpInterceptors.kt 5 + @@ -125,6 +125,10 @@ internal fun peekResponseBody( 6 + } 7 + 8 + internal fun shouldParseBody(response: Response): Boolean { 9 + + if (response.request.url.encodedPath == "/bitdrift_public.protobuf.client.v1.ApiService/Mux") { 10 + + return false 11 + + } 12 + + 13 + // Check for Content-Type 14 + val skipContentTypes = listOf( 15 + "text/event-stream", // Server Sent Events
+36 -1
patches/react-native+0.76.3.patch
··· 222 222 { 223 223 [self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) { 224 224 diff --git a/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m b/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m 225 - index e9ce48c..ccd9ad6 100644 225 + index e9ce48c..84a6fca 100644 226 226 --- a/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m 227 227 +++ b/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m 228 228 @@ -159,26 +159,8 @@ - (BOOL)touchesShouldCancelInContentView:(__unused UIView *)view ··· 329 329 } 330 330 } 331 331 332 + @@ -1055,6 +1082,22 @@ -(type)getter \ 333 + RCT_SET_AND_PRESERVE_OFFSET(setShowsVerticalScrollIndicator, showsVerticalScrollIndicator, BOOL) 334 + RCT_SET_AND_PRESERVE_OFFSET(setZoomScale, zoomScale, CGFloat); 335 + 336 + +- (void)setScrollIndicatorInsets:(UIEdgeInsets)value 337 + +{ 338 + + [_scrollView setScrollIndicatorInsets:value]; 339 + +} 340 + + 341 + +- (UIEdgeInsets)scrollIndicatorInsets 342 + +{ 343 + + UIEdgeInsets verticalScrollIndicatorInsets = [_scrollView verticalScrollIndicatorInsets]; 344 + + UIEdgeInsets horizontalScrollIndicatorInsets = [_scrollView horizontalScrollIndicatorInsets]; 345 + + return UIEdgeInsetsMake( 346 + + verticalScrollIndicatorInsets.top, 347 + + horizontalScrollIndicatorInsets.left, 348 + + verticalScrollIndicatorInsets.bottom, 349 + + horizontalScrollIndicatorInsets.right); 350 + +} 351 + + 352 + - (void)setAutomaticallyAdjustsScrollIndicatorInsets:(BOOL)automaticallyAdjusts API_AVAILABLE(ios(13.0)) 353 + { 354 + // `automaticallyAdjustsScrollIndicatorInsets` is available since iOS 13. 355 + diff --git a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m 356 + index cd1e7eb..c1d0172 100644 357 + --- a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m 358 + +++ b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m 359 + @@ -83,6 +83,7 @@ - (UIView *)view 360 + RCT_EXPORT_VIEW_PROPERTY(scrollEventThrottle, NSTimeInterval) 361 + RCT_EXPORT_VIEW_PROPERTY(zoomScale, CGFloat) 362 + RCT_EXPORT_VIEW_PROPERTY(contentInset, UIEdgeInsets) 363 + +RCT_EXPORT_VIEW_PROPERTY(scrollIndicatorInsets, UIEdgeInsets) 364 + RCT_EXPORT_VIEW_PROPERTY(verticalScrollIndicatorInsets, UIEdgeInsets) 365 + RCT_EXPORT_VIEW_PROPERTY(scrollToOverflowEnabled, BOOL) 366 + RCT_EXPORT_VIEW_PROPERTY(snapToInterval, int)
+81 -76
yarn.lock
··· 3695 3695 mv "~2" 3696 3696 safe-json-stringify "~1" 3697 3697 3698 - "@expo/cli@0.22.3": 3699 - version "0.22.3" 3700 - resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.22.3.tgz#8dbcc9396abf01b2dd91fe7f34fc23fdd2d8cc7f" 3701 - integrity sha512-1HBtqInFDFHUJWzTJ1CJj5MR3JwvOiozmRUWF2kVQAeq/bKzSYM6We6B3XoZBM5XP6z6WtnrG87C7BjeW5E/cA== 3698 + "@expo/cli@0.22.6": 3699 + version "0.22.6" 3700 + resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.22.6.tgz#dc27b685d2252027549d839437c5285c7814ec3f" 3701 + integrity sha512-eDjCnc3uHl2+SJ6aZ5seK0FkMp0W12oAdSI4A/yV8ecYtXzG8X87sfKAISEWt44B4DqJ0a1LEqCD6Vtvc783Mg== 3702 3702 dependencies: 3703 3703 "@0no-co/graphql.web" "^1.0.8" 3704 3704 "@babel/runtime" "^7.20.0" ··· 3709 3709 "@expo/env" "~0.4.0" 3710 3710 "@expo/image-utils" "^0.6.0" 3711 3711 "@expo/json-file" "^9.0.0" 3712 - "@expo/metro-config" "~0.19.0" 3712 + "@expo/metro-config" "~0.19.8" 3713 3713 "@expo/osascript" "^2.0.31" 3714 3714 "@expo/package-manager" "^1.5.0" 3715 3715 "@expo/plist" "^0.2.0" 3716 - "@expo/prebuild-config" "^8.0.22" 3716 + "@expo/prebuild-config" "^8.0.23" 3717 3717 "@expo/rudder-sdk-node" "^1.1.1" 3718 3718 "@expo/spawn-async" "^1.7.2" 3719 3719 "@expo/xcpretty" "^4.3.0" 3720 - "@react-native/dev-middleware" "0.76.3" 3720 + "@react-native/dev-middleware" "0.76.5" 3721 3721 "@urql/core" "^5.0.6" 3722 3722 "@urql/exchange-retry" "^1.3.0" 3723 3723 accepts "^1.3.8" ··· 3893 3893 dotenv-expand "~11.0.6" 3894 3894 getenv "^1.0.0" 3895 3895 3896 - "@expo/fingerprint@0.11.3": 3897 - version "0.11.3" 3898 - resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.11.3.tgz#e370ae8f83e0642f752b058e2102e984a0a5bc98" 3899 - integrity sha512-9lgXmcIePvZ7Wef63XtvuN3HfCUevF4E4tQPdEbH9/dUWwpOvvwQ3KT4OJ9jdh8JJ3nTdO9eDQ/8k8xr1aQ5Kg== 3896 + "@expo/fingerprint@0.11.4": 3897 + version "0.11.4" 3898 + resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.11.4.tgz#f40bbc784e10a065b783091e0d060a7428d41a7c" 3899 + integrity sha512-FfcvHjrWjOJ17wiMfr1iQ1YDyjlj8qfxG+GDce0khrjNSkzRjVdCOIFsMvfVSBPnOPX5NuZlgMRvMkcPUtGClA== 3900 3900 dependencies: 3901 3901 "@expo/spawn-async" "^1.7.2" 3902 3902 arg "^5.0.2" ··· 3948 3948 json5 "^2.2.3" 3949 3949 write-file-atomic "^2.3.0" 3950 3950 3951 - "@expo/metro-config@0.19.6": 3952 - version "0.19.6" 3953 - resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.19.6.tgz#81bbe70c77a322d6c688738fd7b736a3cbb7c5bd" 3954 - integrity sha512-pRwZyOstsQa1+Ecss3wOqC28wjyjq9qxvJaQL3LH4G8Sef9x2PX+ySRApeQ01nl4ZN5nlyez6iVDF51tn/WhOw== 3955 - dependencies: 3956 - "@babel/core" "^7.20.0" 3957 - "@babel/generator" "^7.20.5" 3958 - "@babel/parser" "^7.20.0" 3959 - "@babel/types" "^7.20.0" 3960 - "@expo/config" "~10.0.4" 3961 - "@expo/env" "~0.4.0" 3962 - "@expo/json-file" "~9.0.0" 3963 - "@expo/spawn-async" "^1.7.2" 3964 - chalk "^4.1.0" 3965 - debug "^4.3.2" 3966 - fs-extra "^9.1.0" 3967 - getenv "^1.0.0" 3968 - glob "^10.4.2" 3969 - jsc-safe-url "^0.2.4" 3970 - lightningcss "~1.27.0" 3971 - minimatch "^3.0.4" 3972 - postcss "~8.4.32" 3973 - resolve-from "^5.0.0" 3974 - 3975 - "@expo/metro-config@~0.19.0": 3976 - version "0.19.4" 3977 - resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.19.4.tgz#940b6fad7809a92a8ffdb1bbe87aa805f5822c6b" 3978 - integrity sha512-2SWwYN8MZvMIRawWEr+1RBYncitPwu2VMACRYig+wBycJ9fsPb6BMVmBYi+3MHDUlJHNy/Bqfw++jn1eqBFETQ== 3951 + "@expo/metro-config@0.19.8", "@expo/metro-config@~0.19.8": 3952 + version "0.19.8" 3953 + resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.19.8.tgz#f1ea552b6fa5217093fe364ff5ca78a7e261a28b" 3954 + integrity sha512-dVAOetouQYuOTEJ2zR0OTLNPOH6zPkeEt5fY53TK0Wxi1QmtsmH6vEWg05U4zkSJ6f1aXmQ0Za77R8QxuukESA== 3979 3955 dependencies: 3980 3956 "@babel/core" "^7.20.0" 3981 3957 "@babel/generator" "^7.20.5" ··· 4031 4007 base64-js "^1.2.3" 4032 4008 xmlbuilder "^14.0.0" 4033 4009 4034 - "@expo/prebuild-config@8.0.22", "@expo/prebuild-config@^8.0.22": 4035 - version "8.0.22" 4036 - resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-8.0.22.tgz#6e2762a5f333a0519f83ae05b69da45e3e26a913" 4037 - integrity sha512-Kwlf3ymHH37W2nuNA9FzYgZvrImJScLA98939kapnOxfNGAPhmhEw26sfIGmBWAa8ymdL6p+HXQ3+b/xJ74bOg== 4010 + "@expo/prebuild-config@^8.0.23": 4011 + version "8.0.23" 4012 + resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-8.0.23.tgz#2ec6d5464f35d308bdb94ba75b7e6aba0ebb507d" 4013 + integrity sha512-Zf01kFiN2PISmLb0DhIAJh76v3J2oYUKSjiAtGZLOH0HUz59by/qdyU4mGHWdeyRdCCrLUA21Rct2MBykvRMsg== 4038 4014 dependencies: 4039 4015 "@expo/config" "~10.0.4" 4040 4016 "@expo/config-plugins" "~9.0.10" 4041 4017 "@expo/config-types" "^52.0.0" 4042 4018 "@expo/image-utils" "^0.6.0" 4043 4019 "@expo/json-file" "^9.0.0" 4044 - "@react-native/normalize-colors" "0.76.3" 4020 + "@react-native/normalize-colors" "0.76.5" 4045 4021 debug "^4.3.1" 4046 4022 fs-extra "^9.0.0" 4047 4023 resolve-from "^5.0.0" ··· 5616 5592 dependencies: 5617 5593 "@react-native/codegen" "0.76.1" 5618 5594 5619 - "@react-native/babel-preset@0.76.1", "@react-native/babel-preset@0.76.3": 5595 + "@react-native/babel-preset@0.76.1", "@react-native/babel-preset@0.76.3", "@react-native/babel-preset@0.76.5": 5620 5596 version "0.76.1" 5621 5597 resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.76.1.tgz#2b9fd113e7c7889c1e87d6a36b7cb0f36118e7a6" 5622 5598 integrity sha512-b6YRmA13CmVuTQKHRen/Q0glHwmZFZoEDs+MJ1NL0UNHq9V5ytvdwTW1ntkmjtXuTnPMzkwYvumJBN9UTZjkBA== ··· 5717 5693 resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.76.3.tgz#531e616f6dad159a58117efc69cec20422d15b0d" 5718 5694 integrity sha512-pMHQ3NpPB28RxXciSvm2yD+uDx3pkhzfuWkc7VFgOduyzPSIr0zotUiOJzsAtrj8++bPbOsAraCeQhCqoOTWQw== 5719 5695 5696 + "@react-native/debugger-frontend@0.76.5": 5697 + version "0.76.5" 5698 + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.76.5.tgz#0e89940543fb5029506690b83f12547d0bf42cc4" 5699 + integrity sha512-5gtsLfBaSoa9WP8ToDb/8NnDBLZjv4sybQQj7rDKytKOdsXm3Pr2y4D7x7GQQtP1ZQRqzU0X0OZrhRz9xNnOqA== 5700 + 5720 5701 "@react-native/dev-middleware@0.76.3": 5721 5702 version "0.76.3" 5722 5703 resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.76.3.tgz#52edc76c88e0c2c436eb989551b827bf69f2a56f" ··· 5734 5715 serve-static "^1.13.1" 5735 5716 ws "^6.2.3" 5736 5717 5718 + "@react-native/dev-middleware@0.76.5": 5719 + version "0.76.5" 5720 + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.76.5.tgz#10d02fcc6c3c9d24f6dc147c2ef95d6fa6bd3787" 5721 + integrity sha512-f8eimsxpkvMgJia7POKoUu9uqjGF6KgkxX4zqr/a6eoR1qdEAWUd6PonSAqtag3PAqvEaJpB99gLH2ZJI1nDGg== 5722 + dependencies: 5723 + "@isaacs/ttlcache" "^1.4.1" 5724 + "@react-native/debugger-frontend" "0.76.5" 5725 + chrome-launcher "^0.15.2" 5726 + chromium-edge-launcher "^0.2.0" 5727 + connect "^3.6.5" 5728 + debug "^2.2.0" 5729 + nullthrows "^1.1.1" 5730 + open "^7.0.3" 5731 + selfsigned "^2.4.1" 5732 + serve-static "^1.13.1" 5733 + ws "^6.2.3" 5734 + 5737 5735 "@react-native/eslint-config@^0.76.2": 5738 5736 version "0.76.2" 5739 5737 resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.76.2.tgz#2741eee69ff194b8adc15281c0cb9695ba015ef0" ··· 5778 5776 hermes-parser "0.23.1" 5779 5777 nullthrows "^1.1.1" 5780 5778 5781 - "@react-native/normalize-colors@0.76.1", "@react-native/normalize-colors@0.76.3", "@react-native/normalize-colors@^0.73.0", "@react-native/normalize-colors@^0.74.1": 5779 + "@react-native/normalize-colors@0.76.1", "@react-native/normalize-colors@0.76.3", "@react-native/normalize-colors@0.76.5", "@react-native/normalize-colors@^0.73.0", "@react-native/normalize-colors@^0.74.1": 5782 5780 version "0.76.1" 5783 5781 resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.76.1.tgz#df8d54d78917a9f075283382fec834f5ccaecefd" 5784 5782 integrity sha512-/+CUk/wGWIdXbJYVLw/q6Fs8Z0x91zzfXIbNiZUdSW1TNEDmytkF371H8a1/Nx3nWa1RqCMVsaZHCG4zqxeDvg== ··· 8088 8086 babel-plugin-react-native-web "~0.19.13" 8089 8087 react-refresh "^0.14.2" 8090 8088 8091 - babel-preset-expo@~12.0.3: 8092 - version "12.0.3" 8093 - resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-12.0.3.tgz#2ad62fe007517704841788cfea38b333e307663f" 8094 - integrity sha512-1695e8y3U/HjifKx33vcNnFMSUSXwPWwhFxRlL6NRx2TENN6gySH82gPOWgxcra6gi+EJgXx52xG3PcqTjwW6w== 8089 + babel-preset-expo@~12.0.4: 8090 + version "12.0.4" 8091 + resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-12.0.4.tgz#ec965530d866c8905aac1fa478562cb08ab32a55" 8092 + integrity sha512-SAzAwqpyjA+/OFrU95OOioj6oTeCv4+rRfrNmBTy5S/gJswrZKBSPJioFudIaJBy43W+BL7HA5AspBIF6tO/aA== 8095 8093 dependencies: 8096 8094 "@babel/plugin-proposal-decorators" "^7.12.9" 8097 8095 "@babel/plugin-transform-export-namespace-from" "^7.22.11" ··· 8099 8097 "@babel/plugin-transform-parameters" "^7.22.15" 8100 8098 "@babel/preset-react" "^7.22.15" 8101 8099 "@babel/preset-typescript" "^7.23.0" 8102 - "@react-native/babel-preset" "0.76.3" 8100 + "@react-native/babel-preset" "0.76.5" 8103 8101 babel-plugin-react-native-web "~0.19.13" 8104 8102 react-refresh "^0.14.2" 8105 8103 ··· 10455 10453 resolved "https://registry.yarnpkg.com/expo-eas-client/-/expo-eas-client-0.13.1.tgz#ebca627f3f58a54906394eb3f5d22f41a1822618" 10456 10454 integrity sha512-IyeDiM6YSJG0c45kbuEo0qt76z0KTEZtisEFEtle+b+vfn9I3N+r3jbPscaI4yS3P6gpuoDyHv81YDVC6Dmkhw== 10457 10455 10458 - expo-file-system@^18.0.4, expo-file-system@~18.0.4: 10459 - version "18.0.4" 10460 - resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.0.4.tgz#eecf8dc0b3b545e9ac5cd00352665afe2d57732f" 10461 - integrity sha512-aAWEDwnu0XHOBYvQ9Q0+QIa+483vYJaC4IDsXyWQ73Rtsg273NZh5kYowY+cAocvoSmA99G6htrLBn11ax2bTQ== 10456 + expo-file-system@^18.0.6, expo-file-system@~18.0.6: 10457 + version "18.0.6" 10458 + resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.0.6.tgz#43f7718530d0e2aa1f49bca7ccb721007acabf2c" 10459 + integrity sha512-gGEwIJCXV3/wpIJ/wRyhmieLOSAY7HeFFjb+wEfHs04aE63JYR+rXXV4b7rBpEh1ZgNV9U91zfet/iQG7J8HBQ== 10462 10460 dependencies: 10463 10461 web-streams-polyfill "^3.3.2" 10464 10462 ··· 10541 10539 resolved "https://registry.yarnpkg.com/expo-media-library/-/expo-media-library-17.0.3.tgz#4ee3e6a8a2544887d910a72eaf2a15858b78cc0e" 10542 10540 integrity sha512-vo8AqWxv1C8+U8dA5W43qs8+3dgD3VZDvcCkZBQTBnGr/2Rs7x6nNQD5s7UfYyr6qmW6102JB3+OUKHpkwEssg== 10543 10541 10544 - expo-modules-autolinking@2.0.3: 10545 - version "2.0.3" 10546 - resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-2.0.3.tgz#c0de0129bedf1b6f9aa36093e435d00509f27fcd" 10547 - integrity sha512-Q/ALJ54eS7Cr7cmbP+unEDTkHFQivQerWWrqZxuXOrSFYGCYU22+/xAZXaJOpZwseOVsP74zSkoRY/wBimVs7w== 10542 + expo-modules-autolinking@2.0.4: 10543 + version "2.0.4" 10544 + resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-2.0.4.tgz#28fcd12fb0d066a2933cca3bf3b597da0f6b2f2a" 10545 + integrity sha512-e0p+19NhmD50U7s7BV7kWIypWmTNC9n/VlJKlXS05hM/zX7pe6JKmXyb+BFnXJq3SLBalLCUY0tu2gEUF3XeVg== 10548 10546 dependencies: 10549 10547 "@expo/spawn-async" "^1.7.2" 10550 10548 chalk "^4.1.0" ··· 10555 10553 require-from-string "^2.0.2" 10556 10554 resolve-from "^5.0.0" 10557 10555 10558 - expo-modules-core@2.1.1, expo-modules-core@^2.1.1: 10556 + expo-modules-core@2.1.2: 10557 + version "2.1.2" 10558 + resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.1.2.tgz#258be4fbd162b69eb4ad2789131ac2dc7e85fc08" 10559 + integrity sha512-0OhMU5S8zf9c/CRh1MwiXfOInI9wzz6yiIh5RuR/9J7N6xHRum68hInsPbaSc1UQpo08ZZLM4MPsbpoNRUoqIg== 10560 + dependencies: 10561 + invariant "^2.2.4" 10562 + 10563 + expo-modules-core@^2.1.1: 10559 10564 version "2.1.1" 10560 10565 resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.1.1.tgz#970af4cfd70c8aa6fc0096dd0a6578aa003a479f" 10561 10566 integrity sha512-yQzYCLR2mre4BNMXuqkeJ0oSNgmGEMI6BcmIzeNZbC2NFEjiaDpKvlV9bclYCtyVhUEVNbJcEPYMr6c1Y4eR4w== ··· 10598 10603 resolved "https://registry.yarnpkg.com/expo-sharing/-/expo-sharing-13.0.0.tgz#fbc46f4afdaa265a2811fe88c2a589aae2d2de0f" 10599 10604 integrity sha512-b23ymicRmYn/Pjj05sl9tFZHN5cH9I1f0yiqY1Yk8Q3oCx0Aznri82DnTYA4T/J6D9vrkraX0wQ4jWVMOffmlg== 10600 10605 10601 - expo-splash-screen@~0.29.16: 10602 - version "0.29.16" 10603 - resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.29.16.tgz#80b49af2605213e661a40022d724caa1ea48ccb3" 10604 - integrity sha512-1WnExDA23hEJhz+djUthVUWxUvVtDT9sqRrpCgU4srG2OfBN0NryJ+Fbnoc1V2xw2uYc4Ij3ru0nH9a1TNvW9w== 10606 + expo-splash-screen@~0.29.18: 10607 + version "0.29.18" 10608 + resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.29.18.tgz#96ccce3d5a03389a9061743903b0a77c22a16796" 10609 + integrity sha512-bTBY+LF6YtYen2j60yGNh2SX/tG4UXZAyBCMMriOSiZZ7LSCs3ARyEufaSiWk+ckWShTeMqItOnaAN/CAF8MJA== 10605 10610 dependencies: 10606 - "@expo/prebuild-config" "^8.0.22" 10611 + "@expo/prebuild-config" "^8.0.23" 10607 10612 10608 10613 expo-status-bar@~2.0.0: 10609 10614 version "2.0.0" ··· 10660 10665 resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-14.0.1.tgz#97f3f141b0897364bc8364d90d6e29df0beec8aa" 10661 10666 integrity sha512-QM9F3ie+UyIOoBvqFmT6CZojb1vMc2H+7ZlMT5dEu1PL2jtYyOeK2hLfbt/EMt7CBm/w+P29H9W9Y9gdebOkuQ== 10662 10667 10663 - expo@~52.0.17: 10664 - version "52.0.17" 10665 - resolved "https://registry.yarnpkg.com/expo/-/expo-52.0.17.tgz#8a3edc20dabdb69a47f7b4b92e1bb96284044c14" 10666 - integrity sha512-f0WBD2T6p9r/a8v8MqkoWQq7TmbbAgPUg2zZtOp+kBrSCb3obHeNAsPDAUFzh+jEgug2qDVVkauBJa6ACe9AMg== 10668 + expo@~52.0.19: 10669 + version "52.0.19" 10670 + resolved "https://registry.yarnpkg.com/expo/-/expo-52.0.19.tgz#1b881c96ea595da0c5f3c13f578bc368c5261f4a" 10671 + integrity sha512-wOb/wbiQa0xqQRhgVBuOhLRus05TSw6fgThVMrPQgdLo24EPuT/ZAiRVcVRdjrEbwOqCDumgQCB7636B9J+jKg== 10667 10672 dependencies: 10668 10673 "@babel/runtime" "^7.20.0" 10669 - "@expo/cli" "0.22.3" 10674 + "@expo/cli" "0.22.6" 10670 10675 "@expo/config" "~10.0.6" 10671 10676 "@expo/config-plugins" "~9.0.12" 10672 - "@expo/fingerprint" "0.11.3" 10673 - "@expo/metro-config" "0.19.6" 10677 + "@expo/fingerprint" "0.11.4" 10678 + "@expo/metro-config" "0.19.8" 10674 10679 "@expo/vector-icons" "^14.0.0" 10675 - babel-preset-expo "~12.0.3" 10680 + babel-preset-expo "~12.0.4" 10676 10681 expo-asset "~11.0.1" 10677 10682 expo-constants "~17.0.3" 10678 - expo-file-system "~18.0.4" 10683 + expo-file-system "~18.0.6" 10679 10684 expo-font "~13.0.1" 10680 10685 expo-keep-awake "~14.0.1" 10681 - expo-modules-autolinking "2.0.3" 10682 - expo-modules-core "2.1.1" 10686 + expo-modules-autolinking "2.0.4" 10687 + expo-modules-core "2.1.2" 10683 10688 fbemitter "^3.0.0" 10684 10689 web-streams-polyfill "^3.3.2" 10685 10690 whatwg-url-without-unicode "8.0.0-3"