Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix video uploads on native (#7126)

* Fix duplicate expo-modules-core

* Patch expo/expo#33621

authored by

dan and committed by
GitHub
e4e5a589 b1b6affb

+29 -16
+1 -1
package.json
··· 76 76 "@lingui/react": "^4.14.1", 77 77 "@mattermost/react-native-paste-input": "^0.7.1", 78 78 "@miblanchard/react-native-slider": "^2.3.1", 79 - "@mozzius/expo-dynamic-app-icon": "^1.4.1", 79 + "@mozzius/expo-dynamic-app-icon": "^1.5.0", 80 80 "@radix-ui/react-dismissable-layer": "^1.1.1", 81 81 "@radix-ui/react-dropdown-menu": "2.0.1", 82 82 "@radix-ui/react-focus-guards": "^1.1.1",
+20
patches/expo-modules-core+2.1.1.patch
··· 13 13 // Check for Content-Type 14 14 val skipContentTypes = listOf( 15 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 + }
+8 -15
yarn.lock
··· 3962 3962 resolved "https://registry.yarnpkg.com/@expo/html-elements/-/html-elements-0.4.3.tgz#32b4ca05dd13582164ed1be34ae87e22adfd1d5b" 3963 3963 integrity sha512-UwEEdnpyhUEIDe/AkFSBUmCuwcknjAuu73fd5L9Rm/BbHczYXCrtyZmzCNVBsAiHhwUjmhNWzFlr9cAkp/sxIA== 3964 3964 3965 - "@expo/image-utils@0.3.23", "@expo/image-utils@0.6.3", "@expo/image-utils@^0.3.23", "@expo/image-utils@^0.6.0": 3965 + "@expo/image-utils@0.3.23", "@expo/image-utils@0.6.3", "@expo/image-utils@^0.6.0", "@expo/image-utils@^0.6.3": 3966 3966 version "0.6.3" 3967 3967 resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.6.3.tgz#89c744460beefc686989b969121357bbd5520c8a" 3968 3968 integrity sha512-v/JbCKBrHeudxn1gN1TgfPE/pWJSlLPrl29uXJBgrJFQVkViQvUHQNDhaS+UEa9wYI5HHh7XYmtzAehyG4L+GA== ··· 5090 5090 resolved "https://registry.yarnpkg.com/@miblanchard/react-native-slider/-/react-native-slider-2.3.1.tgz#79e0f1f9b1ce43ef25ee51ee9256c012e5dfa412" 5091 5091 integrity sha512-J/hZDBWmXq8fJeOnTVHqIUVDHshqMSpJVxJ4WqwuCBKl5Rke9OBYXIdkSlgi75OgtScAr8FKK5KNkDKHUf6JIg== 5092 5092 5093 - "@mozzius/expo-dynamic-app-icon@^1.4.1": 5094 - version "1.4.1" 5095 - resolved "https://registry.yarnpkg.com/@mozzius/expo-dynamic-app-icon/-/expo-dynamic-app-icon-1.4.1.tgz#245e54c31347e3ec2a1ce10f0df8cf07a0c1be6e" 5096 - integrity sha512-IiL6OiuW4kP5Jz/vrZ6U1t0m4gK1rW5VZAQzszdVcZy1cadX3EdR2/uA6jMU0qSwuesk028RhO6S0uBI9ckxBw== 5093 + "@mozzius/expo-dynamic-app-icon@^1.5.0": 5094 + version "1.5.0" 5095 + resolved "https://registry.yarnpkg.com/@mozzius/expo-dynamic-app-icon/-/expo-dynamic-app-icon-1.5.0.tgz#c5f88c309965b6d6b89cfd5e2c00faa7bda736af" 5096 + integrity sha512-yE2yEPO+HQmOqsX7cECh7/vu/LXnqhHGsVm3UiVi/3gaK8u5hAkPTNzZ0Qu6vnMwjPnY+uFbN6X+6Aj9c9yjMQ== 5097 5097 dependencies: 5098 - "@expo/image-utils" "^0.3.23" 5099 - expo-modules-core "^1.0.3" 5098 + "@expo/image-utils" "^0.6.3" 5099 + expo-modules-core "^2.1.1" 5100 5100 xcode "^3.0.1" 5101 5101 5102 5102 "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": ··· 10618 10618 require-from-string "^2.0.2" 10619 10619 resolve-from "^5.0.0" 10620 10620 10621 - expo-modules-core@2.1.1: 10621 + expo-modules-core@2.1.1, expo-modules-core@^2.1.1: 10622 10622 version "2.1.1" 10623 10623 resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.1.1.tgz#970af4cfd70c8aa6fc0096dd0a6578aa003a479f" 10624 10624 integrity sha512-yQzYCLR2mre4BNMXuqkeJ0oSNgmGEMI6BcmIzeNZbC2NFEjiaDpKvlV9bclYCtyVhUEVNbJcEPYMr6c1Y4eR4w== 10625 - dependencies: 10626 - invariant "^2.2.4" 10627 - 10628 - expo-modules-core@^1.0.3: 10629 - version "1.12.26" 10630 - resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.12.26.tgz#86c4087dc6246abfc4d7f5e61097dc8cc4b22262" 10631 - integrity sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA== 10632 10625 dependencies: 10633 10626 invariant "^2.2.4" 10634 10627