author | Dorel Luca <dluca@mozilla.com> |
Wed, 27 May 2020 17:52:28 +0300 | |
changeset 532513 | 312302bf12d8073d8dedf8380e31d2b5032110e0 |
parent 532512 | 61e94240dbc789ad4fa39d57ad815b8100159899 |
child 532514 | 0a1673e31b98666141f2be2aaab42f94bf6f48c2 |
push id | 117198 |
push user | dluca@mozilla.com |
push date | Wed, 27 May 2020 14:54:52 +0000 |
treeherder | autoland@0a1673e31b98 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1634947 |
milestone | 78.0a1 |
backs out | 0440fa5863b23bc2750e3184a9fd6d65978ad031 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
dom/locales/en-US/chrome/security/security.properties | file | annotate | diff | comparison | revisions | |
netwerk/protocol/http/nsHttpChannel.cpp | file | annotate | diff | comparison | revisions |
--- a/dom/locales/en-US/chrome/security/security.properties +++ b/dom/locales/en-US/chrome/security/security.properties @@ -62,17 +62,17 @@ IneligibleResource=“%1$S” is not eligible for integrity checks since it’s neither CORS-enabled nor same-origin. # LOCALIZATION NOTE: Do not translate "integrity". "%1$S" is the invalid hash algorithm found in the attribute. UnsupportedHashAlg=Unsupported hash algorithm in the integrity attribute: “%1$S” # LOCALIZATION NOTE: Do not translate "integrity" NoValidMetadata=The integrity attribute does not contain any valid metadata. # LOCALIZATION NOTE: Do not translate "RC4". WeakCipherSuiteWarning=This site uses the cipher RC4 for encryption, which is deprecated and insecure. -DeprecatedTLSVersion2=This site uses a deprecated version of TLS. Please upgrade to TLS 1.2 or 1.3. +DeprecatedTLSVersion=This site uses a deprecated version of TLS that will be disabled in March 2020. Please upgrade to TLS 1.2 or 1.3. #XCTO: nosniff # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options: nosniff". MimeTypeMismatch2=The resource from “%1$S” was blocked due to MIME type (“%2$S”) mismatch (X-Content-Type-Options: nosniff). # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options" and also do not translate "nosniff". XCTOHeaderValueMissing=X-Content-Type-Options header warning: value was “%1$S”; did you mean to send “nosniff”? # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options" and also do not translate "nosniff". XTCOWithMIMEValueMissing=The resource from “%1$S” was not rendered due to an unknown, incorrect or missing MIME type (X-Content-Type-Options: nosniff).
--- a/netwerk/protocol/http/nsHttpChannel.cpp +++ b/netwerk/protocol/http/nsHttpChannel.cpp @@ -2376,17 +2376,17 @@ void nsHttpChannel::ProcessSSLInformatio } } uint16_t tlsVersion; nsresult rv = securityInfo->GetProtocolVersion(&tlsVersion); if (NS_SUCCEEDED(rv) && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_2 && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_3) { - nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion2"); + nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion"); nsString consoleErrorCategory = NS_LITERAL_STRING("TLS"); Unused << AddSecurityMessage(consoleErrorTag, consoleErrorCategory); } } void nsHttpChannel::ProcessAltService() { // e.g. Alt-Svc: h2=":443"; ma=60 // e.g. Alt-Svc: h2="otherhost:443"