From 00d3ea9fd1b4e7e0e13a6c83ca90d88f7d33883e Mon Sep 17 00:00:00 2001 From: Lawrence Forooghian Date: Wed, 15 May 2024 08:47:35 -0300 Subject: [PATCH 1/2] Bump version to 1.1.8 --- lib/em-http/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/em-http/version.rb b/lib/em-http/version.rb index 90eddde..f237c30 100644 --- a/lib/em-http/version.rb +++ b/lib/em-http/version.rb @@ -1,7 +1,7 @@ module EventMachine module AblyHttpRequest class HttpRequest - VERSION = "1.1.7" + VERSION = "1.1.8" end end end From 740fba186b7668ea4d4678c65c726bd6dc058f70 Mon Sep 17 00:00:00 2001 From: Lawrence Forooghian Date: Wed, 15 May 2024 08:57:13 -0300 Subject: [PATCH 2/2] Update changelog for 1.1.8 --- Changelog.md | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1cf3b74..58010c7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,10 +1,20 @@ # Changelog -## master +## Ably fork changelog + +### 1.1.8 + +#### Bug fixes + +- Fix server certificate validation ([#2](https://github.com/ably-forks/em-http-request/pull/2)) + +## Original changelog (appears that the author stopped updating this at some point) + +### master - User-Agent header is now removed if set to nil. -## 1.0.0.beta.1 / 2011-02-20 - The big rewrite +### 1.0.0.beta.1 / 2011-02-20 - The big rewrite - Switched parser from Ragel to http_parser.rb - Removed em_buffer C extension @@ -14,7 +24,7 @@ - Refactored & split all tests - Basic 100-Continue handling on POST/PUT -## 0.3.0 / 2011-01-15 +### 0.3.0 / 2011-01-15 - IMPORTANT: default to non-persistent connections (timeout => 0 now requires :keepalive => true) - see: https://github.com/igrigorik/em-http-request/commit/1ca5b608e876c18fa6cfa318d0685dcf5b974e09 @@ -27,21 +37,21 @@ - bugfix: more robust Encoding detection -## 0.2.15 / 2010-11-18 +### 0.2.15 / 2010-11-18 - bugfix: follow redirects on missing content-length - bugfix: fixed undefined warnings when running in strict mode -## 0.2.14 / 2010-10-06 +### 0.2.14 / 2010-10-06 - bugfix: form-encode keys/values of ruby objects passed in as body -## 0.2.13 / 2010-09-25 +### 0.2.13 / 2010-09-25 - added SOCKS5 proxy support - bugfix: follow redirects on HEAD requests -## 0.2.12 / 2010-09-12 +### 0.2.12 / 2010-09-12 - added headers callback (http.headers {|h| p h}) - added .close method on client obj to terminate session (accepts message) @@ -50,7 +60,7 @@ - bugfix: handle bad Location host redirects - bugfix: reset host override on connect -## 0.2.11 / 2010-08-16 +### 0.2.11 / 2010-08-16 - all URIs are now normalized prior to dispatch (and on redirect) - default to direct proxy (instead of CONNECT handshake) - better performance