Skip to content

Commit c57304b

Browse files
tbradshamatticbot
authored andcommitted
Updated package versions for automattic/jetpackcrm
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/9214006344 Upstream-Ref: Automattic/jetpack@9453783
1 parent 1b1a5dd commit c57304b

25 files changed

+130
-138
lines changed

CHANGELOG.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,27 @@
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [6.4.3-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [6.4.3] - 2024-05-23
129
### Added
13-
- Currency: Added several new currencies to the currency dropdown.
14-
- Fonts: Updated core Noto Sans, and added new CJK fonts
15-
- Readme: Adding information on how to contribute to Jetpack CRM
16-
- WooSync: Added new status mapping to avoid creating invoices and transactions from WooCommerce to Jetpack CRM
10+
- Currency: Added several new currencies to the currency dropdown. [#36897]
11+
- Fonts: Updated core Noto Sans, and added new CJK fonts. [#36962]
12+
- Readme: Adding information on how to contribute to Jetpack CRM. [#36847]
13+
- WooSync: Added new status mapping to avoid creating invoices and transactions from WooCommerce to Jetpack CRM. [#37276]
1714

1815
### Changed
19-
- General: use wp_admin_notice function introduced in WP 6.4 to display notices.
20-
- Updated package dependencies.
16+
- General: use wp_admin_notice function introduced in WP 6.4 to display notices. [#37051]
17+
- Updated package dependencies. [#36775] [#37147] [#37148] [#37348] [#37379] [#37380] [#37382]
2118

2219
### Removed
23-
- Contact Form: Updated a comment reference to Grunion_Contact_Form_Plugin to be Contact_Form_Plugin.
20+
- Contact Form: Updated a comment reference to Grunion_Contact_Form_Plugin to be Contact_Form_Plugin. [#37157]
2421

2522
### Fixed
26-
- Companies: Increased city field size from 100 to 200
27-
- Contacts: Increased city field size from 100 to 200
28-
- Invoices: Fix the logo, image not found, issue in the PDF invoices.
29-
- Invoices: Remove the blank line below the contact name.
30-
- Listviews: Invoice quick filter status fix to prevent filters not working
31-
- MailPoet Sync: Fixed the percentage difference issue calculating the pending pages to proces.
23+
- Companies: Increased city field size from 100 to 200. [#37509]
24+
- Contacts: Increased city field size from 100 to 200. [#37509]
25+
- Invoices: Fix "image not found" logo issue in PDF invoices. [#37311]
26+
- Invoices: Remove the blank line below the contact name. [#37462]
27+
- Listviews: Invoice quick filter status fix to prevent filters not working. [#37048]
28+
- MailPoet Sync: Fix pending pages percentage calculation issue. [#37508]
3229

3330
## [6.4.2] - 2024-04-08
3431
### Added
@@ -359,7 +356,7 @@ This is an alpha version! The changes listed here are not final.
359356
- Improved: Added a migration to remove outdated AKA lines
360357

361358
[5.5.4-a.1]: https://github.com/Automattic/jetpack-crm/compare/v5.5.3...v5.5.4-a.1
362-
[6.4.3-alpha]: https://github.com/Automattic/jetpack-crm/compare/6.4.2...6.4.3-alpha
359+
[6.4.3]: https://github.com/Automattic/jetpack-crm/compare/6.4.2...6.4.3
363360
[6.4.2]: https://github.com/Automattic/jetpack-crm/compare/6.4.1...6.4.2
364361
[6.4.1]: https://github.com/Automattic/jetpack-crm/compare/6.4.0...6.4.1
365362
[6.4.0]: https://github.com/Automattic/jetpack-crm/compare/6.3.2...6.4.0

ZeroBSCRM.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Jetpack CRM
44
* Plugin URI: https://jetpackcrm.com
55
* Description: Jetpack CRM is the simplest CRM for WordPress. Self host your own Customer Relationship Manager using WP.
6-
* Version: 6.4.3-alpha
6+
* Version: 6.4.3
77
* Author: Automattic - Jetpack CRM team
88
* Author URI: https://jetpackcrm.com
99
* Text Domain: zero-bs-crm

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
]
4343
},
4444
"config": {
45-
"autoloader-suffix": "06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha",
45+
"autoloader-suffix": "06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3",
4646
"allow-plugins": {
4747
"automattic/jetpack-autoloader": true,
4848
"automattic/jetpack-composer-plugin": true,
@@ -57,6 +57,7 @@
5757
"automattic/woocommerce": "^3.0",
5858
"dompdf/dompdf": "2.0.4"
5959
},
60+
"repositories": [],
6061
"autoload": {
6162
"classmap": [
6263
"src/"

jetpack_vendor/automattic/jetpack-constants/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"require-dev": {
1010
"brain/monkey": "2.6.1",
1111
"yoast/phpunit-polyfills": "1.1.0",
12-
"automattic/jetpack-changelogger": "^4.2.4"
12+
"automattic/jetpack-changelogger": "^4.2.2"
1313
},
1414
"suggest": {
1515
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."

readme.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -362,22 +362,25 @@ We offer a full, no-hassle refund within 14 days. You can read more about that,
362362

363363

364364
== Changelog ==
365-
### 6.4.2 - 2024-04-08
365+
### 6.4.3 - 2024-05-23
366366
#### Added
367-
- Dashboard: Sales Funnel now links to contact list view.
368-
- Dashboard: Display red bubble notification in My Jetpack when installation is bad.
367+
- Currency: Added several new currencies to the currency dropdown.
368+
- Fonts: Updated core Noto Sans, and added new CJK fonts.
369+
- Readme: Adding information on how to contribute to Jetpack CRM.
370+
- WooSync: Added new status mapping to avoid creating invoices and transactions from WooCommerce to Jetpack CRM.
369371

370372
#### Changed
371-
- Dashboard: Only show installation errors on plugins page.
372-
- Segments: Increased performance.
373-
- WooSync: Added a setting to enable invoices generated by WooCommerce to use the Jetpack CRM invoice reference system.
373+
- General: use wp_admin_notice function introduced in WP 6.4 to display notices.
374+
- Updated package dependencies.
375+
376+
#### Removed
377+
- Contact Form: Updated a comment reference to Grunion_Contact_Form_Plugin to be Contact_Form_Plugin.
374378

375379
#### Fixed
376-
- Data Tools: Cleanup of page logic.
377-
- Invoices: Display full statements with long invoice lists.
378-
- Invoices: Enhanced the PDF generation for statements.
379-
- Listviews: Status filters are now case-sensitive.
380-
- PDF: Improved font reinstallation.
381-
- Permissions: Allow users assigned to contacts to view linked objects even if assign ownership is unchecked.
382-
- Users: Make sure assigned users are not removed from contacts upon edit.
380+
- Companies: Increased city field size from 100 to 200.
381+
- Contacts: Increased city field size from 100 to 200.
382+
- Invoices: Fix "image not found" logo issue in PDF invoices.
383+
- Invoices: Remove the blank line below the contact name.
384+
- Listviews: Invoice quick filter status fix to prevent filters not working.
385+
- MailPoet Sync: Fix pending pages percentage calculation issue.
383386

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::getLoader();
25+
return ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::getLoader();

vendor/autoload_packages.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @package automattic/jetpack-autoloader
66
*/
77

8-
namespace Automattic\Jetpack\Autoloader\jp06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha\al3_0_7;
8+
namespace Automattic\Jetpack\Autoloader\jp06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3\al3_0_7;
99

1010
// phpcs:ignore
1111

vendor/composer/autoload_real.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha
5+
class ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3
66
{
77
private static $loader;
88

@@ -24,17 +24,17 @@ public static function getLoader()
2424

2525
require __DIR__ . '/platform_check.php';
2626

27-
spl_autoload_register(array('ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha', 'loadClassLoader'), true, true);
27+
spl_autoload_register(array('ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3', 'loadClassLoader'), true, true);
2828
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29-
spl_autoload_unregister(array('ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha', 'loadClassLoader'));
29+
spl_autoload_unregister(array('ComposerAutoloaderInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3', 'loadClassLoader'));
3030

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::getInitializer($loader));
3333

3434
$loader->setClassMapAuthoritative(true);
3535
$loader->register(true);
3636

37-
$filesToLoad = \Composer\Autoload\ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::$files;
37+
$filesToLoad = \Composer\Autoload\ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::$files;
3838
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
3939
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
4040
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;

vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha
7+
class ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3
88
{
99
public static $files = array (
1010
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
@@ -389,9 +389,9 @@ class ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha
389389
public static function getInitializer(ClassLoader $loader)
390390
{
391391
return \Closure::bind(function () use ($loader) {
392-
$loader->prefixLengthsPsr4 = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::$prefixLengthsPsr4;
393-
$loader->prefixDirsPsr4 = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::$prefixDirsPsr4;
394-
$loader->classMap = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3_alpha::$classMap;
392+
$loader->prefixLengthsPsr4 = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::$prefixLengthsPsr4;
393+
$loader->prefixDirsPsr4 = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::$prefixDirsPsr4;
394+
$loader->classMap = ComposerStaticInit06c775433a83ed276f0a1d8ac25f93ba_crmⓥ6_4_3::$classMap;
395395

396396
}, null, ClassLoader::class);
397397
}

0 commit comments

Comments
 (0)