Skip to content
This repository has been archived by the owner on Aug 19, 2021. It is now read-only.

Commit

Permalink
chore(*) release 2.4.4 (#31)
Browse files Browse the repository at this point in the history
### chore(deps) bump lua-resty-session from 3.6 to 3.8
#### 3.8 - 2021-01-04
##### Added
- Connection options are now passed to `redis cluster client` as well.

#### 3.7 - 2020-10-27
##### Fixed
- Fix #107 where `session.start` could release a lock for a short period

#### Added
- Add `keep_lock` argument to `session.open`
- Add pluggable compressors, and implement `none` and `zlib` compressor

### chore(*) release 2.4.4

- bump the `lua-resty-session` from `3.6` to `3.8`
- add `endpoint_key` to admin api, see #30
  • Loading branch information
bungle authored Jan 4, 2021
1 parent 560f47e commit 57db4f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package = "kong-plugin-session"

version = "2.4.3-1"
version = "2.4.4-1"

supported_platforms = {"linux", "macosx"}

source = {
url = "git://github.com/Kong/kong-plugin-session",
tag = "2.4.3"
tag = "2.4.4"
}

description = {
Expand All @@ -17,7 +17,7 @@ description = {

dependencies = {
"lua >= 5.1",
"lua-resty-session == 3.6",
"lua-resty-session == 3.8",
--"kong >= 1.2.0",
}

Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/session/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local header_filter = require "kong.plugins.session.header_filter"

local KongSessionHandler = {
PRIORITY = 1900,
VERSION = "2.4.3",
VERSION = "2.4.4",
}


Expand Down

0 comments on commit 57db4f6

Please sign in to comment.