-
Notifications
You must be signed in to change notification settings - Fork 0
clients_publishing_guide
Status: Ready for Publishing
Version: 1.0.0
Date: December 2025
This guide documents the publishing process for all ThemisDB client SDKs. All SDKs are maintained in the clients/ directory and share feature parity.
All SDKs support the following features:
| Feature | Description |
|---|---|
| CRUD Operations | Create, Read, Update, Delete entities |
| AQL Queries | Execute queries with parameters |
| Transactions | ACID transactions with isolation levels |
| Graph API |
traverse(), shortestPath(), neighbors()
|
| Vector API |
vectorSearch(), vectorUpsert(), vectorDelete()
|
| Batch Operations | Batch get/put/delete |
| Topology-Aware Routing | Automatic shard routing |
| TLS/mTLS | Secure connections |
- All tests pass
- Feature parity verified across SDKs
- Version numbers updated
- CHANGELOG updated
- README updated with new features
- Breaking changes documented
- Create release branch
- Update version numbers
- Run full test suite
- Build packages
- Publish to registries
- Tag release in Git
- Update documentation
-
Name:
themisdb-client - Registry: PyPI
-
Config:
clients/python/pyproject.toml
cd clients/python
# Create virtual environment
python -m venv venv
source venv/bin/activate
# Install build tools
pip install build twine
# Build package
python -m build
# Upload to PyPI
twine upload dist/*
# For test PyPI first:
twine upload --repository testpypi dist/*pip install themisdb-clientEdit pyproject.toml:
[project]
version = "1.0.0"-
Name:
@themisdb/client - Registry: NPM
-
Config:
clients/javascript/package.json
cd clients/javascript
# Install dependencies
npm install
# Run tests
npm test
# Build TypeScript
npm run build
# Publish to NPM
npm publish --access public
# For beta releases:
npm publish --tag beta --access publicnpm install @themisdb/client
# or
yarn add @themisdb/clientEdit package.json:
{
"version": "1.0.0"
}-
Name:
github.com/makr-code/ThemisDB/clients/go - Registry: Go Modules (GitHub)
-
Config:
clients/go/go.mod
Go modules are automatically available via GitHub tags:
cd clients/go
# Ensure go.mod is correct
go mod tidy
# Tag release (from repo root)
git tag clients/go/v1.0.0
git push origin clients/go/v1.0.0go get github.com/makr-code/ThemisDB/clients/go@v1.0.0Edit go.mod:
module github.com/makr-code/ThemisDB/clients/go
go 1.21-
Name:
themisdb-client - Registry: crates.io
-
Config:
clients/rust/Cargo.toml
cd clients/rust
# Run tests
cargo test
# Build
cargo build --release
# Publish to crates.io
cargo publish
# For dry-run:
cargo publish --dry-run# Cargo.toml
[dependencies]
themisdb-client = "1.0.0"Edit Cargo.toml:
[package]
name = "themisdb-client"
version = "1.0.0"-
Name:
io.themisdb:themisdb-client - Registry: Maven Central
-
Config:
clients/java/pom.xml
cd clients/java
# Build
mvn clean package
# Run tests
mvn test
# Deploy to Maven Central (requires GPG signing)
mvn deploy -P release
# For Sonatype staging:
mvn deploy -P release -DstagingProfileId=xxx<!-- pom.xml -->
<dependency>
<groupId>io.themisdb</groupId>
<artifactId>themisdb-client</artifactId>
<version>1.0.0</version>
</dependency>Edit pom.xml:
<version>1.0.0</version>-
Name:
ThemisDB.Client - Registry: NuGet
-
Config:
clients/csharp/ThemisDB.Client/ThemisDB.Client.csproj
cd clients/csharp/ThemisDB.Client
# Build
dotnet build -c Release
# Run tests
dotnet test
# Pack
dotnet pack -c Release
# Publish to NuGet
dotnet nuget push bin/Release/ThemisDB.Client.1.0.0.nupkg --api-key YOUR_API_KEY --source https://api.nuget.org/v3/index.jsondotnet add package ThemisDB.ClientEdit .csproj:
<Version>1.0.0</Version>-
Name:
ThemisDB - Registry: Swift Package Manager (GitHub)
-
Config:
clients/swift/Package.swift
Swift packages are available via GitHub tags:
# Tag release (from repo root)
git tag swift-1.0.0
git push origin swift-1.0.0// Package.swift
dependencies: [
.package(url: "https://github.com/makr-code/ThemisDB.git", from: "1.0.0")
]Tags define versions for Swift packages.
name: Publish SDKs
on:
release:
types: [published]
jobs:
publish-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Publish to PyPI
working-directory: clients/python
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
pip install build twine
python -m build
twine upload dist/*
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Publish to NPM
working-directory: clients/javascript
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm ci
npm run build
npm publish --access public
publish-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Publish to crates.io
working-directory: clients/rust
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: cargo publish
publish-nuget:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Publish to NuGet
working-directory: clients/csharp/ThemisDB.Client
run: |
dotnet pack -c Release
dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.jsonAll SDKs should use the same major.minor version:
| SDK | Current Version | Target Version |
|---|---|---|
| Python | 0.1.0-beta.1 | 1.0.0 |
| JavaScript | 0.1.0-beta.1 | 1.0.0 |
| Go | 0.1.0 | 1.0.0 |
| Rust | 0.1.0 | 1.0.0 |
| Java | 0.1.0-SNAPSHOT | 1.0.0 |
| C# | 0.1.0-beta | 1.0.0 |
| Swift | 0.1.0 | 1.0.0 |
- API Keys: Store all registry API keys in GitHub Secrets
- GPG Signing: Required for Maven Central
- 2FA: Enable 2FA on all registry accounts
- Audit: Review dependencies before each release
For SDK publishing issues, contact the ThemisDB team or open an issue in the repository.
ThemisDB v1.3.4 | GitHub | Documentation | Discussions | License
Last synced: January 02, 2026 | Commit: 6add659
Version: 1.3.0 | Stand: Dezember 2025
- Übersicht
- Home
- Dokumentations-Index
- Quick Reference
- Sachstandsbericht 2025
- Features
- Roadmap
- Ecosystem Overview
- Strategische Übersicht
- Geo/Relational Storage
- RocksDB Storage
- MVCC Design
- Transaktionen
- Time-Series
- Memory Tuning
- Chain of Thought Storage
- Query Engine & AQL
- AQL Syntax
- Explain & Profile
- Rekursive Pfadabfragen
- Temporale Graphen
- Zeitbereichs-Abfragen
- Semantischer Cache
- Hybrid Queries (Phase 1.5)
- AQL Hybrid Queries
- Hybrid Queries README
- Hybrid Query Benchmarks
- Subquery Quick Reference
- Subquery Implementation
- Content Pipeline
- Architektur-Details
- Ingestion
- JSON Ingestion Spec
- Enterprise Ingestion Interface
- Geo-Processor Design
- Image-Processor Design
- Hybrid Search Design
- Fulltext API
- Hybrid Fusion API
- Stemming
- Performance Tuning
- Migration Guide
- Future Work
- Pagination Benchmarks
- Enterprise README
- Scalability Features
- HTTP Client Pool
- Build Guide
- Implementation Status
- Final Report
- Integration Analysis
- Enterprise Strategy
- Verschlüsselungsstrategie
- Verschlüsselungsdeployment
- Spaltenverschlüsselung
- Encryption Next Steps
- Multi-Party Encryption
- Key Rotation Strategy
- Security Encryption Gap Analysis
- Audit Logging
- Audit & Retention
- Compliance Audit
- Compliance
- Extended Compliance Features
- Governance-Strategie
- Compliance-Integration
- Governance Usage
- Security/Compliance Review
- Threat Model
- Security Hardening Guide
- Security Audit Checklist
- Security Audit Report
- Security Implementation
- Development README
- Code Quality Pipeline
- Developers Guide
- Cost Models
- Todo Liste
- Tool Todo
- Core Feature Todo
- Priorities
- Implementation Status
- Roadmap
- Future Work
- Next Steps Analysis
- AQL LET Implementation
- Development Audit
- Sprint Summary (2025-11-17)
- WAL Archiving
- Search Gap Analysis
- Source Documentation Plan
- Changefeed README
- Changefeed CMake Patch
- Changefeed OpenAPI
- Changefeed OpenAPI Auth
- Changefeed SSE Examples
- Changefeed Test Harness
- Changefeed Tests
- Dokumentations-Inventar
- Documentation Summary
- Documentation TODO
- Documentation Gap Analysis
- Documentation Consolidation
- Documentation Final Status
- Documentation Phase 3
- Documentation Cleanup Validation
- API
- Authentication
- Cache
- CDC
- Content
- Geo
- Governance
- Index
- LLM
- Query
- Security
- Server
- Storage
- Time Series
- Transaction
- Utils
Vollständige Dokumentation: https://makr-code.github.io/ThemisDB/