Skip to content

Commit 89998f8

Browse files
authored
Merge pull request #57 from the-events-calendar/chore/prerelease-v0.3.0
chore: version numbers and CHANGELOG updated.
2 parents 0f04299 + c3e99ba commit 89998f8

23 files changed

Lines changed: 93 additions & 85 deletions

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.3.0](https://github.com/the-events-calendar/ql-events/tree/0.3.0) (2023-07-26)
4+
5+
[Full Changelog](https://github.com/the-events-calendar/ql-events/compare/0.1.0...0.3.0)
6+
7+
**New Features:**
8+
9+
- 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))
10+
- feat: Events Virtual Support. [\#53](https://github.com/the-events-calendar/ql-events/pull/53) ([kidunot89](https://github.com/kidunot89))
11+
- Attendee interface/connections/mutations added. Order interface added. [\#46](https://github.com/the-events-calendar/ql-events/pull/46) ([kidunot89](https://github.com/kidunot89))
12+
- feat: Custom ticket field types and queries implemented. [\#40](https://github.com/the-events-calendar/ql-events/pull/40) ([kidunot89](https://github.com/kidunot89))
13+
314
## [0.1.0](https://github.com/the-events-calendar/ql-events/tree/0.1.0) (2022-08-12)
415

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

1324
- 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))
14-
15-
**Other Changes:**
16-
1725
- 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))
1826

1927

README.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
=== QL Events ===
2-
Contributors: kidunot89
3-
Tags: GraphQL, TEC, WPGraphQL
4-
Requires at least: 4.9
5-
Tested up to: 5.2
6-
Requires PHP: 5.6
7-
Stable tag: 0.0.1
8-
Maintained at: https://github.com/simplur/ql-events
9-
10-
== Description ==
11-
Adds QL Events functionality to the WPGraphQL schema.
1+
=== QL Events ===
2+
Contributors: kidunot89
3+
Tags: GraphQL, TEC, WPGraphQL
4+
Requires at least: 4.9
5+
Tested up to: 5.2
6+
Requires PHP: 5.6
7+
Stable tag: 0.3.0
8+
Maintained at: https://github.com/simplur/ql-events
9+
10+
== Description ==
11+
Adds QL Events functionality to the WPGraphQL schema.

includes/admin/class-general.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines QL Events's general settings.
44
*
55
* @package WPGraphQL\QL_Events\Admin
6-
* @since TBD
6+
* @since 0.3.0
77
*/
88

99
namespace WPGraphQL\QL_Events\Admin;
@@ -18,7 +18,7 @@ class General extends Section {
1818
/**
1919
* Returns General settings fields.
2020
*
21-
* @since TBD
21+
* @since 0.3.0
2222
*
2323
* @return array
2424
*/

includes/admin/class-section.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* The section defines the root functionality for a settings section
44
*
55
* @package WPGraphQL\WooCommerce\Admin
6-
* @since TBD
6+
* @since 0.3.0
77
*/
88

99
namespace WPGraphQL\QL_Events\Admin;
@@ -16,7 +16,7 @@ abstract class Section {
1616
/**
1717
* Returns Section settings fields.
1818
*
19-
* @since TBD
19+
* @since 0.3.0
2020
*
2121
* @return array
2222
*/

includes/class-admin.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Initializes a QL Events admin settings.
44
*
55
* @package WPGraphQL\QL_Events
6-
* @since TBD
6+
* @since 0.3.0
77
*/
88

99
namespace WPGraphQL\QL_Events;
@@ -26,7 +26,7 @@ public function __construct() {
2626
/**
2727
* Registers filters.
2828
*
29-
* @since TBD
29+
* @since 0.3.0
3030
*
3131
* @return void
3232
*/
@@ -37,7 +37,7 @@ public function add_filters() {
3737
/**
3838
* Registers the WooGraphQL Settings tab.
3939
*
40-
* @since TBD
40+
* @since 0.3.0
4141
*
4242
* @param Settings $manager Settings Manager.
4343
*

includes/class-ql-events.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static function instance() {
8383
/**
8484
* Checks if QL Events required plugins are installed and activated
8585
*
86-
* @since TBD
86+
* @since 0.3.0
8787
*
8888
* @return array
8989
*/
@@ -142,7 +142,7 @@ public function dependencies_not_ready() {
142142
/**
143143
* Returns true if the "QL_EVENTS_TEST_MODE" set to a "truthy" value.
144144
*
145-
* @since TBD
145+
* @since 0.3.0
146146
*
147147
* @return boolean
148148
*/
@@ -153,7 +153,7 @@ public static function is_test_mode_active() {
153153
/**
154154
* Returns true if the "enable_events_pro_support" is "on"
155155
*
156-
* @since TBD
156+
* @since 0.3.0
157157
*
158158
* @return boolean
159159
*/
@@ -165,7 +165,7 @@ public static function is_events_pro_support_enabled() {
165165
/**
166166
* Returns if Virtual Events is installed and activated.
167167
*
168-
* @since TBD
168+
* @since 0.3.0
169169
*
170170
* @return bool
171171
*/
@@ -176,7 +176,7 @@ public static function is_events_pro_active() {
176176
/**
177177
* Returns true if the "enable_event_tickets_support" is "on"
178178
*
179-
* @since TBD
179+
* @since 0.3.0
180180
*
181181
* @return boolean
182182
*/
@@ -188,7 +188,7 @@ public static function is_event_tickets_support_enabled() {
188188
/**
189189
* Returns if Event Tickets is installed and activated
190190
*
191-
* @since TBD
191+
* @since 0.3.0
192192
*
193193
* @return bool
194194
*/
@@ -208,7 +208,7 @@ public static function is_event_tickets_active() {
208208
/**
209209
* Returns true if the "enable_event_tickets_plus_support" is "on"
210210
*
211-
* @since TBD
211+
* @since 0.3.0
212212
*
213213
* @return boolean
214214
*/
@@ -220,7 +220,7 @@ public static function is_event_tickets_plus_support_enabled() {
220220
/**
221221
* Returns if Ticket Events Plus is installed and activated
222222
*
223-
* @since TBD
223+
* @since 0.3.0
224224
*
225225
* @return bool
226226
*/
@@ -240,7 +240,7 @@ public static function is_event_tickets_plus_active() {
240240
/**
241241
* Returns if WooGraphQL is installed and activate
242242
*
243-
* @since TBD
243+
* @since 0.3.0
244244
*
245245
* @return bool
246246
*/
@@ -251,7 +251,7 @@ public static function is_woographql_active() {
251251
/**
252252
* Returns true if the "enable_events_virtual_support" is "on"
253253
*
254-
* @since TBD
254+
* @since 0.3.0
255255
*
256256
* @return boolean
257257
*/
@@ -263,7 +263,7 @@ public static function is_events_virtual_support_enabled() {
263263
/**
264264
* Returns if Virtual Events is installed and activated.
265265
*
266-
* @since TBD
266+
* @since 0.3.0
267267
*
268268
* @return bool
269269
*/
@@ -274,7 +274,7 @@ public static function is_events_virtual_active() {
274274
/**
275275
* Render admin notices for all missing dependencies.
276276
*
277-
* @since TBD
277+
* @since 0.3.0
278278
*
279279
* @return void
280280
*/
@@ -319,7 +319,7 @@ public function init() {
319319
/**
320320
* Returns The Events Calendar and core extensions post-types registered to the schema.
321321
*
322-
* @since TBD
322+
* @since 0.3.0
323323
*
324324
* @return array
325325
*/
@@ -337,7 +337,7 @@ public static function get_post_types() {
337337
/**
338338
* Returns The Events Calendar and core extensions taxonomies registered to the schema.
339339
*
340-
* @since TBD
340+
* @since 0.3.0
341341
*
342342
* @return array
343343
*/

includes/class-tickets-filters.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Adds filters that modify core schema.
44
*
55
* @package \WPGraphQL\QL_Events
6-
* @since TBD
6+
* @since 0.3.0
77
*/
88

99
namespace WPGraphQL\QL_Events;
@@ -18,7 +18,7 @@ class Tickets_Filters {
1818
/**
1919
* Register filters
2020
*
21-
* @since TBD
21+
* @since 0.3.0
2222
*
2323
* @return void
2424
*/
@@ -48,7 +48,7 @@ public static function add_filters() {
4848
/**
4949
* Register ET post types to GraphQL schema
5050
*
51-
* @since TBD
51+
* @since 0.3.0
5252
*
5353
* @param array $args - post-type args.
5454
* @param string $post_type - post-type slug.
@@ -88,7 +88,7 @@ public static function register_post_types( $args, $post_type ) {
8888
/**
8989
* Filter callback for inject WPObject types with the "Ticket" interface.
9090
*
91-
* @since TBD
91+
* @since 0.1.0
9292
*
9393
* @param array $config WPObject type config.
9494
*

includes/class-tickets-plus-filters.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Adds filters that modify core schema.
44
*
55
* @package \WPGraphQL\QL_Events
6-
* @since TBD
6+
* @since 0.3.0
77
*/
88

99
namespace WPGraphQL\QL_Events;
@@ -18,7 +18,7 @@ class Tickets_Plus_Filters {
1818
/**
1919
* Register filters
2020
*
21-
* @since TBD
21+
* @since 0.3.0
2222
*
2323
* @return void
2424
*/
@@ -58,7 +58,7 @@ public static function add_filters() {
5858
/**
5959
* Register ET plus post types to GraphQL schema
6060
*
61-
* @since TBD
61+
* @since 0.3.0
6262
*
6363
* @param array $args - post-type args.
6464
* @param string $post_type - post-type slug.
@@ -78,7 +78,7 @@ public static function register_post_types( $args, $post_type ) {
7878
/**
7979
* Filter callback for inject WPObject types with the "Ticket" interface.
8080
*
81-
* @since TBD
81+
* @since 0.3.0
8282
*
8383
* @param array $config WPObject type config.
8484
*

includes/class-type-registry.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Type_Registry {
1515
/**
1616
* Returns true if the Events Pro fields, types, queries, and mutations can be loaded.
1717
*
18-
* @since TBD
18+
* @since 0.3.0
1919
*
2020
* @return bool
2121
*/
@@ -27,7 +27,7 @@ public function load_events_pro_schema() {
2727
/**
2828
* Returns true if the Event Tickets fields, types, queries, and mutations can be loaded.
2929
*
30-
* @since TBD
30+
* @since 0.3.0
3131
*
3232
* @return bool
3333
*/
@@ -39,7 +39,7 @@ public function load_event_tickets_schema() {
3939
/**
4040
* Returns true if the Event Tickets Plus fields, types, queries, and mutations can be loaded.
4141
*
42-
* @since TBD
42+
* @since 0.3.0
4343
*
4444
* @return bool
4545
*/
@@ -52,7 +52,7 @@ public function load_event_tickets_plus_schema() {
5252
/**
5353
* Returns true if the Events Virtual fields, types, queries, and mutations can be loaded.
5454
*
55-
* @since TBD
55+
* @since 0.3.0
5656
*
5757
* @return bool
5858
*/

includes/connection/class-tickets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected static function get_event_to_ticket_resolver( $ticket_classes ) {
4444
* @param AppContext $context - AppContext object.
4545
* @param ResolveInfo $info - ResolveInfo object.
4646
*
47-
* @since TBD
47+
* @since 0.3.0
4848
*/
4949
$ticket_classes = apply_filters( 'ql_events_ticket_connection_ticket_classes', $ticket_classes, $source, $args, $context, $info );
5050
foreach ( $ticket_classes as $ticket_class ) {

0 commit comments

Comments
 (0)