Changeset 3258575
- Timestamp:
- 03/19/2025 02:31:03 PM (12 months ago)
- Location:
- facebook-for-woocommerce/trunk
- Files:
-
- 6 edited
-
changelog.txt (modified) (1 diff)
-
facebook-for-woocommerce.php (modified) (2 diffs)
-
i18n/languages/facebook-for-woocommerce.pot (modified) (2 diffs)
-
includes/fbproductfeed.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
facebook-for-woocommerce/trunk/changelog.txt
r3257019 r3258575 1 1 *** Facebook for WooCommerce Changelog *** 2 3 = 3.4.3 - 2025-03-19 = 4 * Add - Items batch request and response tests by @nrostrow-meta in #2917 5 * Tweak - Always run PHP-based github workflows by @carterbuce in #2926 6 * Fix - feed upload error "feed_column_count_mismatch" when product has multiple colors separated by a comma by @mshymon in #2947 7 * Tweak - Updated Pull Request Template by @vinkmeta in #2948 8 * Dev - Improved readability of function prepare_product() in fbproduct.php by @mshymon in #2889 9 * Tweak - Enabled PHPUnit code coverage report generation by @carterbuce in #2893 2 10 3 11 = 3.4.2 - 2025-03-13 = -
facebook-for-woocommerce/trunk/facebook-for-woocommerce.php
r3257019 r3258575 12 12 * Author: Facebook 13 13 * Author URI: https://www.facebook.com/ 14 * Version: 3.4. 214 * Version: 3.4.3 15 15 * Requires at least: 5.6 16 16 * Requires PHP: 7.4 … … 50 50 * @var string the plugin version. This must be in the main plugin file to be automatically bumped by Woorelease. 51 51 */ 52 const PLUGIN_VERSION = '3.4. 2'; // WRCS: DEFINED_VERSION.52 const PLUGIN_VERSION = '3.4.3'; // WRCS: DEFINED_VERSION. 53 53 54 54 // Minimum PHP version required by this plugin. -
facebook-for-woocommerce/trunk/i18n/languages/facebook-for-woocommerce.pot
r3257019 r3258575 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Facebook for WooCommerce 3.4. 2\n"5 "Project-Id-Version: Facebook for WooCommerce 3.4.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/facebook-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-03-1 4T11:37:57+00:00\n"12 "POT-Creation-Date: 2025-03-19T14:13:43+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" -
facebook-for-woocommerce/trunk/includes/fbproductfeed.php
r3243084 r3258575 512 512 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'product_type' ) ) . ',' . 513 513 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'brand' ) ) . ',' . 514 static::format_ price_for_feed(514 static::format_string_for_feed( static::format_price_for_feed( 515 515 static::get_value_from_product_data( $product_data, 'price', 0 ), 516 516 static::get_value_from_product_data( $product_data, 'currency' ) 517 ) . ',' .518 static:: get_value_from_product_data( $product_data, 'availability') . ',' .517 )) . ',' . 518 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'availability' ) ) . ',' . 519 519 $item_group_id . ',' . 520 520 static::get_value_from_product_data( $product_data, 'checkout_url' ) . ',' . 521 521 static::format_additional_image_url( static::get_value_from_product_data( $product_data, 'additional_image_urls' ) ) . ',' . 522 $sale_price_effective_date. ',' .523 $sale_price. ',' .522 static::format_string_for_feed( $sale_price_effective_date ) . ',' . 523 static::format_string_for_feed( $sale_price ) . ',' . 524 524 'new' . ',' . 525 static:: get_value_from_product_data( $product_data, 'visibility') . ',' .526 static:: get_value_from_product_data( $product_data, 'gender') . ',' .527 static:: get_value_from_product_data( $product_data, 'color') . ',' .528 static:: get_value_from_product_data( $product_data, 'size') . ',' .529 static:: get_value_from_product_data( $product_data, 'pattern') . ',' .530 static:: get_value_from_product_data( $product_data, 'google_product_category') . ',' .531 static:: get_value_from_product_data( $product_data, 'default_product') . ',' .532 static:: get_value_from_product_data( $product_data, 'variant') . ',' .533 static:: get_value_from_product_data( $product_data, 'gtin') . ',' .534 static:: get_value_from_product_data( $product_data, 'quantity_to_sell_on_facebook') . ',' .525 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'visibility' )) . ',' . 526 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'gender' )) . ',' . 527 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'color' )) . ',' . 528 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'size' )) . ',' . 529 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'pattern' )) . ',' . 530 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'google_product_category' )) . ',' . 531 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'default_product' )) . ',' . 532 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'variant' )) . ',' . 533 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'gtin' )) . ',' . 534 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'quantity_to_sell_on_facebook' )) . ',' . 535 535 static::format_string_for_feed( static::get_value_from_product_data( $product_data, 'rich_text_description' ) ) . PHP_EOL; 536 536 } -
facebook-for-woocommerce/trunk/readme.txt
r3257019 r3258575 4 4 Requires at least: 5.6 5 5 Tested up to: 6.7 6 Stable tag: 3.4. 26 Stable tag: 3.4.3 7 7 Requires PHP: 7.4 8 8 MySQL: 5.6 or greater … … 40 40 41 41 == Changelog == 42 = 3.4.3 - 2025-03-19 = 43 * Add - Items batch request and response tests by @nrostrow-meta in #2917 44 * Tweak - Always run PHP-based github workflows by @carterbuce in #2926 45 * Fix - feed upload error "feed_column_count_mismatch" when product has multiple colors separated by a comma by @mshymon in #2947 46 * Tweak - Updated Pull Request Template by @vinkmeta in #2948 47 * Dev - Improved readability of function prepare_product() in fbproduct.php by @mshymon in #2889 48 * Tweak - Enabled PHPUnit code coverage report generation by @carterbuce in #2893 49 42 50 = 3.4.2 - 2025-03-13 = 43 51 * Tweak - Update README.md - Added noification for ownership transfer by @SayanPandey in #2910 and #2916 … … 64 72 * Fix - Use of recommended delete connection endpoint over delete permission endpoint by atuld123 in #2844 65 73 * Add - Expose Brand & MPN to Woocommerce UI by @devbodaghe in #2842 66 67 = 3.3.2 - 2025-01-21 =68 * Fix - a bug that arose from reliance on the plugin version compatibility tag by @vinkmeta in #285669 * Fix - Update catalog link in connections tab to point to Catalog by @devbodaghe in #284870 * Fix - Product URL links now point to items tab by @vinkmeta in #285271 * Tweak - Removed sell on Instagram by @mshymon in #285472 * Tweak - Add custom fields to product data structure by @devbodaghe in #283673 * Fix - Multiple issues with Fixed FB Attribute Syncing by @vinkmeta in #2860 -
facebook-for-woocommerce/trunk/vendor/composer/installed.php
r3257019 r3258575 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' e71b9ae5fd47f1f8cff24a51af35b29b6e95e106',6 'reference' => 'bcf0f607a700461fb2ae877b9561c06e9814fddb', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 23 23 'pretty_version' => 'dev-main', 24 24 'version' => 'dev-main', 25 'reference' => ' e71b9ae5fd47f1f8cff24a51af35b29b6e95e106',25 'reference' => 'bcf0f607a700461fb2ae877b9561c06e9814fddb', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.