Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed May 13, 2024
1 parent 6aecae1 commit a0f9da1
Show file tree
Hide file tree
Showing 15 changed files with 60 additions and 35 deletions.
5 changes: 0 additions & 5 deletions .changeset/fifty-pianos-hug.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/four-owls-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-pandas-laugh.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.2",
"@tus/gcs-store": "^1.2.1",
"@tus/s3-store": "^1.4.2",
"@tus/server": "^1.5.0",
"@tus/file-store": "^1.3.3",
"@tus/gcs-store": "^1.2.2",
"@tus/s3-store": "^1.4.3",
"@tus/server": "^1.6.0",
"tus-js-client": "^2.3.2"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/file-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tus/file-store

## 1.3.3

### Patch Changes

- Updated dependencies [60698da]
- @tus/utils@0.2.0

## 1.3.2

### 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.2",
"version": "1.3.3",
"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.1.0",
"@tus/utils": "^0.2.0",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/gcs-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tus/gcs-store

## 1.2.2

### Patch Changes

- 86b8b9f: Fix CRC32 error when writing offsetted data to store
- Updated dependencies [60698da]
- @tus/utils@0.2.0

## 1.2.1

### 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.1",
"version": "1.2.2",
"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.1.0",
"@tus/utils": "^0.2.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@google-cloud/storage": "^6.12.0",
"@tus/server": "^1.4.1",
"@tus/server": "^1.6.0",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
Expand Down
7 changes: 7 additions & 0 deletions packages/s3-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tus/s3-store

## 1.4.3

### Patch Changes

- Updated dependencies [60698da]
- @tus/utils@0.2.0

## 1.4.2

### 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.2",
"version": "1.4.3",
"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.1.0",
"@tus/utils": "^0.2.0",
"debug": "^4.3.4",
"multistream": "^4.1.0"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @tus/server

## 1.6.0

### Minor Changes

- 60698da: Introduce POST_RECEIVE_V2 event, which correctly fires during the stream write
rather than after it is finished
- 0f90980: Allow onUploadFinish hook to override response data

### Patch Changes

- Updated dependencies [60698da]
- @tus/utils@0.2.0

## 1.5.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.5.0",
"version": "1.6.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.1.0",
"@tus/utils": "^0.2.0",
"debug": "^4.3.4",
"lodash.throttle": "^4.1.1"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tus/utils

## 0.2.0

### Minor Changes

- 60698da: Introduce POST_RECEIVE_V2 event, which correctly fires during the stream write
rather than after it is finished

## 0.1.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.1.0",
"version": "0.2.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.2",
"@tus/gcs-store": "^1.2.1",
"@tus/s3-store": "^1.4.2",
"@tus/server": "^1.5.0"
"@tus/file-store": "^1.3.3",
"@tus/gcs-store": "^1.2.2",
"@tus/s3-store": "^1.4.3",
"@tus/server": "^1.6.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
Expand Down

0 comments on commit a0f9da1

Please sign in to comment.