diff --git a/changelog.md b/changelog.md index ab632d6..6aa347d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,13 @@ # Changelog +## 2026-02-26 - 4.1.2 - fix(ci) +update npmextra.json to rename keys, add release registries and add CI entry; remove legacy npmci configuration + +- Renamed top-level key "gitzone" to "@git.zone/cli" and "tsdoc" to "@git.zone/tsdoc" to use scoped configuration keys. +- Added release configuration under @git.zone/cli with registries [https://verdaccio.lossless.digital, https://registry.npmjs.org] and accessLevel set to public. +- Removed legacy "npmci" block and introduced an "@ship.zone/szci" section (npmGlobalTools: []). +- No source code changes; this is a configuration/CI/publishing metadata update. Current package.json version is 4.1.1, recommend a patch bump. + ## 2026-02-26 - 4.1.1 - fix(typedsocket) reject pending requests on disconnect to avoid hanging promises diff --git a/npmextra.json b/npmextra.json index 733066f..b9c7592 100644 --- a/npmextra.json +++ b/npmextra.json @@ -1,5 +1,5 @@ { - "gitzone": { + "@git.zone/cli": { "projectType": "npm", "module": { "githost": "code.foss.global", @@ -17,13 +17,19 @@ "TypeScript", "Networking" ] + }, + "release": { + "registries": [ + "https://verdaccio.lossless.digital", + "https://registry.npmjs.org" + ], + "accessLevel": "public" } }, - "npmci": { - "npmGlobalTools": [], - "npmAccessLevel": "public" - }, - "tsdoc": { + "@git.zone/tsdoc": { "legal": "\n## License and Legal Information\n\nThis 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) file within this repository. \n\n**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.\n\n### Trademarks\n\nThis 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.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy 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.\n" + }, + "@ship.zone/szci": { + "npmGlobalTools": [] } -} \ No newline at end of file +} diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f083eea..65c3341 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@api.global/typedsocket', - version: '4.1.1', + version: '4.1.2', description: 'A library for creating typed WebSocket connections, supporting bi-directional communication with type safety.' }