Skip to content

Commit 25b8d47

Browse files
committed
Deploying version 1.6.8
1 parent ce056fd commit 25b8d47

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Requires at least:** 5.3 \
66
**Tested up to:** 6.4 \
77
**Requires PHP:** 7.2 \
8-
**Stable tag:** 1.6.7
8+
**Stable tag:** 1.6.8
99

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

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

192192
## Changelog
193193

194+
### 1.6.8 - 2024-02-09
195+
196+
* Bug fix: Using the WPOSES_SETTINGS define no longer causes a fatal error
197+
194198
### 1.6.7 - 2024-02-08
195199

196200
* Security: Unserializing an object related to plugin settings now passes `'allowed_classes' => false` to avoid instantiating the complete object and potentially running malicious code

languages/wp-ses-en.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is distributed under the same license as the WP Offload SES Lite plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: WP Offload SES Lite 1.6.7\n"
5+
"Project-Id-Version: WP Offload SES Lite 1.6.8\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-ses\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2024-02-08T17:50:04+00:00\n"
12+
"POT-Creation-Date: 2024-02-09T11:17:59+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.9.0\n"
1515
"X-Domain: wp-offload-ses\n"

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: amazon ses,smtp,email delivery,gmail smtp,newsletter
44
Requires at least: 5.3
55
Tested up to: 6.4
66
Requires PHP: 7.2
7-
Stable tag: 1.6.7
7+
Stable tag: 1.6.8
88

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

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

179179
== Changelog ==
180180

181+
= 1.6.8 - 2024-02-09 =
182+
* Bug fix: Using the WPOSES_SETTINGS define no longer causes a fatal error
183+
181184
= 1.6.7 - 2024-02-08 =
182185
* Security: Unserializing an object related to plugin settings now passes `'allowed_classes' => false` to avoid instantiating the complete object and potentially running malicious code
183186
* Security: Processing of the email queue now restricts the type of data allowed to ensure stored queue items meet requirements

wp-ses.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: WP Offload SES Lite
44
Description: Automatically send WordPress mail through Amazon SES (Simple Email Service).
55
Author: Delicious Brains
6-
Version: 1.6.7
6+
Version: 1.6.8
77
Author URI: https://deliciousbrains.com/
88
Network: True
99
Text Domain: wp-offload-ses
@@ -30,7 +30,7 @@
3030
exit;
3131
}
3232

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

3535
if ( ! class_exists( 'DeliciousBrains\WP_Offload_SES\Compatibility_Check' ) ) {
3636
require_once wposes_lite_get_plugin_dir_path() . '/classes/Compatibility-Check.php';
@@ -114,6 +114,7 @@ function wposes_lite_get_plugin_dir_path() {
114114
*/
115115
function wposes_lite_sending_enabled() {
116116
if ( defined( 'WPOSES_SETTINGS' ) ) {
117+
require_once dirname( __FILE__ ) . '/classes/Utils.php';
117118
$defined_settings = Utils::maybe_unserialize( constant( 'WPOSES_SETTINGS' ) );
118119

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

0 commit comments

Comments
 (0)