Skip to content

Commit

Permalink
[ci] release (#625)
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
github-actions[bot] and github-actions[bot] committed Jul 3, 2024
1 parent c0097b6 commit ac78b2a
Show file tree
Hide file tree
Showing 14 changed files with 77 additions and 32 deletions.
9 changes: 0 additions & 9 deletions .changeset/hungry-games-compete.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-kiwis-grow.md

This file was deleted.

8 changes: 4 additions & 4 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"start:s3": "cross-env DATA_STORE=S3Store node server.js"
},
"dependencies": {
"@tus/file-store": "^1.3.3",
"@tus/gcs-store": "^1.2.2",
"@tus/s3-store": "^1.4.3",
"@tus/server": "^1.6.0",
"@tus/file-store": "^1.4.0",
"@tus/gcs-store": "^1.3.0",
"@tus/s3-store": "^1.5.0",
"@tus/server": "^1.7.0",
"tus-js-client": "^2.3.2"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions packages/file-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @tus/file-store

## 1.4.0

### Minor Changes

- 117e1b2: Add basic storage information to the Upload model. You can now access
`upload.storage` which has `type` (`file`, `s3`, `gcs`), `path`, and when applicable
`bucket`.

### Patch Changes

- Updated dependencies [117e1b2]
- @tus/utils@0.3.0

## 1.3.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/file-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tus/file-store",
"version": "1.3.3",
"version": "1.4.0",
"description": "Local file storage for @tus/server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,7 +21,7 @@
"test": "mocha test.ts --exit --extension ts --require ts-node/register"
},
"dependencies": {
"@tus/utils": "^0.2.0",
"@tus/utils": "^0.3.0",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions packages/gcs-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @tus/gcs-store

## 1.3.0

### Minor Changes

- 117e1b2: Add basic storage information to the Upload model. You can now access
`upload.storage` which has `type` (`file`, `s3`, `gcs`), `path`, and when applicable
`bucket`.

### Patch Changes

- Updated dependencies [117e1b2]
- @tus/utils@0.3.0

## 1.2.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/gcs-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tus/gcs-store",
"version": "1.2.2",
"version": "1.3.0",
"description": "Google Cloud Storage for @tus/server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,12 +21,12 @@
"test": "mocha test.ts --timeout 30000 --exit --extension ts --require ts-node/register"
},
"dependencies": {
"@tus/utils": "^0.2.0",
"@tus/utils": "^0.3.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@google-cloud/storage": "^6.12.0",
"@tus/server": "^1.6.0",
"@tus/server": "^1.7.0",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
Expand Down
13 changes: 13 additions & 0 deletions packages/s3-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @tus/s3-store

## 1.5.0

### Minor Changes

- 117e1b2: Add basic storage information to the Upload model. You can now access
`upload.storage` which has `type` (`file`, `s3`, `gcs`), `path`, and when applicable
`bucket`.

### Patch Changes

- Updated dependencies [117e1b2]
- @tus/utils@0.3.0

## 1.4.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/s3-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tus/s3-store",
"version": "1.4.3",
"version": "1.5.0",
"description": "AWS S3 store for @tus/server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -23,7 +23,7 @@
"dependencies": {
"@aws-sdk/client-s3": "^3.490.0",
"@shopify/semaphore": "^3.0.2",
"@tus/utils": "^0.2.0",
"@tus/utils": "^0.3.0",
"debug": "^4.3.4",
"multistream": "^4.1.0"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tus/server

## 1.7.0

### Minor Changes

- ea2bf07: Add `lastPath` argument to `getFileIdFromRequest` to simplify a common use
case.

### Patch Changes

- Updated dependencies [117e1b2]
- @tus/utils@0.3.0

## 1.6.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tus/server",
"version": "1.6.0",
"version": "1.7.0",
"description": "Tus resumable upload protocol in Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,7 +21,7 @@
"test": "mocha --timeout 40000 --exit --extension ts --require ts-node/register"
},
"dependencies": {
"@tus/utils": "^0.2.0",
"@tus/utils": "^0.3.0",
"debug": "^4.3.4",
"lodash.throttle": "^4.1.1"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tus/utils

## 0.3.0

### Minor Changes

- 117e1b2: Add basic storage information to the Upload model. You can now access
`upload.storage` which has `type` (`file`, `s3`, `gcs`), `path`, and when applicable
`bucket`.

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tus/utils",
"version": "0.2.0",
"version": "0.3.0",
"description": "Internal utils for tus Node.js server and stores",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 4 additions & 4 deletions test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"test": "mocha e2e.test.ts s3.e2e.ts --timeout 40000 --exit --extension ts --require ts-node/register"
},
"dependencies": {
"@tus/file-store": "^1.3.3",
"@tus/gcs-store": "^1.2.2",
"@tus/s3-store": "^1.4.3",
"@tus/server": "^1.6.0"
"@tus/file-store": "^1.4.0",
"@tus/gcs-store": "^1.3.0",
"@tus/s3-store": "^1.5.0",
"@tus/server": "^1.7.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
Expand Down

0 comments on commit ac78b2a

Please sign in to comment.