File tree Expand file tree Collapse file tree 6 files changed +18
-12
lines changed
Expand file tree Collapse file tree 6 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5- - fix: Fix installation errors when upgrading plugin via the WordPress backend.
5+ ## v0.12.4
6+
7+ This _ minor_ release fixes a bug where updating the plugin via the WordPress backend would fail due to changes to GitHub's API.
8+
9+ ** Note** : Users relying on WordPress's built-in plugin update mechanism will need to update manually to this version by downloading the release zip.
10+
11+ - fix: Fix installation errors when upgrading plugin via the WordPress backend. H/t @shaderpixel .
612- chore: Update ` yahnis-elsts/plugin-update-checker ` to v5.2.
713- ci: Include top-level plugin folder in release zip.
814
Original file line number Diff line number Diff 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.12.3 ) ![ 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.12.4 ) ![ 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
Original file line number Diff line number Diff line change 66define ( 'WPGRAPHQL_GF_AUTOLOAD ' , true );
77define ( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY ' , 'wp-jamstack-deployments ' );
88define ( 'WPGRAPHQL_GF_PLUGIN_FILE ' , 'wp-graphql-gravity-forms.php ' );
9- define ( 'WPGRAPHQL_GF_VERSION ' , '0.12.3 ' );
9+ define ( 'WPGRAPHQL_GF_VERSION ' , '0.12.4 ' );
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Tested up to: 6.3.1
66Requires PHP: 7.4
77Requires Gravity Forms: 2.5.0
88Requires WPGraphQL: 1.9.0
9- Stable tag: 0.12.3
9+ Stable tag: 0.12.4
1010Maintained at: https://github.com/axewp/wp-graphql-gravity-forms
1111License: GPL-3
1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
Original file line number Diff line number Diff line change 11<?php return array (
22 'root ' => array (
33 'name ' => 'harness-software/wp-graphql-gravity-forms ' ,
4- 'pretty_version ' => 'dev-main ' ,
5- 'version ' => 'dev-main ' ,
6- 'reference ' => '07d6471beff1304aa7e8db183ec63df20ab89800 ' ,
4+ 'pretty_version ' => 'dev-develop ' ,
5+ 'version ' => 'dev-develop ' ,
6+ 'reference ' => 'd4e65512d3d0189161d3607319cf99b3a01ef695 ' ,
77 'type ' => 'wordpress-plugin ' ,
88 'install_path ' => __DIR__ . '/../../ ' ,
99 'aliases ' => array (),
1010 'dev ' => false ,
1111 ),
1212 'versions ' => array (
1313 'harness-software/wp-graphql-gravity-forms ' => array (
14- 'pretty_version ' => 'dev-main ' ,
15- 'version ' => 'dev-main ' ,
16- 'reference ' => '07d6471beff1304aa7e8db183ec63df20ab89800 ' ,
14+ 'pretty_version ' => 'dev-develop ' ,
15+ 'version ' => 'dev-develop ' ,
16+ 'reference ' => 'd4e65512d3d0189161d3607319cf99b3a01ef695 ' ,
1717 'type ' => 'wordpress-plugin ' ,
1818 'install_path ' => __DIR__ . '/../../ ' ,
1919 'aliases ' => array (),
Original file line number Diff line number Diff line change 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.12.3
10+ * Version: 0.12.4
1111 * Text Domain: wp-graphql-gravity-forms
1212 * Domain Path: /languages
1313 * Requires at least: 5.4.1
3535 function gf_graphql_constants (): void {
3636 // Plugin version.
3737 if ( ! defined ( 'WPGRAPHQL_GF_VERSION ' ) ) {
38- define ( 'WPGRAPHQL_GF_VERSION ' , '0.12.3 ' );
38+ define ( 'WPGRAPHQL_GF_VERSION ' , '0.12.4 ' );
3939 }
4040
4141 // Plugin Folder Path.
You can’t perform that action at this time.
0 commit comments