Linaia
Linaia
Yes it is solved updating at least with 1.1289.0 (current used in package.json is 1.1290.0)
After some tests with a script, the message can be send on the host server with a simple code : ```` const mailjet = require ('node-mailjet').apiConnect(xxx, yyyy); const request =...
The error is thrown by axios request (https://github.com/mailjet/mailjet-apiv3-nodejs/blob/master/lib/request/index.ts: 324)
I see that it is a change since 4.0.1 : [Replace superagent http client with axios](https://github.com/mailjet/mailjet-apiv3-nodejs/commit/54c06d05b715e0d3493b03973156603e64f1e3d9) @scroll17 Denys would you please have a look ? Any idea what is wrong...
We've tested nodemailer with SMTP from the docker and it works fine, so you the issue is from this library. ```` const nodemailer = require('nodemailer'); let transporter = nodemailer.createTransport({ host:...
With react-native 0.71.3 (expo sdk48) it is not fixed, so you still have to patch it. ``` patches/react-native+0.71.3.patch diff --git a/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js b/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js index 2aef4e8..152c807 100644 --- a/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js +++ b/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js @@...
It's fixed in 0.72.6 (used by expo sdk49) ``` if ( this.props.disabled !== prevProps.disabled || // $FlowFixMe[underconstrained-implicit-instantiation] flattenStyle(prevProps.style)?.opacity !== // $FlowFixMe[underconstrained-implicit-instantiation] flattenStyle(this.props.style)?.opacity ) { this._opacityInactive(250); } ``` You can close...
I've tryed the fix for 0.72.10 -> when I build with XCode 15.3 (15E204a), same than @master96 , I have the following error : `/..../node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp:406:7 Use of undeclared identifier '__AVAILABILITY_INTERNALIPHONE_16_4'`
Here is the patch that worked for me : ``` diff --git a/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp b/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp index 523b1be..c667741 100644 --- a/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp +++ b/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp @@ -403,11 +403,13 @@ JSCRuntime::JSCRuntime(JSGlobalContextRef ctx) { #ifndef NDEBUG...
Hi, any update on this issue ? how to identify the root cause of this issue ?