Skip to content

Commit b8a1d32

Browse files
committed
Merge remote-tracking branch 'origin/release/5.9.0' into trunk
2 parents 8ade783 + 09e48a4 commit b8a1d32

File tree

130 files changed

+4012
-2988
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+4012
-2988
lines changed

.github/workflows/php-tests.yml

Lines changed: 45 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,56 @@ jobs:
1010
fail-fast: false
1111
max-parallel: 10
1212
matrix:
13-
woocommerce: [ 'latest', '5.7.1', '5.6.1' ]
14-
wordpress: [ 'latest', '5.7', '5.6' ]
15-
php: [ '8.0', '7.4', '7.0' ]
16-
name: Stable [PHP=${{ matrix.php }}, WP=${{ matrix.wordpress }}, WC=${{ matrix.woocommerce }}]
13+
woocommerce_support_policy: [ 'L', 'L-1', 'L-2' ]
14+
wordpress_support_policy: [ 'L', 'L-1', 'L-2' ]
15+
php_support_policy: [ 'L', 'L-1', 'L-2' ]
16+
include:
17+
# WooCommerce
18+
- woocommerce_support_policy: L
19+
woocommerce: 'latest'
20+
- woocommerce_support_policy: L-1
21+
woocommerce: '5.8.0'
22+
- woocommerce_support_policy: L-2
23+
woocommerce: '5.7.1'
24+
# WordPress
25+
- wordpress_support_policy: L
26+
wordpress: 'latest'
27+
- wordpress_support_policy: L-1
28+
wordpress: '5.7'
29+
- wordpress_support_policy: L-2
30+
wordpress: '5.6'
31+
# PHP
32+
- php_support_policy: L
33+
php: '8.0'
34+
- php_support_policy: L-1
35+
php: '7.4'
36+
- php_support_policy: L-2
37+
php: '7.0'
38+
39+
name: Stable (PHP=${{ matrix.php_support_policy }}, WP=${{ matrix.wordpress_support_policy }}, WC=${{ matrix.woocommerce_support_policy }})
1740
env:
18-
WP_VERSION: ${{ matrix.wordpress }}
19-
WC_VERSION: ${{ matrix.woocommerce }}
41+
PHP_VERSION: ${{ matrix.php }}
42+
WP_VERSION: ${{ matrix.wordpress }}
43+
WC_VERSION: ${{ matrix.woocommerce }}
2044
steps:
21-
# clone the repository
22-
- uses: actions/checkout@v2
23-
# enable dependencies caching
24-
- uses: actions/cache@v2
45+
- name: Testing with PHP=${{ matrix.php }}, WP=${{ matrix.wordpress }}, WC=${{ matrix.woocommerce }}
46+
uses: actions/checkout@v2
47+
48+
- name: Set up dependencies caching
49+
uses: actions/cache@v2
2550
with:
2651
path: ~/.cache/composer/
2752
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
28-
# setup PHP, but without debug extensions for reasonable performance
29-
- uses: shivammathur/setup-php@v2
53+
54+
- name: Set up PHP
55+
uses: shivammathur/setup-php@v2
3056
with:
3157
php-version: ${{ matrix.php }}
3258
coverage: none
33-
# run CI checks
34-
- run: if [[ "${{ matrix.php }}" == '7.0' ]]; then wget https://phar.phpunit.de/phpunit-6.5.14.phar && mv phpunit-6.5.14.phar phpunit.phar; fi;
35-
- run: bash bin/run-ci-tests.bash
59+
60+
- name: If PHP 7.0, set up PHPUnit 6.5 for legacy compatibility
61+
if: ${{ matrix.php == '7.0' }}
62+
run: wget https://phar.phpunit.de/phpunit-6.5.14.phar && mv phpunit-6.5.14.phar phpunit.phar
63+
64+
- name: Run CI checks
65+
run: bash bin/run-ci-tests.bash

assets/css/stripe-admin-styles.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/css/stripe-admin-styles.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

assets/css/stripe-styles.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/stripe-styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@
180180
width: 100%;
181181
}
182182

183+
.woocommerce-checkout #payment #stripe_boleto_tax_id {
184+
width: 100%;
185+
}
186+
183187
.gpay-button {
184188
background-origin: content-box;
185189
background-position: center center;

assets/images/boleto.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/images/oxxo.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)