-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency pocketbase to ^0.25.0 #378
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/pocketbase-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
4 times, most recently
from
December 1, 2024 04:43
cfb7105
to
3f8e723
Compare
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 1, 2024 05:29
3f8e723
to
b4c97bf
Compare
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 1, 2024 05:52
b4c97bf
to
0e5be2a
Compare
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 1, 2024 09:07
0e5be2a
to
958ad12
Compare
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 4, 2024 03:44
958ad12
to
dedb828
Compare
renovate
bot
changed the title
fix(deps): update dependency pocketbase to ^0.22.0
fix(deps): update dependency pocketbase to ^0.23.0
Dec 15, 2024
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 15, 2024 15:56
dedb828
to
a266180
Compare
renovate
bot
changed the title
fix(deps): update dependency pocketbase to ^0.23.0
fix(deps): update dependency pocketbase to ^0.24.0
Dec 19, 2024
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
December 19, 2024 23:52
a266180
to
410c3f6
Compare
renovate
bot
force-pushed
the
renovate/pocketbase-0.x
branch
from
January 1, 2025 16:57
410c3f6
to
25122c2
Compare
renovate
bot
changed the title
fix(deps): update dependency pocketbase to ^0.24.0
fix(deps): update dependency pocketbase to ^0.25.0
Jan 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.
This PR contains the following updates:
^0.21.5
->^0.25.0
Release Notes
pocketbase/js-sdk (pocketbase)
v0.25.0
Compare Source
pb.crons
service to interact with the cron Web APIs.v0.24.0
Compare Source
FormData
as body to individual batch requests (pocketbase#6145).v0.23.0
Compare Source
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
Compare Source
pb.authStore.isAdmin
/pb.authStore.isAuthRecord
and marked them as deprecated in favour ofpb.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
Compare Source
Added support for sending batch/transactional create/updated/delete/upsert requests with the new batch Web APIs.
Added support for authenticating with OTP (email code):
Note that PocketBase v0.23.0 comes also with Multi-factor authentication (MFA) support.
When enabled from the dashboard, the first auth attempt will result in 401 response and a
mfaId
response,that will have to be submitted with the second auth request. For example:
Added new
pb.collection("users").impersonate("RECORD_ID")
method for superusers.It authenticates with the specified record id and returns a new client with the impersonated auth state loaded in a memory store.
Added new
pb.collections.getScaffolds()
method to retrieve a type indexed map with the collection models (base, auth, view) loaded with their defaults.Added new
pb.collections.truncate(idOrName)
to delete all records associated with the specified collection.Added the submitted fetch options as 3rd last argument in the
pb.afterSend
hook.Instead of replacing the entire
pb.authStore.record
, on auth record update we now only replace the available returned response record data (pocketbase#5638)._superusers
auth collection and there is no longerAdminService
andAdminModel
types.pb.admins
is soft-deprecated and aliased topb.collection("_superusers")
.pb.authStore.model
is soft-deprecated and superseded bypb.authStore.record
.meta.avatarUrl
response field in favour ofmeta.avatarURL
for consistency with the Go conventions.AuthMethodsList
inerface fields to accomodate the new auth methods andlistAuthMethods()
response.{
"mfa": {
"duration": 100,
"enabled": true
},
"otp": {
"duration": 0,
"enabled": false
},
"password": {
"enabled": true,
"identityFields": ["email", "username"]
},
"oauth2": {
"enabled": true,
"providers": [{"name": "gitlab", ...}, {"name": "google", ...}]
}
}
*Url()
->*URL()
methods for consistency with other similar native JS APIs and the accepted Go conventions.The old methods still works but you may get a console warning to replace them because they will be removed in the future.
CollectionModel.schema
toCollectionModel.fields
.SchemaField
toCollectionField
.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.