Skip to content

Commit a3fe2f5

Browse files
Merge pull request #740 from godaddy-wordpress/release/5.15.5
Release: v5.15.5
2 parents fd88452 + cc9e784 commit a3fe2f5

File tree

158 files changed

+539
-522
lines changed

Some content is hidden

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

158 files changed

+539
-522
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
PHP_VERSION: ${{ matrix.php }}
3636

3737
steps:
38-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
38+
- uses: actions/checkout@v4
3939

4040
- name: Switch to PHP ${{ env.PHP_VERSION }}
4141
run: |
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
echo "::set-output name=dir::$(composer config cache-files-dir)"
6161
62-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
62+
- uses: actions/cache@v4
6363
with:
6464
path: ${{ steps.composer-cache.outputs.dir }}
6565
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

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

66
defined( 'ABSPATH' ) or exit;
77

0 commit comments

Comments
 (0)