github pingdotgg/uploadthing uploadthing@6.5.0

Minor Changes

  • #619 7d23dd0 Thanks @juliusmarminge! - add version lock to ensure uploadthing/client and uploadthing/serveruses same version

  • #637 7fef94e Thanks @juliusmarminge! - allow overriding filename when using utapi.uploadFilesFromUrl. This is useful when the pathname is too long, or when you just want to set your own name.

    utapi.uploadFilesFromUrl({
      url: "https://example.com/super-long-pathname-that-exceeds-the-limit.jpg",
      name: "my-custom-name.jpg",
    });

    you can also set a customId for the file by passing the customId option.

    utapi.uploadFilesFromUrl({
      url: "https://example.com/foo.jpg",
      customId: "my-custom-id",
    });
  • #642 4e1cb0d Thanks @juliusmarminge! - feat(client): add skipPolling option

Patch Changes

Don't miss a new uploadthing release

NewReleases is sending notifications on new releases.