Changeset 50584
- Timestamp:
- 03/25/2021 07:59:44 PM (4 years ago)
- Location:
- branches/5.7
- Files:
-
- 1 deleted
- 10 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/5.7
- Property svn:mergeinfo changed
/trunk merged: 50432,50435-50436,50479,50485-50487,50545,50579
- Property svn:mergeinfo changed
-
branches/5.7/.github/workflows/coding-standards.yml
r50387 r50584 2 2 3 3 on: 4 # JSHint was introduced in WordPress 3.8. 5 # PHPCS checking was introduced in WordPress 5.1. 4 6 push: 5 7 branches: 6 8 - master 7 # JSHint was introduced in WordPress 3.8. 8 # PHPCS checking was introduced in WordPress 5.1. 9 - trunk 9 10 - '3.[89]' 10 11 - '[4-9].[0-9]' … … 13 14 - '[4-9].[0-9]*' 14 15 pull_request: 16 branches: 17 - master 18 - trunk 19 - '3.[89]' 20 - '[4-9].[0-9]' 21 paths: 22 # Any change to a PHP or JavaScript file should run checks. 23 - '**.js' 24 - '**.php' 25 # These files configure NPM. Changes could affect the outcome. 26 - 'package*.json' 27 # These files configure Composer. Changes could affect the outcome. 28 - 'composer.*' 29 # This file configures JSHint. Changes could affect the outcome. 30 - '.jshintrc' 31 # This file configures PHPCS. Changes could affect the outcome. 32 - 'phpcs.xml.dist' 33 # Changes to workflow files should always verify all workflows are successful. 34 - '.github/workflows/*.yml' 15 35 16 36 jobs: … … 36 56 steps: 37 57 - name: Checkout repository 38 uses: actions/checkout@ v258 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 39 59 40 60 - name: Set up PHP 41 uses: shivammathur/setup-php@ v261 uses: shivammathur/setup-php@afefcaf556d98dc7896cca380e181decb609ca44 # v2.10.0 42 62 with: 43 63 php-version: '7.4' … … 51 71 52 72 - name: Install Composer dependencies 53 uses: ramsey/composer-install@ v173 uses: ramsey/composer-install@92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.0 54 74 with: 55 75 composer-options: "--no-progress --no-ansi --no-interaction" … … 89 109 steps: 90 110 - name: Checkout repository 91 uses: actions/checkout@ v2111 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 92 112 93 113 - name: Log debug information … … 99 119 100 120 - name: Install NodeJS 101 uses: actions/setup-node@ v2121 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 102 122 with: 103 123 node-version: 14 104 124 105 125 - name: Cache NodeJS modules 106 uses: actions/cache@ v2126 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 107 127 env: 108 128 cache-name: cache-node-modules … … 111 131 path: ~/.npm 112 132 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 113 restore-keys: |114 ${{ runner.os }}-npm-115 133 116 134 - name: Log debug information … … 120 138 121 139 - name: Install Dependencies 122 run: np x install-changed --install-command="npm ci"140 run: npm ci 123 141 124 142 - name: Run JSHint -
branches/5.7/.github/workflows/end-to-end-tests.yml
r50387 r50584 2 2 3 3 on: 4 # The end to end test suite was introduced in WordPress 5.3. 4 5 push: 5 6 branches: 6 7 - master 7 # The end to end test suite was introduced in WordPress 5.3.8 - trunk 8 9 - '5.[3-9]' 9 10 - '[6-9].[0-9]' … … 12 13 - '[6-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '5.[3-9]' 19 - '[6-9].[0-9]' 14 20 15 21 env: … … 43 49 - name: Cancel previous runs of this workflow (pull requests only) 44 50 if: ${{ github.event_name == 'pull_request' }} 45 uses: styfle/cancel-workflow-action@0.8.0 46 with: 47 access_token: ${{ github.token }} 51 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 48 52 49 53 - name: Configure environment variables … … 53 57 54 58 - name: Checkout repository 55 uses: actions/checkout@ v259 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 56 60 57 61 - name: Log debug information … … 67 71 68 72 - name: Install NodeJS 69 uses: actions/setup-node@ v273 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 70 74 with: 71 75 node-version: 14 72 76 73 77 - name: Cache NodeJS modules 74 uses: actions/cache@ v278 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 75 79 env: 76 80 cache-name: cache-node-modules … … 79 83 path: ~/.npm 80 84 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 81 restore-keys: |82 ${{ runner.os }}-npm-83 85 84 86 - name: Install Dependencies 85 run: np x install-changed --install-command="npm ci"87 run: npm ci 86 88 87 89 - name: Build WordPress -
branches/5.7/.github/workflows/javascript-tests.yml
r50387 r50584 2 2 3 3 on: 4 # JavaScript testing was introduced in WordPress 3.8. 4 5 push: 5 6 branches: 6 7 - master 7 # JavaScript testing was introduced in WordPress 3.8.8 - trunk 8 9 - '3.[89]' 9 10 - '[4-9].[0-9]' … … 12 13 - '[4-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '3.[89]' 19 - '[4-9].[0-9]' 20 paths: 21 # Any change to a JavaScript file should run tests. 22 - '**.js' 23 # These files configure NPM. Changes could affect the outcome. 24 - 'package*.json' 25 # This file configures ESLint. Changes could affect the outcome. 26 - '.eslintignore' 27 # This file configures JSHint. Changes could affect the outcome. 28 - '.jshintrc' 29 # Any change to the QUnit directory should run tests. 30 - 'tests/qunit/**' 31 # Changes to workflow files should always verify all workflows are successful. 32 - '.github/workflows/*.yml' 14 33 15 34 jobs: … … 34 53 - name: Cancel previous runs of this workflow (pull requests only) 35 54 if: ${{ github.event_name == 'pull_request' }} 36 uses: styfle/cancel-workflow-action@0.8.0 37 with: 38 access_token: ${{ github.token }} 55 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 39 56 40 57 - name: Checkout repository 41 uses: actions/checkout@ v258 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 42 59 43 60 - name: Log debug information … … 49 66 50 67 - name: Install NodeJS 51 uses: actions/setup-node@ v268 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 52 69 with: 53 70 node-version: 14 54 71 55 72 - name: Cache NodeJS modules 56 uses: actions/cache@ v273 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 57 74 env: 58 75 cache-name: cache-node-modules … … 61 78 path: ~/.npm 62 79 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 63 restore-keys: |64 ${{ runner.os }}-npm-65 80 66 81 - name: Log debug information … … 70 85 71 86 - name: Install Dependencies 72 run: np x install-changed --install-command="npm ci"87 run: npm ci 73 88 74 89 - name: Run QUnit tests -
branches/5.7/.github/workflows/php-compatibility.yml
r50298 r50584 2 2 3 3 on: 4 # PHP compatibility testing was introduced in WordPress 5.5. 4 5 push: 5 6 branches: 6 7 - master 7 # The PHP compatibility testing was introduced in WordPress 5.5.8 - trunk 8 9 - '5.[5-9]' 9 10 - '[6-9].[0-9]' … … 12 13 - '[6-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '5.[5-9]' 19 - '[6-9].[0-9]' 20 paths: 21 # This workflow only scans PHP files. 22 - '**.php' 23 # These files configure Composer. Changes could affect the outcome. 24 - 'composer.*' 25 # This file configures PHP Compatibility scanning. Changes could affect the outcome. 26 - 'phpcompat.xml.dist' 27 # Changes to workflow files should always verify all workflows are successful. 28 - '.github/workflows/*.yml' 14 29 15 30 jobs: … … 35 50 steps: 36 51 - name: Checkout repository 37 uses: actions/checkout@ v252 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 38 53 39 54 - name: Set up PHP 40 uses: shivammathur/setup-php@ v255 uses: shivammathur/setup-php@afefcaf556d98dc7896cca380e181decb609ca44 # v2.10.0 41 56 with: 42 57 php-version: '7.4' … … 50 65 51 66 - name: Install Composer dependencies 52 uses: ramsey/composer-install@ v167 uses: ramsey/composer-install@92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.0 53 68 with: 54 69 composer-options: "--no-progress --no-ansi --no-interaction" -
branches/5.7/.github/workflows/phpunit-tests.yml
r50464 r50584 11 11 - '[4-9].[0-9]*' 12 12 pull_request: 13 branches: 14 - master 15 - '3.[7-9]' 16 - '[4-9].[0-9]' 13 17 # Once weekly On Sundays at 00:00 UTC. 14 18 schedule: … … 36 40 - name: Cancel previous runs of this workflow (pull requests only) 37 41 if: ${{ github.event_name == 'pull_request' }} 38 uses: styfle/cancel-workflow-action@0.8.0 39 with: 40 access_token: ${{ github.token }} 42 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 41 43 42 44 # Runs the PHPUnit tests for WordPress. … … 67 69 runs-on: ${{ matrix.os }} 68 70 strategy: 71 fail-fast: false 69 72 matrix: 70 73 php: [ '5.6.20', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] … … 112 115 113 116 - name: Checkout repository 114 uses: actions/checkout@ v2117 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 115 118 116 119 - name: Install NodeJS 117 uses: actions/setup-node@ v2120 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 118 121 with: 119 122 node-version: 14 120 123 121 124 - name: Use cached Node modules 122 uses: actions/cache@ v2125 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 123 126 env: 124 127 cache-name: cache-node-modules … … 127 130 path: ~/.npm 128 131 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 129 restore-keys: |130 ${{ runner.os }}-npm-131 132 132 133 - name: Install Dependencies … … 140 141 - name: Cache Composer dependencies 141 142 if: ${{ env.COMPOSER_INSTALL == true || env.LOCAL_PHP == '8.0-fpm' }} 142 uses: actions/cache@ v2143 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 143 144 env: 144 145 cache-name: cache-composer-dependencies … … 146 147 path: ${{ steps.composer-cache.outputs.dir }} 147 148 key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} 148 restore-keys: |149 ${{ runner.os }}-php-${{ matrix.php }}-composer-150 149 151 150 - name: Install Composer dependencies … … 237 236 - name: Checkout the WordPress Test Reporter 238 237 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/master' && matrix.report }} 239 uses: actions/checkout@ v2238 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 240 239 with: 241 240 repository: 'WordPress/phpunit-test-runner' -
branches/5.7/.github/workflows/test-coverage.yml
r50464 r50584 49 49 50 50 - name: Checkout repository 51 uses: actions/checkout@ v251 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 52 52 53 53 - name: Checkout the WordPress Importer plugin … … 68 68 69 69 - name: Install NodeJS 70 uses: actions/setup-node@ v270 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 71 71 with: 72 72 node-version: 14 73 73 74 74 - name: Cache NodeJS modules 75 uses: actions/cache@ v275 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 76 76 env: 77 77 cache-name: cache-node-modules … … 80 80 path: ~/.npm 81 81 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 82 restore-keys: |83 ${{ runner.os }}-npm-84 82 85 83 - name: Install Dependencies 86 run: np x install-changed --install-command="npm ci"84 run: npm ci 87 85 88 86 - name: Docker debug information … … 121 119 122 120 - name: Upload single site report to Codecov 123 uses: codecov/codecov-action@ v1121 uses: codecov/codecov-action@e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1 124 122 with: 125 123 file: wp-code-coverage-single-clover-${{ github.sha }}.xml … … 130 128 131 129 - name: Upload multisite report to Codecov 132 uses: codecov/codecov-action@ v1130 uses: codecov/codecov-action@e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1 133 131 with: 134 132 file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml -
branches/5.7/.github/workflows/test-npm.yml
r50486 r50584 61 61 needs: prepare-workflow 62 62 strategy: 63 fail-fast: false 63 64 matrix: 64 65 os: [ ubuntu-latest, windows-latest ] -
branches/5.7/.github/workflows/welcome-new-contributors.yml
r49781 r50584 12 12 13 13 steps: 14 - uses: bubkoo/welcome-action@ v114 - uses: bubkoo/welcome-action@8dbbac2540d155744c90e4e37da6b05ffc9c5e2c # v1.0.3 15 15 with: 16 16 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -
branches/5.7/package-lock.json
r50515 r50584 1899 1899 }, 1900 1900 "@sideway/address": { 1901 "version": "4.1. 0",1902 "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1. 0.tgz",1903 "integrity": "sha512- wAH/JYRXeIFQRsxerIuLjgUu2Xszam+O5xKeatJ4oudShOOirfmsQ1D6LL54XOU2tizpCYku+s1wmU0SYdpoSA==",1901 "version": "4.1.1", 1902 "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.1.tgz", 1903 "integrity": "sha512-+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ==", 1904 1904 "dev": true, 1905 1905 "requires": { … … 3931 3931 "unbzip2-stream": "^1.3.3", 3932 3932 "ws": "^7.2.3" 3933 }, 3934 "dependencies": { 3935 "devtools-protocol": { 3936 "version": "0.0.818844", 3937 "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.818844.tgz", 3938 "integrity": "sha512-AD1hi7iVJ8OD0aMLQU5VK0XH9LDlA1+BcPIgrAxPfaibx2DbWucuyOhc4oyQCbnvDDO68nN6/LcKfqTP343Jjg==", 3939 "dev": true 3940 } 3933 3941 } 3934 3942 }, … … 6568 6576 }, 6569 6577 "clean-css": { 6570 "version": " 4.2.3",6571 "resolved": "https://registry.npmjs.org/clean-css/-/clean-css- 4.2.3.tgz",6572 "integrity": "sha512- VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",6578 "version": "5.1.2", 6579 "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz", 6580 "integrity": "sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw==", 6573 6581 "dev": true, 6574 6582 "requires": { … … 8056 8064 "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", 8057 8065 "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", 8058 "dev": true8059 },8060 "devtools-protocol": {8061 "version": "0.0.818844",8062 "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.818844.tgz",8063 "integrity": "sha512-AD1hi7iVJ8OD0aMLQU5VK0XH9LDlA1+BcPIgrAxPfaibx2DbWucuyOhc4oyQCbnvDDO68nN6/LcKfqTP343Jjg==",8064 8066 "dev": true 8065 8067 }, … … 11170 11172 }, 11171 11173 "grunt-contrib-cssmin": { 11172 "version": "3.0.0", 11173 "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-3.0.0.tgz", 11174 "integrity": "sha512-eXpooYmVGKMs/xV7DzTLgJFPVOfMuawPD3x0JwhlH0mumq2NtH3xsxaHxp1Y3NKxp0j0tRhFS6kSBRsz6TuTGg==", 11175 "dev": true, 11176 "requires": { 11177 "chalk": "^2.4.1", 11178 "clean-css": "~4.2.1", 11179 "maxmin": "^2.1.0" 11180 }, 11181 "dependencies": { 11182 "chalk": { 11183 "version": "2.4.2", 11184 "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 11185 "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 11186 "dev": true, 11187 "requires": { 11188 "ansi-styles": "^3.2.1", 11189 "escape-string-regexp": "^1.0.5", 11190 "supports-color": "^5.3.0" 11191 } 11174 "version": "4.0.0", 11175 "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-4.0.0.tgz", 11176 "integrity": "sha512-jXU+Zlk8Q8XztOGNGpjYlD/BDQ0n95IHKrQKtFR7Gd8hZrzgqiG1Ra7cGYc8h2DD9vkSFGNlweb9Q00rBxOK2w==", 11177 "dev": true, 11178 "requires": { 11179 "chalk": "^4.1.0", 11180 "clean-css": "^5.0.1", 11181 "maxmin": "^3.0.0" 11182 }, 11183 "dependencies": { 11184 "figures": { 11185 "version": "3.2.0", 11186 "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", 11187 "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", 11188 "dev": true, 11189 "requires": { 11190 "escape-string-regexp": "^1.0.5" 11191 } 11192 }, 11193 "gzip-size": { 11194 "version": "5.1.1", 11195 "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", 11196 "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", 11197 "dev": true, 11198 "requires": { 11199 "duplexer": "^0.1.1", 11200 "pify": "^4.0.1" 11201 } 11202 }, 11203 "maxmin": { 11204 "version": "3.0.0", 11205 "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", 11206 "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", 11207 "dev": true, 11208 "requires": { 11209 "chalk": "^4.1.0", 11210 "figures": "^3.2.0", 11211 "gzip-size": "^5.1.1", 11212 "pretty-bytes": "^5.3.0" 11213 } 11214 }, 11215 "pretty-bytes": { 11216 "version": "5.6.0", 11217 "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", 11218 "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", 11219 "dev": true 11192 11220 } 11193 11221 } … … 14510 14538 }, 14511 14539 "joi": { 14512 "version": "17. 3.0",14513 "resolved": "https://registry.npmjs.org/joi/-/joi-17. 3.0.tgz",14514 "integrity": "sha512- Qh5gdU6niuYbUIUV5ejbsMiiFmBdw8Kcp8Buj2JntszCkCfxJ9Cz76OtHxOZMPXrt5810iDIXs+n1nNVoquHgg==",14540 "version": "17.4.0", 14541 "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.0.tgz", 14542 "integrity": "sha512-F4WiW2xaV6wc1jxete70Rw4V/VuMd6IN+a5ilZsxG4uYtUXWu2kq9W5P2dz30e7Gmw8RCbY/u/uk+dMPma9tAg==", 14515 14543 "dev": true, 14516 14544 "requires": { … … 18694 18722 }, 18695 18723 "qunit": { 18696 "version": "2.14. 0",18697 "resolved": "https://registry.npmjs.org/qunit/-/qunit-2.14. 0.tgz",18698 "integrity": "sha512- CYfenbgdpmhl2Ql2rDrrj0felY4h8k6lYhtWwGBCLL4qQC33YOj0psV8MWo85L1i0SIOmEDRXkFopWnGCLmf7g==",18699 "dev": true, 18700 "requires": { 18701 "commander": " 6.2.0",18724 "version": "2.14.1", 18725 "resolved": "https://registry.npmjs.org/qunit/-/qunit-2.14.1.tgz", 18726 "integrity": "sha512-jtFw8bf8+GjzY8UpnwbjqTOdK/rvrjcafUFTNpRc6/9N4q5dBwcwSMlcC76kAn5BRiSFj5Ssn2dfHtEYvtsXSw==", 18727 "dev": true, 18728 "requires": { 18729 "commander": "7.1.0", 18702 18730 "js-reporters": "1.2.3", 18703 18731 "node-watch": "0.7.1", … … 18706 18734 "dependencies": { 18707 18735 "commander": { 18708 "version": " 6.2.0",18709 "resolved": "https://registry.npmjs.org/commander/-/commander- 6.2.0.tgz",18710 "integrity": "sha512- zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==",18736 "version": "7.1.0", 18737 "resolved": "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz", 18738 "integrity": "sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==", 18711 18739 "dev": true 18712 18740 } … … 22767 22795 }, 22768 22796 "uglify-js": { 22769 "version": "3.1 2.8",22770 "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1 2.8.tgz",22771 "integrity": "sha512- fvBeuXOsvqjecUtF/l1dwsrrf5y2BCUk9AOJGzGcm6tE7vegku5u/YvqjyDaAGr422PLoLnrxg3EnRvTqsdC1w==",22797 "version": "3.13.2", 22798 "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.2.tgz", 22799 "integrity": "sha512-SbMu4D2Vo95LMC/MetNaso1194M1htEA+JrqE9Hk+G2DhI+itfS9TRu9ZKeCahLDNa/J3n4MqUJ/fOHMzQpRWw==", 22772 22800 "dev": true 22773 22801 }, … … 23363 23391 }, 23364 23392 "wait-on": { 23365 "version": "5. 2.1",23366 "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5. 2.1.tgz",23367 "integrity": "sha512- H2F986kNWMU9hKlI9l/ppO6tN8ZSJd35yBljMLa1/vjzWP++Qh6aXyt77/u7ySJFZQqBtQxnvm/xgG48AObXcw==",23393 "version": "5.3.0", 23394 "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", 23395 "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", 23368 23396 "dev": true, 23369 23397 "requires": { 23370 23398 "axios": "^0.21.1", 23371 23399 "joi": "^17.3.0", 23372 "lodash": "^4.17.2 0",23400 "lodash": "^4.17.21", 23373 23401 "minimist": "^1.2.5", 23374 23402 "rxjs": "^6.6.3" … … 23376 23404 "dependencies": { 23377 23405 "lodash": { 23378 "version": "4.17.2 0",23379 "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.2 0.tgz",23380 "integrity": "sha512- PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",23406 "version": "4.17.21", 23407 "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 23408 "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 23381 23409 "dev": true 23382 23410 }, 23383 23411 "rxjs": { 23384 "version": "6.6. 3",23385 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6. 3.tgz",23386 "integrity": "sha512- trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==",23412 "version": "6.6.6", 23413 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz", 23414 "integrity": "sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg==", 23387 23415 "dev": true, 23388 23416 "requires": { 23389 23417 "tslib": "^1.9.0" 23390 23418 } 23391 },23392 "tslib": {23393 "version": "1.14.1",23394 "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",23395 "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",23396 "dev": true23397 23419 } 23398 23420 } -
branches/5.7/package.json
r50515 r50584 43 43 "grunt-contrib-concat": "1.0.1", 44 44 "grunt-contrib-copy": "~1.0.0", 45 "grunt-contrib-cssmin": "~ 3.0.0",45 "grunt-contrib-cssmin": "~4.0.0", 46 46 "grunt-contrib-imagemin": "~4.0.0", 47 47 "grunt-contrib-jshint": "3.0.0", … … 65 65 "prettier": "npm:wp-prettier@2.0.5", 66 66 "puppeteer": "npm:puppeteer-core@3.0.0", 67 "qunit": "~2.14. 0",67 "qunit": "~2.14.1", 68 68 "sass": "^1.32.8", 69 69 "sinon": "~9.2.4", 70 70 "sinon-test": "~3.0.0", 71 71 "source-map-loader": "^1.1.3", 72 "uglify-js": "^3.1 2.8",72 "uglify-js": "^3.13.1", 73 73 "uglifyjs-webpack-plugin": "2.2.0", 74 74 "uuid": "8.3.2", 75 "wait-on": "5. 2.1",75 "wait-on": "5.3.0", 76 76 "webpack": "4.43.0", 77 77 "webpack-dev-server": "3.11.2",
Note: See TracChangeset
for help on using the changeset viewer.