Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
D--M22687yYep, also a side note to everyone here;
If you have a node 0.12 project, it will no longer be able to verify some domains depending who the CA is.
A good example is Entrust Inc, their CA bundle is missing from earlier versions of node. I think you can either manually include it or, now is a good excuse to upgrade to node 8 :D -
eggory4367yBy support what exactly do you mean? Can I not build a website optimized to display correctly on IE? Given that I have to put a fair amount of effort into supporting it in this way.
-
D--M22687y@eggory
If you have a PCI compliant service you CANNOT support versions of IE below 10.
On windows 7 and below, tls 1.2 is disabled by default unless you use IE11. Manually enabling TLS1.2 causes undefined behaviour since they haven't been updated in a long time.
Basically, if you have a service and website that is PCI compliant (you deal with payments and credit card information) you will fail auditing and will be fined.
All your effort in supporting those unsafe browsers are wasted since it will never be used.
Good news everyone. As of 30th June 2018, PCI compliance demands a minimum of TLS v1.1. Meaning it's illegal for your website to support IE6-10
rant