Releases: satyarohith/sift
0.6.0 / 11 September 2022
What's Changed
- docs: fix arguments for route Handler by @sntran in #67
- fix: replace x.lcas.dev with esm.sh by @nberlette in #72
New Contributors
- @sntran made their first contribution in #67
- @nberlette made their first contribution in #72
Full Changelog: 0.5.0...0.6.0
0.5.0 / 24 March 2022
What's Changed
- BREAKING: align route handler signature with std by @satyarohith in #59
- 0.5.0 by @satyarohith in #63
Note:
You will encounter type errors with this release. It's a known upstream issue and will be resolved in a future deno release.
Please use --no-check=remote
flag with deno run
.
Example:
deno run -A --no-check=remote main.ts
Full Changelog: 0.4.4...0.5.0
0.4.4 / 23 March 2022
What's Changed
- allowing configuring addr/port by @retog in #58
- chore: fix abortsignal types by @satyarohith in #60
- feat: export Status & STATUS_TEXT by @satyarohith in #62
- 0.4.4 by @satyarohith in #61
New Contributors
Full Changelog: 0.4.3...0.4.4
0.4.3 / 27 January 2022
What's Changed
- Bump version of
media_types
by @arnu515 in #53 - fix(serveStatic): use 404 handler when
NotFound
(#54) by @innovatedev-john-pope in #55
New Contributors
- @arnu515 made their first contribution in #53
- @innovatedev-john-pope made their first contribution in #55
Full Changelog: 0.4.2...0.4.3
0.4.2 / 24 October 2021
0.4.2
0.4.1 / 24 October 2021
What's Changed
- chore: use official media_types by @satyarohith in #47
- fix(serveStatic): stop rewriting file as directory by @satyarohith in #48
Full Changelog: 0.4.0...0.4.1
0.4.0 / 18 October 2021
Hey! 👋
This release includes the following changes:
serveStatic
now usesDeno.readFile
, enabling it to work on Deno.- Sift now uses URLPattern instead of
path-to-regex
to process path patterns. It's a breaking change for users who use wildcard path patterns.
You can now run Sift apps using Deno 🚀
Full Changelog: 0.3.6...0.4.0
0.3.6 / 17 October 2021
This release enables you to run all Sift apps using deno
CLI instead of deployctl
.
But I didn't update the docs as I want to do some breaking changes and make Sift better, for real.
0.3.5 / 26 July 2021
Well, I'm breaking something with every release. I hope nothing breaks this time. 😄
GitHub sets CSP header with its raw.githubusercontent.com
assets which causes a lot of pain
when we embed them. The fix in 0.3.4
for serveStatic
didn't use the function responsible
for header removable, and this release uses the function thanks to @sylc.
Cheers!
0.3.4 / 17 July 2021
This patch release includes, of course, a patch for serveStatic
. 😄
0.3.3
introduced changes that were mutating immutable headers and broke serveStatic
.
Now it's working as expected. Enjoy!
Thanks!