6 Commits
v0.1.0 ... main

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
3cb0be8f56 v0.1.1 2026-03-23 09:14:00 +00:00
5e7cddc450 fix(repo): no changes to commit 2026-03-23 09:14:00 +00:00
5 changed files with 27 additions and 13 deletions

View File

@@ -1,5 +1,19 @@
# Changelog # 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
## 2026-03-22 - 0.1.0 - feat(rust-core) ## 2026-03-22 - 0.1.0 - feat(rust-core)
add zstd chunk compression support and rewrite partially referenced packs during prune add zstd chunk compression support and rewrite partially referenced packs during prune

View File

@@ -3,10 +3,10 @@
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "code.foss.global", "githost": "code.foss.global",
"gitscope": "push.rocks", "gitscope": "serve.zone",
"gitrepo": "containerarchive", "gitrepo": "containerarchive",
"description": "content-addressed incremental backup engine with deduplication, encryption, and error correction", "description": "content-addressed incremental backup engine with deduplication, encryption, and error correction",
"npmPackagename": "@push.rocks/containerarchive", "npmPackagename": "@serve.zone/containerarchive",
"license": "MIT", "license": "MIT",
"keywords": [ "keywords": [
"backup", "backup",
@@ -35,6 +35,6 @@
] ]
}, },
"@git.zone/tsdoc": { "@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", "name": "@serve.zone/containerarchive",
"version": "0.1.0", "version": "0.1.3",
"private": false, "private": false,
"description": "content-addressed incremental backup engine with deduplication, encryption, and error correction", "description": "content-addressed incremental backup engine with deduplication, encryption, and error correction",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -12,14 +12,14 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://code.foss.global/push.rocks/containerarchive.git" "url": "https://code.foss.global/serve.zone/containerarchive.git"
}, },
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"bugs": { "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": { "dependencies": {
"@push.rocks/lik": "^6.0.0", "@push.rocks/lik": "^6.0.0",
"@push.rocks/smartpromise": "^4.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. 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 ## Install
```bash ```bash
pnpm install @push.rocks/containerarchive pnpm install @serve.zone/containerarchive
``` ```
## 🏗️ Architecture ## 🏗️ Architecture
@@ -55,7 +55,7 @@ containerarchive uses a **hybrid Rust + TypeScript architecture**. The heavy lif
### Initialize a New Repository ### Initialize a New Repository
```typescript ```typescript
import { ContainerArchive } from '@push.rocks/containerarchive'; import { ContainerArchive } from '@serve.zone/containerarchive';
// Unencrypted repository // Unencrypted repository
const repo = await ContainerArchive.init('/path/to/backup-repo'); const repo = await ContainerArchive.init('/path/to/backup-repo');

View File

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