Skip to content

Commit

Permalink
Deploying version 1.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmjones committed Feb 9, 2024
1 parent ce056fd commit 25b8d47
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 5.3 \
**Tested up to:** 6.4 \
**Requires PHP:** 7.2 \
**Stable tag:** 1.6.7
**Stable tag:** 1.6.8

Fix your email delivery problems by sending your WordPress emails through Amazon SES's powerful email sending infrastructure.

Expand Down Expand Up @@ -191,6 +191,10 @@ Please double check the credentials match up with the credentials you received w

## Changelog

### 1.6.8 - 2024-02-09

* Bug fix: Using the WPOSES_SETTINGS define no longer causes a fatal error

### 1.6.7 - 2024-02-08

* Security: Unserializing an object related to plugin settings now passes `'allowed_classes' => false` to avoid instantiating the complete object and potentially running malicious code
Expand Down
4 changes: 2 additions & 2 deletions languages/wp-ses-en.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the WP Offload SES Lite plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP Offload SES Lite 1.6.7\n"
"Project-Id-Version: WP Offload SES Lite 1.6.8\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-ses\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-02-08T17:50:04+00:00\n"
"POT-Creation-Date: 2024-02-09T11:17:59+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.9.0\n"
"X-Domain: wp-offload-ses\n"
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: amazon ses,smtp,email delivery,gmail smtp,newsletter
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 7.2
Stable tag: 1.6.7
Stable tag: 1.6.8

Fix your email delivery problems by sending your WordPress emails through Amazon SES's powerful email sending infrastructure.

Expand Down Expand Up @@ -178,6 +178,9 @@ Please double check the credentials match up with the credentials you received w

== Changelog ==

= 1.6.8 - 2024-02-09 =
* Bug fix: Using the WPOSES_SETTINGS define no longer causes a fatal error

= 1.6.7 - 2024-02-08 =
* Security: Unserializing an object related to plugin settings now passes `'allowed_classes' => false` to avoid instantiating the complete object and potentially running malicious code
* Security: Processing of the email queue now restricts the type of data allowed to ensure stored queue items meet requirements
Expand Down
5 changes: 3 additions & 2 deletions wp-ses.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: WP Offload SES Lite
Description: Automatically send WordPress mail through Amazon SES (Simple Email Service).
Author: Delicious Brains
Version: 1.6.7
Version: 1.6.8
Author URI: https://deliciousbrains.com/
Network: True
Text Domain: wp-offload-ses
Expand All @@ -30,7 +30,7 @@
exit;
}

$GLOBALS['wposes_meta']['wp-ses']['version'] = '1.6.7';
$GLOBALS['wposes_meta']['wp-ses']['version'] = '1.6.8';

if ( ! class_exists( 'DeliciousBrains\WP_Offload_SES\Compatibility_Check' ) ) {
require_once wposes_lite_get_plugin_dir_path() . '/classes/Compatibility-Check.php';
Expand Down Expand Up @@ -114,6 +114,7 @@ function wposes_lite_get_plugin_dir_path() {
*/
function wposes_lite_sending_enabled() {
if ( defined( 'WPOSES_SETTINGS' ) ) {
require_once dirname( __FILE__ ) . '/classes/Utils.php';
$defined_settings = Utils::maybe_unserialize( constant( 'WPOSES_SETTINGS' ) );

if ( isset( $defined_settings['send-via-ses'] ) ) {
Expand Down

0 comments on commit 25b8d47

Please sign in to comment.