-
Notifications
You must be signed in to change notification settings - Fork 5
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
CP-9448: Upgrade to React Native 0.76.2 and Expo SDK 52 #2187
base: main
Are you sure you want to change the base?
Conversation
70dfb5b
to
9097df3
Compare
DECRYPT_INPUT_ENCODING, | ||
UTF8 | ||
) | ||
// @ts-ignore | ||
const cleartext = (buffer + decipher.final(UTF8)).toString() |
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.
maybe we can make sure buffer is typeof string instead of doing ts-ignore?
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.
fixed.
e6c1a0f
to
b74b8a1
Compare
import { BarCodeReadEvent } from 'react-native-camera' | ||
import { useApplicationContext } from 'contexts/ApplicationContext' | ||
import { | ||
BarcodeScanningResult, | ||
CameraView, | ||
useCameraPermissions | ||
} from 'expo-camera' |
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.
nice replacement for camera!
@@ -358,6 +358,6 @@ export default class SeedlessWallet implements Wallet { | |||
), | |||
'hex' | |||
) | |||
return utils.base58check.encode(buffer) | |||
return utils.base58check.encode(new Uint8Array(buffer)) |
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.
let's make sure QA test all signing again
packages/core-mobile/ios/.xcode.env
Outdated
export SENTRY_DISABLE_AUTO_UPLOAD=true # Temporarily disable source map upload |
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.
is something wrong with source map upload?
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 auto-upload is enabled, it seems to automatically upload sourcemap even in debug mode. That’s why it’s stated in the documentation to disable it.
https://docs.sentry.io/platforms/react-native/manual-setup/manual-setup/
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.
auto upload enabled.
Description
Ticket: CP-9448
Notes
Testing
No new features have been added, but regression testing is required.
Checklist