Skip to content

Release v0.1.0

Choose a tag to compare

@github-actions github-actions released this 30 Jun 06:21
6d10add

v0.1.0

MatrixHub v0.1.0 is the first official release. It matches the code shipped in v0.1.0-rc.1 and delivers the V0 / M0–M1 baseline described in the roadmap: a self-hosted, Hugging Face–compatible model registry for private inference clusters.

Downloads

Container image

ghcr.io/matrixhub-ai/matrixhub:v0.1.0

Images are published for linux/amd64 and linux/arm64, signed with Cosign (keyless), and ship with an SPDX SBOM attachment.

Verify signature (optional):

cosign verify ghcr.io/matrixhub-ai/matrixhub:v0.1.0 \
  --certificate-identity-regexp='.*' \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com

Helm chart (OCI)

export CHART_VERSION=0.1.0
export NAMESPACE=matrixhub

helm install matrixhub oci://ghcr.io/matrixhub-ai/matrixhub \
  --version "${CHART_VERSION}" \
  --namespace "${NAMESPACE}" \
  --create-namespace

See the README and documentation site for Docker Compose, storage, and upgrade guidance.

Changelog since project inception

Feature

  • Added a Hugging Face–compatible Git, Git LFS, and HTTP surface so clients such as vLLM and SGLang can use MatrixHub as a private model hub with HF_ENDPOINT.
  • Added model repository lifecycle: create, browse, upload, download, and delete with project-scoped isolation.
  • Added a Web UI for repository administration, user profile, access tokens, and platform settings.
  • Added remote registry management with proxy-cache mode to localize public Hugging Face models on first request (pull-once, serve-all within the cluster).
  • Added sync policies and an in-process job server to schedule registry replication tasks with resumable transfer foundations.
  • Added token-based authentication, projects, roles, robots, and permission-aware project listing for multi-tenant operation.
  • Added dataset repository support (initial).
  • Added Docker Compose and Helm deployment paths with multi-arch container images published to ghcr.io.
  • Added release automation: OCI Helm charts, Cosign signing, and SPDX SBOM generation for official tags.
  • Added documentation site content at matrixhub.ai and CNCF Slack community channel (#matrixhub).

Bug or Regression

  • Fixed file size display in the UI to use SI units consistently.
  • Fixed project permission resolution for list and detail APIs.
  • Additional stability and UI fixes merged before v0.1.0-rc.1.

Documentation

  • Published installation, operations, and development guides on the documentation site.
  • Added project governance documents: Contributing, Security, Governance, and Maintainers.

Known limitations

The following items are on the roadmap but not part of v0.1.0:

  • Full LDAP/OIDC/SSO integration
  • Storage quotas and automated cleanup policies (design in progress)
  • Model signing, malware scanning, and tag-locking promotion workflows
  • S3-compatible storage as a first-class backend (PVC/local focus in this release)

Track follow-up work in GitHub issues.

Upgrade notes

There is no prior official release. Install from the container image or Helm chart above. To evaluate quickly, use the public demo at demo.matrixhub.ai (credentials in the README).