File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,10 @@ Release process:
150
150
1 . upload using: ` VERSION=x.y.z APIKEY=abc... make upload `
151
151
1 . test installing the rock from LuaRocks
152
152
153
+ ### 1.1.2 (5-Dec-2022)
154
+
155
+ - fix: auto detection scheme and default to tls [ #42 ] ( https://github.com/Kong/lua-resty-aws/pull/42 )
156
+
153
157
### 1.1.1 (21-Nov-2022)
154
158
155
159
- fix: port is repeated when port is not standard [ #39 ] ( https://github.com/Kong/lua-resty-aws/pull/39 )
Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ local function get_host_port(config)
79
79
local scheme = config .scheme
80
80
if s then
81
81
scheme = scheme or endpoint :sub (1 , s - 1 ):lower ()
82
+ -- the "globalSSL" one from the region_config_data file
82
83
endpoint = endpoint :sub (e + 1 , - 1 )
83
84
end
84
85
85
86
scheme = scheme or " https"
86
87
config .scheme = scheme
87
88
88
- -- the "globalSSL" one from the region_config_data file
89
89
if config .tls == nil then
90
90
config .tls = scheme == " https"
91
91
end
You can’t perform that action at this time.
0 commit comments