Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
Added option to limit the returned API fields using the
?fields
query parameter.The "fields picker" is applied for
SearchResult.Items
and every other JSON response. For example:Added new
./pocketbase update
command to selfupdate the prebuilt executable (with option to generate a backup of yourpb_data
).Added new
./pocketbase admin
console command:Added
apis.Serve(app, options)
helper to allow starting the API server programmatically.Updated the schema fields Admin UI for "tidier" fields visualization.
Updated the logs "real" user IP to check for
Fly-Client-IP
header and changed theX-Forward-For
header to use the first non-empty leftmost-ish IP as it the closest to the "real IP".Added new
tools/archive
helper subpackage for managing archives (currently works only with zip).Added new
tools/cron
helper subpackage for scheduling task using cron-like syntax (this eventually may get exported in the future in a separate repo).Added new
Filesystem.List(prefix)
helper to retrieve a flat list with all files under the provided prefix.Added new
App.NewBackupsFilesystem()
helper to create a dedicated filesystem abstraction for managing app data backups.Added new
App.OnTerminate()
hook (executed right before app termination, eg. onSIGTERM
signal).Added
meta.isNew
to the OAuth2 auth JSON response to indicate a newly OAuth2 created PocketBase user.Added
accept
file field attribute with the field MIME types (#2466; thanks @Nikhil1920).Added support for multiple files sort in the Admin UI (#2445).
Added support for multiple relations sort in the Admin UI.