mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-22 18:16:26 +00:00
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @uppy/transloadit@5.5.0 ### Minor Changes -efda84c: Migrate from 'transloadit' to '@transloadit/types' to get the types. No need to drag in the entire SDK. ### Patch Changes - Updated dependencies [54a46db] - @uppy/tus@5.1.1 ## @uppy/components@1.1.1 ### Patch Changes -fa23832: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) ## @uppy/locales@5.1.1 ### Patch Changes -642c75d: Update cs_CZ dropPaste keys to use the correct variables. ## @uppy/tus@5.1.1 ### Patch Changes -54a46db: Fix Node.js support by conditionally setting a property which does not exist in Node.js instead of crashing. ## @uppy/vue@3.1.1 ### Patch Changes -fa23832: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) - Updated dependencies [fa23832] - @uppy/components@1.1.1 ## uppy@5.2.3 ### Patch Changes - Updated dependencies [642c75d] - Updated dependencies [54a46db] - Updated dependencies [efda84c] - @uppy/locales@5.1.1 - @uppy/tus@5.1.1 - @uppy/transloadit@5.5.0 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
3.8 KiB
3.8 KiB
@uppy/components
1.1.1
Patch Changes
fa23832: - Fix Vue components to work with kebab-case props (:edit-fileinstead of:editFile)
1.1.0
Minor Changes
72d2d68: Add @uppy/{screen-capture,status-bar,webcam} as optional peer dependencies
Patch Changes
26bf726: Dropzone and FileInput inherit restrictions from @uppy/core
1.0.4
Patch Changes
0c16fe4: - Makefile.datanullable - Because for ghosts it will beundefinedand we don't have any type to distinguish ghosts from other (local) files. This caused a crash, because we didn't check forundefinedeverywhere (when trying to store a blob that wasundefined). This means we have to add null checks in some packages- Move
restore-confirmedfromonUploadStartevent listener tostartUpload, else it would causerestore-confirmedto be triggered even if there is norecoveredStateto recover
- Move
- Updated dependencies [
0c16fe4] - Updated dependencies [
0c16fe4]- @uppy/core@5.1.1
- @uppy/image-editor@4.0.2
1.0.3
Patch Changes
34639ba: add imageThumbnail prop to FilesList/FilesGrid
1.0.2
Patch Changes
975317d: Removed "main" from package.json, since export maps serve as the contract for the public API.- Updated dependencies [
4b6a76c] - Updated dependencies [
975317d]- @uppy/core@5.0.2
- @uppy/audio@3.0.1
- @uppy/image-editor@4.0.1
- @uppy/remote-sources@3.0.1
- @uppy/screen-capture@5.0.1
- @uppy/webcam@5.0.1
1.0.1
Patch Changes
49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups.- Updated dependencies [
49522ec]- @uppy/core@5.0.1
1.0.0
Major Changes
-
c5b51f6: ### Export maps for all packagesAll packages now have export maps. This is a breaking change in two cases:
- The css imports have changed from
@uppy[package]/dist/styles.min.cssto@uppy[package]/css/styles.min.css - You were importing something that wasn't exported from the root, for instance
@uppy/core/lib/foo.js. You can now only import things we explicitly exported.
Changed imports for
@uppy/react,@uppy/vue, and@uppy/svelteSome components, like Dashboard, require a peer dependency to work but since all components were exported from a single file you were forced to install all peer dependencies. Even if you never imported, for instance, the status bar component.
Every component that requires a peer dependency has now been moved to a subpath, such as
@uppy/react/dashboard, so you only need to install the peer dependencies you need.Example for
@uppy/react:Before:
import { Dashboard, StatusBar } from "@uppy/react";Now:
import Dashboard from "@uppy/react/dashboard"; import StatusBar from "@uppy/react/status-bar"; - The css imports have changed from
Patch Changes
- Updated dependencies [
c5b51f6]- @uppy/remote-sources@3.0.0
- @uppy/screen-capture@5.0.0
- @uppy/image-editor@4.0.0
- @uppy/webcam@5.0.0
- @uppy/audio@3.0.0
- @uppy/core@5.0.0
0.3.2
Patch Changes
1b1a9e3: Define "files" in package.json- Updated dependencies [
1b1a9e3]- @uppy/remote-sources@2.4.2
- @uppy/screen-capture@4.4.2
- @uppy/image-editor@3.4.2
- @uppy/webcam@4.3.2
- @uppy/audio@2.2.2
- @uppy/core@4.5.2
0.3.0
Minor Changes
0c24c5a: Use TypeScript compiler instead of Babel
Patch Changes
- Updated dependencies [
0c24c5a] - Updated dependencies [
0c24c5a] - Updated dependencies [
0c24c5a]- @uppy/webcam@4.3.0
- @uppy/core@4.5.0
- @uppy/audio@2.2.0
- @uppy/image-editor@3.4.0
- @uppy/remote-sources@2.4.0
- @uppy/screen-capture@4.4.0
0.2.0
Released: 2025-06-30 Included in: Uppy v4.18.0
- @uppy/components,@uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
- @uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)