Changeset 268058 in webkit


Ignore:
Timestamp:
Oct 6, 2020 10:38:51 AM (3 years ago)
Author:
commit-queue@webkit.org
Message:

[macOS] Bump reported current shipping release UA to 10_15_7
https://bugs.webkit.org/show_bug.cgi?id=217364
<rdar://problem/69984962>

Patch by Luming Yin <luming_yin@apple.com> on 2020-10-06
Reviewed by Alex Christensen.

Bump the reported current shipping release UA from 10_15_6 to 10_15_7.

  • platform/mac/UserAgentMac.mm:

(WebCore::standardUserAgentWithApplicationName):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r268057 r268058  
     12020-10-06  Luming Yin  <luming_yin@apple.com>
     2
     3        [macOS] Bump reported current shipping release UA to 10_15_7
     4        https://bugs.webkit.org/show_bug.cgi?id=217364
     5        <rdar://problem/69984962>
     6
     7        Reviewed by Alex Christensen.
     8
     9        Bump the reported current shipping release UA from 10_15_6 to 10_15_7.
     10
     11        * platform/mac/UserAgentMac.mm:
     12        (WebCore::standardUserAgentWithApplicationName):
     13
    1142020-10-06  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebCore/platform/mac/UserAgentMac.mm

    r267148 r268058  
    3737    String osVersion = systemMarketingVersionForUserAgentString();
    3838    if (!osVersion.startsWith("10"))
    39         osVersion = "10_15_6"_s;
     39        osVersion = "10_15_7"_s;
    4040   
    4141    String appNameSuffix = applicationName.isEmpty() ? "" : makeString(" ", applicationName);
Note: See TracChangeset for help on using the changeset viewer.