diff --git a/README.md b/README.md index 189b8367..185683b6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms. -![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/harness-software/wp-graphql-gravity-forms/v0.12.1) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
+![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/harness-software/wp-graphql-gravity-forms/v0.12.2) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
[![Coverage Status](https://coveralls.io/repos/github/harness-software/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/harness-software/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml) * [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA) diff --git a/composer.lock b/composer.lock index 569e5a3f..b91137b6 100644 --- a/composer.lock +++ b/composer.lock @@ -3896,16 +3896,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.16", + "version": "1.10.17", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "352bdbb960bb523e3d71b834862589f910921c23" + "reference": "8aca56455b40846865e4fac9d24b010a574dc362" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/352bdbb960bb523e3d71b834862589f910921c23", - "reference": "352bdbb960bb523e3d71b834862589f910921c23", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/8aca56455b40846865e4fac9d24b010a574dc362", + "reference": "8aca56455b40846865e4fac9d24b010a574dc362", "shasum": "" }, "require": { @@ -3954,7 +3954,7 @@ "type": "tidelift" } ], - "time": "2023-06-05T08:21:46+00:00" + "time": "2023-06-07T15:55:47+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/phpstan/constants.php b/phpstan/constants.php index 688d63f7..8c7862e2 100644 --- a/phpstan/constants.php +++ b/phpstan/constants.php @@ -6,4 +6,4 @@ define( 'WPGRAPHQL_GF_AUTOLOAD', true ); define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' ); define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' ); -define( 'WPGRAPHQL_GF_VERSION', '0.12.1' ); +define( 'WPGRAPHQL_GF_VERSION', '0.12.2' ); diff --git a/readme.txt b/readme.txt index 2122b194..10f23c6f 100644 --- a/readme.txt +++ b/readme.txt @@ -1,12 +1,12 @@ === WPGraphQL for Gravity Forms === -Contributors: kellenmace, mtdbyanechko, justlevine, tinytoolbox -Tags: GraphQL, Gatsby, Headless, GF, Gravity, Forms, WPGraphQL, +Contributors: justlevine, kellenmace, mtdbyanechko, tinytoolbox +Tags: Forms, GraphQL, Gatsby, Headless, GF, Gravity, WPGraphQL, React Requires at least: 5.4.1 -Tested up to: 6.2 +Tested up to: 6.2.2 Requires PHP: 7.4 Requires Gravity Forms: 2.5.0 Requires WPGraphQL: 1.9.0 -Stable tag: 0.12.1 +Stable tag: 0.12.2 Maintained at: https://github.com/harness-software/wp-graphql-gravity-forms License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/Registry/FieldChoiceRegistry.php b/src/Registry/FieldChoiceRegistry.php index cad95ab4..b6a98cd8 100644 --- a/src/Registry/FieldChoiceRegistry.php +++ b/src/Registry/FieldChoiceRegistry.php @@ -27,7 +27,7 @@ class FieldChoiceRegistry { * * Used to prevent duplicate type registration. * - * @since 0.12.1 + * @since 0.12.2 * * @var array */ diff --git a/src/Registry/FieldInputRegistry.php b/src/Registry/FieldInputRegistry.php index 4d6fa723..c21ecbe9 100644 --- a/src/Registry/FieldInputRegistry.php +++ b/src/Registry/FieldInputRegistry.php @@ -27,7 +27,7 @@ class FieldInputRegistry { * * Used to prevent duplicate type registration. * - * @since 0.12.1 + * @since 0.12.2 * * @var array */ diff --git a/src/Utils/Utils.php b/src/Utils/Utils.php index df8d017c..8d9fe307 100644 --- a/src/Utils/Utils.php +++ b/src/Utils/Utils.php @@ -322,10 +322,10 @@ public static function get_ignored_gf_settings(): array { /** * Gets the entry databaseId from an indeterminate GraphQL ID. * - * @since @todo - * * @param int|string $id . * @throws \GraphQL\Error\UserError . + * + * @since 0.12.2 */ public static function get_entry_id_from_id( $id ): int { return self::get_database_id_from_id( $id, EntriesLoader::$name ); @@ -334,10 +334,10 @@ public static function get_entry_id_from_id( $id ): int { /** * Gets the entry databaseId from an indeterminate GraphQL ID. * - * @since @todo - * * @param int|string $id . * @throws \GraphQL\Error\UserError . + * + * @since 0.12.2 */ public static function get_form_id_from_id( $id ): int { return self::get_database_id_from_id( $id, FormsLoader::$name ); @@ -346,8 +346,8 @@ public static function get_form_id_from_id( $id ): int { /** * Gets the databaseId from an indeterminate GraphQL ID, ensuring it's the correct type. * - * @since @todo - * + * @since 0.12.2 + * * @param int|string $id The provided ID. * @param string $type The expected dataloader type. * diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 734e375d..b793cb77 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'harness-software/wp-graphql-gravity-forms', 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', - 'reference' => 'fae94d402f424d14d5d9e2d93dce0f6303e24844', + 'reference' => 'aabf28139ef116405967dcd5eb4542929781aeda', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ 'harness-software/wp-graphql-gravity-forms' => array( 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', - 'reference' => 'fae94d402f424d14d5d9e2d93dce0f6303e24844', + 'reference' => 'aabf28139ef116405967dcd5eb4542929781aeda', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/wp-graphql-gravity-forms.php b/wp-graphql-gravity-forms.php index 0e1dff8c..6e437e8e 100644 --- a/wp-graphql-gravity-forms.php +++ b/wp-graphql-gravity-forms.php @@ -7,11 +7,11 @@ * Author: Harness Software * Author URI: https://www.harnessup.com * Update URI: https://github.com/harness-software/wp-graphql-gravity-forms/releases - * Version: 0.12.1 + * Version: 0.12.2 * Text Domain: wp-graphql-gravity-forms * Domain Path: /languages * Requires at least: 5.4.1 - * Tested up to: 6.2 + * Tested up to: 6.2.2 * Requires PHP: 7.4 * WPGraphQL requires at least: 1.9.0 * GravityForms requires at least: 2.5.0 @@ -35,7 +35,7 @@ function gf_graphql_constants() : void { // Plugin version. if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) { - define( 'WPGRAPHQL_GF_VERSION', '0.12.1' ); + define( 'WPGRAPHQL_GF_VERSION', '0.12.2' ); } // Plugin Folder Path.