Skip to content

Commit 0577be6

Browse files
committed
release: v0.13.3
1 parent 9f8a549 commit 0577be6

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

.distignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/plugin-build
1515
/tests
1616

17-
.coveralls.yml
17+
.codecov.yml
1818
.distignore
1919
.dockerignore
2020
.DS_Store

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,21 @@
22

33
## [Unreleased]
44

5-
- dev: Migrate development and testing environment to `@wordpress/env` (`wp-env`), and update scaffolding for best practices.
6-
- ci: Cleanup and optimize GitHub workflows.
7-
- dev: Integrated Prettier and `@wordpress/scripts` for standardized codebase management.
8-
- perf: Add support for AppContext::get() and ::set() in WPGraphQL v2.3.8+.
5+
## [v0.13.3]
6+
7+
This _minor_ release improves compatibility with WPGraphQL v2.6.0, Gravity Forms v2.9.x, WordPress 6.9, and PHP 8.4. Additionally, we've migrated our development and testing environment to use `@wordpress/env` (`wp-env`), integrated Prettier and `@wordpress/scripts` for codebase management, and made some bug fixes and performance improvements.
8+
99
- feat: Refactor File Upload handling for Gravity Forms 2.8.6+ compatibility.
10-
- ci: Test compatibility against WPGraphQL v2.6.0 and WordPress 6.9.
11-
- ci: Test compatibility against PHP 8.4.
10+
- perf: Add support for AppContext::get() and ::set() in WPGraphQL v2.3.8+.
1211
- perf: migrate DataLoader registration to use lazy-loaded `graphql_data_loader_classes` filter. H/t @bpkennedy
1312
- fix: cleanup activation lifecycle.
1413
- fix: Prevent duplicate file counts for Single File Upload fields. Props @Gytjarek
1514
- chore: Update Composer dependencies.
15+
- dev: Integrated Prettier and `@wordpress/scripts` for standardized codebase management.
16+
- dev: Migrate development and testing environment to `@wordpress/env` (`wp-env`), and update scaffolding for best practices.
17+
- ci: Cleanup and optimize GitHub workflows.
18+
- ci: Test compatibility against PHP 8.4.
19+
- ci: Test compatibility against WPGraphQL v2.6.0 and WordPress 6.9.
1620

1721
## [v0.13.2]
1822

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ 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.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)<br />
12-
[![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)
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.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 />
12+
[![Coverage Status](https://codecov.io/gh/AxeWP/wp-graphql-gravity-forms/graph/badge.svg?token=VIYRD2ZSYR)](https://codecov.io/gh/AxeWP/wp-graphql-gravity-forms) [![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
1515

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.2' );
8+
define( 'WPGRAPHQL_GF_VERSION', '0.13.3' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tested up to: 6.9
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.7.0
88
Requires WPGraphQL: 1.26.0
9-
Stable tag: 0.13.2
9+
Stable tag: 0.13.3
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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.2
10+
* Version: 0.13.3
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -46,7 +46,7 @@
4646
function constants(): void {
4747
// Plugin version.
4848
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
49-
define( 'WPGRAPHQL_GF_VERSION', '0.13.2' );
49+
define( 'WPGRAPHQL_GF_VERSION', '0.13.3' );
5050
}
5151

5252
// Plugin Folder Path.

0 commit comments

Comments
 (0)