You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, big release with lots of changes here. Internally, the server behind the scenes, st, was switched for send, due to a bug we had been seeing in which bytes were dropped of the ends of some requests. Testing with this version indicates that the switch to send eliminates this bug.
This also changes the options object entirely though, and eliminates gzipping as one of the capabilities. If you still need gzip, I'd recommend using compress for this.
Gzip is now off by default, since this is the setting for development servers. You can flick it on by passing { gzip: true } as an option if you are using alchemist in production.
Now uses a forked version of st which has a way to disable setting cache control headers, which alchemist does by default so you can manually set your cache control headers earlier and they are not clobbered by alchemist.