4 Commits

Author SHA1 Message Date
bb9b2bc74a v0.1.3 2026-03-23 09:23:52 +00:00
dd062c2d58 fix(repo): no changes to commit 2026-03-23 09:23:51 +00:00
c09ec650bb v0.1.2 2026-03-23 09:22:26 +00:00
6401790b6a fix(package): rename package namespace from @push.rocks to @serve.zone 2026-03-23 09:22:26 +00:00
5 changed files with 23 additions and 13 deletions

View File

@@ -1,5 +1,15 @@
# Changelog
## 2026-03-23 - 0.1.3 - fix(repo)
no changes to commit
## 2026-03-23 - 0.1.2 - fix(package)
rename package namespace from @push.rocks to @serve.zone
- Updates the published package name to @serve.zone/containerarchive
- Aligns repository, bugs, homepage, README usage examples, and generated commit metadata with the new namespace
## 2026-03-23 - 0.1.1 - fix(repo)
no changes to commit

View File

@@ -3,10 +3,10 @@
"projectType": "npm",
"module": {
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitscope": "serve.zone",
"gitrepo": "containerarchive",
"description": "content-addressed incremental backup engine with deduplication, encryption, and error correction",
"npmPackagename": "@push.rocks/containerarchive",
"npmPackagename": "@serve.zone/containerarchive",
"license": "MIT",
"keywords": [
"backup",
@@ -35,6 +35,6 @@
]
},
"@git.zone/tsdoc": {
"legal": "\n## License and Legal Information\n\nThis module is part of the @push.rocks ecosystem, maintained by Task Venture Capital GmbH.\n\nLicensed under MIT. See LICENSE file for details.\n\nFor questions or commercial licensing, contact: hello@task.vc\n"
"legal": "\n## License and Legal Information\n\nThis module is part of the @serve.zone collection, maintained by Task Venture Capital GmbH.\n\nLicensed under MIT. See LICENSE file for details.\n\nFor questions or commercial licensing, contact: hello@task.vc\n"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@push.rocks/containerarchive",
"version": "0.1.1",
"name": "@serve.zone/containerarchive",
"version": "0.1.3",
"private": false,
"description": "content-addressed incremental backup engine with deduplication, encryption, and error correction",
"main": "dist_ts/index.js",
@@ -12,14 +12,14 @@
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/containerarchive.git"
"url": "https://code.foss.global/serve.zone/containerarchive.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/containerarchive/issues"
"url": "https://code.foss.global/serve.zone/containerarchive/issues"
},
"homepage": "https://code.foss.global/push.rocks/containerarchive",
"homepage": "https://code.foss.global/serve.zone/containerarchive",
"dependencies": {
"@push.rocks/lik": "^6.0.0",
"@push.rocks/smartpromise": "^4.0.0",

View File

@@ -1,4 +1,4 @@
# @push.rocks/containerarchive
# @serve.zone/containerarchive
A high-performance, content-addressed incremental backup engine with built-in deduplication, encryption, compression, and Reed-Solomon error correction — powered by a Rust core with a clean TypeScript API.
@@ -9,7 +9,7 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community
## Install
```bash
pnpm install @push.rocks/containerarchive
pnpm install @serve.zone/containerarchive
```
## 🏗️ Architecture
@@ -55,7 +55,7 @@ containerarchive uses a **hybrid Rust + TypeScript architecture**. The heavy lif
### Initialize a New Repository
```typescript
import { ContainerArchive } from '@push.rocks/containerarchive';
import { ContainerArchive } from '@serve.zone/containerarchive';
// Unencrypted repository
const repo = await ContainerArchive.init('/path/to/backup-repo');

View File

@@ -2,7 +2,7 @@
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/containerarchive',
version: '0.1.1',
name: '@serve.zone/containerarchive',
version: '0.1.3',
description: 'content-addressed incremental backup engine with deduplication, encryption, and error correction'
}