diff --git a/CHANGELOG.md b/CHANGELOG.md index ba0cae17..5afde5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] + +## [1.2.0] - 2023-12-28 +### bug fixes +- **compat:** works better with plain luajit [d23b34a](https://github.com/fffonion/lua-resty-openssl/commit/d23b34ae8b3349342d5f82d90dbfe76696dd2ca4) + +### features +- **bn:** add from_mpi, to_mpi and set API [073c943](https://github.com/fffonion/lua-resty-openssl/commit/073c943bf74cce7bd6ce90ee97dfc9b753af3cf2) +- **cipher:** add set_buffer_size API [3d0a51c](https://github.com/fffonion/lua-resty-openssl/commit/3d0a51ccab0c2dd46f9eb8088fa2f767eff02a61) +- **mac:** add reset API [40fdbbb](https://github.com/fffonion/lua-resty-openssl/commit/40fdbbbddc078c01ea40b8ec8b21257d0e3fefa6) +- **openssl:** list functions can now optionally drop provider name [b36ccba](https://github.com/fffonion/lua-resty-openssl/commit/b36ccba3fce9a1b51a0bc8c23d5e9843e99a2052) + +### performance improvements +- **cipher:** improve performance on cipher [ba5de3e](https://github.com/fffonion/lua-resty-openssl/commit/ba5de3e53e1b83de5b8f75d64c83eb3e507f386a) +- **kdf:** use table.nkeys for params [dac54bf](https://github.com/fffonion/lua-resty-openssl/commit/dac54bf7685d907518e80ab96a594753cdf0c0e1) + + ## [1.1.0] - 2023-12-15 ### features @@ -555,7 +571,8 @@ - **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8) -[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.1.0...HEAD +[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.2.0...HEAD +[1.2.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.2...1.1.0 [1.0.2]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.0...1.0.1 diff --git a/lib/resty/openssl.lua b/lib/resty/openssl.lua index 4f3f19b0..fba8ae6b 100644 --- a/lib/resty/openssl.lua +++ b/lib/resty/openssl.lua @@ -24,7 +24,7 @@ try_require_modules() local _M = { - _VERSION = '1.1.0', + _VERSION = '1.2.0', } function _M.load_modules() diff --git a/lua-resty-openssl-1.1.0-1.rockspec b/lua-resty-openssl-1.2.0-1.rockspec similarity index 99% rename from lua-resty-openssl-1.1.0-1.rockspec rename to lua-resty-openssl-1.2.0-1.rockspec index 9fd4593a..ade507dd 100644 --- a/lua-resty-openssl-1.1.0-1.rockspec +++ b/lua-resty-openssl-1.2.0-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-openssl" -version = "1.1.0-1" +version = "1.2.0-1" source = { url = "git+https://github.com/fffonion/lua-resty-openssl.git", - tag = "1.1.0" + tag = "1.2.0" } description = { detailed = "FFI-based OpenSSL binding for LuaJIT.",