Compare commits

...

4 Commits

Author SHA1 Message Date
17e24a5421 6.0.0
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-29 12:15:53 +00:00
38b2602122 BREAKING CHANGE(dependencies): Upgrade @push.rocks/smartexpect to ^2.2.0 and bump @types/node version; remove unused expectAsync import from ts/index.ts 2025-04-29 12:15:53 +00:00
80fe602fbd 5.6.3
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-08 10:42:37 +00:00
c076875c2f fix(package.json): Update dependency versions for smartmongo, smartrequest, tsbuild, and @types/node 2025-04-08 10:42:37 +00:00
5 changed files with 926 additions and 846 deletions

View File

@ -1,5 +1,20 @@
# Changelog
## 2025-04-29 - 6.0.0 - BREAKING CHANGE(dependencies)
Upgrade @push.rocks/smartexpect to ^2.2.0 and bump @types/node version; remove unused expectAsync import from ts/index.ts
- Updated '@push.rocks/smartexpect' from ^1.6.1 to ^2.2.0, which may introduce breaking API changes for consumers
- Bumped '@types/node' from ^22.14.0 to ^22.15.3
- Removed redundant expectAsync import from ts/index.ts
## 2025-04-08 - 5.6.3 - fix(package.json)
Update dependency versions for smartmongo, smartrequest, tsbuild, and @types/node
- Bump @push.rocks/smartmongo from 2.0.10 to 2.0.12
- Bump @push.rocks/smartrequest from 2.0.23 to 2.1.0
- Bump @git.zone/tsbuild from 2.2.6 to 2.3.2
- Bump @types/node from 22.13.10 to 22.14.0
## 2025-04-02 - 5.6.2 - fix(package.json)
Fix formatting in package.json to correctly include the packageManager field

View File

@ -1,7 +1,7 @@
{
"name": "@push.rocks/tapbundle",
"private": false,
"version": "5.6.2",
"version": "6.0.0",
"description": "A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.",
"exports": {
".": "./dist_ts/index.js",
@ -30,23 +30,23 @@
"@push.rocks/smartcrypto": "^2.0.4",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartexpect": "^1.6.1",
"@push.rocks/smartexpect": "^2.2.0",
"@push.rocks/smartfile": "^11.2.0",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartmongo": "^2.0.10",
"@push.rocks/smartmongo": "^2.0.12",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^2.0.23",
"@push.rocks/smartrequest": "^2.1.0",
"@push.rocks/smarts3": "^2.2.5",
"@push.rocks/smartshell": "^3.2.3",
"@push.rocks/smarttime": "^4.1.1",
"expect": "^29.7.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.6",
"@git.zone/tsbuild": "^2.3.2",
"@git.zone/tsrun": "^1.2.43",
"@git.zone/tstest": "^1.0.96",
"@types/node": "^22.13.10",
"@types/node": "^22.15.3",
"randomstring": "^1.3.1"
},
"files": [

1739
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/tapbundle',
version: '5.6.2',
version: '6.0.0',
description: 'A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.'
}

View File

@ -2,6 +2,6 @@ export { tap } from './tapbundle.classes.tap.js';
export { TapWrap } from './tapbundle.classes.tapwrap.js';
export { webhelpers } from './webhelpers.js';
import { expect, expectAsync } from '@push.rocks/smartexpect';
import { expect } from '@push.rocks/smartexpect';
export { expect, expectAsync };
export { expect };