Make WordPress Core

Changeset 49239


Ignore:
Timestamp:
10/20/2020 04:53:43 PM (4 years ago)
Author:
desrosj
Message:

Emoji: Update Twemoji to version 13.0.1.

This release fixes minor issues with 8 different Emoji and revises the person/woman/man kneeling Emoji to be in a more obvious kneeling position.

🧎

These updates were pushed to a new, 13.0.1 folder on the CDN in [dotorg:16573].

For a full list of changes in this update, see https://github.com/twitter/twemoji/compare/v13.0.0...v13.0.1.

Props hareesh-pillai, otto42, desrosj.
Fixes #51356.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r49226 r49239  
    2567925679        },
    2568025680        "twemoji": {
    25681             "version": "13.0.0",
    25682             "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-13.0.0.tgz",
    25683             "integrity": "sha512-JIkoLy0lL7ZlsiUKAOdXTp0o8C15O3CzDzAmnWdeDHpjeifmKDDKX4CyViUj+9g33pIqMr8Uhcy1WLwETr8oNg==",
     25681            "version": "13.0.1",
     25682            "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-13.0.1.tgz",
     25683            "integrity": "sha512-mrTBq+XpCLM4zm76NJOjLHoQNV9mHdBt3Cba/T5lS1rxn8ArwpqE47mqTocupNlkvcLxoeZJjYSUW0DU5ZwqZg==",
    2568425684            "requires": {
    2568525685                "fs-extra": "^8.0.1",
  • trunk/package.json

    r49226 r49239  
    144144        "react": "16.13.1",
    145145        "react-dom": "16.13.1",
    146         "twemoji": "13.0.0",
     146        "twemoji": "13.0.1",
    147147        "underscore": "1.8.3",
    148148        "whatwg-fetch": "3.0.0"
  • trunk/src/wp-includes/formatting.php

    r49215 r49239  
    56665666         * @param string $url The emoji base URL for png images.
    56675667         */
    5668         'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.0/72x72/' ),
     5668        'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.1/72x72/' ),
    56695669
    56705670        /**
     
    56845684         * @param string $url The emoji base URL for svg images.
    56855685         */
    5686         'svgUrl'  => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/13.0.0/svg/' ),
     5686        'svgUrl'  => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/13.0.1/svg/' ),
    56875687
    56885688        /**
     
    57995799
    58005800    /** This filter is documented in wp-includes/formatting.php */
    5801     $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.0/72x72/' );
     5801    $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.1/72x72/' );
    58025802
    58035803    /** This filter is documented in wp-includes/formatting.php */
  • trunk/tests/phpunit/tests/formatting/Emoji.php

    r48048 r49239  
    77class Tests_Formatting_Emoji extends WP_UnitTestCase {
    88
    9     private $png_cdn = 'https://s.w.org/images/core/emoji/13.0.0/72x72/';
    10     private $svn_cdn = 'https://s.w.org/images/core/emoji/13.0.0/svg/';
     9    private $png_cdn = 'https://s.w.org/images/core/emoji/13.0.1/72x72/';
     10    private $svn_cdn = 'https://s.w.org/images/core/emoji/13.0.1/svg/';
    1111
    1212    /**
Note: See TracChangeset for help on using the changeset viewer.