From f67d4ccb230248a5f913f0daa2dd41799c48ffa5 Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Fri, 6 Sep 2024 15:58:34 +0200 Subject: [PATCH] prep 0.2.0 --- CHANGES.md | 16 +++++++++++----- flake.nix | 4 ++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7e838ce7..d64a2a79 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,5 @@ -## Unreleased +0.2.0 2024-09-06 +--------------- - Improve certificate checking and authentication ([#93](https://github.com/anmonteiro/piaf/pull/93)) - @@ -20,15 +21,20 @@ ([#112](https://github.com/anmonteiro/piaf/pull/112)) - Piaf.Response: add `or_internal_error` ([#120](https://github.com/anmonteiro/piaf/pull/120)) -- Piaf.Server: prefer `Lwt.dont_wait` to the global exception hook - ([#123](https://github.com/anmonteiro/piaf/pull/123)) - Piaf.Response: Add `Body.sendfile` and `Response.sendfile` - ([#124](https://github.com/anmonteiro/piaf/pull/123)) + ([#124](https://github.com/anmonteiro/piaf/pull/124)) - Piaf.Config: Add `config.flush_headers_immediately` ([#125](https://github.com/anmonteiro/piaf/pull/125)) - Piaf.Server: Add `config.shutdown_timeout` to wait before shutting down the Piaf server ([#174](https://github.com/anmonteiro/piaf/pull/174)) +- Websocket support ([#139](https://github.com/anmonteiro/piaf/pull/139)) +- Multicore support ([#151](https://github.com/anmonteiro/piaf/pull/151)) +- Allow binding to UNIX domain socket + ([#161](https://github.com/anmonteiro/piaf/pull/161)) +- Don't send invalid HTTP/2 headers + ([#197](https://github.com/anmonteiro/piaf/pull/197)) -## 0.1.0 2021-02-03 +0.1.0 2021-02-03 +--------------- - Initial public release diff --git a/flake.nix b/flake.nix index cd2d52d6..96ffcfd4 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,10 @@ packages = packages // { default = packages.native.piaf; }; devShells = { default = pkgs.callPackage ./nix/shell.nix { inherit packages; }; + release = pkgs.callPackage ./nix/shell.nix { + inherit packages; + release-mode = true; + }; }; gh-actions = pkgs.callPackage ./nix/gh-actions.nix { }; });