Skip to content

Commit 3e8cb59

Browse files
[ci] release (#696)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 42c6267 commit 3e8cb59

File tree

11 files changed

+47
-27
lines changed

11 files changed

+47
-27
lines changed

.changeset/calm-adults-roll.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/cyan-hornets-repair.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thin-swans-occur.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

demo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dependencies": {
1212
"@tus/file-store": "^1.5.1",
1313
"@tus/gcs-store": "^1.4.1",
14-
"@tus/s3-store": "^1.6.2",
14+
"@tus/s3-store": "^1.7.0",
1515
"@tus/azure-store": "^0.1.2",
16-
"@tus/server": "^1.10.0",
16+
"@tus/server": "^1.10.1",
1717
"tus-js-client": "^2.3.2"
1818
},
1919
"devDependencies": {

packages/s3-store/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @tus/s3-store
22

3+
## 1.7.0
4+
5+
### Minor Changes
6+
7+
- b1c07bc: Change private modifier to protected
8+
9+
### Patch Changes
10+
11+
- 8236c05: Bump @aws-sdk/client-s3 from 3.703.0 to 3.717.0
12+
- Updated dependencies [42c6267]
13+
- @tus/utils@0.5.1
14+
315
## 1.6.2
416

517
### Patch Changes

packages/s3-store/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@tus/s3-store",
4-
"version": "1.6.2",
4+
"version": "1.7.0",
55
"description": "AWS S3 store for @tus/server",
66
"main": "dist/index.js",
77
"homepage": "https://github.com/tus/tus-node-server#readme",
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@aws-sdk/client-s3": "^3.717.0",
2323
"@shopify/semaphore": "^3.1.0",
24-
"@tus/utils": "^0.5.0",
24+
"@tus/utils": "^0.5.1",
2525
"debug": "^4.3.4",
2626
"multistream": "^4.1.0"
2727
},

packages/server/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tus/server
22

3+
## 1.10.1
4+
5+
### Patch Changes
6+
7+
- 42c6267: Consistent cancellation across streams and locks, fixing lock on file never being unlocked when the request ends prematurely.
8+
- Updated dependencies [42c6267]
9+
- @tus/utils@0.5.1
10+
311
## 1.10.0
412

513
### Minor Changes

packages/server/package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@tus/server",
4-
"version": "1.10.0",
4+
"version": "1.10.1",
55
"description": "Tus resumable upload protocol in Node.js",
66
"main": "dist/index.js",
77
"homepage": "https://github.com/tus/tus-node-server#readme",
88
"bugs": "https://github.com/tus/tus-node-server/issues",
99
"repository": "tus/tus-node-server",
1010
"license": "MIT",
11-
"files": ["README.md", "LICENSE", "dist", "src"],
11+
"files": [
12+
"README.md",
13+
"LICENSE",
14+
"dist",
15+
"src"
16+
],
1217
"scripts": {
1318
"build": "tsc --build",
1419
"test": "mocha --timeout 40000 --exit --extension ts --require ts-node/register"
1520
},
1621
"dependencies": {
17-
"@tus/utils": "^0.5.0",
22+
"@tus/utils": "^0.5.1",
1823
"debug": "^4.3.4",
1924
"lodash.throttle": "^4.1.1"
2025
},

packages/utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @tus/utils
22

3+
## 0.5.1
4+
5+
### Patch Changes
6+
7+
- 42c6267: Consistent cancellation across streams and locks, fixing lock on file never being unlocked when the request ends prematurely.
8+
39
## 0.5.0
410

511
### Minor Changes

packages/utils/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@tus/utils",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"description": "Internal utils for tus Node.js server and stores",
66
"main": "dist/index.js",
77
"homepage": "https://github.com/tus/tus-node-server#readme",
88
"bugs": "https://github.com/tus/tus-node-server/issues",
99
"repository": "tus/tus-node-server",
1010
"license": "MIT",
11-
"files": ["README.md", "LICENSE", "dist", "src"],
11+
"files": [
12+
"README.md",
13+
"LICENSE",
14+
"dist",
15+
"src"
16+
],
1217
"scripts": {
1318
"build": "tsc --build",
1419
"test": "mocha --timeout 40000 --exit --extension ts --require ts-node/register"

0 commit comments

Comments
 (0)