Skip to content

Commit 0dd3f81

Browse files
committed
chore: bump version to 2.7.3
1 parent 43b8111 commit 0dd3f81

File tree

4 files changed

+48
-34
lines changed

4 files changed

+48
-34
lines changed

bitwpfi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* Description: Bit Integrations is a platform that integrates with over 300+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
7-
* Version: 2.7.2
7+
* Version: 2.7.3
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
1111
* Requires PHP: 7.4
1212
* Requires at least: 5.1
13-
* Tested up to: 6.8
13+
* Tested up to: 6.9
1414
* Domain Path: /languages
1515
* License: GPLv2 or later
1616
*/
@@ -24,7 +24,7 @@
2424
$btcbi_db_version = '1.1';
2525

2626
// Define most essential constants.
27-
define('BTCBI_VERSION', '2.7.2');
27+
define('BTCBI_VERSION', '2.7.3');
2828
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);
2929

3030
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';

frontend-dev/src/pages/ChangelogToggle.jsx

Lines changed: 24 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { __, sprintf } from '../Utils/i18nwrap'
1111

1212
// const source = !btcbi.isPro ? 'bit-integrations' : 'bit-integrations-pro'
1313
// const dealURL = `https://bitapps.pro/new-year-deal/#bit-integrations-pricing`
14-
const releaseDate = '26th November 2025'
14+
const releaseDate = '3rd December 2025'
1515

1616
// Changelog items format [{ 'label': '', 'desc': '', 'isPro': true }]
1717
const changeLog = [
@@ -25,13 +25,25 @@ const changeLog = [
2525
label: __('New Actions', 'bit-integrations'),
2626
headClass: 'new-integration',
2727
itemClass: 'integration-list',
28-
items: []
28+
items: [
29+
{
30+
label: 'MailerPress',
31+
desc: '06 events Added.',
32+
isPro: true
33+
}
34+
]
2935
},
3036
{
3137
label: __('New Triggers', 'bit-integrations'),
3238
headClass: 'new-trigger',
3339
itemClass: 'integration-list',
34-
items: []
40+
items: [
41+
{
42+
label: 'MailerPress',
43+
desc: '07 events Added.',
44+
isPro: true
45+
}
46+
]
3547
},
3648
{
3749
label: __('New Features', 'bit-integrations'),
@@ -40,7 +52,7 @@ const changeLog = [
4052
items: [
4153
{
4254
label: 'Salesforce',
43-
desc: 'Added support for updating existing contacts directly from workflows.',
55+
desc: 'Added the ability to update existing leads, enabling smoother CRM maintenance and automation.',
4456
isPro: true
4557
}
4658
]
@@ -49,47 +61,31 @@ const changeLog = [
4961
label: __('Improvements', 'bit-integrations'),
5062
headClass: 'new-improvement',
5163
itemClass: 'feature-list',
52-
items: [
53-
{
54-
label: 'Salesforce',
55-
desc: 'Added proper date-field formatting for more reliable syncing.',
56-
isPro: false
57-
},
58-
{
59-
label: 'Action Hook',
60-
desc: 'Removed unnecessary primary-key prevention for smoother custom automation handling.',
61-
isPro: true
62-
}
63-
]
64+
items: []
6465
},
6566
{
6667
label: __('Bug Fixes', 'bit-integrations'),
6768
headClass: 'fixes',
6869
itemClass: 'fixes-list',
6970
items: [
7071
{
71-
label: 'MailMint',
72-
desc: 'Resolved the issue causing errors while updating contact timelines.',
73-
isPro: false
74-
},
75-
{
76-
label: 'GiveWP',
77-
desc: 'Fixed donor meta field syncing inconsistencies.',
72+
label: 'WooCommerce',
73+
desc: 'Resolved an issue affecting recognition of existing customers during workflows.',
7874
isPro: false
7975
},
8076
{
81-
label: 'Zoho Sheet',
82-
desc: 'Corrected the header-fetching issue that prevented proper data mapping.',
77+
label: 'WooCommerce',
78+
desc: 'Prevented unauthorized product review validation.',
8379
isPro: false
8480
},
8581
{
86-
label: 'Ultimate Member',
87-
desc: 'Fixed the problem where edited integration fields would disappear.',
82+
label: 'Salesforce',
83+
desc: 'Corrected phone number handling to ensure consistent formatting and syncing.',
8884
isPro: false
8985
},
9086
{
9187
label: 'Divi Form (Divi Engine)',
92-
desc: 'Addressed a bug where the form type returned a null value.',
88+
desc: 'Fixed a bug where the Create Kids form type returned a null value',
9389
isPro: true
9490
}
9591
]

includes/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Config
2121

2222
public const VAR_PREFIX = 'btcbi_';
2323

24-
public const VERSION = '2.7.2';
24+
public const VERSION = '2.7.3';
2525

2626
public const DB_VERSION = '1.0';
2727

readme.txt

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Contributors: bitpressadmin, akaioum, rishadbitcode, niloy121, fahimsakib, shuvomohajan, tanvirchy, shakhawathosen, khoaiz, mazharul78
33
Tags: automation, automator, Google Sheets, webhooks, zapier, marketing automation, WooCommerce Integration, no-code automation, email marketing automation, ecommerce automation, digital marketing automation, conditional logic
44
Requires at least: 5.1
5-
Tested up to: 6.8
5+
Tested up to: 6.9
66
Requires PHP: 7.4
7-
Stable tag: 2.7.2
7+
Stable tag: 2.7.3
88
License: GPLv2 or later
99

1010
Perfect Automation and integration plugin: Connect 300+ platforms and automate CRM, Email marketing tools, Google Sheets, Contact forms, LMS and more
@@ -700,6 +700,24 @@ Bit Integrations follows WordPress coding standards and best practices to ensure
700700

701701
== Changelog ==
702702

703+
= 2.7.3 =
704+
_Release Date - 3rd December 2025_
705+
706+
- **New Trigger**
707+
- MailerPress: 7 new events added (Pro)
708+
709+
- **New Action**
710+
- MailerPress: 6 new events added (Pro)
711+
712+
- **New Feature**
713+
- Salesforce: Added the ability to update existing leads, enabling smoother CRM maintenance and automation (Pro).
714+
715+
- **Bug Fixes**
716+
- WooCommerce: Resolved an issue affecting recognition of existing customers during workflows.
717+
- WooCommerce: Prevented unauthorized product review validation.
718+
- Salesforce: Corrected phone number handling to ensure consistent formatting and syncing.
719+
- Divi Form (Divi Engine): Fixed a bug where the Create Kids form type returned a null value (Pro).
720+
703721
= 2.7.2 =
704722
_Release Date - 26th November 2025_
705723

0 commit comments

Comments
 (0)