diff --git a/CHANGELOG.md b/CHANGELOG.md index ff8ff8f8..d59a0189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG.md +## 0.20.4 (2024-04-23) + + - Improvements to the fetch function + - Set a default [user-agent header](https://en.wikipedia.org/wiki/User-Agent_header) when none is specified (`User-Agent: sqlpage`). + - bundle root certificates with sqlpage so that we can always access HTTPS URLs even on outdated or stripped-down systems. + - update our https library to the latest version everywhere, to avoid having to bundle two distinct versions of it. + ## 0.20.3 (2024-04-22) - New `dropdown` row-level property in the [`form` component](https://sql.ophir.dev/documentation.sql?component=form#component) diff --git a/Cargo.lock b/Cargo.lock index 126cc39f..ec8446c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2816,7 +2816,7 @@ dependencies = [ [[package]] name = "sqlpage" -version = "0.20.3" +version = "0.20.4" dependencies = [ "actix-multipart", "actix-rt", diff --git a/Cargo.toml b/Cargo.toml index 163a60c4..9093e3f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlpage" -version = "0.20.3" +version = "0.20.4" edition = "2021" description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components." keywords = ["web", "sql", "framework"]