Make WordPress Core

Ticket #51356: 51356.diff

File 51356.diff, 3.0 KB (added by desrosj, 4 years ago)
  • package-lock.json

     
    2567825678                        "dev": true
    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",
    2568625686                                "jsonfile": "^5.0.0",
  • package.json

     
    143143                "polyfill-library": "3.42.0",
    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"
    149149        },
  • src/wp-includes/formatting.php

     
    56655665                 *
    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                /**
    56715671                 * Filters the extension of the emoji png files.
     
    56835683                 *
    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                /**
    56895689                 * Filters the extension of the emoji SVG files.
     
    57985798        }
    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 */
    58045804        $ext = apply_filters( 'emoji_ext', '.png' );
  • tests/phpunit/tests/formatting/Emoji.php

     
    66 */
    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        /**
    1313         * @ticket 36525