Skip to content
Snippets Groups Projects
Commit eab5fc67 authored by Erick Hitter's avatar Erick Hitter
Browse files

Merge branch 'fix/prepare-release' into 'master'

More release preparations

See merge request !11
parents a2cf8451 fa9f5d19
No related branches found
No related tags found
1 merge request!11More release preparations
Pipeline #5079 passed
...@@ -4,10 +4,11 @@ ...@@ -4,10 +4,11 @@
.git .git
.gitignore .gitignore
.gitlab-ci.yml .gitlab-ci.yml
.nvmrc
.travis.yml .travis.yml
.wordpress-org/*
.DS_Store .DS_Store
Thumbs.db Thumbs.db
assets/src/*
behat.yml behat.yml
bitbucket-pipelines.yml bitbucket-pipelines.yml
bin bin
...@@ -34,3 +35,4 @@ node_modules ...@@ -34,3 +35,4 @@ node_modules
*.sql *.sql
*.tar.gz *.tar.gz
*.zip *.zip
webpack.config.js
...@@ -4,10 +4,11 @@ ...@@ -4,10 +4,11 @@
/.gitattributes export-ignore /.gitattributes export-ignore
/.gitignore export-ignore /.gitignore export-ignore
/.gitlab-ci.yml export-ignore /.gitlab-ci.yml export-ignore
/.nvmrc export-ignore
/.travis.yml export-ignore /.travis.yml export-ignore
/.DS_Store export-ignore /.DS_Store export-ignore
/.wordpress-org export-ignore
/Thumbs.db export-ignore /Thumbs.db export-ignore
/assets/src export-ignore
/behat.yml export-ignore /behat.yml export-ignore
/bitbucket-pipelines.yml export-ignore /bitbucket-pipelines.yml export-ignore
/bin export-ignore /bin export-ignore
...@@ -31,6 +32,7 @@ ...@@ -31,6 +32,7 @@
/tests export-ignore /tests export-ignore
/vendor export-ignore /vendor export-ignore
/node_modules export-ignore /node_modules export-ignore
/webpack.config.js export-ignore
/*.sql export-ignore /*.sql export-ignore
/*.tar.gz export-ignore /*.tar.gz export-ignore
/*.zip export-ignore /*.zip export-ignore
...@@ -15,7 +15,9 @@ Store WordPress session tokens in Redis rather than the usermeta table. ...@@ -15,7 +15,9 @@ Store WordPress session tokens in Redis rather than the usermeta table.
Store WordPress user session tokens in Redis rather than the usermeta table. Store WordPress user session tokens in Redis rather than the usermeta table.
This plugin was previously known as `WP Redis User Session Storage` and was renamed to comply with WordPress.org naming constraints. This plugin was previously known as `WP Redis User Session Storage` and was renamed
to comply with WordPress.org naming constraints. The previous class name is
aliased to support existing extensions.
## Installation ## ## Installation ##
...@@ -38,10 +40,6 @@ Specify any of the following constants to set the necessary, non-default connect ...@@ -38,10 +40,6 @@ Specify any of the following constants to set the necessary, non-default connect
* `WP_REDIS_USER_SESSION_DB` - Database number to use for the Redis server, defaults to `0`. * `WP_REDIS_USER_SESSION_DB` - Database number to use for the Redis server, defaults to `0`.
* `WP_REDIS_USER_SESSION_SERIALIZER` - Serializer to use for the Redis server, defaults to `Redis::SERIALIZER_PHP`. * `WP_REDIS_USER_SESSION_SERIALIZER` - Serializer to use for the Redis server, defaults to `Redis::SERIALIZER_PHP`.
### How do I upgrade from WP Redis User Session Storage? ###
Install and activate this plugin, then deactivate the old plugin. Both plugins can safely be activated together as long as no additional classes extend the `WP_Redis_User_Session_Storage` class. After activating this plugin, deactivate the `WP Redis User Session Storage` plugin and remove it.
## Changelog ## ## Changelog ##
### 0.2 ### ### 0.2 ###
......
...@@ -5,7 +5,7 @@ msgstr "" ...@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: Redis User Session Storage 0.2\n" "Project-Id-Version: Redis User Session Storage 0.2\n"
"Report-Msgid-Bugs-To: " "Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/wp-redis-user-session-storage\n" "https://wordpress.org/support/plugin/wp-redis-user-session-storage\n"
"POT-Creation-Date: 2022-07-13 23:11:21+00:00\n" "POT-Creation-Date: 2022-07-13 23:28:31+00:00\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
......
...@@ -15,7 +15,9 @@ Store WordPress session tokens in Redis rather than the usermeta table. ...@@ -15,7 +15,9 @@ Store WordPress session tokens in Redis rather than the usermeta table.
Store WordPress user session tokens in Redis rather than the usermeta table. Store WordPress user session tokens in Redis rather than the usermeta table.
This plugin was previously known as `WP Redis User Session Storage` and was renamed to comply with WordPress.org naming constraints. This plugin was previously known as `WP Redis User Session Storage` and was renamed
to comply with WordPress.org naming constraints. The previous class name is
aliased to support existing extensions.
== Installation == == Installation ==
...@@ -38,10 +40,6 @@ Specify any of the following constants to set the necessary, non-default connect ...@@ -38,10 +40,6 @@ Specify any of the following constants to set the necessary, non-default connect
* `WP_REDIS_USER_SESSION_DB` - Database number to use for the Redis server, defaults to `0`. * `WP_REDIS_USER_SESSION_DB` - Database number to use for the Redis server, defaults to `0`.
* `WP_REDIS_USER_SESSION_SERIALIZER` - Serializer to use for the Redis server, defaults to `Redis::SERIALIZER_PHP`. * `WP_REDIS_USER_SESSION_SERIALIZER` - Serializer to use for the Redis server, defaults to `Redis::SERIALIZER_PHP`.
= How do I upgrade from WP Redis User Session Storage? =
Install and activate this plugin, then deactivate the old plugin. Both plugins can safely be activated together as long as no additional classes extend the `WP_Redis_User_Session_Storage` class. After activating this plugin, deactivate the `WP Redis User Session Storage` plugin and remove it.
== Changelog == == Changelog ==
= 0.2 = = 0.2 =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment