fix(core): Updated dependencies and added close method to VirtualStream
This commit is contained in:
parent
360c8a618b
commit
6beadb8cfc
17
changelog.md
Normal file
17
changelog.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
## 2024-09-06 - 3.0.31 - fix(core)
|
||||
Updated dependencies and added close method to VirtualStream
|
||||
|
||||
- Updated dependencies in package.json for better compatibility
|
||||
- Added close method to VirtualStream class in ts/classes.virtualstream.ts for more graceful stream termination
|
||||
|
||||
## 2024-05-31 - 3.0.28 - Error Handling
|
||||
Enhancement to error handling mechanisms.
|
||||
|
||||
- Logs now include the method to which an error was given.
|
||||
|
||||
## 2023-08-04 - 3.0.0 - Core
|
||||
Introduced a breaking change.
|
||||
|
||||
- Major update to core functionalities.
|
14
package.json
14
package.json
@ -14,14 +14,14 @@
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@api.global/typedserver": "^3.0.50",
|
||||
"@git.zone/tsbuild": "^2.1.80",
|
||||
"@api.global/typedserver": "^3.0.51",
|
||||
"@git.zone/tsbuild": "^2.1.84",
|
||||
"@git.zone/tsbundle": "^2.0.15",
|
||||
"@git.zone/tsrun": "^1.2.44",
|
||||
"@git.zone/tsrun": "^1.2.49",
|
||||
"@git.zone/tstest": "^1.0.90",
|
||||
"@push.rocks/smartenv": "^5.0.12",
|
||||
"@push.rocks/tapbundle": "^5.0.23",
|
||||
"@types/node": "^20.12.13"
|
||||
"@push.rocks/tapbundle": "^5.0.24",
|
||||
"@types/node": "^22.5.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@api.global/typedrequest-interfaces": "^3.0.19",
|
||||
@ -29,8 +29,8 @@
|
||||
"@push.rocks/lik": "^6.0.15",
|
||||
"@push.rocks/smartbuffer": "^3.0.4",
|
||||
"@push.rocks/smartdelay": "^3.0.5",
|
||||
"@push.rocks/smartguard": "^3.0.2",
|
||||
"@push.rocks/smartpromise": "^4.0.3",
|
||||
"@push.rocks/smartguard": "^3.1.0",
|
||||
"@push.rocks/smartpromise": "^4.0.4",
|
||||
"@push.rocks/webrequest": "^3.0.37",
|
||||
"@push.rocks/webstream": "^1.0.10"
|
||||
},
|
||||
|
1213
pnpm-lock.yaml
generated
1213
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -98,12 +98,13 @@ tap.test('should allow VirtualStreams', async () => {
|
||||
const data = await generatedRequestingVS.fetchData();
|
||||
const decodedData = new TextDecoder().decode(data);
|
||||
expect(decodedData).toEqual('hello');
|
||||
newRequestingVS.close();
|
||||
});
|
||||
|
||||
tap.test('should end the server', async (toolsArg) => {
|
||||
await toolsArg.delayFor(1000);
|
||||
await testServer.stop();
|
||||
setTimeout(() => process.exit(0), 100);
|
||||
await tap.stopForcefully();
|
||||
});
|
||||
|
||||
export default tap.start();
|
||||
|
@ -1,8 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@api.global/typedrequest',
|
||||
version: '3.0.30',
|
||||
version: '3.0.31',
|
||||
description: 'A TypeScript library for making typed requests towards APIs, including facilities for handling requests, routing, and virtual stream handling.'
|
||||
}
|
||||
|
@ -377,4 +377,8 @@ export class VirtualStream<T = Uint8Array> implements plugins.typedRequestInterf
|
||||
await writer.write(await this.fetchData());
|
||||
}
|
||||
}
|
||||
|
||||
public async close() {
|
||||
this.keepAlive = false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user