Skip to content

Commit

Permalink
Merge pull request #2977 from the-events-calendar/spotfix/master_into…
Browse files Browse the repository at this point in the history
…_corgi

Update version numbers.
  • Loading branch information
redscar committed Apr 1, 2024
2 parents 08557ce + 74703ee commit d1e364a
Show file tree
Hide file tree
Showing 116 changed files with 8,634 additions and 1,650 deletions.
9 changes: 8 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
"extends": "@the-events-calendar/product-taskmaster/config/stylelint"
"extends": "@the-events-calendar/product-taskmaster/config/stylelint",
"rules": {
"property-no-unknown": [
true, {
"ignoreProperties": ["container-type"]
}
]
}
}
37 changes: 37 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
== Changelog ==

= [5.8.4] 2024-03-25 =

* Fix - Events Calendar Pro promo shouldn't show when it's already installed or when not editing an event. [ET-2018]
* Fix - Addressed a problem preventing the export of event attendees by email. [ETP-904]
* Fix - In the block editor, ticket will no longer be deleted when you open the ticket block settings. [ET-2046]
* Fix - Show post excerpt line breaks within ticket emails. [ET-2006]
* Fix - Front-end tickets block button padding is now consistent on hover and when disabled. [ET-2035]
* Fix - Allow blank sender name and email to be stored within Tickets Emails settings. [ET-2008]
* Fix - Corrected an issue where `attendees_table->prepare_items()` was being called multiple times. [ET-2005]
* Fix - Tickets block will be properly registered when creating a new post or page. [ET-2045]
* Fix - Corrected an issue where the Post Tickets ORM method `filter_by_has_tickets` would prepare an empty statement. [ET-2017]
* Tweak - Added additional fields to the Event Tickets Site Health section. [ET-2017]
* Feature - Add the Series Pass email template. [ET-1854]
* Tweak - Adjusted the logic for calculating fees when using Stripe. [ET-2015]
* Tweak - Added filters: `tec_tickets_email_class`
* Tweak - Changed views: `emails/series-pass`, `emails/template-parts/body/additional-content`, `emails/template-parts/body/post-description`, `emails/template-parts/body/series-events-list`, `emails/template-parts/body/series-pass-dates`, `emails/template-parts/body/thumbnail`, `emails/template-parts/header/head/series-pass-styles`, `emails/template-parts/header/head/styles`

= [5.8.3] 2024-03-12 =

* Fix - Fixed updating stock data when Tickets Commerce attendees are moved. [ET-2009]
* Fix - Fixed showing duplicate order overview data from TribeCommerce when ETP is disabled. [ET-2011]
* Fix - Stock will be calculated correctly when an order fails and then succeeds while using Tickets Commerce. [ET-1833]
* Fix - Decode any HTML entities that appear in the subject line of outgoing emails. [ET-2007]
* Fix - Fixed multiple issues related to series pass check-ins. [ET-1936]
* Fix - Site Health will no longer fatal when providers are not setup. [ET-2047]
* Tweak - Use dynamic ticket labels within the block editor's Tickets Block. [ET-690]
* Tweak - Added filters: `tec_tickets_move_attendees_ids`, `tec_tickets_attendee_manual_uncheckin_success_data`, `tec_tickets_attendee_uncheckin`
* Security - Added filterable role access to the attendee page (`tec_tickets_attendees_page_role_access`). [SVUL-1]
* Security - Added filterable role access to the orders page (`tec_tickets_report_{$page_slug}_page_role_access`). [SVUL-1]
* Language - 1 new strings added, 56 updated, 2 fuzzied, and 0 obsoleted

= [5.8.2] 2024-02-19 =

* Feature - Support per Event attendance for Series Pass Attendees for manual and app-based check-ins. [ET-1936]
* Fix - Available number when moving Series Pass Attendees. [ET-2009]
* Language - 5 new strings added, 167 updated, 14 fuzzied, and 9 obsoleted

= [5.8.1] 2024-02-07 =

* Fix - Removed type casting from filter method of series pass to avoid fatal errors. [ET-2014]
Expand Down
8 changes: 4 additions & 4 deletions event-tickets.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@
define( 'EVENT_TICKETS_DIR', dirname( __FILE__ ) );
define( 'EVENT_TICKETS_MAIN_PLUGIN_FILE', __FILE__ );

// Load the required php min version functions
// Load the required php min version functions.
require_once dirname( EVENT_TICKETS_MAIN_PLUGIN_FILE ) . '/src/functions/php-min-version.php';

// Load the Composer autoload file.
require_once dirname( EVENT_TICKETS_MAIN_PLUGIN_FILE ) . '/vendor/autoload.php';

/**
* Verifies if we need to warn the user about min PHP version and bail to avoid fatals
* Verifies if we need to warn the user about min PHP version and bail to avoid fatals.
*/
if ( tribe_is_not_min_php_version() ) {
tribe_not_php_version_textdomain( 'event-tickets', EVENT_TICKETS_MAIN_PLUGIN_FILE );

/**
* Include the plugin name into the correct place
* Include the plugin name into the correct place.
*
* @since 4.10
*
* @param array $names current list of names
* @param array $names current list of names.
*
* @return array
*/
Expand Down
Loading

0 comments on commit d1e364a

Please sign in to comment.