@git.zone/tstest 3.1.1 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/tstest',
6
- version: '3.1.1',
6
+ version: '3.1.3',
7
7
  description: 'a test utility to run tests that match test/**/*.ts'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHFEQUFxRDtDQUNuRSxDQUFBIn0=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@git.zone/tstest",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "private": false,
5
5
  "description": "a test utility to run tests that match test/**/*.ts",
6
6
  "exports": {
@@ -10,7 +10,7 @@
10
10
  "./tapbundle_protocol": "./dist_ts_tapbundle_protocol/index.js"
11
11
  },
12
12
  "type": "module",
13
- "author": "Lossless GmbH",
13
+ "author": "Task Venture Capital GmbH",
14
14
  "license": "MIT",
15
15
  "bin": {
16
16
  "tstest": "./cli.js"
package/readme.md CHANGED
@@ -5,6 +5,10 @@
5
5
  * [npmjs.org (npm package)](https://www.npmjs.com/package/@git.zone/tstest)
6
6
  * [code.foss.global (source)](https://code.foss.global/git.zone/tstest)
7
7
 
8
+ ## Issue Reporting and Security
9
+
10
+ For reporting bugs, issues, or security vulnerabilities, please visit https://community.foss.global/. This is the central community hub for all issue reporting. Developers who want to sign a contribution agreement and go through identification can also get a code.foss.global account to submit Pull Requests directly.
11
+
8
12
  ## Why tstest?
9
13
 
10
14
  **tstest** is a TypeScript test runner that makes testing delightful. It's designed for modern development workflows with beautiful output, flexible test execution, and powerful features that make debugging a breeze.
@@ -1074,6 +1078,21 @@ tstest test/api/endpoints.test.ts --verbose --timeout 60
1074
1078
 
1075
1079
  ## Changelog
1076
1080
 
1081
+ ### Version 3.1.1
1082
+ - 🐛 Fixed TapTools parameter passing to suite lifecycle hooks (beforeAll/afterAll)
1083
+ - 📦 Updated @push.rocks/smarts3 dependency to ^3.0.0
1084
+
1085
+ ### Version 3.1.0
1086
+ - 🎯 **postTask() API** - Global teardown method for cleanup after all tests
1087
+ - 🏗️ **Suite beforeAll/afterAll** - Lifecycle hooks that run once per describe block
1088
+ - ⚡ **parallel() Fluent API** - New fluent entry point for parallel tests
1089
+ - 📚 Enhanced tapbundle documentation with complete API reference
1090
+
1091
+ ### Version 3.0.0
1092
+ - 🔥 **BREAKING:** Renamed tapbundle_node to tapbundle_serverside for clarity
1093
+ - 🔧 Migrated all server-side utilities to tapbundle_serverside
1094
+ - 📦 Improved module separation and organization
1095
+
1077
1096
  ### Version 2.4.0
1078
1097
  - 🚀 **Multi-Runtime Architecture** - Support for Deno, Bun, Node.js, and Chromium
1079
1098
  - 🔀 **New Naming Convention** - Flexible `.runtime1+runtime2.ts` pattern
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/tstest',
6
- version: '3.1.1',
6
+ version: '3.1.3',
7
7
  description: 'a test utility to run tests that match test/**/*.ts'
8
8
  }