We pushed a new build up to circle and it just started failing. The change literally was a single line and has nothing to do with the errors we are seeing. Our project is an iOS react native project and we are building in an OSX container. I’m trying to narrow it down to see what exactly is failing. The thing is that we are using Yarn, which is supposed to lock the versions of our dependencies. Has something changed in the OSX container on Circle in the last day or so? Comparing a breaking build to the latest successful build we see the following:
Successful Build:
[12:57:38]: ▸ Compiling RCTConvert+FBSDKSharingContent.m
[12:57:38]: ▸ /Users/distiller/mobile/node_modules/react-native-fbsdk/ios/RCTFBSDK/share/RCTConvert+FBSDKSharingContent.m:78:15: ‘contentDescription’ is deprecated:contentDescription
is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
[12:57:38]: ▸ linkContent.contentDescription = [RCTConvert NSString:contentData[@“contentDescription”]];
[12:57:38]: ▸ ^
[12:57:38]: ▸ /Users/distiller/mobile/node_modules/react-native-fbsdk/ios/RCTFBSDK/share/RCTConvert+FBSDKSharingContent.m:79:15: ‘contentTitle’ is deprecated:contentTitle
is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
[12:57:38]: ▸ linkContent.contentTitle = [RCTConvert NSString:contentData[@“contentTitle”]];
[12:57:38]: ▸ ^
Failing Build:
[16:13:39]: ▸ Compiling RCTConvert+FBSDKSharingContent.m
[16:13:39]: ▸ /Users/distiller/mobile/node_modules/react-native-fbsdk/ios/RCTFBSDK/share/RCTConvert+FBSDKSharingContent.m:78:15: ‘contentDescription’ is deprecated:contentDescription
is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
[16:13:39]: ▸ linkContent.contentDescription = [RCTConvert NSString:contentData[@“contentDescription”]];
[16:13:39]: ▸ ^
[16:13:39]: ▸ /Users/distiller/mobile/node_modules/react-native-fbsdk/ios/RCTFBSDK/share/RCTConvert+FBSDKSharingContent.m:78:34: assignment to readonly property
[16:13:39]: ▸ linkContent.contentDescription = [RCTConvert NSString:contentData[@“contentDescription”]];
[16:13:39]: ▸ ^