diff --git a/CHANGELOG.md b/CHANGELOG.md index d2cfc40..2fb5524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +9,14 @@ Tag naming: `0.y.z` (no `v` prefix). Align `cmd/version.go` with the tag before ## [Unreleased] -### Changed - -- Repository sync uses **go-git** instead of the `git` CLI (no `git` binary required in the distroless image). - ## [0.1.0] - 2026-05-23 ### Added - **probe-core** integration: entity-based lifecycle (`users`, `groups`, `projects`, `repositories`, `code_files`), HTTP control plane (`/probes`), `runtime_config` merge, schema in image. - CI/CD via `fluid-pub/actions` (test, release on semver tag, GHCR image `ghcr.io/fluid-pub/probe-gitlab`). -- Git repository sync and `code_files` indexing for RAG. +- Git repository sync via **go-git** and `code_files` indexing for RAG (no `git` CLI in the distroless image). +- `gofmt` pre-commit hook (`scripts/install-git-hooks.sh`). ### Changed diff --git a/go.mod b/go.mod index bda7a21..bb47dd1 100644 --- a/go.mod +++ b/go.mod @@ -32,4 +32,4 @@ require ( gopkg.in/warnings.v0 v0.1.2 // indirect ) -replace fluid/probes/core => ../core +replace fluid/probes/core => ./core