Skip to content

Commit

Permalink
chore(release): 📦 version packages (#256)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
t3dotgg and github-actions[bot] authored Aug 8, 2023
1 parent 872c8a0 commit cb5c09b
Show file tree
Hide file tree
Showing 14 changed files with 131 additions and 54 deletions.
5 changes: 0 additions & 5 deletions .changeset/tender-bags-complain.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/violet-pumas-talk.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/appdir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"dependencies": {
"@tanstack/react-query": "^4.29.12",
"@uploadthing/react": "5.2.0",
"@uploadthing/react": "5.2.1",
"autoprefixer": "10.4.14",
"next": "13.4.4",
"postcss": "8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-image-crop": "^10.1.5",
"tailwindcss": "^3.3.2",
"uploadthing": "5.3.1",
"uploadthing": "5.3.2",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/pagedir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"dependencies": {
"@tanstack/react-query": "^4.29.12",
"@uploadthing/react": "5.2.0",
"@uploadthing/react": "5.2.1",
"autoprefixer": "10.4.14",
"next": "13.4.4",
"next-auth": "^4.22.1",
"postcss": "8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.3.2",
"uploadthing": "5.3.1",
"uploadthing": "5.3.2",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"dependencies": {
"@solidjs/meta": "^0.28.5",
"@solidjs/router": "^0.8.2",
"@uploadthing/solid": "5.1.1",
"@uploadthing/solid": "5.1.2",
"attr-accept": "^2.2.2",
"file-selector": "^0.6.0",
"solid-js": "^1.7.6",
"solid-start": "^0.2.26",
"solidjs-dropzone": "^1.0.0",
"undici": "5.20.0",
"uploadthing": "5.3.1",
"uploadthing": "5.3.2",
"zod": "^3.21.4"
},
"engines": {
Expand Down
32 changes: 32 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @uploadthing/react

## 5.2.1

### Patch Changes

- [#251](https://github.com/pingdotgg/uploadthing/pull/251)
[`872c8a0`](https://github.com/pingdotgg/uploadthing/commit/872c8a08e01cd2c0f59a837b410bf4b0fc29ce9c)
Thanks [@markflorkowski](https://github.com/markflorkowski)! - fix: coherent
file info in all methods

all methods now receives a similarly shaped object as the serverside
`onUploadComplete` callback:

```ts
export type UploadFileResponse = {
name: string;
size: number;
key: string;
url: string;
};
```

Updated methods are:

- `onClientUploadComplete` in hooks as well as components (The old `fileName`,
`fileSize`, `fileUrl` and `fileKey` are retained but marked as deprecated
for backwards compatibility, and will be removed in the next major.)
- `utapi.uploadFiles` as well as `utapi.uploadFilesFromUrl`

- Updated dependencies
[[`fe46b81`](https://github.com/pingdotgg/uploadthing/commit/fe46b814aa75646eac0694fdcb3889a3f7f5122b)]:
- @uploadthing/shared@5.2.0

## 5.2.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uploadthing/react",
"version": "5.2.0",
"version": "5.2.1",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
Expand Down Expand Up @@ -34,7 +34,7 @@
"dev": "wait-on ../uploadthing/dist/server.mjs && tsup --watch"
},
"dependencies": {
"@uploadthing/shared": "^5.1.0"
"@uploadthing/shared": "^5.2.0"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
Expand All @@ -56,7 +56,7 @@
"tailwindcss": "^3.3.2",
"tsup": "6.7.0",
"typescript": "5.1.3",
"uploadthing": "5.3.1",
"uploadthing": "5.3.2",
"vitest": "^0.30.1",
"wait-on": "^7.0.1",
"zod": "^3.21.4"
Expand Down
9 changes: 9 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @uploadthing/shared

## 5.2.0

### Minor Changes

- [#255](https://github.com/pingdotgg/uploadthing/pull/255)
[`fe46b81`](https://github.com/pingdotgg/uploadthing/commit/fe46b814aa75646eac0694fdcb3889a3f7f5122b)
Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - feat: add
serialization functions for UploadthingError

## 5.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uploadthing/shared",
"version": "5.1.0",
"version": "5.2.0",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
Expand Down
32 changes: 32 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @uploadthing/solid

## 5.1.2

### Patch Changes

- [#251](https://github.com/pingdotgg/uploadthing/pull/251)
[`872c8a0`](https://github.com/pingdotgg/uploadthing/commit/872c8a08e01cd2c0f59a837b410bf4b0fc29ce9c)
Thanks [@markflorkowski](https://github.com/markflorkowski)! - fix: coherent
file info in all methods

all methods now receives a similarly shaped object as the serverside
`onUploadComplete` callback:

```ts
export type UploadFileResponse = {
name: string;
size: number;
key: string;
url: string;
};
```

Updated methods are:

- `onClientUploadComplete` in hooks as well as components (The old `fileName`,
`fileSize`, `fileUrl` and `fileKey` are retained but marked as deprecated
for backwards compatibility, and will be removed in the next major.)
- `utapi.uploadFiles` as well as `utapi.uploadFilesFromUrl`

- Updated dependencies
[[`fe46b81`](https://github.com/pingdotgg/uploadthing/commit/fe46b814aa75646eac0694fdcb3889a3f7f5122b)]:
- @uploadthing/shared@5.2.0

## 5.1.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@uploadthing/solid",
"author": "OrJDev",
"license": "MIT",
"version": "5.1.1",
"version": "5.1.2",
"type": "module",
"exports": {
".": {
Expand Down Expand Up @@ -84,7 +84,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@uploadthing/shared": "^5.1.0"
"@uploadthing/shared": "^5.2.0"
},
"devDependencies": {
"autoprefixer": "10.4.14",
Expand All @@ -95,7 +95,7 @@
"tsup": "6.7.0",
"tsup-preset-solid": "0.1.8",
"typescript": "5.1.3",
"uploadthing": "5.3.1"
"uploadthing": "5.3.2"
},
"peerDependencies": {
"solid-js": "^1.5.3",
Expand Down
32 changes: 32 additions & 0 deletions packages/uploadthing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# uploadthing

## 5.3.2

### Patch Changes

- [#251](https://github.com/pingdotgg/uploadthing/pull/251)
[`872c8a0`](https://github.com/pingdotgg/uploadthing/commit/872c8a08e01cd2c0f59a837b410bf4b0fc29ce9c)
Thanks [@markflorkowski](https://github.com/markflorkowski)! - fix: coherent
file info in all methods

all methods now receives a similarly shaped object as the serverside
`onUploadComplete` callback:

```ts
export type UploadFileResponse = {
name: string;
size: number;
key: string;
url: string;
};
```

Updated methods are:

- `onClientUploadComplete` in hooks as well as components (The old `fileName`,
`fileSize`, `fileUrl` and `fileKey` are retained but marked as deprecated
for backwards compatibility, and will be removed in the next major.)
- `utapi.uploadFiles` as well as `utapi.uploadFilesFromUrl`

- Updated dependencies
[[`fe46b81`](https://github.com/pingdotgg/uploadthing/commit/fe46b814aa75646eac0694fdcb3889a3f7f5122b)]:
- @uploadthing/shared@5.2.0

## 5.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/uploadthing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uploadthing",
"version": "5.3.1",
"version": "5.3.2",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"dependencies": {
"@uploadthing/mime-types": "^0.2.0",
"@uploadthing/shared": "^5.1.0"
"@uploadthing/shared": "^5.2.0"
},
"devDependencies": {
"@uploadthing/eslint-config": "0.1.0",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit cb5c09b

@vercel
Copy link

@vercel vercel bot commented on cb5c09b Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.