Skip to content

Bump pocketbase from 0.21.5 to 0.26.3#33

Merged
spj2401Dev merged 1 commit intomainfrom
dependabot/npm_and_yarn/pocketbase-0.26.3
Oct 31, 2025
Merged

Bump pocketbase from 0.21.5 to 0.26.3#33
spj2401Dev merged 1 commit intomainfrom
dependabot/npm_and_yarn/pocketbase-0.26.3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps pocketbase from 0.21.5 to 0.26.3.

Release notes

Sourced from pocketbase's releases.

v0.26.3 Release

v0.26.2 Release

  • Allow body object without constructor (#352).

v0.26.1 Release

  • Generalized the fallback error message and set the cause property of ClientResponseError to the original thrown error/data for easier debugging (#349; thanks @​shish).

v0.26.0 Release

  • Ignore undefined properties when submitting an object that has Blob/File fields (which is under the hood converted to FormData) for consistency with how JSON.stringify works (see pocketbase#6731).

v0.25.2 Release

  • Removed unnecessary checks in serializeQueryParams and added automated tests.

v0.25.1 Release

  • Ignore query parameters with undefined value (#330).

v0.25.0 Release

  • Added pb.crons service to interact with the cron Web APIs (available with PocketBase v0.24+).

v0.24.0 Release

  • Added support for assigning FormData as body to individual batch requests (pocketbase#6145).

v0.23.0 Release

  • Added optional pb.realtime.onDisconnect hook function. Note that the realtime client autoreconnect on its own and this hook is useful only for the cases where you want to apply a special behavior on server error or after closing the realtime connection.

v0.22.1 Release

  • Fixed old pb.authStore.isAdmin/pb.authStore.isAuthRecord getters and marked them as deprecated in favour of pb.authStore.isSuperuser (#323). Note that with PocketBase v0.23.0 superusers are converted to a system auth collection so you can always simply check the value of pb.authStore.record?.collectionName.

v0.22.0 Release

⚠️ This release introduces some breaking changes and works only with PocketBase v0.23.0+.

  • Added support for sending batch/transactional create/updated/delete/upsert requests with the new batch Web APIs.

    const batch = pb.createBatch();
    batch.collection("example1").create({ ... });
    batch.collection("example2").update("RECORD_ID", { ... });
    batch.collection("example3").delete("RECORD_ID");
    batch.collection("example4").upsert({ ... });
    const result = await batch.send();

  • Added support for authenticating with OTP (email code):

    const result = await pb.collection("users").requestOTP("test@example.com");

... (truncated)

Changelog

Sourced from pocketbase's changelog.

0.26.3

0.26.2

  • Allow body object without constructor (#352).

0.26.1

  • Set the cause property of ClientResponseError to the original thrown error/data for easier debugging (#349; thanks @​shish).

0.26.0

  • Ignore undefined properties when submitting an object that has Blob/File fields (which is under the hood converted to FormData) for consistency with how JSON.stringify works (see pocketbase#6731).

0.25.2

  • Removed unnecessary checks in serializeQueryParams and added automated tests.

0.25.1

  • Ignore query parameters with undefined value (#330).

0.25.0

  • Added pb.crons service to interact with the cron Web APIs.

0.24.0

  • Added support for assigning FormData as body to individual batch requests (pocketbase#6145).

0.23.0

  • Added optional pb.realtime.onDisconnect hook function. Note that the realtime client autoreconnect on its own and this hook is useful only for the cases where you want to apply a special behavior on server error or after closing the realtime connection.

0.22.1

  • Fixed old pb.authStore.isAdmin/pb.authStore.isAuthRecord and marked them as deprecated in favour of pb.authStore.isSuperuser (#323).

... (truncated)

Commits
  • f8f2c89 fixed outdated OAuth2Provider TS fields
  • e87b2ff #352 allow body object without constructor
  • bf38e15 bumped package version
  • eed9622 generilize the fallback error message
  • 9e5c59a #349 set ClientResponseError.cause for easier debugging
  • 298e818 #346 set an explicit TZ offset for the test date
  • b17fd45 ignore undefined values when converting object to FormData
  • 86647d0 updated the examples for beforeSend/afterSend hooks
  • 6c36ac7 bumped package version
  • 83a95e1 updated serializeQueryParams helper and added automated tests
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [pocketbase](https://github.com/pocketbase/js-sdk) from 0.21.5 to 0.26.3.
- [Release notes](https://github.com/pocketbase/js-sdk/releases)
- [Changelog](https://github.com/pocketbase/js-sdk/blob/master/CHANGELOG.md)
- [Commits](pocketbase/js-sdk@v0.21.5...v0.26.3)

---
updated-dependencies:
- dependency-name: pocketbase
  dependency-version: 0.26.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 27, 2025
@spj2401Dev spj2401Dev merged commit caa6085 into main Oct 31, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/pocketbase-0.26.3 branch October 31, 2025 20:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant