Compare commits

...

4 Commits

Author SHA1 Message Date
c54493ddbc 5.4.4
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-11-06 17:15:28 +01:00
e98f109dcc fix(dependencies): Update smarts3 dependency to version 2.2.5 2024-11-06 17:15:28 +01:00
32704386ee 5.4.3
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-11-06 03:16:45 +01:00
8ec3d593c1 fix(TapNodeTools): Fix server port default value in createSmarts3 method 2024-11-06 03:16:44 +01:00
5 changed files with 17 additions and 7 deletions

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 2024-11-06 - 5.4.4 - fix(dependencies)
Update smarts3 dependency to version 2.2.5
## 2024-11-06 - 5.4.3 - fix(TapNodeTools)
Fix server port default value in createSmarts3 method
- The `createSmarts3` method in `TapNodeTools` now explicitly sets the port to 3003.
## 2024-11-06 - 5.4.2 - fix(dependencies) ## 2024-11-06 - 5.4.2 - fix(dependencies)
Update smarts3 dependency version to fix issues. Update smarts3 dependency version to fix issues.

View File

@ -1,7 +1,7 @@
{ {
"name": "@push.rocks/tapbundle", "name": "@push.rocks/tapbundle",
"private": false, "private": false,
"version": "5.4.2", "version": "5.4.4",
"description": "A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.", "description": "A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.",
"exports": { "exports": {
".": "./dist_ts/index.js", ".": "./dist_ts/index.js",
@ -34,7 +34,7 @@
"@push.rocks/smartjson": "^5.0.20", "@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartmongo": "^2.0.10", "@push.rocks/smartmongo": "^2.0.10",
"@push.rocks/smartpromise": "^4.0.4", "@push.rocks/smartpromise": "^4.0.4",
"@push.rocks/smarts3": "^2.2.2", "@push.rocks/smarts3": "^2.2.5",
"@push.rocks/smartshell": "^3.0.6", "@push.rocks/smartshell": "^3.0.6",
"@push.rocks/smarttime": "^4.0.8" "@push.rocks/smarttime": "^4.0.8"
}, },

8
pnpm-lock.yaml generated
View File

@ -36,8 +36,8 @@ dependencies:
specifier: ^4.0.4 specifier: ^4.0.4
version: 4.0.4 version: 4.0.4
'@push.rocks/smarts3': '@push.rocks/smarts3':
specifier: ^2.2.2 specifier: ^2.2.5
version: 2.2.2 version: 2.2.5
'@push.rocks/smartshell': '@push.rocks/smartshell':
specifier: ^3.0.6 specifier: ^3.0.6
version: 3.0.6 version: 3.0.6
@ -2159,8 +2159,8 @@ packages:
'@push.rocks/smartpromise': 4.0.4 '@push.rocks/smartpromise': 4.0.4
rxjs: 7.8.1 rxjs: 7.8.1
/@push.rocks/smarts3@2.2.2: /@push.rocks/smarts3@2.2.5:
resolution: {integrity: sha512-H1dou6JrSkrwx6Y/szuOlnARGSSuZTSL2rLnJqg93/vp6GjLPQqI4+zEkuIO+3fAoQH0hRYvc0/DPhalKWJA2A==} resolution: {integrity: sha512-OZjD0jBCUTJCLnwraxBcyZ3he5buXf2OEM1zipiTBChA2EcKUZWKk/a6KR5WT+NlFCIIuB23UG+U+cxsIWM91Q==}
dependencies: dependencies:
'@push.rocks/smartbucket': 3.0.23 '@push.rocks/smartbucket': 3.0.23
'@push.rocks/smartfile': 11.0.21 '@push.rocks/smartfile': 11.0.21

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/tapbundle', name: '@push.rocks/tapbundle',
version: '5.4.2', version: '5.4.4',
description: 'A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.' description: 'A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.'
} }

View File

@ -85,6 +85,7 @@ class TapNodeTools {
public async createSmarts3() { public async createSmarts3() {
const smarts3Mod = await import('@push.rocks/smarts3'); const smarts3Mod = await import('@push.rocks/smarts3');
const smarts3Instance = new smarts3Mod.Smarts3({ const smarts3Instance = new smarts3Mod.Smarts3({
port: 3003,
cleanSlate: true, cleanSlate: true,
}); });
await smarts3Instance.start(); await smarts3Instance.start();