Skip to content

Commit 02fae5c

Browse files
Update the README for v1.2.4
1 parent 55d9711 commit 02fae5c

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Tags:** comments, sessions
44
**Requires at least:** 4.7
55
**Tested up to:** 5.8
6-
**Stable tag:** 1.2.3
6+
**Stable tag:** 1.2.4
77
**Requires PHP:** 5.4
88
**License:** GPLv2 or later
99
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
@@ -73,6 +73,9 @@ This mu-plugin will load WP Native PHP Sessions before all other plugins, while
7373

7474
## Changelog ##
7575

76+
### 1.2.4 (September 14th, 2021) ###
77+
* Increases data blob size from 64k to 16M for new session tables; existing tables will need to manually modify the column if they want to apply this change [[#193](https://github.com/pantheon-systems/wp-native-php-sessions/pull/193)].
78+
7679
### 1.2.3 (April 9th, 2021) ###
7780
* Assigns the table name to a variable before using in query [[#188](https://github.com/pantheon-systems/wp-native-php-sessions/pull/188)].
7881

pantheon-sessions.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Plugin Name: Native PHP Sessions for WordPress
4-
* Version: 1.2.3
4+
* Version: 1.2.4
55
* Description: Offload PHP's native sessions to your database for multi-server compatibility.
66
* Author: Pantheon
77
* Author URI: https://www.pantheon.io/
@@ -13,7 +13,7 @@
1313

1414
use Pantheon_Sessions\Session;
1515

16-
define( 'PANTHEON_SESSIONS_VERSION', '1.2.3' );
16+
define( 'PANTHEON_SESSIONS_VERSION', '1.2.4' );
1717

1818
/**
1919
* Main controller class for the plugin.

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: getpantheon, outlandish josh, mpvanwinkle77, danielbachhuber, andr
33
Tags: comments, sessions
44
Requires at least: 4.7
55
Tested up to: 5.8
6-
Stable tag: 1.2.3
6+
Stable tag: 1.2.4
77
Requires PHP: 5.4
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -73,6 +73,9 @@ This mu-plugin will load WP Native PHP Sessions before all other plugins, while
7373

7474
== Changelog ==
7575

76+
= 1.2.4 (September 14th, 2021) =
77+
* Increases data blob size from 64k to 16M for new session tables; existing tables will need to manually modify the column if they want to apply this change [[#193](https://github.com/pantheon-systems/wp-native-php-sessions/pull/193)].
78+
7679
= 1.2.3 (April 9th, 2021) =
7780
* Assigns the table name to a variable before using in query [[#188](https://github.com/pantheon-systems/wp-native-php-sessions/pull/188)].
7881

0 commit comments

Comments
 (0)