Skip to content

Commit 5b4f7ca

Browse files
authored
Merge pull request #445 from justlevine/release/0.13.0.1
release: 0.13.0.1
2 parents 718a2ff + d936be2 commit 5b4f7ca

File tree

7 files changed

+21
-14
lines changed

7 files changed

+21
-14
lines changed

.github/workflows/integration-testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
strategy:
3232
matrix:
3333
php: [ '8.2', '8.1', '8.0' ]
34-
wordpress: [ '6.5', '6.4','6.3', '6.2']
34+
wordpress: [ '6.6', '6.5', '6.4','6.3', '6.2']
3535
include:
3636
- php: '8.2'
37-
wordpress: '6.5'
37+
wordpress: '6.6'
3838
coverage: 1
3939
- php: '8.0'
4040
wordpress: '6.1'
@@ -48,6 +48,8 @@ jobs:
4848
# New WP versions that dont support older PHP versions
4949
- php: "8.0"
5050
wordpress: "6.5"
51+
- php: "8.0"
52+
wordpress: "6.6"
5153
fail-fast: false
5254

5355
steps:

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.13.0.1]
6+
7+
This _patch_ release fixes compatibility with Composer-based WordPress installations, and a few minor issues introduced in the previous release.
8+
59
- fix: Check if classes are loaded by a different autoloader before attempting to autoload them. H/t @cvanh
610
- fix: Return `wp_max_upload_size()` instead of `null` if `GfFieldWithFileSizeSetting.maxFileSize` is `null`. H/t @Gytjarek
711
- fix: Fix typo in Autoloader release URL.
812
- fix: Ensure a valid source ID exists before attempting to resolve a `connectedFormField`.
13+
- ci: Test compatibility against WP 6.6.
914
- ci: Replace calls to `docker-compose` with `docker compose`.
1015

1116
## v0.13.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A WordPress plugin that adds <a href="https://wpgraphql.com" target="_blank">WPG
88

99
-----
1010

11-
![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.13.0) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
11+
![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.13.0.1) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
1212
[![Coverage Status](https://coveralls.io/repos/github/AxeWP/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/AxeWP/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml)
1313

1414
## Overview

bin/run-docker.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ print_usage_instructions() {
1616
echo " composer build-app"
1717
echo " composer run-app"
1818
echo ""
19-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 composer build-app"
20-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 composer run-app"
19+
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer build-app"
20+
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer run-app"
2121
echo ""
22-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh build -a"
23-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh run -a"
22+
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh build -a"
23+
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh run -a"
2424
exit 1
2525
}
2626

@@ -29,7 +29,7 @@ if [ $# -eq 0 ]; then
2929
fi
3030

3131
TAG=${TAG-latest}
32-
WP_VERSION=${WP_VERSION-6.5}
32+
WP_VERSION=${WP_VERSION-6.6}
3333
PHP_VERSION=${PHP_VERSION-8.2}
3434

3535
BUILD_NO_CACHE=${BUILD_NO_CACHE-}

phpstan/constants.php

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

66
define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
77
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
8-
define( 'WPGRAPHQL_GF_VERSION', '0.13.0' );
8+
define( 'WPGRAPHQL_GF_VERSION', '0.13.0.1' );

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Contributors: justlevine, kellenmace, mtdbyanechko, tinytoolbox
33
Tags: Forms, GraphQL, Gatsby, Headless, GF, Gravity, WPGraphQL, React
44
Requires at least: 6.0
5-
Tested up to: 6.5
5+
Tested up to: 6.6
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.7.0
88
Requires WPGraphQL: 1.26.0
9-
Stable tag: 0.13.0
9+
Stable tag: 0.13.0.1
1010
Maintained at: https://github.com/axewp/wp-graphql-gravity-forms
1111
License: GPL-3
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html

wp-graphql-gravity-forms.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
* Author: AxePress Development
88
* Author URI: https://axepress.dev
99
* Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases
10-
* Version: 0.13.0
10+
* Version: 0.13.0.1
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
14-
* Tested up to: 6.5
14+
* Tested up to: 6.6
1515
* Requires PHP: 7.4
1616
* Requires Plugins: wp-graphql
1717
* WPGraphQL requires at least: 1.26.0
@@ -51,7 +51,7 @@
5151
function constants(): void {
5252
// Plugin version.
5353
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
54-
define( 'WPGRAPHQL_GF_VERSION', '0.13.0' );
54+
define( 'WPGRAPHQL_GF_VERSION', '0.13.1' );
5555
}
5656

5757
// Plugin Folder Path.

0 commit comments

Comments
 (0)