chore(release): bump version to v2.8.6#168
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the plugin version to 2.8.6, increases the supported WordPress version, and populates the changelog with new triggers and actions for various integrations. Review feedback recommends wrapping hardcoded description strings in the frontend changelog with the translation function to support internationalization and fixing pluralization issues for single-event entries.
| items: [ | ||
| { | ||
| label: 'B2BKing', | ||
| desc: '3 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'BookingPress', | ||
| desc: '7 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'FormyChat', | ||
| desc: '2 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'SureDash', | ||
| desc: '18 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'wpDataTables', | ||
| desc: '4 new events added', | ||
| isPro: true | ||
| } | ||
| ] |
There was a problem hiding this comment.
The description strings for the new triggers are hardcoded. They should be wrapped in the __() translation function to ensure they can be localized, following the project's internationalization standards and the pattern used for category labels in this file.
items: [
{
label: 'B2BKing',
desc: __('3 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'BookingPress',
desc: __('7 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'FormyChat',
desc: __('2 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'SureDash',
desc: __('18 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'wpDataTables',
desc: __('4 new events added', 'bit-integrations'),
isPro: true
}
]| items: [ | ||
| { | ||
| label: 'B2BKing', | ||
| desc: '3 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'BookingPress', | ||
| desc: '6 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'Bookly', | ||
| desc: '6 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'FormyChat', | ||
| desc: '1 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'SureDash', | ||
| desc: '7 new events added', | ||
| isPro: true | ||
| }, | ||
| { | ||
| label: 'wpDataTables', | ||
| desc: '1 new events added', | ||
| isPro: true | ||
| } | ||
| ] |
There was a problem hiding this comment.
The description strings for the new actions should be wrapped in the __() translation function for internationalization. Additionally, there is a grammar error in the descriptions for 'FormyChat' and 'wpDataTables' where 'events' (plural) is used for a single event; this should be corrected to 'event' (singular) to maintain consistency with the readme.txt and proper English usage.
items: [
{
label: 'B2BKing',
desc: __('3 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'BookingPress',
desc: __('6 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'Bookly',
desc: __('6 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'FormyChat',
desc: __('1 new event added', 'bit-integrations'),
isPro: true
},
{
label: 'SureDash',
desc: __('7 new events added', 'bit-integrations'),
isPro: true
},
{
label: 'wpDataTables',
desc: __('1 new event added', 'bit-integrations'),
isPro: true
}
]
🔍 WordPress Plugin Check Report
📊 Report
|
| 📍 Line | 🔖 Check | 💬 Message |
|---|---|---|
0 |
mismatched_plugin_name | Plugin name "Bit integrations - Form Integration, Webhook, Spreadsheets, CRM, LMS & Email Automation" is different from the name declared in plugin header "Bit Integrations". |
🤖 Generated by WordPress Plugin Check Action • Learn more about Plugin Check
Description
This PR prepares the
2.8.6release by updating plugin version metadata and adding release notes in both the WordPress readme and in-app changelog UI. It documents newly added Pro triggers and actions for this release cycle.Motivation & Context
The plugin release requires synchronized version values across core files and a clear changelog for users. This ensures WordPress.org metadata and in-app release information stay accurate and consistent for
2.8.6.Related Links: (if applicable)
Type of Change
Key Changes
Release Metadata
2.8.5to2.8.6in core constants and headers.Tested up to: 7.0).Changelog Content
2.8.6release notes toreadme.txtwith categorized entries.Frontend (In-app Changelog)
Checklist
Changelog
2.8.6release.readme.txtchangelog entries now reflect all2.8.6release additions.