@wilsonge This one could pose a problem, from Travis:
1) JHttpFactoryTest::testGetHttpTransports
CURL should be the first transport returned.
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-'curl'
+'CurlTransport'
/home/travis/build/joomla/joomla-cms/tests/unit/suites/libraries/joomla/http/JHttpFactoryTest.php:81
No. The internals of the transports are handled differently (the CMS' fully reads from JFactory::getConfig() whereas the Framework's requires everything to be injected). The 4.0 branch extends the Framework package to the extent possible, but to me that's as far as we can go with it right now until we make the CMS' HttpFactory read and inject all the right parameters. And that becomes a hard B/C break because it forces everyone to go through the factory to get a properly configured adapter whereas right now it can be done just by calling new JHttp.
@wilsonge This one could pose a problem, from Travis: