From 54567c8101b17fc27a31328b9976f2c1b0949dbe Mon Sep 17 00:00:00 2001 From: Dovid Levine Date: Sun, 17 Sep 2023 14:25:38 +0000 Subject: [PATCH 1/2] chore: update repo links and readme --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/workflows/schema-linter.yml | 2 +- CHANGELOG.md | 7 ++- README.md | 60 ++++++++++++++----- composer.json | 14 +++-- docker/app.Dockerfile | 2 +- docker/testing.Dockerfile | 4 +- docs/form-field-support.md | 2 +- .../register-custom-field-value-inputs.md | 6 +- docs/recipes/register-custom-form-field.md | 2 +- docs/submitting-forms.md | 2 +- readme.txt | 6 +- src/UpdateChecker.php | 4 +- vendor/composer/installed.php | 4 +- wp-graphql-gravity-forms.php | 6 +- 17 files changed, 82 insertions(+), 47 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 486e20ab..e21786fd 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -8,7 +8,7 @@ body: Please remember, a bug report is not the place to ask questions. You can use Slack for that, or start a topic in [GitHub - Discussions](https://github.com/harness-software/wp-graphql-gravity-forms/discussions). + Discussions](https://github.com/axewp/wp-graphql-gravity-forms/discussions). - type: textarea attributes: label: Description @@ -69,7 +69,7 @@ body: label: Please confirm that you have searched existing issues in the repo. description: >- You can do this by searching - https://github.com/harness-software/wp-graphql-gravity-forms/issues and making sure the + https://github.com/axewp/wp-graphql-gravity-forms/issues and making sure the bug is not related to another plugin. options: - label: 'Yes' diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 3bdfb852..e8a74a37 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: true contact_links: - name: General Support Request - url: https://github.com/harness-software/wp-graphql-gravity-forms/discussions + url: https://github.com/axewp/wp-graphql-gravity-forms/discussions about: For general help requests, create a new topic in Github Discussions diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index cabbb88f..a565de49 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -8,7 +8,7 @@ body: Please make sure to search the repo for [existing feature - requests](https://github.com/harness-software/wp-graphql-gravity-forms/issues?q=label%3A%22type%3A+enhancement+%E2%9A%A1%22+label%3A%22type%3A+feature+%F0%9F%A6%8B%22+label%3A%22type%3A+idea+%F0%9F%92%A1%22+) + requests](https://github.com/axewp/wp-graphql-gravity-forms/issues?q=label%3A%22type%3A+enhancement+%E2%9A%A1%22+label%3A%22type%3A+feature+%F0%9F%A6%8B%22+label%3A%22type%3A+idea+%F0%9F%92%A1%22+) before creating a new one. - type: textarea attributes: diff --git a/.github/workflows/schema-linter.yml b/.github/workflows/schema-linter.yml index ae3c54c1..a89a72e6 100644 --- a/.github/workflows/schema-linter.yml +++ b/.github/workflows/schema-linter.yml @@ -81,7 +81,7 @@ jobs: echo "Previous tagged schema ${{ steps.get-latest-tag.outputs.tag }}" - name: Get Previous Released Schema - run: curl 'https://github.com/harness-software/wp-graphql-gravity-forms/releases/download/${{ steps.get-latest-tag.outputs.tag }}/schema.graphql' -L --output /tmp/${{ steps.get-latest-tag.outputs.tag }}.graphql + run: curl 'https://github.com/axewp/wp-graphql-gravity-forms/releases/download/${{ steps.get-latest-tag.outputs.tag }}/schema.graphql' -L --output /tmp/${{ steps.get-latest-tag.outputs.tag }}.graphql # https://github.com/marketplace/actions/graphql-inspector - name: Install Schema Inspector diff --git a/CHANGELOG.md b/CHANGELOG.md index 85f38244..f7d75115 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - chore: Fix Composer PHP version constraints and rebuild lockfile. Thanks @szepeviktor! - chore: Update WPGraphQL Coding Standards to 2.0.0-beta.1 and fix resulting issues. - chore: Update Composer dev-deps. +- chore: Update links to repo and README. - tests: Set `WPLoader.loadOnly` to true for acceptance suite. Thanks @lucatume! - ci: Fix GitHub Action workflows by locking MariaDB version to v10. - ci: Test against WordPress 6.3 and PHP 8.1 @@ -548,7 +549,7 @@ This minor release addresses an issue where `PostImageInput` would be registered * tests: add WPUnit tests for `ListField`, `MultiSelectField`, `NameField`, `TimeField`, `PostContentField`, `PostTitleField`, `PostExcerptField`, `GFUtils::get_forms()`, `Utils::maybe_decode_json()`, and `WPGraphQLGravityForms::instances()` * tests: remove tests for `{fieldType}FieldValue` edges since they're deprecated anyway. -**Note** As part of the road to v1.0, [the next release will](https://github.com/harness-software/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+milestone%3Av0.10) contain numerous breaking changes to the codebase AND schema, including the removal of deprecated code (such as FieldValue edges). Please prepare accordingly. +**Note** As part of the road to v1.0, [the next release will](https://github.com/axewp/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+milestone%3Av0.10) contain numerous breaking changes to the codebase AND schema, including the removal of deprecated code (such as FieldValue edges). Please prepare accordingly. ## v0.9.1 - Gravity Forms Quiz Support @@ -901,7 +902,7 @@ Beyond that, we've squashed some bugs, deprecated some confusing and unnecessary ### New features -* Added `submitGravityFormsForm` mutation to bypass the existing draft entry flow. See [README. MD](https://github.com/harness-software/wp-graphql-gravity-forms/README.md#documentation-submit-form-mutation) for usage. +* Added `submitGravityFormsForm` mutation to bypass the existing draft entry flow. See [README. MD](https://github.com/axewp/wp-graphql-gravity-forms/README.md#documentation-submit-form-mutation) for usage. * Added `updateGravityFormsEntry` and `updateGravityFormsDraftEntry` mutations that follow the same pattern. * Added `idType` to `GravityFormsForm` and `GravityFormsEntry`, so you can now query them using the database ID, instead of generating a global id first. * Added `id` property to `FieldErrors`, so you know which failed validation. @@ -1096,4 +1097,4 @@ These properties will be removed in v1.0. This release takes the last year and a half of work on this plugin, and makes it ready for public consumption and contribution, by adopting SemVer, WordPress Coding Standards, etc. -Please see [README.md](https://github.com/harness-software/wp-graphql-gravity-forms/blob/main/README.md) for a list of all functionality. +Please see [README.md](https://github.com/axewp/wp-graphql-gravity-forms/blob/main/README.md) for a list of all functionality. diff --git a/README.md b/README.md index e784b739..fd021fde 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,16 @@ ![alt text](./assets/icon-128x128.png "WPGraphQL for Gravity Forms Logo") # WPGraphQL for Gravity Forms -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.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) +A WordPress plugin that adds WPGraphQL support for Gravity Forms. * [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA) * [Documentation](#documentation) +----- + +![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.12.2) ![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)
+[![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 Using WordPress as a headless CMS with a separate JavaScript-powered frontend single-page app is an increasingly popular tech stack. Traditionally, REST APIs have been used for the purpose of sending data back & forth between the frontend and backend in setups like this but the REST architecture has its limitations. @@ -24,7 +25,7 @@ Our hope for this open source project is that it will enable more teams to lever ## System Requirements -* PHP 7.4+ +* PHP 7.4-8.1+ * WordPress 5.4.1+ * WPGraphQL 1.9.0+ * Gravity Forms 2.5+ (Recommend: v2.6+) @@ -34,7 +35,7 @@ Our hope for this open source project is that it will enable more teams to lever 1. Install & activate [WPGraphQL](https://www.wpgraphql.com/). 2. Install & activate [Gravity Forms](https://www.gravityforms.com/) and any supported addons. -3. Download the [latest release](https://github.com/harness-software/wp-graphql-gravity-forms/releases) `.zip` file, upload it to your WordPress install, and activate the plugin. +3. Download the [latest release](https://github.com/axewp/wp-graphql-gravity-forms/releases) `.zip` file, upload it to your WordPress install, and activate the plugin. ### With Composer @@ -42,9 +43,9 @@ Our hope for this open source project is that it will enable more teams to lever composer require harness-software/wp-graphql-gravity-forms ``` - ## Updating and Versioning -As we work [towards a 1.0 Release](https://github.com/harness-software/wp-graphql-gravity-forms/issues/179), we will need to introduce numerous breaking changes. We will do our best to group multiple breaking changes together in a single release, to make it easier on developers to keep their projects up-to-date. + +As we work [towards a 1.0 Release](https://github.com/axewp/wp-graphql-gravity-forms/issues/179), we will need to introduce numerous breaking changes. We will do our best to group multiple breaking changes together in a single release, to make it easier on developers to keep their projects up-to-date. Until we hit v1.0, we're using *a modified version* of [Semantic Versioning](https://semver.org/spec/v2.0.0.html) @@ -52,6 +53,16 @@ v0.x: "Major" releases. These releases introduce new features, and may contain b v0.x.y: "Minor" releases. These releases introduce new features and enhancements and address bugs. They do not contain breaking changes. v0.x.y.z: "Patch" releases. These releases are reserved for addressing issue with the previous release only. +## Development and Support + +Development of WPGraphQL for Gravity Forms is provided by [AxePress Development](https://axepress.dev). Community contributions are _welcome_ and **encouraged**. + +Basic support is provided for free, both in [this repo](https://github.com/axewp/wp-graphql-gravity-forms/issues) and in [WPGraphQL Slack](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA). + +Priority support and custom development are available to [our Sponsors](https://github.com/sponsors/AxeWP). + + + ## Supported Features * Querying forms and entries. @@ -62,11 +73,11 @@ v0.x.y.z: "Patch" releases. These releases are reserved for addressing issue wit ## Future Feature Enhancements -[_View all Feature Requests_](https://github.com/harness-software/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+enhancement+%E2%9A%A1%22%2C%22type%3A+feature+%F0%9F%A6%8B%22%2C%22type%3A+idea+%F0%9F%92%A1%22) +[_View all Feature Requests_](https://github.com/axewp/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+enhancement+%E2%9A%A1%22%2C%22type%3A+feature+%F0%9F%A6%8B%22%2C%22type%3A+idea+%F0%9F%92%A1%22) -* Add support for [remaining form fields](https://github.com/harness-software/wp-graphql-gravity-forms/issues/195) -* Ability to [query for lists of draft entries](https://github.com/harness-software/wp-graphql-gravity-forms/issues/114). -* Ability to [create, update, and delete an individual Gravity Form](https://github.com/harness-software/wp-graphql-gravity-forms/issues/115). +* Add support for [remaining form fields](https://github.com/axewp/wp-graphql-gravity-forms/issues/195) +* Ability to [query for lists of draft entries](https://github.com/axewp/wp-graphql-gravity-forms/issues/114). +* Ability to [create, update, and delete an individual Gravity Form](https://github.com/axewp/wp-graphql-gravity-forms/issues/115). ## Documentation @@ -85,4 +96,25 @@ v0.x.y.z: "Patch" releases. These releases are reserved for addressing issue wit * [Register a Gravity Forms Form to a custom GraphQL field](docs/recipes/register-form-to-custom-field.md) * [Register a custom GraphQL connection to Gravity Forms entries](docs/recipes/register-custom-entries-connection.md) * [Register a custom Gravity Forms field to the GraphQL schema](docs/recipes/register-custom-form-field.md) -* [Add GraphQL mutation support for a custom Gravity Forms field](docs/recipes/register-custom-field-value-inputs.md) +* [Add GraphQL mutation support for a custom Gravity Forms field](docs/recipes/register-custom-field-value-inputs.md) + +## Sponsors + + + + + diff --git a/composer.json b/composer.json index 5993c4e3..f39819dc 100644 --- a/composer.json +++ b/composer.json @@ -4,17 +4,19 @@ "type": "wordpress-plugin", "license": "GPL-3.0-or-later", "support": { - "issues": "https://github.com/harness-software/wp-graphql-gravity-forms/issues", - "source": "https://github.com/harness-software/wp-graphql-gravity-forms" + "issues": "https://github.com/axewp/wp-graphql-gravity-forms/issues", + "source": "https://github.com/axewp/wp-graphql-gravity-forms" }, "authors": [ { - "name": "Harness Software", - "email": "info@harnessup.com" + "name": "AxePress Development", + "email": "support@axepress.dev", + "homepage": "https://axepress.dev" }, { - "name": "Dovid Levine", - "role": "Lead Developer" + "name": "David Levine", + "role": "Lead Developer", + "email": "david@axepress.dev" } ], "require": { diff --git a/docker/app.Dockerfile b/docker/app.Dockerfile index 26500f84..32fe48b4 100644 --- a/docker/app.Dockerfile +++ b/docker/app.Dockerfile @@ -19,7 +19,7 @@ ENV WP_VERSION=${WP_VERSION} ENV PHP_VERSION=${PHP_VERSION} LABEL author=harness -LABEL author_uri=https://github.com/harness-software +LABEL author_uri=https://github.com/axewp SHELL [ "/bin/bash", "-c" ] diff --git a/docker/testing.Dockerfile b/docker/testing.Dockerfile index 0383b201..888a1b3c 100644 --- a/docker/testing.Dockerfile +++ b/docker/testing.Dockerfile @@ -8,7 +8,7 @@ ARG PHP_VERSION FROM wp-graphql-gravity-forms:latest-wp${WP_VERSION}-php${PHP_VERSION} LABEL author=harness -LABEL author_uri=https://github.com/harness-software +LABEL author_uri=https://github.com/axewp SHELL [ "/bin/bash", "-c" ] @@ -40,4 +40,4 @@ RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini WORKDIR /var/www/html COPY docker/testing.entrypoint.sh /usr/local/bin/testing-entrypoint.sh RUN chmod 755 /usr/local/bin/testing-entrypoint.sh -ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["testing-entrypoint.sh"] diff --git a/docs/form-field-support.md b/docs/form-field-support.md index 611f2d27..534c35b3 100644 --- a/docs/form-field-support.md +++ b/docs/form-field-support.md @@ -6,7 +6,7 @@ By default, WPGraphQL for Gravity Forms adds basic query support for _all_ Form These types inherit the `FormField` interface. -*Note:* As of v0.10.0, [Experimental fields are hidden by default and must be enabled](#experimental-fields). To track implementation status of experimental fields, please review [this github issue](https://github.com/harness-software/wp-graphql-gravity-forms/issues/195) +*Note:* As of v0.10.0, [Experimental fields are hidden by default and must be enabled](#experimental-fields). To track implementation status of experimental fields, please review [this github issue](https://github.com/axewp/wp-graphql-gravity-forms/issues/195) ## Form Field properties (GraphQL fields) diff --git a/docs/recipes/register-custom-field-value-inputs.md b/docs/recipes/register-custom-field-value-inputs.md index a731587e..0f56c3cf 100644 --- a/docs/recipes/register-custom-field-value-inputs.md +++ b/docs/recipes/register-custom-field-value-inputs.md @@ -10,7 +10,7 @@ While the needs of each form field are different, the following guide lays out s Depending on how complex your Form Field is, you might want to create a custom GraphQL Input type for the form field value. -If your field is using a [preexisting `FormFieldValues` type](https://github.com/harness-software/wp-graphql-gravity-forms/blob/develop/src/Type/Input/FormFieldValuesInput.php#L34) ( e.g. `value` , `values` , `checkboxValues` ), you can skip this step. _However_, we recommend creating a custom input type for every custom GF form to [protect yourself against future breaking changes to the schema](https://www.apollographql.com/blog/graphql/basics/designing-graphql-mutations/). +If your field is using a [preexisting `FormFieldValues` type](https://github.com/axewp/wp-graphql-gravity-forms/blob/develop/src/Type/Input/FormFieldValuesInput.php#L34) ( e.g. `value` , `values` , `checkboxValues` ), you can skip this step. _However_, we recommend creating a custom input type for every custom GF form to [protect yourself against future breaking changes to the schema](https://www.apollographql.com/blog/graphql/basics/designing-graphql-mutations/). For example: @@ -45,13 +45,13 @@ add_filter( ### Preparing the GraphQL data for Gravity Forms. -WPGraphQL for Gravity Forms passes the GraphQL input args through [the `AbstractFieldValueInput` class](https://github.com/harness-software/wp-graphql-gravity-forms/blob/develop/src/Data/FieldValueInput/AbstractFieldValueInput.php) to make it easy to process the data for Gravity Forms. +WPGraphQL for Gravity Forms passes the GraphQL input args through [the `AbstractFieldValueInput` class](https://github.com/axewp/wp-graphql-gravity-forms/blob/develop/src/Data/FieldValueInput/AbstractFieldValueInput.php) to make it easy to process the data for Gravity Forms. For custom fields, we recommend extending the above class, and then registering it with [the `graphql_gf_field_value_input_class` filter](../actions-and-filters.md#graphql_gf_field_value_input). If you wish to change the behavior of one of the default `FieldValueInput` s, you can make use of several WordPress filters. #### Example 1: Extending `AbstractFieldValueInput` -The following example shows how to create a custom FieldValueInput object to handle submissions for your custom Form Field. For a full understanding, you should review the comments in [the source code](https://github.com/harness-software/wp-graphql-gravity-forms/blob/develop/src/Data/FieldValueInput/AbstractFieldValueInput.php). +The following example shows how to create a custom FieldValueInput object to handle submissions for your custom Form Field. For a full understanding, you should review the comments in [the source code](https://github.com/axewp/wp-graphql-gravity-forms/blob/develop/src/Data/FieldValueInput/AbstractFieldValueInput.php). ```php class MyCustomFieldValueInput extends \WPGraphQL\GF\Data\FieldValueInput\AbstractFieldValueInput { diff --git a/docs/recipes/register-custom-form-field.md b/docs/recipes/register-custom-form-field.md index d9ad060b..ba34fb1e 100644 --- a/docs/recipes/register-custom-form-field.md +++ b/docs/recipes/register-custom-form-field.md @@ -2,7 +2,7 @@ ## How to: register query support for a custom Gravity Forms Field -__To see this patterns in action, take a look in [`src/Extensions`](https://github.com/harness-software/wp-graphql-gravity-forms/tree/main/src/Extensions). +__To see this patterns in action, take a look in [`src/Extensions`](https://github.com/axewp/wp-graphql-gravity-forms/tree/main/src/Extensions). While this plugin offers [basic support for custom Gravity Forms fields out of the box](../form-field-support.md), in many cases you will want to extend the GraphQL schema to provide your custom field data. diff --git a/docs/submitting-forms.md b/docs/submitting-forms.md index eafb867e..3507997b 100644 --- a/docs/submitting-forms.md +++ b/docs/submitting-forms.md @@ -6,7 +6,7 @@ This mutation can be used either to submit an Entry or to submit a draft entry, The `fieldValues` input takes an array of objects containing the `id` of the field, and a value input that corresponds to the Gravity Forms Field type. -**Note**: Due to [GraphQL's current lack of support for Input Union types](https://github.com/harness-software/wp-graphql-gravity-forms/issues/4#issuecomment-563305561), you must use the specific value type specific to that field. A full list of field value types and their corresponding field fragments are below. +**Note**: Due to [GraphQL's current lack of support for Input Union types](https://github.com/axewp/wp-graphql-gravity-forms/issues/4#issuecomment-563305561), you must use the specific value type specific to that field. A full list of field value types and their corresponding field fragments are below. ## Supported Field Value input types diff --git a/readme.txt b/readme.txt index ded8b401..7d248fdd 100644 --- a/readme.txt +++ b/readme.txt @@ -7,12 +7,12 @@ Requires PHP: 7.4 Requires Gravity Forms: 2.5.0 Requires WPGraphQL: 1.9.0 Stable tag: 0.12.2 -Maintained at: https://github.com/harness-software/wp-graphql-gravity-forms +Maintained at: https://github.com/axewp/wp-graphql-gravity-forms License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html == Description == -Adds Gravity Forms functionality to the WPGraphQL schema. For more information, see [README.md](https://github.com/harness-software/wp-graphql-gravity-forms/blob/main/README.md) +Adds Gravity Forms functionality to the WPGraphQL schema. For more information, see [README.md](https://github.com/axewp/wp-graphql-gravity-forms/blob/main/README.md) == Upgrade Notice == == Frequently Asked Questions == @@ -21,4 +21,4 @@ Adds Gravity Forms functionality to the WPGraphQL schema. For more information, == Changelog == **WARNING**: This release _may_ have breaking changes. Please review the release notes before updating. -[Release Notes](https://github.com/harness-software/wp-graphql-gravity-forms/releases) +[Release Notes](https://github.com/axewp/wp-graphql-gravity-forms/releases) diff --git a/src/UpdateChecker.php b/src/UpdateChecker.php index 9a501803..01c7aa2e 100644 --- a/src/UpdateChecker.php +++ b/src/UpdateChecker.php @@ -37,7 +37,7 @@ public static function check_updates(): void { * * @param string $repo_link The url to the repo. */ - $repo_link = apply_filters( 'graphql_gf_update_repo_url', 'https://github.com/harness-software/wp-graphql-gravity-forms/' ); + $repo_link = apply_filters( 'graphql_gf_update_repo_url', 'https://github.com/axewp/wp-graphql-gravity-forms/' ); /** @var \Puc_v4p13_Vcs_PluginUpdateChecker */ $update_checker = Puc_v4_Factory::buildUpdateChecker( @@ -88,7 +88,7 @@ public static function in_plugin_update_message( array $plugin_data, $response ) } // translators: %s: version number. - $message = sprintf( __( 'Warning! Version %s may contain breaking changes. Please review the release notes before upgrading.', 'wp-graphql-gravity-forms' ), $new_version ); + $message = sprintf( __( 'Warning! Version %s may contain breaking changes. Please review the release notes before upgrading.', 'wp-graphql-gravity-forms' ), $new_version ); echo '

' . wp_kses_post( $message ); } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 8199c1d4..59d0b476 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' => '6c66f3229600ec884a73d38f299ef10993f382df', + 'reference' => '2ae4544a8d3bd5e0afbd804a77ed7e4bfec065f4', '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' => '6c66f3229600ec884a73d38f299ef10993f382df', + 'reference' => '2ae4544a8d3bd5e0afbd804a77ed7e4bfec065f4', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/wp-graphql-gravity-forms.php b/wp-graphql-gravity-forms.php index 3e4245ff..dced4393 100644 --- a/wp-graphql-gravity-forms.php +++ b/wp-graphql-gravity-forms.php @@ -1,12 +1,12 @@ Date: Sun, 17 Sep 2023 14:30:03 +0000 Subject: [PATCH 2/2] chore: remove css --- README.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index fd021fde..bcc5e922 100644 --- a/README.md +++ b/README.md @@ -100,21 +100,8 @@ Priority support and custom development are available to [our Sponsors](https:// ## Sponsors

- - +