Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 980675ea05 | |||
| 15819d8a23 |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-11-17 - 5.0.1 - fix(test)
|
||||||
|
Enable --logfile in test script and bump @git.zone/tstest to ^2.8.2
|
||||||
|
|
||||||
|
- Update npm script: add --logfile flag to the test command to produce test logs
|
||||||
|
- Bump devDependency @git.zone/tstest from ^2.8.1 to ^2.8.2
|
||||||
|
|
||||||
## 2025-11-17 - 5.0.0 - BREAKING CHANGE(client/streaming)
|
## 2025-11-17 - 5.0.0 - BREAKING CHANGE(client/streaming)
|
||||||
Unify streaming APIs: remove raw()/streamNode() and standardize on web ReadableStream across runtimes
|
Unify streaming APIs: remove raw()/streamNode() and standardize on web ReadableStream across runtimes
|
||||||
|
|
||||||
|
|||||||
10
deno.lock
generated
10
deno.lock
generated
@@ -3,7 +3,7 @@
|
|||||||
"specifiers": {
|
"specifiers": {
|
||||||
"npm:@git.zone/tsbuild@^3.1.0": "3.1.0",
|
"npm:@git.zone/tsbuild@^3.1.0": "3.1.0",
|
||||||
"npm:@git.zone/tsrun@2": "2.0.0",
|
"npm:@git.zone/tsrun@2": "2.0.0",
|
||||||
"npm:@git.zone/tstest@^2.8.1": "2.8.1",
|
"npm:@git.zone/tstest@^2.8.2": "2.8.2",
|
||||||
"npm:@push.rocks/smartenv@6": "6.0.0",
|
"npm:@push.rocks/smartenv@6": "6.0.0",
|
||||||
"npm:@push.rocks/smartpath@6": "6.0.0",
|
"npm:@push.rocks/smartpath@6": "6.0.0",
|
||||||
"npm:@push.rocks/smartpromise@^4.0.4": "4.2.3",
|
"npm:@push.rocks/smartpromise@^4.0.4": "4.2.3",
|
||||||
@@ -999,8 +999,8 @@
|
|||||||
"bin": true,
|
"bin": true,
|
||||||
"tarball": "https://verdaccio.lossless.digital/@git.zone/tsrun/-/tsrun-2.0.0.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@git.zone/tsrun/-/tsrun-2.0.0.tgz"
|
||||||
},
|
},
|
||||||
"@git.zone/tstest@2.8.1": {
|
"@git.zone/tstest@2.8.2": {
|
||||||
"integrity": "sha512-0Sct9XsbrmAQgKNoW/jBNPMLllKVI+W6/aVkj9DEguiEnysmxLb3xRyoay06lxTGSBe5dA5uNULrdycdQ9slgQ==",
|
"integrity": "sha512-qIZFor1mT4+Xth24jbqZtrh2B2Vz2n27OVY1R22zEg4TgFldjEUVwIKz27axqK1HUA1PIw0mYn+vOgd+yMWO4w==",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"@api.global/typedserver",
|
"@api.global/typedserver",
|
||||||
"@git.zone/tsbundle",
|
"@git.zone/tsbundle",
|
||||||
@@ -1029,7 +1029,7 @@
|
|||||||
"ws@8.18.3"
|
"ws@8.18.3"
|
||||||
],
|
],
|
||||||
"bin": true,
|
"bin": true,
|
||||||
"tarball": "https://verdaccio.lossless.digital/@git.zone/tstest/-/tstest-2.8.1.tgz"
|
"tarball": "https://verdaccio.lossless.digital/@git.zone/tstest/-/tstest-2.8.2.tgz"
|
||||||
},
|
},
|
||||||
"@happy-dom/global-registrator@15.11.7": {
|
"@happy-dom/global-registrator@15.11.7": {
|
||||||
"integrity": "sha512-mfOoUlIw8VBiJYPrl5RZfMzkXC/z7gbSpi2ecycrj/gRWLq2CMV+Q+0G+JPjeOmuNFgg0skEIzkVFzVYFP6URw==",
|
"integrity": "sha512-mfOoUlIw8VBiJYPrl5RZfMzkXC/z7gbSpi2ecycrj/gRWLq2CMV+Q+0G+JPjeOmuNFgg0skEIzkVFzVYFP6URw==",
|
||||||
@@ -7193,7 +7193,7 @@
|
|||||||
"dependencies": [
|
"dependencies": [
|
||||||
"npm:@git.zone/tsbuild@^3.1.0",
|
"npm:@git.zone/tsbuild@^3.1.0",
|
||||||
"npm:@git.zone/tsrun@2",
|
"npm:@git.zone/tsrun@2",
|
||||||
"npm:@git.zone/tstest@^2.8.1",
|
"npm:@git.zone/tstest@^2.8.2",
|
||||||
"npm:@push.rocks/smartenv@6",
|
"npm:@push.rocks/smartenv@6",
|
||||||
"npm:@push.rocks/smartpath@6",
|
"npm:@push.rocks/smartpath@6",
|
||||||
"npm:@push.rocks/smartpromise@^4.0.4",
|
"npm:@push.rocks/smartpromise@^4.0.4",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartrequest",
|
"name": "@push.rocks/smartrequest",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.",
|
"description": "A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.",
|
||||||
"exports": {
|
"exports": {
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --verbose --timeout 120)",
|
"test": "(tstest test/ --verbose --timeout 120 --logfile)",
|
||||||
"build": "(tsbuild --web)",
|
"build": "(tsbuild --web)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^3.1.0",
|
"@git.zone/tsbuild": "^3.1.0",
|
||||||
"@git.zone/tsrun": "^2.0.0",
|
"@git.zone/tsrun": "^2.0.0",
|
||||||
"@git.zone/tstest": "^2.8.1",
|
"@git.zone/tstest": "^2.8.2",
|
||||||
"@types/node": "^22.9.0"
|
"@types/node": "^22.9.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
|||||||
10
pnpm-lock.yaml
generated
10
pnpm-lock.yaml
generated
@@ -34,8 +34,8 @@ importers:
|
|||||||
specifier: ^2.0.0
|
specifier: ^2.0.0
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
'@git.zone/tstest':
|
'@git.zone/tstest':
|
||||||
specifier: ^2.8.1
|
specifier: ^2.8.2
|
||||||
version: 2.8.1(@aws-sdk/credential-providers@3.864.0)(socks@2.8.7)(typescript@5.9.3)
|
version: 2.8.2(@aws-sdk/credential-providers@3.864.0)(socks@2.8.7)(typescript@5.9.3)
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^22.9.0
|
specifier: ^22.9.0
|
||||||
version: 22.14.0
|
version: 22.14.0
|
||||||
@@ -534,8 +534,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-yA6zCjL+kn7xfZe6sL/m4K+zYqgkznG/pF6++i/E17iwzpG6dHmW+VZmYldHe86sW4DcLMvqM6CxM+KlgaEpKw==}
|
resolution: {integrity: sha512-yA6zCjL+kn7xfZe6sL/m4K+zYqgkznG/pF6++i/E17iwzpG6dHmW+VZmYldHe86sW4DcLMvqM6CxM+KlgaEpKw==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
'@git.zone/tstest@2.8.1':
|
'@git.zone/tstest@2.8.2':
|
||||||
resolution: {integrity: sha512-0Sct9XsbrmAQgKNoW/jBNPMLllKVI+W6/aVkj9DEguiEnysmxLb3xRyoay06lxTGSBe5dA5uNULrdycdQ9slgQ==}
|
resolution: {integrity: sha512-qIZFor1mT4+Xth24jbqZtrh2B2Vz2n27OVY1R22zEg4TgFldjEUVwIKz27axqK1HUA1PIw0mYn+vOgd+yMWO4w==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
'@happy-dom/global-registrator@15.11.7':
|
'@happy-dom/global-registrator@15.11.7':
|
||||||
@@ -4853,7 +4853,7 @@ snapshots:
|
|||||||
'@push.rocks/smartshell': 3.3.0
|
'@push.rocks/smartshell': 3.3.0
|
||||||
tsx: 4.20.6
|
tsx: 4.20.6
|
||||||
|
|
||||||
'@git.zone/tstest@2.8.1(@aws-sdk/credential-providers@3.864.0)(socks@2.8.7)(typescript@5.9.3)':
|
'@git.zone/tstest@2.8.2(@aws-sdk/credential-providers@3.864.0)(socks@2.8.7)(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@api.global/typedserver': 3.0.79
|
'@api.global/typedserver': 3.0.79
|
||||||
'@git.zone/tsbundle': 2.5.2
|
'@git.zone/tsbundle': 2.5.2
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartrequest',
|
name: '@push.rocks/smartrequest',
|
||||||
version: '5.0.0',
|
version: '5.0.1',
|
||||||
description: 'A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.'
|
description: 'A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user