Skip to content

Releases: linkedin/flashback

Added support for commas in single-value headers

20 Mar 15:21
Compare
Choose a tag to compare

Added support for commas in single-value headers

Fix Set-Cookie headers issue

12 Apr 20:40
Compare
Choose a tag to compare

Http request might contains a few "Set-Cookie" headers with different values. Current code merge headers with same key using ','. However, Some 'Set-Cookie' header value contains ',' as well. The issue is that after we store "Set-Cookie" headers to the scene, it's possible that we cant split them properly when we load from the scene. It will cause some matching function failure. The proper way to do is always use multi-map to store Http headers but it requires significant refactoring and will also make the code over complicated. One workaround is to encode all headers before we merge headers but it will lose readability for headers in the scene. So I'd like just encode "Set-Cookie" headers but not any other headers.

A few issue fixed mainly with SSL related naming confusion

31 Mar 14:24
Compare
Choose a tag to compare
  1. Better name on loading SSL context
  2. Removed redundant Keystore loading for server to proxy SSL handshaking.

first version of flashback

17 Mar 13:54
Compare
Choose a tag to compare
0.0.1

add .gitignore