Nestor Soriano
c27283dffe
Fix code sniffer errors in some files.
...
Fixed files:
includes/abstracts/abstract-wc-product.php
includes/class-wc-query.php
includes/wc-template-functions.php
includes/widgets/class-wc-widget-layered-nav.php
templates/loop/result-count.php
tests/unit-tests/util/class-wc-tests-wc-query.php
2020-07-28 08:47:29 +02:00
Christopher Allford
578b205b4e
Merge pull request #27123 from woocommerce/feature/jetpack-autoloader-upgrade
...
Upgraded Jetpack Autoloader to 2.0
2020-07-27 23:35:53 -07:00
Claudio Sanches
2df7324b0d
Fixed "virtual" and "downloadable" checkboxes pointers
2020-07-27 22:43:04 -03:00
Claudio Sanches
283c82b6b4
Fixed coding standards
2020-07-27 22:42:15 -03:00
Claudio Sanches
de383971eb
Reset all after test
2020-07-27 22:07:46 -03:00
Claudio Sanches
2043954ceb
Fixed class name
2020-07-27 21:53:28 -03:00
Claudio Sanches
0f091406df
Test WC_Cart::show_shipping()
2020-07-27 21:52:33 -03:00
Claudio Sanches
08620cf846
Make "woocommerce_shipping_cost_requires_address" strict
2020-07-27 21:49:33 -03:00
Claudio Sanches
134ab5c184
Fixed coding standards
2020-07-27 20:21:41 -03:00
Claudio Sanches
4f90307e2e
Fixed "Paid By Customer" data when the orders contains refunds
2020-07-27 20:18:33 -03:00
Christopher Allford
1868cd8aaa
Adjusting the shipping task order in the E2E test for setup tasks
2020-07-27 15:18:27 -07:00
Andy Skelton
3e5ce05d86
Faster foreign key check when installing/upgrading
...
Using WooCommerce on a multisite network using the hyperdb drop-in, the foreign key check fails although there is a foreign key.
32037e37dd/includes/class-wc-install.php (L745-L763)
The first problem is that hyperdb wasn't designed to route `information_schema` queries. After patching hyperdb, the query is routed to the correct database.
The second problem is that the query still finds zero foreign keys because `$wpdb->dbname` is blank when the query is generated. Hyperdb only has a dbname in the context of a query being executed; hyperdb extracts the table name, then maps that to the correct database.
Although we could find a way to support such `information_schema` queries, they are also not preferred because they are notoriously slow. On WordPress.com they take 300ms, versus 3ms for a `SHOW CREATE TABLE` which similarly reveals the existence of the foreign key.
The proposed changes simplify the check, make it faster, and make it work with hyperdb.
2020-07-27 16:39:42 -05:00
Christopher Allford
edf1932ee9
Adjusted the OBW test for changes in WC-Admin 1.4.0
2020-07-27 14:38:43 -07:00
Claudio Sanches
4048d19a39
Added unit tests for coupon code sanitization
2020-07-27 17:44:04 -03:00
Claudio Sanches
e94196cea8
Sanitize coupon code in coupon ID by code functions
2020-07-27 17:33:15 -03:00
Christopher Allford
ddc1f87f8d
Update README.md
...
Changed `npm install` suggestion to better suggest saving the dependencies as devDependencies
2020-07-27 13:30:39 -07:00
Renovate Bot
3f784fd17f
Update dependency eslint-plugin-jest to v23.19.0
2020-07-27 20:20:12 +00:00
Claudio Sanches
be106af910
Added upgrade routine to sanitize all coupon codes
2020-07-27 16:50:23 -03:00
Ron Rennick
d8edcb4551
update from review feedback
2020-07-27 16:48:39 -03:00
Claudio Sanches
6ee47b0356
Prevent breakage if coupons code get updated while there's some cart sessions
2020-07-27 16:48:15 -03:00
Christopher Allford
c84f2b987b
Merge pull request #26750 from woocommerce/implement/core-language-packs-updates
...
Add language packs automatic delivery code.
2020-07-27 12:45:58 -07:00
Claudio Sanches
42321924f0
Update the coupon code sanitization
...
This makes match with WP sanitization for post_title.
WP sanitize post_title using kses_init_filters() when
the current user can't use unfiltered HTML.
2020-07-27 16:45:15 -03:00
Claudio Sanches
d073b9d1e3
Always run wp_filter_kses() on coupon codes.
...
By default it only get sanitized when editing the coupon with an user
that doesn't have unfiltered_html capability.
2020-07-27 16:42:00 -03:00
Néstor Soriano
5cf1d77438
Merge pull request #27067 from matt-h/webook-race-fix
...
Queue all webhooks on shutdown.
2020-07-27 18:56:27 +02:00
Matt Harrison
9f8be6e2d8
Switch to use WordPress' shutdown action instead of register_shutdown_function
2020-07-27 12:11:40 -04:00
Matt Harrison
e696ac7824
Queue all webhooks on shutdown.
...
It is possible for a later duplicate webhook to be fired too early if
the same webhook triggers in one request more than once with the updated
changes from the second one missing if it happens too quickly.
This queues all webhook to be register on shutdown instead of just
syncronous ones to make sure all data from the request is updated first
before the webhook gets queued.
2020-07-27 12:11:40 -04:00
Nestor Soriano
cc118c0c10
Fixed the number of product types in the onboarding E2E test
2020-07-27 16:49:32 +02:00
Claudio Sanches
db82c98801
Merge pull request #26945 from woocommerce/fix/25233
...
Photoswipe: Populate alt attribute for photoswipe galleries
2020-07-27 11:35:13 -03:00
Christopher Allford
4123d048e0
Fixed the number of industries in the onboarding E2E test
2020-07-27 07:08:54 -07:00
Vedanshu Jain
0a697a693f
Merge pull request #1 from vedanshujain/merge/base
...
Merge/base
2020-07-27 18:42:33 +05:30
Christopher Allford
08575b1661
Added JETPACK_AUTOLOAD_DEV flag to autoloader
...
Since Composer assigns dev versions to locally checked out repositories (most of the time) we need to set this flag. If we don't tell the autoloader we want to use dev versions then it will always prioritize the package classes over the plugin classes.
2020-07-27 09:40:55 +02:00
Christopher Allford
5afab2b03d
Removed the temporary PSR-4 autoloader
...
This was added to get around a limitation in the Jetpack Autoloader 1.x branch. Since dependencies could not be used before `plugins_loaded` without throwing a notice we needed a custom autoloader to run before it in order to prevent the notice from showing.
2020-07-27 09:40:55 +02:00
Christopher Allford
c36ea25eb9
Updated composer lock file
...
Now that we've got all of the packages updated successfully we can do this!
2020-07-27 09:40:55 +02:00
Christopher Allford
77eee6d92d
Updated the REST API to 1.0.11
2020-07-27 09:40:55 +02:00
Christopher Allford
3e6c4dd14a
Updated WooCommerce Admin to 1.4.0-beta.1
...
The official PR for 1.4.0-beta.2 will be arriving next week and so I've included the first beta here in order to complete the autoloader update.
2020-07-27 09:40:55 +02:00
Renovate Bot
0897ed68fc
Update dependency automattic/jetpack-autoloader to v2
2020-07-27 09:40:55 +02:00
Darren Ethier
3dafe70257
update woo blocks to 3.0.0
2020-07-27 09:40:55 +02:00
Néstor Soriano
de73ec027c
Merge pull request #26303 from netzstrategen/feature/prevent-unnecessary-available-variations-render
...
Allows avoiding performance bottlenecks caused by get_available_variation().
2020-07-27 08:46:24 +02:00
Claudio Sanches
aafb06929a
Merge pull request #26174 from woocommerce/fix/25843
...
Fix stock status saving for variable products on bulk and quick edit
2020-07-24 17:05:16 -03:00
Claudio Sanches
7bd34e3545
Merge branch 'master' into fix/25843
2020-07-24 17:04:28 -03:00
Ron Rennick
aca91f587d
update version script to work in both desktop and Travis, add fallback versions
2020-07-24 17:02:33 -03:00
Claudio Sanches
419e5c239a
Fixed docblocks
2020-07-24 17:01:42 -03:00
Ron Rennick
3c6cff4b1c
Merge pull request #26961 from LeGaS/patch-1
...
Extend BACS accounts filter with order ID
2020-07-24 16:27:57 -03:00
Ron Rennick
e218d25d6e
Merge pull request #26989 from adamradocz/patch-1
...
Remove leftover note.
2020-07-24 14:44:05 -03:00
Ron Rennick
96d73d2300
Merge pull request #27090 from woocommerce/update/wp-jest-preset-version
...
Update E2E env jest preset default version.
2020-07-24 14:39:55 -03:00
Vedanshu Jain
dfe5493dd5
Merge pull request #26850 from woocommerce/fix/26654
...
Make sure shipping tax are not rounded down when prices are inclusive of taxes.
2020-07-24 22:53:26 +05:30
Ron Rennick
06e3ae9939
fix software version checks in Travis
2020-07-24 10:57:16 -03:00
vedanshujain
cd09e91817
Applied coding standards
2020-07-24 19:12:25 +05:30
vedanshujain
f90699ddb9
Add more assertions in tests for order totals.
2020-07-24 19:12:25 +05:30
vedanshujain
0e7b064c02
Add more assertions in tests for round at subtotal.
2020-07-24 19:12:25 +05:30