From cdfaed4fa38ac85a959d2259e772f9cfca94cd33 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Mon, 9 Jun 2025 20:48:52 +0300 Subject: [PATCH] updated Record.ToInt test to accomodate the latest cast update --- core/record_model_test.go | 2 +- ui/.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/record_model_test.go b/core/record_model_test.go index 4d446038..a65c00a5 100644 --- a/core/record_model_test.go +++ b/core/record_model_test.go @@ -879,7 +879,7 @@ func TestRecordGetInt(t *testing.T) { {123, 123}, {2.4, 2}, {"123", 123}, - {"123.5", 0}, + {"123.5", 123}, {false, 0}, {true, 1}, } diff --git a/ui/.env b/ui/.env index cd8404ba..31852566 100644 --- a/ui/.env +++ b/ui/.env @@ -9,4 +9,4 @@ PB_DOCS_URL = "https://pocketbase.io/docs" PB_JS_SDK_URL = "https://github.com/pocketbase/js-sdk" PB_DART_SDK_URL = "https://github.com/pocketbase/dart-sdk" PB_RELEASES = "https://github.com/pocketbase/pocketbase/releases" -PB_VERSION = "v0.28.2" +PB_VERSION = "v0.28.3"