Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 1.5.2 #194

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 5 additions & 33 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -42,46 +42,13 @@ jobs:
lua_nginx_module: "v0.10.25"
lua_resty_core: "v0.1.27"
nginx_cc_opts: "-Wno-error"
- nginx: "1.25.3"
openssl: "1.1.1w"
extras: "valgrind perf"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
- nginx: "1.25.3"
openssl: "3.0.15"
openssl_fips: "3.0.9"
extras: "valgrind perf lua-kong-nginx-module"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
nginx_cc_opts: "-Wno-error"
- nginx: "1.25.3"
openssl: "3.1.7"
openssl_fips: "3.0.9"
extras: "valgrind perf lua-kong-nginx-module"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
nginx_cc_opts: "-Wno-error"
- nginx: "1.25.3"
openssl: "3.2.3"
openssl_fips: "3.0.9"
extras: "valgrind perf lua-kong-nginx-module"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
nginx_cc_opts: "-Wno-error"
- nginx: "1.25.3"
openssl: "3.3.2"
openssl_fips: "3.0.9"
extras: "valgrind perf lua-kong-nginx-module"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
nginx_cc_opts: "-Wno-error"
- nginx: "1.25.3"
openssl: "3.4.0"
openssl_fips: "3.0.9"
extras: "valgrind perf lua-kong-nginx-module"
lua_nginx_module: "v0.10.26"
lua_resty_core: "v0.1.28"
nginx_cc_opts: "-Wno-error"
- nginx: "1.27.1"
openssl: "1.1.1w"
extras: "valgrind perf"
@@ -177,6 +144,11 @@ jobs:
git clone https://github.com/openresty/lua-resty-lrucache.git ../lua-resty-lrucache
git clone https://github.com/openresty/lua-resty-string ../lua-resty-string

- name: Setup conditional tools
if: matrix.nginx == '1.21.4' || matrix.nginx == '1.19.9'
run: |
sudo apt-get install -qq -y libpcre3-dev

- name: Build OpenSSL
if: matrix.boringssl == ''
run: |
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@
## [Unreleased]


<a name="1.5.2"></a>
## [1.5.2] - 2025-01-10
### bug fixes
- 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)
- **pkey:** fix compose of ecx key not effective [1dd84ae](https://github.com/fffonion/lua-resty-openssl/commit/1dd84ae5f7c5f5421be7ce5fb155d249238fed58)


<a name="1.5.1"></a>
## [1.5.1] - 2024-07-25

@@ -619,7 +626,8 @@
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)


[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...HEAD
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.2...HEAD
[1.5.2]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...1.5.2
[1.5.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.0...1.5.1
[1.5.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.4.0...1.5.0
[1.4.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.3.1...1.4.0
2 changes: 1 addition & 1 deletion lib/resty/openssl.lua
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ try_require_modules()


local _M = {
_VERSION = '1.5.1',
_VERSION = '1.5.2',
}

function _M.load_modules()
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-openssl"
version = "1.5.1-1"
version = "1.5.2-1"
source = {
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
tag = "1.5.1"
tag = "1.5.2"
}
description = {
detailed = "FFI-based OpenSSL binding for LuaJIT.",