Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb9b2bc74a | |||
| dd062c2d58 | |||
| c09ec650bb | |||
| 6401790b6a | |||
| 3cb0be8f56 | |||
| 5e7cddc450 |
14
changelog.md
14
changelog.md
@@ -1,5 +1,19 @@
|
||||
# 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)
|
||||
add zstd chunk compression support and rewrite partially referenced packs during prune
|
||||
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
10
package.json
10
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@push.rocks/containerarchive",
|
||||
"version": "0.1.0",
|
||||
"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",
|
||||
|
||||
@@ -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');
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/containerarchive',
|
||||
version: '0.1.0',
|
||||
name: '@serve.zone/containerarchive',
|
||||
version: '0.1.3',
|
||||
description: 'content-addressed incremental backup engine with deduplication, encryption, and error correction'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user