Skip to content

Commit 16b4479

Browse files
github-actions[bot]agibson-godaddyajaynes-godaddy
authored
Release v5.15.7 (#755)
* Version 5.15.7 * Update versions in coffee files * Fixes for loading translations too early (#757) * Pass entire plugin instance into the deprecator class * Improve the 5.15.7 changelog entry in the SV_WC_Hook_Deprecator constructor. * Changelog language tweaks. * Add a changelog entry for the behavior change in the plugin-overridable SV_WC_Plugin::init_hook_deprecator() method. * Docblock for getPluginName(). --------- Co-authored-by: Andrew Jaynes <[email protected]> * Update a use of @import to @use for future compat with Dart Sass 3.0. * Pot file updates from npm run build. * Add a changelog entry for the the translations fixes. * s/logging/triggering --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ashley Gibson <[email protected]> Co-authored-by: Ashley Gibson <[email protected]> Co-authored-by: Andrew Jaynes <[email protected]>
1 parent 72353e4 commit 16b4479

File tree

153 files changed

+560
-530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+560
-530
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "skyverge/wc-plugin-framework",
33
"description": "The official SkyVerge WooCommerce plugin framework",
4-
"version": "5.15.6",
4+
"version": "5.15.7",
55
"license": "GPL-3.0",
66
"minimum-stability": "dev",
77
"prefer-stable": true,
@@ -35,12 +35,12 @@
3535
"woocommerce/class-sv-wp-admin-message-handler.php"
3636
],
3737
"psr-4": {
38-
"SkyVerge\\WooCommerce\\PluginFramework\\v5_15_6\\": "woocommerce/"
38+
"SkyVerge\\WooCommerce\\PluginFramework\\v5_15_7\\": "woocommerce/"
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"SkyVerge\\WooCommerce\\PluginFramework\\v5_15_6\\Tests\\": "tests/"
43+
"SkyVerge\\WooCommerce\\PluginFramework\\v5_15_7\\Tests\\": "tests/"
4444
}
4545
},
4646
"config": {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wc-plugin-framework",
3-
"version": "5.15.6",
3+
"version": "5.15.7",
44
"title": "WooCommerce Plugin Framework",
55
"author": "SkyVerge Team",
66
"homepage": "https://github.com/skyverge/wc-plugin-framework#readme",

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace SkyVerge\WooCommerce\PluginFramework\v5_15_6\Tests;
3+
namespace SkyVerge\WooCommerce\PluginFramework\v5_15_7\Tests;
44

55
use WP_Mock\Tools\TestCase as WpMockTestCase;
66

tests/_support/plugins/gateway-test-plugin/includes/API.php

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

33
namespace SkyVerge\WooCommerce\GatewayTestPlugin;
44

5-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
5+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
66

77
defined( 'ABSPATH' ) or exit;
88

tests/_support/plugins/gateway-test-plugin/includes/Gateway.php

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

33
namespace SkyVerge\WooCommerce\GatewayTestPlugin;
44

5-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
5+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
66

77
defined( 'ABSPATH' ) or exit;
88

tests/_support/plugins/gateway-test-plugin/includes/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace SkyVerge\WooCommerce\GatewayTestPlugin;
33

4-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
55

66
defined( 'ABSPATH' ) or exit;
77

tests/_support/plugins/test-plugin/includes/API.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace SkyVerge\WooCommerce\TestPlugin;
33

4-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
55

66
defined( 'ABSPATH' ) or exit;
77

tests/_support/plugins/test-plugin/includes/Gateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace SkyVerge\WooCommerce\TestPlugin;
33

4-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
55

66
defined( 'ABSPATH' ) or exit;
77

tests/_support/plugins/test-plugin/includes/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace SkyVerge\WooCommerce\TestPlugin;
33

4-
use SkyVerge\WooCommerce\PluginFramework\v5_15_6 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v5_15_7 as Framework;
55

66
defined( 'ABSPATH' ) or exit;
77

0 commit comments

Comments
 (0)