8.1 KiB
v0.23.0-rc3 (WIP)
[!CAUTION] This is a prerelease intended for test and experimental purposes only!
-
Fixed the UI input field type of the OTP.length field (#5617).
-
To avoid confusion and unnecessary casting, the
hook.HandlerFunc[T]type has been removed and instead everywhere we now use directly the underlying function definition, aka.:func(T) error -
Make
PRAGMA optimizestatement optional (#5611). -
Other minor UI fixes (fixed error message typo, better hint for combined/multi-spaced view query columns, fixed https green favicon path, etc.)
v0.23.0-rc2
[!CAUTION] This is a prerelease intended for test and experimental purposes only!
- Small update to the earlier v0.23.0-rc that uses
pb_data/auxiliary.dbinstead ofpb_data/aux.dbbecause it seems that on Windowsauxis disallowed as file name (#5607). If you have already upgraded to v0.23.0-rc please rename manually yourpb_data/aux.dbfile topb_data/auxiliary.db.
v0.23.0-rc
[!CAUTION] This is a prerelease intended for test and experimental purposes only!
It introduces many Go/JSVM breaking changes and requires manual migration steps.
All new features will be reflected in the new website documentation with the final v0.23.0 release.
[!NOTE] Please note that you don't have to upgrade to PocketBase v0.23.0 if you are not planning further developing your existing app and/or are satisfied with the v0.22.x features set. There are no identified critical issues with PocketBase v0.22.x yet and in the case of critical bugs and security vulnerabilities, the fixes will be backported for at least until Q1 of 2025 (if not longer).
If you don't plan upgrading just make sure to pin the SDKs version to their latest PocketBase v0.22.x compatible:
- JS SDK:
<0.22.0- Dart SDK:
<0.19.0
PocketBase v0.23.0-rc is a major refactor of the internals with the overall goal of making PocketBase an easier to use Go framework.
There are many changes but to highlight some of the most notable ones:
- Replaced
echowith a new router built on top of the Go 1.22net/httpmux enhancements. - Merged
daospackages incore.Appto simplify the DB operations (themodelspackage structs are also migrated incore). - Option to specify custom
DBConnectfunction as part of the app configuration to allow differentdatabase/sqlSQLite drivers (turso/libsql, sqlcipher, etc.) and custom builds. - New hooks allowing better control over the execution chain and error handling (including wrapping an entire hook chain in a single DB transaction).
- Various
Recordmodel improvements (support for get/set modifiers, simplfied file upload by treating the file(s) as regular field value likerecord.Set("document", file), etc.). - Dedicated fields structs with safer defaults to make it easier creating/updating collections programmatically.
- Option to mark field as Private/Hidden, disallowing regular users to read or modify it (there is also a dedicated Record hook to hide/unhide Record fields programmatically from a single place).
- Option to customize the default system collection fields (
id,email,password, etc.). - Admins are now system
_superusersauth records. - Builtin rate limiter (supports tags, wildcards and exact routes matching).
- Batch/transactional Web API endpoint.
- Impersonate Web API endpoint (it could be also used for generating fixed/non-refreshable superuser tokens, aka. "API keys").
- Support for custom user request activity log attributes.
- One-Time Password (OTP) auth method (via email code).
- Multi-Factor Authentication (MFA) support (currently requires any 2 different auth methods to be used).
- Support for Record "proxy/projection" in preparation for the planned autogeneration of typed Go record models.
- Various minor UI improvements (recursive
Presentableview, slightly different collection options organization, zoom/pan for the logs chart, etc.) - and many more...
In terms of performance, the Go standard router mux is known to be slightly slower compared to Gin, Echo, etc. implementations, but based on my local tests the difference is negliable. The benchmarks repo will be updated with the final v0.23.0 release (currently there seems to be ~10% memory consumption increase which I'll have to investigate to see whether it is from the router change or from the new hooks).
Go/JSVM APIs changes
For upgrading to PocketBase v0.23.0, please refer to:
SDKs changes
Web APIs changes
-
New
POST /api/batchendpoint. -
New
GET /api/collections/meta/scaffoldsendpoint. -
New
DELETE /api/collections/{collection}/truncateendpoint. -
New
POST /api/collections/{collection}/request-otpendpoint. -
New
POST /api/collections/{collection}/auth-with-otpendpoint. -
New
POST /api/collections/{collection}/impersonate/{id}endpoint. -
⚠️ Previously when uploading new files to a multiple
filefield, new files were automatically appended to the existing field values. This behaviour has changed with v0.23+ and for consistency with the other multi-valued fields when uploading new files they will replace the old ones. If you want to prepend or append new files to an existing multiplefilefield value you can use the+prefix or suffix:"documents": [file1, file2] // => [file1_name, file2_name] "+documents": [file1, file2] // => [file1_name, file2_name, old1_name, old2_name] "documents+": [file1, file2] // => [old1_name, old2_name, file1_name, file2_name] -
⚠️ Removed
GET /records/{id}/external-authsandDELETE /records/{id}/external-auths/{provider}endpoints because this is now handled by sending list and delete requests to the_externalAuthscollection. -
⚠️ Changes to the app settings model fields and response (+new options such as
trustedProxy,rateLimits,batch, etc.). The app settings Web APIs are mostly used by the Dashboard UI and rarely by the end users, but if you want to check all settings changes please refer to the Settings Go struct. -
⚠️ New flatten Collection model and fields structure. The Collection model Web APIs are mostly used by the Dashboard UI and rarely by the end users, but if you want to check all changes please refer to the Collection Go struct.
-
⚠️ The top level error response
codekey was renamed tostatusfor consistency with the Go APIs. The error field key remainscode:{ "status": 400, // <-- old: "code" "message": "Failed to create record.", "data": { "title": { "code": "validation_required", "message": "Missing required value." } } } -
⚠️ New fields in the
GET /api/collections/{collection}/auth-methodsresponse. The oldauthProviders,usernamePassword,emailPasswordfields are still returned in the response but are considered deprecated and will be removed in the future.{ "mfa": { "duration": 100, "enabled": true }, "otp": { "duration": 0, "enabled": false }, "password": { "enabled": true, "identityFields": ["email", "username"] }, "oauth2": { "enabled": true, "providers": [{"name": "gitlab", ...}, {"name": "google", ...}] }, // old fields... } -
⚠️ Soft-deprecated the OAuth2 auth success
meta.avatarUrlfield in favour ofmeta.avatarURL.