Skip to content

Commit e6f033f

Browse files
committed
chore: version updated to v2.6.5
1 parent b196738 commit e6f033f

File tree

4 files changed

+27
-42
lines changed

4 files changed

+27
-42
lines changed

bitwpfi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* Description: Bit Integrations is a platform that integrates with over 290+ 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.6.4
7+
* Version: 2.6.5
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
@@ -24,7 +24,7 @@
2424
$btcbi_db_version = '1.1';
2525

2626
// Define most essential constants.
27-
define('BTCBI_VERSION', '2.6.4');
27+
define('BTCBI_VERSION', '2.6.5');
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: 14 additions & 38 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 = '12th July 2025'
14+
const releaseDate = '26th July 2025'
1515

1616
// Changelog items format [{ 'label': '', 'desc': '', 'isPro': true }]
1717
const changeLog = [
@@ -25,73 +25,49 @@ const changeLog = [
2525
label: __('New Actions', 'bit-integrations'),
2626
headClass: 'new-integration',
2727
itemClass: 'integration-list',
28-
items: [
29-
{
30-
label: 'MailerLite',
31-
desc: '2 new events added',
32-
isPro: true
33-
}
34-
]
28+
items: []
3529
},
3630
{
3731
label: __('New Triggers', 'bit-integrations'),
3832
headClass: 'new-trigger',
3933
itemClass: 'integration-list',
40-
items: [
41-
{
42-
label: 'Amelia Booking',
43-
desc: '1 new events added',
44-
isPro: true
45-
}
46-
]
34+
items: []
4735
},
4836
{
4937
label: __('New Features', 'bit-integrations'),
5038
headClass: 'new-feature',
5139
itemClass: 'feature-list',
52-
items: [
53-
{
54-
label: 'Bit Form (Trigger)',
55-
desc: 'Uploaded files data are now captured and accessible via actions.',
56-
isPro: false
57-
}
58-
]
40+
items: []
5941
},
6042
{
6143
label: __('Improvements', 'bit-integrations'),
6244
headClass: 'new-improvement',
6345
itemClass: 'feature-list',
64-
items: [
65-
{
66-
label: 'Encharge',
67-
desc: 'Tag insertion now intelligently combines with existing tags instead of overwriting them.',
68-
isPro: false
69-
}
70-
]
46+
items: []
7147
},
7248
{
7349
label: __('Bug Fixes', 'bit-integrations'),
7450
headClass: 'fixes',
7551
itemClass: 'fixes-list',
7652
items: [
7753
{
78-
label: 'Translation (WP 6.7+)',
79-
desc: 'Fixed issue with loading notice translations in the latest WordPress version.',
80-
isPro: false
54+
label: 'Plugin Update',
55+
desc: 'Fixed version updating issue causing discrepancies during plugin upgrades',
56+
isPro: true
8157
},
8258
{
83-
label: 'MailerLite',
84-
desc: 'Fixed an issue where existing subscribers were not being handled correctly.',
59+
label: 'WooCommerce',
60+
desc: 'Resolved an issue with meta box field fetching not returning expected values.',
8561
isPro: false
8662
},
8763
{
88-
label: 'Salesforce',
89-
desc: 'Resolved the redirect URL issue during authentication or callback.',
90-
isPro: false
64+
label: 'Webhook',
65+
desc: 'Fixed fatal error caused by the JSON checker in certain payload conditions.',
66+
isPro: true
9167
},
9268
{
9369
label: 'Webhook',
94-
desc: 'Fixed an issue with JSON body parameters in webhook payloads.',
70+
desc: 'Addressed an issue where the request body was not flattening correctly, improving compatibility with third-party services.',
9571
isPro: true
9672
}
9773
]

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.6.4';
24+
public const VERSION = '2.6.5';
2525

2626
public const DB_VERSION = '1.0';
2727

readme.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: automation, automator, Google Sheets, webhooks, zapier, marketing automati
44
Requires at least: 5.1
55
Tested up to: 6.8
66
Requires PHP: 7.4
7-
Stable tag: 2.6.4
7+
Stable tag: 2.6.5
88
License: GPLv2 or later
99

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

701701
== Changelog ==
702702

703+
= 2.6.5 =
704+
_Release Date -26th july 2025_
705+
706+
- **Bug Fixes**
707+
- Plugin Update: Fixed version updating issue causing discrepancies during plugin upgrades (Pro).
708+
- WooCommerce: Resolved an issue with meta box field fetching not returning expected values.
709+
- Webhook: Fixed fatal error caused by the JSON checker in certain payload conditions (Pro).
710+
- Webhook: Addressed an issue where the request body was not flattening correctly, improving compatibility with third-party services (Pro).
711+
703712
= 2.6.4 =
704713
_Release Date -12th july 2025_
705714

0 commit comments

Comments
 (0)