From 1527b5ea4fc56e264b1f146687b660520b5bc9a3 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sun, 8 Oct 2023 23:43:58 +0300 Subject: [PATCH] updated CHANGELOG --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc97f120..09ab5c73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ ## v0.18.10 -- Added global `raw` template function to allow outputing raw/unescaped HTML content in the JSVM templates ([#3476](https://github.com/pocketbase/pocketbase/discussions/3476)). +- Added global `raw` template function to allow outputting raw/verbatim HTML content in the JSVM templates ([#3476](https://github.com/pocketbase/pocketbase/discussions/3476)). ``` {{.description|raw}} ``` +- Trimmed view query semicolon and allowed single quotes for column aliases ([#3450](https://github.com/pocketbase/pocketbase/issues/3450#issuecomment-1748044641)). + _Single quotes are usually [not a valid identifier quote characters](https://www.sqlite.org/lang_keywords.html), but for resilience and compatibility reasons SQLite allows them in some contexts where only an identifier is expected._ + - Bumped the GitHub action to use [min Go 1.21.2](https://github.com/golang/go/issues?q=milestone%3AGo1.21.2) (_the fixed issues are not critical as they are mostly related to the compiler/build tools_).