Skip to content

Commit cb313e1

Browse files
committed
release: 1.6.0
1 parent 39ab2d6 commit cb313e1

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,25 @@
22
## [Unreleased]
33

44

5+
<a name="1.6.0"></a>
6+
## [1.6.0] - 2025-04-14
7+
### bug fixes
8+
- **pkey:** use EVP_PKEY_fromdata to load JWK [ff0d02c](https://github.com/fffonion/lua-resty-openssl/commit/ff0d02c4d149efd9c816a65750b4c662613a6e2b)
9+
- **pkey:** iv should be optional in cipher.init() ([#204](https://github.com/fffonion/lua-resty-openssl/issues/204)) [76a1b0e](https://github.com/fffonion/lua-resty-openssl/commit/76a1b0e602b6d1d13f11968ed78a81f857891ebf)
10+
11+
### features
12+
- **pkey:** add pkey:get_size and allow only return NID of key type [b671676](https://github.com/fffonion/lua-resty-openssl/commit/b6716769141cef4d31b7b668a0b9d6b62f8f20e2)
13+
14+
515
<a name="1.5.2"></a>
6-
## [1.5.2] - 2025-01-10
16+
## [1.5.2] - 2025-02-05
717
### bug fixes
818
- pkey.new() failed, if compile pkey.lua to LuaJIT bytecode ([#193](https://github.com/fffonion/lua-resty-openssl/issues/193)) [085f329](https://github.com/fffonion/lua-resty-openssl/commit/085f3298720cbe07d02a21daec6eebdf52e35a54)
919
- **pkey:** fix compose of ecx key not effective [1dd84ae](https://github.com/fffonion/lua-resty-openssl/commit/1dd84ae5f7c5f5421be7ce5fb155d249238fed58)
1020

21+
### features
22+
- **compat:** add dev support for nginx 1.27.1 ([#200](https://github.com/fffonion/lua-resty-openssl/issues/200)) [b75248c](https://github.com/fffonion/lua-resty-openssl/commit/b75248cfb8729b2ea953eb159060b248a4f89ea1)
23+
1124

1225
<a name="1.5.1"></a>
1326
## [1.5.1] - 2024-07-25
@@ -626,7 +639,8 @@
626639
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)
627640

628641

629-
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.2...HEAD
642+
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.6.0...HEAD
643+
[1.6.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.2...1.6.0
630644
[1.5.2]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...1.5.2
631645
[1.5.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.0...1.5.1
632646
[1.5.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.4.0...1.5.0

lib/resty/openssl.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ try_require_modules()
2424

2525

2626
local _M = {
27-
_VERSION = '1.5.2',
27+
_VERSION = '1.6.0',
2828
}
2929

3030
function _M.load_modules()

lua-resty-openssl-1.5.2-1.rockspec renamed to lua-resty-openssl-1.6.0-1.rockspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-openssl"
2-
version = "1.5.2-1"
2+
version = "1.6.0-1"
33
source = {
44
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
5-
tag = "1.5.2"
5+
tag = "1.6.0"
66
}
77
description = {
88
detailed = "FFI-based OpenSSL binding for LuaJIT.",

0 commit comments

Comments
 (0)