Skip to content

Releases: pingdotgg/uploadthing

uploadthing@7.3.0

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@uploadthing/vue@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • #1044 1afb1c9 Thanks @juliusmarminge! - refactor: simplify types for built file route

  • Updated dependencies []:

    • @uploadthing/shared@7.1.1

@uploadthing/svelte@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • #1044 1afb1c9 Thanks @juliusmarminge! - refactor: simplify types for built file route

  • Updated dependencies []:

    • @uploadthing/shared@7.1.1

@uploadthing/solid@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • #1044 1afb1c9 Thanks @juliusmarminge! - refactor: simplify types for built file route

  • Updated dependencies []:

    • @uploadthing/shared@7.1.1

@uploadthing/shared@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [7ae1ed9]:
    • @uploadthing/mime-types@0.3.2

@uploadthing/react@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • #1044 1afb1c9 Thanks @juliusmarminge! - refactor: simplify types for built file route

  • Updated dependencies []:

    • @uploadthing/shared@7.1.1

@uploadthing/nuxt@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

@uploadthing/mime-types@0.3.2

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

@uploadthing/expo@7.1.1

07 Nov 12:05
4954c99
Compare
Choose a tag to compare

Patch Changes

  • #1044 1afb1c9 Thanks @juliusmarminge! - refactor: simplify types for built file route

  • Updated dependencies [1afb1c9]:

    • @uploadthing/react@7.1.1
    • @uploadthing/shared@7.1.1

uploadthing@7.2.0

25 Oct 09:58
f7a6b90
Compare
Choose a tag to compare

Minor Changes

  • #1008 3acc199 Thanks @juliusmarminge! - feat: add support to specify route endpoint that supports "Go to Definition"

    All places that accept the endpoint argument now additionally accept a function that gets a route registry as input and returns the endpoint to use. This allows for "Go to Definition" to go to the backend route definition directly from the component.

    Examples

    // uploadthing/client#uploadFiles
    uploadFiles(
        (routeRegistry) => routeRegistry.videoAndImage,
        { ... }
    )
    
    // uploadthing/react#useUploadThing
    useUploadThing(
        (routeRegistry) => routeRegistry.videoAndImage,
        { ... }
    )
    
    // uploadthing/react#UploadButton
    <UploadButton
        endpoint={(routeRegistry) => routeRegistry.videoAndImage}
        { ... }
    />

Patch Changes