From 2378fb9570dc7870c33f31d33e6cb2059e2c5593 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 20 Nov 2025 15:49:22 +0000 Subject: [PATCH] fix(scripts): Increase tstest timeout from 30s to 240s in package.json test script --- changelog.md | 17 +++++++++++++++++ package.json | 2 +- ts/00_commitinfo_data.ts | 8 ++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 changelog.md create mode 100644 ts/00_commitinfo_data.ts diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..020662c --- /dev/null +++ b/changelog.md @@ -0,0 +1,17 @@ +# Changelog + +## 2025-11-20 - 1.0.2 - fix(scripts) +Increase tstest timeout from 30s to 240s in package.json test script + +- Extend the tstest CLI timeout in package.json from 30 seconds to 240 seconds to accommodate longer-running tests and reduce CI timeouts. + +## 2025-11-20 - 1.0.1 - registry +Release 1.0.1 brings core registry features, multi-registry support, logging integration, and performance improvements to object listing. Also includes the initial project scaffold and CI/CD setup. + +- Add smartlog dependency and integrate structured logging into the NpmRegistry class for better runtime diagnostics and traceability. +- Update smartbucket dependency to 4.3.0 and refactor listObjects for improved performance and efficiency when enumerating stored objects. +- Implement multi-registry support (multiple iterations/refinements included: v2, v3) to allow managing and resolving packages across multiple registries. +- Initial project setup: TypeScript project scaffold, development tooling, and CI/CD workflows for automated testing and publishing. + - Co-authored-by: Ona + +- Miscellaneous housekeeping and small updates (2025-11-19 — 2025-11-20): several commits with no substantive messages; grouped as non-functional/maintenance changes. \ No newline at end of file diff --git a/package.json b/package.json index 1bae1d1..862e5dd 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "author": "Task Venture Capital GmbH", "license": "MIT", "scripts": { - "test": "(tstest test/ --verbose --logfile --timeout 30)", + "test": "(tstest test/ --verbose --logfile --timeout 240)", "build": "(tsbuild --web --allowimplicitany)", "buildDocs": "(tsdoc)" }, diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts new file mode 100644 index 0000000..16f9b08 --- /dev/null +++ b/ts/00_commitinfo_data.ts @@ -0,0 +1,8 @@ +/** + * autocreated commitinfo by @push.rocks/commitinfo + */ +export const commitinfo = { + name: '@push.rocks/smartregistry', + version: '1.0.2', + description: 'a registry for npm modules and oci images' +}