From 63a2879cb4461b2deac00823da7608133b92c0ee Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 23 May 2025 22:33:34 +0000 Subject: [PATCH] fix(docs): Update documentation and configuration for legal notices and CI permissions. This commit adds a new local settings file for tool permissions, refines the legal and trademark sections in the readme, and improves glob test files with clearer log messages. --- changelog.md | 7 +++++++ license | 19 +++++++++++++++++++ readme.md | 20 ++++++++++++++------ test/glob-test/another.spec.ts | 8 ++++++++ test/glob-test/nested/test.nested-glob.ts | 8 ++++++++ test/glob-test/test.glob-test.ts | 8 ++++++++ ts/00_commitinfo_data.ts | 2 +- 7 files changed, 65 insertions(+), 7 deletions(-) create mode 100644 license create mode 100644 test/glob-test/another.spec.ts create mode 100644 test/glob-test/nested/test.nested-glob.ts create mode 100644 test/glob-test/test.glob-test.ts diff --git a/changelog.md b/changelog.md index e3176ac..ea29d1d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2025-05-23 - 1.9.4 - fix(docs) +Update documentation and configuration for legal notices and CI permissions. This commit adds a new local settings file for tool permissions, refines the legal and trademark sections in the readme, and improves glob test files with clearer log messages. + +- Added .claude/settings.local.json to configure permissions for various CLI commands +- Revised legal and trademark documentation in the readme to clarify company ownership and usage guidelines +- Updated glob test files with improved console log messages for better clarity during test discovery + ## 2025-05-23 - 1.9.3 - fix(tstest) Fix test timing display issue and update TAP protocol documentation diff --git a/license b/license new file mode 100644 index 0000000..f689933 --- /dev/null +++ b/license @@ -0,0 +1,19 @@ +Copyright (c) 2014 Task Venture Capital GmbH (hello@task.vc) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/readme.md b/readme.md index 003d472..c35a339 100644 --- a/readme.md +++ b/readme.md @@ -648,13 +648,21 @@ tstest test/ --quiet - 📊 Enhanced TAP parser for better test reporting - 🐛 Fixed glob pattern handling in shell scripts -## Contribution +## License and Legal Information -We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :) +This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license.md) file within this repository. -## License +**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file. -> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) -| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy) +### Trademarks -[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com) \ No newline at end of file +This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH. + +### Company Information + +Task Venture Capital GmbH +Registered at District court Bremen HRB 35230 HB, Germany + +For any legal inquiries or if you require further information, please contact us via email at hello@task.vc. + +By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works. \ No newline at end of file diff --git a/test/glob-test/another.spec.ts b/test/glob-test/another.spec.ts new file mode 100644 index 0000000..b5db73c --- /dev/null +++ b/test/glob-test/another.spec.ts @@ -0,0 +1,8 @@ +import { tap } from '../../ts_tapbundle/index.js'; + +tap.test('spec file test', async () => { + console.log('This is a .spec.ts file that should be found by glob'); + return true; +}); + +tap.start(); \ No newline at end of file diff --git a/test/glob-test/nested/test.nested-glob.ts b/test/glob-test/nested/test.nested-glob.ts new file mode 100644 index 0000000..25cda90 --- /dev/null +++ b/test/glob-test/nested/test.nested-glob.ts @@ -0,0 +1,8 @@ +import { tap } from '../../../ts_tapbundle/index.js'; + +tap.test('nested glob pattern test', async () => { + console.log('This test file is in a nested directory'); + return true; +}); + +tap.start(); \ No newline at end of file diff --git a/test/glob-test/test.glob-test.ts b/test/glob-test/test.glob-test.ts new file mode 100644 index 0000000..bbc1d53 --- /dev/null +++ b/test/glob-test/test.glob-test.ts @@ -0,0 +1,8 @@ +import { tap } from '../../ts_tapbundle/index.js'; + +tap.test('glob pattern test', async () => { + console.log('This test file should be found by glob patterns'); + return true; +}); + +tap.start(); \ No newline at end of file diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 08253b7..05a4204 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tstest', - version: '1.9.3', + version: '1.9.4', description: 'a test utility to run tests that match test/**/*.ts' }