-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into mod-auth
* origin/main: (21 commits) Add border to menu on web (#5439) Add eslint rule to fix imports without the `#/` path alias (#5175) [Neue] Parallel font loading on web (#5411) Adjust toggle components sizing (#5408) [Neue] Copy and spacing tweaks (#5428) [Neue] Ligatures & composer (#5427) Remove expo/vector-icons from EditImage modal (#5422) Revert provider stacking changes (#5423) Fix ext embeds in DMs (#5419) Fix font loading on web (#5412) [Neue] Base (#5395) Update sentry sourcemaps upload (#5409) Fix for undefined ref on hot reload on web (#5407) remove expo-sentry (#5405) Revert unneeded changes to `expo-modules-core` patch (#5393) Temporary Sentry hack patch for iOS 18 (#5400) Make it work with Xcode 16 (#5386) Fix border radius on avatars (#5392) Make like animation on web same speed as mobile (#5391) Pre-fill alt text with 10-million card post (#5389) ...
- Loading branch information
Showing
96 changed files
with
1,592 additions
and
619 deletions.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
const BANNED_IMPORT_PREFIXES = [ | ||
'alf/', | ||
'components/', | ||
'lib/', | ||
'locale/', | ||
'logger/', | ||
'platform/', | ||
'state/', | ||
'storage/', | ||
'view/', | ||
] | ||
|
||
module.exports = { | ||
meta: { | ||
type: 'suggestion', | ||
fixable: 'code', | ||
}, | ||
create(context) { | ||
return { | ||
ImportDeclaration(node) { | ||
const source = node.source | ||
if (typeof source.value !== 'string') { | ||
return | ||
} | ||
if ( | ||
BANNED_IMPORT_PREFIXES.some(banned => source.value.startsWith(banned)) | ||
) { | ||
context.report({ | ||
node: source, | ||
message: `Use '#/${source.value}'`, | ||
fix(fixer) { | ||
return fixer.replaceText(source, `'#/${source.value}'`) | ||
}, | ||
}) | ||
} | ||
}, | ||
} | ||
}, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
diff --git a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js | ||
index 7e0b4cd..177454c 100644 | ||
--- a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js | ||
+++ b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js | ||
@@ -3,6 +3,8 @@ import { LogBox } from 'react-native'; | ||
* This is a workaround for using fetch on RN, this is a known issue in react-native and only generates a warning. | ||
*/ | ||
export function ignoreRequireCycleLogs() { | ||
- LogBox.ignoreLogs(['Require cycle:']); | ||
+ try { | ||
+ LogBox.ignoreLogs(['Require cycle:']); | ||
+ } catch (e) {} | ||
} | ||
//# sourceMappingURL=ignorerequirecyclelogs.js.map | ||
\ No newline at end of file | ||
diff --git a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js | ||
index 0f244f2..ae7dfb3 100755 | ||
--- a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js | ||
+++ b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js | ||
@@ -174,6 +174,7 @@ if (!outputDir) { | ||
process.exit(1); | ||
} | ||
|
||
+const otherArgs = process.argv.slice(3); | ||
const files = getAssetPathsSync(outputDir); | ||
const groupedAssets = groupAssets(files); | ||
|
||
@@ -195,7 +196,7 @@ for (const [assetGroupName, assets] of Object.entries(groupedAssets)) { | ||
|
||
const isHermes = assets.find(asset => asset.endsWith('.hbc')); | ||
const windowsCallback = process.platform === "win32" ? 'node ' : ''; | ||
- execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')}`, { | ||
+ execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')} ${otherArgs.join(' ')}`, { | ||
env: { | ||
...process.env, | ||
[SENTRY_PROJECT]: sentryProject, |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.