Skip to content

Commit 6822051

Browse files
github-actions[bot]agibson-godaddyCopilot
authored
Release v6.1.2 (#812)
* Version 6.1.2 * Check if WeakMap keys exist before using (#810) * Version 6.1.1 * Add inline jQuery (#809) * Check if keys exist before using * Set up tests * Add unit tests * Use helper * Update changelog * Change test namespace Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Set changelog dates --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ashley Gibson <99189195+agibson-godaddy@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ashley Gibson <agibson@godaddy.com>
1 parent dfda04b commit 6822051

176 files changed

Lines changed: 738 additions & 599 deletions

File tree

Some content is hidden

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

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": "6.1.1",
4+
"version": "6.1.2",
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\\v6_1_1\\": "woocommerce/"
38+
"SkyVerge\\WooCommerce\\PluginFramework\\v6_1_2\\": "woocommerce/"
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"SkyVerge\\WooCommerce\\PluginFramework\\v6_1_1\\Tests\\": "tests/"
43+
"SkyVerge\\WooCommerce\\PluginFramework\\v6_1_2\\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": "6.1.1",
3+
"version": "6.1.2",
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\v6_1_1\Tests;
3+
namespace SkyVerge\WooCommerce\PluginFramework\v6_1_2\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\v6_1_1 as Framework;
5+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 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\v6_1_1 as Framework;
5+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 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\v6_1_1 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 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\v6_1_1 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 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\v6_1_1 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 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\v6_1_1 as Framework;
4+
use SkyVerge\WooCommerce\PluginFramework\v6_1_2 as Framework;
55

66
defined( 'ABSPATH' ) or exit;
77

0 commit comments

Comments
 (0)