Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
0567d5433f | |||
dd8c8b8e11 | |||
6dc59c3157 | |||
955794f1d0 | |||
ae63a22202 | |||
62907ea111 | |||
17e24a5421 | |||
38b2602122 | |||
80fe602fbd | |||
c076875c2f |
30
changelog.md
30
changelog.md
@ -1,5 +1,35 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-05-01 - 6.0.3 - fix(smartexpect)
|
||||
Update @push.rocks/smartexpect dependency version from ^2.4.0 to ^2.4.2
|
||||
|
||||
- Bump @push.rocks/smartexpect package version in package.json to address minor bug fixes and improvements.
|
||||
|
||||
## 2025-04-30 - 6.0.2 - fix(dependencies/smartexpect)
|
||||
Update @push.rocks/smartexpect dependency to ^2.4.0
|
||||
|
||||
- Upgraded @push.rocks/smartexpect from ^2.3.2 to ^2.4.0 in package.json to incorporate latest improvements.
|
||||
|
||||
## 2025-04-30 - 6.0.1 - fix(smartexpect)
|
||||
Update @push.rocks/smartexpect dependency version to ^2.3.2 in package.json
|
||||
|
||||
- Bump @push.rocks/smartexpect from ^2.2.0 to ^2.3.2
|
||||
|
||||
## 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
|
||||
|
||||
|
12
package.json
12
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@push.rocks/tapbundle",
|
||||
"private": false,
|
||||
"version": "5.6.2",
|
||||
"version": "6.0.3",
|
||||
"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.4.2",
|
||||
"@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
1739
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/tapbundle',
|
||||
version: '5.6.2',
|
||||
version: '6.0.3',
|
||||
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.'
|
||||
}
|
||||
|
@ -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 };
|
||||
|
Reference in New Issue
Block a user