Skip to content

Commit

Permalink
release: 0.4.3 (#61)
Browse files Browse the repository at this point in the history
* chore: version bump

* chore: update changelog
  • Loading branch information
justlevine committed May 13, 2023
1 parent 5c2ce05 commit 3b4e666
Show file tree
Hide file tree
Showing 29 changed files with 106 additions and 69 deletions.
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@ contact_links:
- name: General Support Request
url: https://github.com/hsimah-services/wp-graphql-facetwp/discussions
about: For general help requests, create a new topic in Github Discussions
- name: Premium Support Request
url: https://axepress.dev/contact/
about: For premium support requests, custom development, or to sponsor a feature, please contact us directly.
- name: Slack Community
url: https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA
about: The WPGraphQL Slack is a great place to communicate in real-time. Ask questions, discuss features, get to know other folks using WPGraphQL.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog

## Unreleased
## v0.4.3

This _minor_ release adds support for the [Sort Facet](https://facetwp.com/help-center/facets/facet-types/sort). It also fixes a bug where the FacetQueryArgs input value was not being correctly matched to the correct Facet.

**Note:** To support the Sort facet when using custom WPGraphQL Connection Resolvers, you must set the connection's `orderby` argument to `post__id`. The [example WooCommerce snippet](./README.md#woocommerce-support) has been updated to reflect this change, and you should update your custom code accordingly.

- feat: Add support for the Sort Facet. (Props to @ninie1205 for sponsoring this feature!)
- fix: Fallback to snake_case when matching the FacetQueryArgs input value to the FacetWP facet name.
- fix: Fallback to `snake_case` when matching the `FacetQueryArgs` input value to the FacetWP facet name.
- docs: Update WooCommerce snippet in README.md to support the Sort Facet.

## v0.4.2
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Adds WPGraphQL support for [FacetWP](https://facetwp.com/).
* [Documentation](#usage)
-----

![Packagist License](https://img.shields.io/packagist/l/hsimah-services/wp-graphql-facetwp?color=green) ![Packagist Version](https://img.shields.io/packagist/v/hsimah-services/wp-graphql-facetwp?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/hsimah-services/wp-graphql-facetwp/0.4.2) ![GitHub forks](https://img.shields.io/github/forks/hsimah-services/wp-graphql-facetwp?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/hsimah-services/wp-graphql-facetwp?style=social)<br />
![Packagist License](https://img.shields.io/packagist/l/hsimah-services/wp-graphql-facetwp?color=green) ![Packagist Version](https://img.shields.io/packagist/v/hsimah-services/wp-graphql-facetwp?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/hsimah-services/wp-graphql-facetwp/0.4.3) ![GitHub forks](https://img.shields.io/github/forks/hsimah-services/wp-graphql-facetwp?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/hsimah-services/wp-graphql-facetwp?style=social)<br />
![CodeQuality](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/code-quality.yml?branch=develop&label=Code%20Quality)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/integration-testing.yml?branch=develop&label=Integration%20Testing)
![Coding Standards](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)
Expand Down Expand Up @@ -47,6 +47,14 @@ Until we hit v1.0, we're using a modified version of [SemVer](https://semver.org
* 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

WPGraphQL for FacetWP was initially created by [Hamish Blake](https://www.hsimah.com/). Maintainance and development are now 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/hsimah-services/wp-graphql-facetwp/issues) and at the `#facetwp` channel in [WPGraphQL Slack](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA).

Priority support and custom development is available to [AxePress Development sponsors](https://github.com/sponsors/AxeWP).

## Usage:

- _The WPGraphQL documentation can be found [here](https://docs.wpgraphql.com)._ <br />
Expand Down
19 changes: 19 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,34 @@
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "AxePress Development",
"email": "support@axepress.dev",
"homepage": "https://axepress.dev"
},
{
"name": "David Levine",
"role": "Lead Developer"
},
{
"name": "Hamish Blake",
"role": "Original Developer",
"email": "hsimah.services@gmail.com"
}
],
"support": {
"email": "support@axepress.dev",
"issues": "https://github.com/hsimah-services/wp-graphql-facetwp/issues",
"forum": "https://github.com/hsimah-services/wp-graphql-facetwp/discussions",
"source": "https://github.com/hsimah-services/wp-graphql-facetwp"
},
"readme": "README.md",
"funding": [
{
"type":"github",
"url": "https://github.com/sponsors/AxeWP"
}
],
"config": {
"platform": {
"php": "7.4"
Expand Down
70 changes: 35 additions & 35 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Requires PHP: 7.4
Requires FacetWP: 4.0
Requires WPGraphQL: 1.6.0
Tested up to: 6.2
Stable tag: 0.4.2
Stable tag: 0.4.3
Maintained at: https://github.com/hsimah-services/wp-graphql-facetwp
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
2 changes: 1 addition & 1 deletion src/Type/Enum/SortOptionsEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GraphQL Enum Type - SortOptionsEnum.
*
* @package WPGraphQL\FacetWP\Type\Enum
* @since @todo
* @since 0.4.3
*/

namespace WPGraphQL\FacetWP\Type\Enum;
Expand Down
2 changes: 1 addition & 1 deletion src/Type/WPObject/FacetSortOptionOrderBySetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GraphQL Object Type - FacetSortOptionOrderBySetting.
*
* @package WPGraphQL\FacetWP\Type\WPObject
* @since @todo
* @since 0.4.3
*/

namespace WPGraphQL\FacetWP\Type\WPObject;
Expand Down
2 changes: 1 addition & 1 deletion src/Type/WPObject/FacetSortOptionSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GraphQL Object Type - FacetSortOptionSetting.
*
* @package WPGraphQL\FacetWP\Type\WPObject
* @since @todo
* @since 0.4.3
*/

namespace WPGraphQL\FacetWP\Type\WPObject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package AxeWP\GraphQL\Abstracts
*
* @license GPL-3.0-or-later
* Modified by Hamish Blake using Strauss.
* Modified by AxePress Development using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/

Expand Down
Loading

0 comments on commit 3b4e666

Please sign in to comment.