PocketBase - Package Updates
-
[1.7.2]
- Update pocketbase to 0.30.2
- Full Changelog
- Bumped min Go GitHub action version to 1.24.8 since it comes with some minor security fixes
-
[1.8.0]
- Use requiresValidCertificate instead of email addon (required Cloudron 9)
-
[1.8.1]
- Update pocketbase to 0.30.3
- Full Changelog
- Fixed legacy identitity field priority check when a username is a valid email address (#7256).
- Workaround autocomplete overflow issue with Firefox 144 (#7223).
- Updated
modernc.org/sqliteto 1.39.1 (SQLite 3.50.4).
-
[1.8.2]
- Update pocketbase to 0.30.4
- Full Changelog
- Fixed
jsonfield CSS regression introduced with the overflow workaround in v0.30.3 (#7259).
-
[1.9.0]
- Update pocketbase to 0.31.0
- Full Changelog
- Visualize presentable multiple
relationfields (#7260). - Support
Ed25519in the optional OIDCid_tokensignature validation (#7252; thanks @shynome). - Added
ApiScenario.DisableTestAppCleanupoptional field to skip the auto test app cleanup and leave it up to the developers to do the cleanup manually (#7267). - Added
FileDownloadRequestEvent.ThumbErrorfield that is populated in case of a thumb generation failure (e.g. unsupported format, timing out, etc.), allowing developers to reject the thumb fallback and/or supply their own custom thumb generation (#7268). - Disallow client-side filtering and sorting of relations where the collection of the last targeted relation field has superusers-only List/Search API rule to further minimize the risk of eventual side-channel attack.
-
[1.10.0]
- Update pocketbase to 0.32.0
- Full Changelog
- Added extra List/Search API rules checks for the client-side
filter/sortrelations. - Increased the default SQLite
PRAGMA cache_sizeto ~32MB. - Fixed deadlock when manually triggering the
OnTerminatehook (#7305; thanks @yerTools). - Fixed some code comment typos, regenerated the JSVM types and updated npm dependencies.
- Updated
modernc.org/sqliteto 1.40.0.
-
[1.11.0]
- Update pocketbase to 0.33.0
- Full Changelog
- Added extra
idcharacters validation in addition to the user specified regex pattern (#7312). - Added
{ALERT_INFO}placeholder to the auth alert mail template (#7314).
-
[1.12.0]
- Update pocketbase to 0.34.0
- Full Changelog
- Added
@request.body.someField:changedmodifier. It could be used when you want to ensure that a body field either wasn't submitted or was submitted with the same value. Or in other words, if you want to disallow a field change the below 2 expressions would be equivalent: - Added
MailerRecordEvent.Meta["info"]property for theOnMailerRecordAuthAlertSendhook. - Updated the backup restore popup with a short info about the performed restore steps.
- Updated Go deps.
-
[1.12.1]
- Update pocketbase to 0.34.1
- Full Changelog
- Added missing
:char to the autocomplete regex (#7353; thanks @ouvreboite). - Added "Copy raw JSON" collection dropdown option (#7357).
- Updated Go deps and JS SDK.
- Bumped min Go GitHub action version to 1.25.5 because it comes with some minor security fixes.
- The runner action was also updated to
actions/setup-go@v6since the previous v5 Go source seems no longer accessible.
-
[1.12.2]
- Update pocketbase to 0.34.2
- Full Changelog
- Bumped JS SDK to v0.26.5 to fix Safari AbortError detection introduced with the previous release (#7369).
-
[1.13.0]
- Update pocketbase to v0.35.0
-
[1.13.1]
- Update pocketbase to 0.35.1
- Full Changelog
- Updated
modernc.org/sqliteto v1.43.0 (SQLite 3.51.1 and query cancellation race fix). - Other minor UI fixes (normalized relations picker selection and confirmation message when
maxSelect=0/1, updated node deps).
-
[1.14.0]
- Update pocketbase to 0.36.0
- Full Changelog
- Removed unnecessary correlated subquery expression when using back-relations via single
relationfield. - Replaced
DISTINCTwithGROUP BY idwhen rows deduplication is needed and when deemed safe. - Added
strftime(format, timevalue, modifiers...)date formatting filter and API rules function. - Minor changes to the
search.ResolverResultstruct (mostly used internally): - Replaced
NoCoalescefield with the more explicitNullFallback(NullFallbackDisabledis the same asNoCoalesce:true). - Replaced the expression interface of the
MultiMatchSubQueryfield with the concrete struct typesearch.MultiMatchSubqueryto avoid excessive type assertions and allow direct mutations of the field. - Updated
modernc.org/sqliteto v1.44.1 (SQLite 3.51.1). - Bumped min Go GitHub action version to 1.25.6 because it comes with some minor security fixes.
-
[1.14.1]
- Update pocketbase to 0.36.1
- Full Changelog
- Reverted the
DISTINCTwithGROUP BYreplacement optimization from v0.36.0 as it was reported to negatively impact the indexes utilization for some queries and the minor performance boost that you may get when used on large records is not enough to justify the more common use (#7461). - Updated
modernc.org/sqliteto v1.44.2 (SQLite 3.51.2). - Fixed code comment typos.