Pocketbase

Latest version: v0.15.0

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 9

0.13.0

- Aliased all `BaseModel` helpers with `$` equivalent to avoid conflicts with the dynamic record props ([169](https://github.com/pocketbase/js-sdk/issues/169)).
js
isNew -> $isNew
load(data) -> $load(data)
clone() -> $clone()
export() -> $export()
// ...

_For backward compatibility, the old helpers will still continue to work if the record doesn't have a conflicting field name._

- Updated `pb.beforeSend` and `pb.afterSend` signatures to allow returning and awaiting an optional `Promise` ([166](https://github.com/pocketbase/js-sdk/pull/166); thanks Bobby-McBobface).

- Added `Collection.indexes` field for the new collection indexes support in the upcoming PocketBase v0.14.0.

- Added `pb.settings.generateAppleClientSecret()` for sending a request to generate Apple OAuth2 client secret in the upcoming PocketBase v0.14.0.

0.12.1

- Fixed request `multipart/form-data` body check to allow the React Native Android and iOS custom `FormData` implementation as valid `fetch` body ([2002](https://github.com/pocketbase/pocketbase/discussions/2002)).

0.12.0

- Changed the return type of `pb.beforeSend` hook to allow modifying the request url ([1930](https://github.com/pocketbase/pocketbase/discussions/1930)).
js
// old
pb.beforeSend = function (url, options) {
...
return options;
}

// new
pb.beforeSend = function (url, options) {
...
return { url, options };
}

The old return format is soft-deprecated and will still work, but you'll get a `console.warn` message to replace it.

0.11.1

- Exported the services class definitions to allow being used as argument types ([153](https://github.com/pocketbase/js-sdk/issues/153)).
js
CrudService
AdminService
CollectionService
LogService
RealtimeService
RecordService
SettingsService

0.11.0

- Aliased/soft-deprecated `ClientResponseError.data` in favor of `ClientResponseError.response` to avoid the stuttering when accessing the inner error response `data` key (aka. `err.data.data` now is `err.response.data`).
The `ClientResponseError.data` will still work but it is recommend for new code to use the `response` key.

- Added `getFullList(queryParams = {})` overload since the default batch size in most cases doesn't need to change (it can be defined as query parameter).
The old form `getFullList(batch = 200, queryParams = {})` will still work, but it is recommend for new code to use the shorter form.

0.10.2

- Updated `getFileUrl()` to accept custom types as record argument.

Page 7 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.