Skip to content

Commit

Permalink
Merge pull request #57 from the-events-calendar/chore/prerelease-v0.3.0
Browse files Browse the repository at this point in the history
chore: version numbers and CHANGELOG updated.
  • Loading branch information
kidunot89 authored Jul 26, 2023
2 parents 0f04299 + c3e99ba commit 89998f8
Show file tree
Hide file tree
Showing 23 changed files with 93 additions and 85 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.3.0](https://github.com/the-events-calendar/ql-events/tree/0.3.0) (2023-07-26)

[Full Changelog](https://github.com/the-events-calendar/ql-events/compare/0.1.0...0.3.0)

**New Features:**

- feat: QL Events settings tab added and schema organized [\#55](https://github.com/the-events-calendar/ql-events/pull/55) ([kidunot89](https://github.com/kidunot89))
- feat: Events Virtual Support. [\#53](https://github.com/the-events-calendar/ql-events/pull/53) ([kidunot89](https://github.com/kidunot89))
- Attendee interface/connections/mutations added. Order interface added. [\#46](https://github.com/the-events-calendar/ql-events/pull/46) ([kidunot89](https://github.com/kidunot89))
- feat: Custom ticket field types and queries implemented. [\#40](https://github.com/the-events-calendar/ql-events/pull/40) ([kidunot89](https://github.com/kidunot89))

## [0.1.0](https://github.com/the-events-calendar/ql-events/tree/0.1.0) (2022-08-12)

[Full Changelog](https://github.com/the-events-calendar/ql-events/compare/0.0.1...0.1.0)
Expand All @@ -11,9 +22,6 @@
**Fixed:**

- fix: Support for WPGraphQL v1.8+ has been added. [\#45](https://github.com/the-events-calendar/ql-events/pull/45) ([kidunot89](https://github.com/kidunot89))

**Other Changes:**

- Removes extraneous comma to prevent a silent PHP error. [\#31](https://github.com/the-events-calendar/ql-events/pull/31) ([geoffgraham](https://github.com/geoffgraham))


Expand Down
22 changes: 11 additions & 11 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
=== QL Events ===
Contributors: kidunot89
Tags: GraphQL, TEC, WPGraphQL
Requires at least: 4.9
Tested up to: 5.2
Requires PHP: 5.6
Stable tag: 0.0.1
Maintained at: https://github.com/simplur/ql-events

== Description ==
Adds QL Events functionality to the WPGraphQL schema.
=== QL Events ===
Contributors: kidunot89
Tags: GraphQL, TEC, WPGraphQL
Requires at least: 4.9
Tested up to: 5.2
Requires PHP: 5.6
Stable tag: 0.3.0
Maintained at: https://github.com/simplur/ql-events
== Description ==
Adds QL Events functionality to the WPGraphQL schema.
4 changes: 2 additions & 2 deletions includes/admin/class-general.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines QL Events's general settings.
*
* @package WPGraphQL\QL_Events\Admin
* @since TBD
* @since 0.3.0
*/

namespace WPGraphQL\QL_Events\Admin;
Expand All @@ -18,7 +18,7 @@ class General extends Section {
/**
* Returns General settings fields.
*
* @since TBD
* @since 0.3.0
*
* @return array
*/
Expand Down
4 changes: 2 additions & 2 deletions includes/admin/class-section.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* The section defines the root functionality for a settings section
*
* @package WPGraphQL\WooCommerce\Admin
* @since TBD
* @since 0.3.0
*/

namespace WPGraphQL\QL_Events\Admin;
Expand All @@ -16,7 +16,7 @@ abstract class Section {
/**
* Returns Section settings fields.
*
* @since TBD
* @since 0.3.0
*
* @return array
*/
Expand Down
6 changes: 3 additions & 3 deletions includes/class-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Initializes a QL Events admin settings.
*
* @package WPGraphQL\QL_Events
* @since TBD
* @since 0.3.0
*/

namespace WPGraphQL\QL_Events;
Expand All @@ -26,7 +26,7 @@ public function __construct() {
/**
* Registers filters.
*
* @since TBD
* @since 0.3.0
*
* @return void
*/
Expand All @@ -37,7 +37,7 @@ public function add_filters() {
/**
* Registers the WooGraphQL Settings tab.
*
* @since TBD
* @since 0.3.0
*
* @param Settings $manager Settings Manager.
*
Expand Down
28 changes: 14 additions & 14 deletions includes/class-ql-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static function instance() {
/**
* Checks if QL Events required plugins are installed and activated
*
* @since TBD
* @since 0.3.0
*
* @return array
*/
Expand Down Expand Up @@ -142,7 +142,7 @@ public function dependencies_not_ready() {
/**
* Returns true if the "QL_EVENTS_TEST_MODE" set to a "truthy" value.
*
* @since TBD
* @since 0.3.0
*
* @return boolean
*/
Expand All @@ -153,7 +153,7 @@ public static function is_test_mode_active() {
/**
* Returns true if the "enable_events_pro_support" is "on"
*
* @since TBD
* @since 0.3.0
*
* @return boolean
*/
Expand All @@ -165,7 +165,7 @@ public static function is_events_pro_support_enabled() {
/**
* Returns if Virtual Events is installed and activated.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -176,7 +176,7 @@ public static function is_events_pro_active() {
/**
* Returns true if the "enable_event_tickets_support" is "on"
*
* @since TBD
* @since 0.3.0
*
* @return boolean
*/
Expand All @@ -188,7 +188,7 @@ public static function is_event_tickets_support_enabled() {
/**
* Returns if Event Tickets is installed and activated
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -208,7 +208,7 @@ public static function is_event_tickets_active() {
/**
* Returns true if the "enable_event_tickets_plus_support" is "on"
*
* @since TBD
* @since 0.3.0
*
* @return boolean
*/
Expand All @@ -220,7 +220,7 @@ public static function is_event_tickets_plus_support_enabled() {
/**
* Returns if Ticket Events Plus is installed and activated
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -240,7 +240,7 @@ public static function is_event_tickets_plus_active() {
/**
* Returns if WooGraphQL is installed and activate
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -251,7 +251,7 @@ public static function is_woographql_active() {
/**
* Returns true if the "enable_events_virtual_support" is "on"
*
* @since TBD
* @since 0.3.0
*
* @return boolean
*/
Expand All @@ -263,7 +263,7 @@ public static function is_events_virtual_support_enabled() {
/**
* Returns if Virtual Events is installed and activated.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -274,7 +274,7 @@ public static function is_events_virtual_active() {
/**
* Render admin notices for all missing dependencies.
*
* @since TBD
* @since 0.3.0
*
* @return void
*/
Expand Down Expand Up @@ -319,7 +319,7 @@ public function init() {
/**
* Returns The Events Calendar and core extensions post-types registered to the schema.
*
* @since TBD
* @since 0.3.0
*
* @return array
*/
Expand All @@ -337,7 +337,7 @@ public static function get_post_types() {
/**
* Returns The Events Calendar and core extensions taxonomies registered to the schema.
*
* @since TBD
* @since 0.3.0
*
* @return array
*/
Expand Down
8 changes: 4 additions & 4 deletions includes/class-tickets-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Adds filters that modify core schema.
*
* @package \WPGraphQL\QL_Events
* @since TBD
* @since 0.3.0
*/

namespace WPGraphQL\QL_Events;
Expand All @@ -18,7 +18,7 @@ class Tickets_Filters {
/**
* Register filters
*
* @since TBD
* @since 0.3.0
*
* @return void
*/
Expand Down Expand Up @@ -48,7 +48,7 @@ public static function add_filters() {
/**
* Register ET post types to GraphQL schema
*
* @since TBD
* @since 0.3.0
*
* @param array $args - post-type args.
* @param string $post_type - post-type slug.
Expand Down Expand Up @@ -88,7 +88,7 @@ public static function register_post_types( $args, $post_type ) {
/**
* Filter callback for inject WPObject types with the "Ticket" interface.
*
* @since TBD
* @since 0.1.0
*
* @param array $config WPObject type config.
*
Expand Down
8 changes: 4 additions & 4 deletions includes/class-tickets-plus-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Adds filters that modify core schema.
*
* @package \WPGraphQL\QL_Events
* @since TBD
* @since 0.3.0
*/

namespace WPGraphQL\QL_Events;
Expand All @@ -18,7 +18,7 @@ class Tickets_Plus_Filters {
/**
* Register filters
*
* @since TBD
* @since 0.3.0
*
* @return void
*/
Expand Down Expand Up @@ -58,7 +58,7 @@ public static function add_filters() {
/**
* Register ET plus post types to GraphQL schema
*
* @since TBD
* @since 0.3.0
*
* @param array $args - post-type args.
* @param string $post_type - post-type slug.
Expand All @@ -78,7 +78,7 @@ public static function register_post_types( $args, $post_type ) {
/**
* Filter callback for inject WPObject types with the "Ticket" interface.
*
* @since TBD
* @since 0.3.0
*
* @param array $config WPObject type config.
*
Expand Down
8 changes: 4 additions & 4 deletions includes/class-type-registry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Type_Registry {
/**
* Returns true if the Events Pro fields, types, queries, and mutations can be loaded.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -27,7 +27,7 @@ public function load_events_pro_schema() {
/**
* Returns true if the Event Tickets fields, types, queries, and mutations can be loaded.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -39,7 +39,7 @@ public function load_event_tickets_schema() {
/**
* Returns true if the Event Tickets Plus fields, types, queries, and mutations can be loaded.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand All @@ -52,7 +52,7 @@ public function load_event_tickets_plus_schema() {
/**
* Returns true if the Events Virtual fields, types, queries, and mutations can be loaded.
*
* @since TBD
* @since 0.3.0
*
* @return bool
*/
Expand Down
2 changes: 1 addition & 1 deletion includes/connection/class-tickets.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected static function get_event_to_ticket_resolver( $ticket_classes ) {
* @param AppContext $context - AppContext object.
* @param ResolveInfo $info - ResolveInfo object.
*
* @since TBD
* @since 0.3.0
*/
$ticket_classes = apply_filters( 'ql_events_ticket_connection_ticket_classes', $ticket_classes, $source, $args, $context, $info );
foreach ( $ticket_classes as $ticket_class ) {
Expand Down
Loading

0 comments on commit 89998f8

Please sign in to comment.