Skip to content

Commit

Permalink
Merge pull request #445 from justlevine/release/0.13.0.1
Browse files Browse the repository at this point in the history
release: 0.13.0.1
  • Loading branch information
justlevine authored Aug 2, 2024
2 parents 718a2ff + d936be2 commit 5b4f7ca
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
strategy:
matrix:
php: [ '8.2', '8.1', '8.0' ]
wordpress: [ '6.5', '6.4','6.3', '6.2']
wordpress: [ '6.6', '6.5', '6.4','6.3', '6.2']
include:
- php: '8.2'
wordpress: '6.5'
wordpress: '6.6'
coverage: 1
- php: '8.0'
wordpress: '6.1'
Expand All @@ -48,6 +48,8 @@ jobs:
# New WP versions that dont support older PHP versions
- php: "8.0"
wordpress: "6.5"
- php: "8.0"
wordpress: "6.6"
fail-fast: false

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

## [Unreleased]

## [v0.13.0.1]

This _patch_ release fixes compatibility with Composer-based WordPress installations, and a few minor issues introduced in the previous release.

- fix: Check if classes are loaded by a different autoloader before attempting to autoload them. H/t @cvanh
- fix: Return `wp_max_upload_size()` instead of `null` if `GfFieldWithFileSizeSetting.maxFileSize` is `null`. H/t @Gytjarek
- fix: Fix typo in Autoloader release URL.
- fix: Ensure a valid source ID exists before attempting to resolve a `connectedFormField`.
- ci: Test compatibility against WP 6.6.
- ci: Replace calls to `docker-compose` with `docker compose`.

## v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A WordPress plugin that adds <a href="https://wpgraphql.com" target="_blank">WPG

-----

![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 />
![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 />
[![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)

## Overview
Expand Down
10 changes: 5 additions & 5 deletions bin/run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ print_usage_instructions() {
echo " composer build-app"
echo " composer run-app"
echo ""
echo " WP_VERSION=6.5 PHP_VERSION=8.2 composer build-app"
echo " WP_VERSION=6.5 PHP_VERSION=8.2 composer run-app"
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer build-app"
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer run-app"
echo ""
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh build -a"
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh run -a"
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh build -a"
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh run -a"
exit 1
}

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

TAG=${TAG-latest}
WP_VERSION=${WP_VERSION-6.5}
WP_VERSION=${WP_VERSION-6.6}
PHP_VERSION=${PHP_VERSION-8.2}

BUILD_NO_CACHE=${BUILD_NO_CACHE-}
Expand Down
2 changes: 1 addition & 1 deletion phpstan/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
define( 'WPGRAPHQL_GF_VERSION', '0.13.0' );
define( 'WPGRAPHQL_GF_VERSION', '0.13.0.1' );
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
Contributors: justlevine, kellenmace, mtdbyanechko, tinytoolbox
Tags: Forms, GraphQL, Gatsby, Headless, GF, Gravity, WPGraphQL, React
Requires at least: 6.0
Tested up to: 6.5
Tested up to: 6.6
Requires PHP: 7.4
Requires Gravity Forms: 2.7.0
Requires WPGraphQL: 1.26.0
Stable tag: 0.13.0
Stable tag: 0.13.0.1
Maintained at: https://github.com/axewp/wp-graphql-gravity-forms
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
6 changes: 3 additions & 3 deletions wp-graphql-gravity-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
* Author: AxePress Development
* Author URI: https://axepress.dev
* Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases
* Version: 0.13.0
* Version: 0.13.0.1
* Text Domain: wp-graphql-gravity-forms
* Domain Path: /languages
* Requires at least: 6.0
* Tested up to: 6.5
* Tested up to: 6.6
* Requires PHP: 7.4
* Requires Plugins: wp-graphql
* WPGraphQL requires at least: 1.26.0
Expand Down Expand Up @@ -51,7 +51,7 @@
function constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
define( 'WPGRAPHQL_GF_VERSION', '0.13.0' );
define( 'WPGRAPHQL_GF_VERSION', '0.13.1' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit 5b4f7ca

Please sign in to comment.