Releases: mentimeter/linkup
Releases · mentimeter/linkup
0.1.13
Boot local before tunnel
0.1.12
Fix traceparent not set on forward host bug (#43) Funky miss! Odd side effects...
0.1.11
Make iframes work cross domain (#41) ![Screenshot 2023-10-23 at 16 30 58](https://github.com/mentimeter/linkup/assets/7828615/1019d55c-d80b-4a75-a517-62ddf3c32258) Host really seemed to be screwing things up, I found it better to remove the header instead --------- Co-authored-by: Augusto César <[email protected]>
0.1.10
refactor: move worker back into workspace members (#33) ### Description We had move `worker` out of the members because we were having issues compiling it because of some dependency conflicts. It seems like that issue does not exist anymore, so we should be able to move it back into the members list. ### Changes - Move `worker` into members list - Bump `reqwest` from 0.11.18 -> 0.11.22
0.1.9
refactor: extract env file handling (#32) ### Description Move env file handling to own module so that we can better test its behaviour and have it contained. ### Note We need the service name on the env file handling just so that we can use that while building the `CliError`. It feels that maybe we can return another type of error by the env handlers and leave the translation into a `CliError` as a responsibility of the caller. But maybe we can do that on another PR.
0.1.8
refactor: handle new lines to avoid interfering with existing variabl…
0.1.7
feat: add local-dns command (#28) ### Description Makes it possible to install local DNS routing for linkup. Uses of a combination of [caddy](https://caddyserver.com/) and [dnsmasq](https://thekelleys.org.uk/dnsmasq/doc.html) to achieve local TLS/SSL and DNS for this to work in a frictionless way. --------- Co-authored-by: Oliver Stenbom <[email protected]> Co-authored-by: Augusto César <[email protected]>
0.1.6
Fix overlapping route rewrites (#27) Case is, target service on the remote side is a tunnel. If the path gets rewritten once remotely, it can throw off finding the right service in the local server. Solution: an extra header linkup-destination set on every hop. If the destination has been calculated once, we reuse it on later hops.
0.1.5
Remove cache from release job
0.1.4
Better stop cleanup (#23) - Always remove pid files at the end of stop - Swallow more no such process Fixes DO-841