diff --git a/CHANGELOG.md b/CHANGELOG.md index cf05d83d..2a2de99c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ - ⚠️ Moved the Create and Manage API rule checks out of the `OnRecordCreateRequest` hook finalizer, **aka. now all CRUD API rules are checked BEFORE triggering their corresponding `*Request` hook**. This was done to minimize the confusion regarding the firing order of the request operations, making it more predictable and consistent with the other record List/View/Update/Delete request actions. - It could be a minor breaking change if you are relying on the old behavior or have a Go `tests.ApiScenario` that is testing a Create API rule failure and expect `OnRecordCreateRequest` to be fired. In that case for example you may have to update your test scenario like: + It could be a minor breaking change if you are relying on the old behavior and have a Go `tests.ApiScenario` that is testing a Create API rule failure and expect `OnRecordCreateRequest` to be fired. In that case for example you may have to update your test scenario like: ```go tests.ApiScenario{ Name: "Example test that checks a Create API rule failure" @@ -18,17 +18,18 @@ ExpectedEvents: map[string]int{"*": 0}, } ``` - If you are having difficulties adjusting your code, feel free to open a [Q&A discussion](https://github.com/pocketbase/pocketbase/discussions) with the failing/problematic code sample and I'll try to assist you migrating it. + If you are having difficulties adjusting your code, feel free to open a [Q&A discussion](https://github.com/pocketbase/pocketbase/discussions) with the failing/problematic code sample. -- Added new `geoPoint` field for storing `{lon:x,lat:y}` GPS coordinates (@todo docs and more info for the updated fexpr functions support, geoDistance, record.GetGeoPoint, etc.). +- Added [new `geoPoint` field](https://pocketbase.io/docs/collections/#geopoint) for storing `{lon:x,lat:y}` geographic coordinates. + In addition, a new [`geoDistance(lonA, lotA, lonB, lotB)` function](htts://pocketbase.io/docs/api-rules-and-filters/#geodistancelona-lata-lonb-latb) was also implemented that could be used to apply an API rule or filter constraint based on the distance (in km) between 2 geo points. - Updated the `select` field UI to accommodate better larger lists and RTL languages ([#4674](https://github.com/pocketbase/pocketbase/issues/4674)). - Updated the mail attachments auto MIME type detection to use `gabriel-vasile/mimetype` for consistency and broader sniffing signatures support. -- Forced `text/javascript` Content-Type when serving `.js`/`.mjs` collection uploaded files ([#6597](https://github.com/pocketbase/pocketbase/issues/6597)). +- Forced `text/javascript` Content-Type when serving `.js`/`.mjs` collection uploaded files with the `/api/files/...` endpoint ([#6597](https://github.com/pocketbase/pocketbase/issues/6597)). -- Added optional JSVM `DateTime` constructor argument for specifying a default timezone as TZ identifier when parsing the date string as alternative to fixed offset in order to better handle daylight saving time nuances ([#6688](https://github.com/pocketbase/pocketbase/discussions/6688)): +- Added second optional JSVM `DateTime` constructor argument for specifying a default timezone as TZ identifier when parsing the date string as alternative to a fixed offset in order to better handle daylight saving time nuances ([#6688](https://github.com/pocketbase/pocketbase/discussions/6688)): ```js // the same as with CET offset: new DateTime("2025-10-26 03:00:00 +01:00") new DateTime("2025-10-26 03:00:00", "Europe/Amsterdam") // 2025-10-26 02:00:00.000Z @@ -38,9 +39,10 @@ ``` - Soft-deprecated the `$http.send`'s `result.raw` field in favor of `result.body` that contains the response body as plain bytes slice to avoid the discrepancies between Go and the JSVM when casting binary data to string. - (@todo update docs to use the new field) -- Other minor improvements (_removed the superuser fields from the auth record create/update body examples, allowed programmatically updating the auth record password from the create/update hooks, etc._). +- Updated `modernc.org/sqlite` to 1.37.0. + +- Other minor improvements (_removed the superuser fields from the auth record create/update body examples, allowed programmatically updating the auth record password from the create/update hooks, fixed collections import error response, etc._). ## v0.26.6 diff --git a/tools/search/filter.go b/tools/search/filter.go index dcbeb065..1e953a68 100644 --- a/tools/search/filter.go +++ b/tools/search/filter.go @@ -305,7 +305,7 @@ func resolveToken(token fexpr.Token, fieldResolver FieldResolver) (*ResolverResu Params: dbx.Params{placeholder: cast.ToFloat64(token.Literal)}, }, nil case fexpr.TokenFunction: - fn, ok := tokenFunctions[token.Literal] + fn, ok := TokenFunctions[token.Literal] if !ok { return nil, fmt.Errorf("unknown function %q", token.Literal) } diff --git a/tools/search/token_functions.go b/tools/search/token_functions.go index d59a5b64..15f24717 100644 --- a/tools/search/token_functions.go +++ b/tools/search/token_functions.go @@ -6,12 +6,12 @@ import ( "github.com/ganigeorgiev/fexpr" ) -var tokenFunctions = map[string]func( +var TokenFunctions = map[string]func( argTokenResolverFunc func(fexpr.Token) (*ResolverResult, error), args ...fexpr.Token, ) (*ResolverResult, error){ // geoDistance(lonA, latA, lonB, latB) calculates the Haversine - // distance between 2 coordinates in kilometres (https://www.movable-type.co.uk/scripts/latlong.html). + // distance between 2 points in kilometres (https://www.movable-type.co.uk/scripts/latlong.html). // // The accepted arguments at the moment could be either a plain number or a column identifier (including NULL). // If the column identifier cannot be resolved and converted to a numeric value, it resolves to NULL. diff --git a/tools/search/token_functions_test.go b/tools/search/token_functions_test.go index e8c76a92..bc92f121 100644 --- a/tools/search/token_functions_test.go +++ b/tools/search/token_functions_test.go @@ -20,7 +20,7 @@ func TestTokenFunctionsGeoDistance(t *testing.T) { } defer testDB.Close() - fn, ok := tokenFunctions["geoDistance"] + fn, ok := TokenFunctions["geoDistance"] if !ok { t.Error("Expected geoDistance token function to be registered.") } @@ -173,7 +173,7 @@ func TestTokenFunctionsGeoDistanceExec(t *testing.T) { } defer testDB.Close() - fn, ok := tokenFunctions["geoDistance"] + fn, ok := TokenFunctions["geoDistance"] if !ok { t.Error("Expected geoDistance token function to be registered.") }