github pocketbase/js-sdk v0.12.0
v0.12.0 Release

latest releases: v0.25.1, v0.25.0, v0.24.0...
24 months ago
  • Changed the return type of pb.beforeSend hook to allow modifying the request url (#1930).
    // 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.

Don't miss a new js-sdk release

NewReleases is sending notifications on new releases.