Skip to content

Releases: bungle/lua-resty-session

Release 2.17

12 Jun 09:52
Compare
Choose a tag to compare

Added

  • Added session.hide() function to hide session cookies from upstream on reverse proxy scenarios.

Release 2.16

05 Jun 09:09
Compare
Choose a tag to compare

Changed

  • Delays setting the defaults until needed, allowing users to safely require "resty.session" in different contexts.

Release 2.15

13 Feb 17:51
Compare
Choose a tag to compare

2.15

Added

  • Added a support for chunked cookies. See also: #35 Thanks @zandbelt

2.14

Fixed

  • Lua code configuration parsing corrections (especially on boolean options).

Added

  • Added a more natural way to pass config arguments to storage adapters and ciphers in Lua code. See also: #34 Thanks @hanxi

Release 2.13

21 Nov 20:58
Compare
Choose a tag to compare

Changed

  • On start we do send cookie now also if the settings have changed and the cookie expiry time needs to be reduced.

Fixed

  • Memcache storage adapter had a missing ngx.null.

Release 2.12

21 Nov 17:49
Compare
Choose a tag to compare

Added

  • Implemented pluggable session identifier generators.
  • Implemented random session idenfier generator.

Changed

  • Now checks if headers were already sent before trying to set the
    cookie headers.
  • SSL session identifier is not checked by default anymore.
  • Lua session.identifier.length changed to session.random.length.
  • Nginx $session_identifier_length changed to $session_random_length.

Release 2.10

29 Sep 20:00
Compare
Choose a tag to compare

Added

  • Support for the official OpenResty package manager (opm).

Changed

  • Changed the change log format to keep-a-changelog.

Release 2.9

01 Sep 11:37
Compare
Choose a tag to compare
  • Bugfix: Weird bug where RAND_bytes was not working on Windows platform. Code changed to use resty.random. See Also: #31. Thanks @gtuxyco

Release 2.8

05 Jul 11:11
Compare
Choose a tag to compare
  • Bugfix: AES Cipher used a wrong table for cipher sizes. See Also: #30. Thanks @Pronan

Release 2.7

18 May 08:20
Compare
Choose a tag to compare
  • Feature: Redis storage adapter now supports Redis authentication. See Also: #28. Thanks @cheng5533062.

Release 2.6

18 Apr 14:55
Compare
Choose a tag to compare
  • Just cleanups and changed _VERSION to point correct version.