c28ceadb54
fix: switch Docker registry to HTTPS endpoint with login-action
...
CI / Lint (push) Successful in 2m38s
CI / Test (push) Successful in 2m54s
CI / Release (push) Successful in 1m13s
CI / Docker Build & Push (push) Failing after 9m8s
CI / Notify (push) Successful in 2s
- Replace gitea-http.gitea.svc.cluster.local:3000 with registry.lab.daviestechlabs.io
- Use docker/login-action@v3 for Gitea registry auth (proper buildx integration)
- Remove manual base64 auth to ~/.docker/config.json (not picked up by buildkit)
- Remove insecure registry daemon.json config and Docker restart
- Remove buildkitd insecure registry config
- Remove cache-from/cache-to type=gha (not supported on Gitea Actions)
Fixes 401 Unauthorized: reqPackageAccess on Docker push
v0.1.1
2026-02-21 18:05:41 -05:00
66ef758808
feat: migrate from msgpack to protobuf (handler-base v1.0.0)
...
CI / Lint (push) Successful in 3m9s
CI / Test (push) Successful in 2m42s
CI / Release (push) Successful in 1m0s
CI / Notify (push) Successful in 2s
CI / Docker Build & Push (push) Failing after 9m28s
- Replace msgpack encoding with protobuf wire format
- Update field names to proto convention
- Change Parameters type from map[string]any to map[string]string
- Rewrite tests for proto round-trips
v0.1.0
2026-02-21 15:30:17 -05:00
338210eb74
chore: bump handler-base to v0.1.5, add netrc secret mount to Dockerfile
CI / Lint (push) Successful in 2m56s
CI / Test (push) Successful in 2m53s
CI / Release (push) Successful in 1m34s
CI / Docker Build & Push (push) Failing after 7m4s
CI / Notify (push) Successful in 1s
v0.0.7
v0.0.8
2026-02-20 18:17:58 -05:00
8b50306568
ci: retrigger build
CI / Lint (push) Successful in 2m41s
CI / Test (push) Successful in 2m23s
CI / Release (push) Successful in 1m15s
CI / Docker Build & Push (push) Failing after 6m26s
CI / Notify (push) Successful in 3s
v0.0.6
2026-02-20 10:05:22 -05:00
1bdf92c376
fix: add GOPRIVATE and git auth for private handler-base module
...
CI / Lint (push) Successful in 2m33s
CI / Test (push) Successful in 2m36s
CI / Release (push) Successful in 1m20s
CI / Docker Build & Push (push) Failing after 6m44s
CI / Notify (push) Successful in 1s
- Set GOPRIVATE=git.daviestechlabs.io to bypass public Go module proxy
- Configure git URL insteadOf with DISPATCH_TOKEN for private repo access
v0.0.5
2026-02-20 09:22:36 -05:00
c832a837eb
fix: rename GITEA_TOKEN to DISPATCH_TOKEN
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Release (push) Has been cancelled
CI / Docker Build & Push (push) Has been cancelled
CI / Notify (push) Has been cancelled
2026-02-20 09:10:21 -05:00
b6f0e9b88f
ci: add handler-base auto-update workflow, remove old Python CI
CI / Test (push) Has been cancelled
CI / Release (push) Has been cancelled
CI / Docker Build & Push (push) Has been cancelled
CI / Notify (push) Has been cancelled
CI / Lint (push) Has been cancelled
2026-02-20 09:06:00 -05:00
43fb5afcc5
fix: use tagged handler-base v0.1.3, remove local replace directive
CI / Lint (push) Failing after 1m20s
CI / Release (push) Has been cancelled
CI / Notify (push) Has been cancelled
CI / Docker Build & Push (push) Has been cancelled
CI / Test (push) Failing after 1m22s
2026-02-20 09:00:46 -05:00
de4fa6ea90
fix: resolve golangci-lint errcheck warnings
...
CI / Release (push) Has been cancelled
CI / Docker Build & Push (push) Has been cancelled
CI / Notify (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Lint (push) Has been cancelled
- Add error checks for unchecked return values (errcheck)
- Remove unused struct fields (unused)
- Fix gofmt formatting issues
2026-02-20 08:45:25 -05:00
509f392185
Merge pull request 'feature/go-handler-refactor' ( #1 ) from feature/go-handler-refactor into main
...
CI / Lint (push) Failing after 55s
CI / Test (push) Failing after 1m22s
CI / Release (push) Has been skipped
CI / Docker Build & Push (push) Has been skipped
CI / Notify (push) Successful in 1s
Reviewed-on: #1
2026-02-20 12:34:06 +00:00
7cdcbfbff3
feat: migrate to typed messages
...
CI / Lint (pull_request) Failing after 57s
CI / Test (pull_request) Failing after 1m23s
CI / Release (pull_request) Has been skipped
CI / Docker Build & Push (pull_request) Has been skipped
CI / Notify (pull_request) Successful in 1s
- Switch OnMessage → OnTypedMessage with natsutil.Decode[messages.PipelineTrigger]
- Return *messages.PipelineStatus (not map[string]any)
- Remove strVal/mapVal helpers
- Add .dockerignore, GOAMD64=v3 in Dockerfile
- Update tests for typed structs (14 tests pass)
2026-02-20 07:11:03 -05:00
8f9b2203ca
feat: add e2e tests + benchmarks
...
- e2e_test.go: Argo/Kubeflow full payload validation, concurrent requests
- Pipeline dispatch validation, unknown pipeline error handling
- Benchmarks: Argo 218µs/op, Kubeflow 179µs/op
2026-02-20 06:45:23 -05:00
aeb1b749be
feat: rewrite pipeline-bridge in Go
...
Replace Python implementation with Go for smaller container images.
Uses handler-base Go module for NATS, health, and telemetry.
- main.go: pipeline bridge with Argo/Kubeflow HTTP submission
- main_test.go: 8 tests covering helpers and HTTP submit functions
- Dockerfile: multi-stage golang:1.25-alpine → scratch
- CI: Gitea Actions with lint/test/release/docker/notify
2026-02-19 17:52:31 -05:00
da6e96b9f6
fix: replace astral-sh/setup-uv action with shell install
...
CI / Lint (push) Successful in 1m57s
CI / Test (push) Successful in 54s
CI / Release (push) Successful in 5s
CI / Notify (push) Successful in 1s
The JS-based GitHub Action doesn't work on Gitea's act runner.
Use curl installer + GITHUB_PATH instead.
v0.0.4
2026-02-13 19:40:57 -05:00
6ca8a1e9da
chore: add Renovate config for automated dependency updates
...
CI / Lint (push) Successful in 1m37s
CI / Test (push) Successful in 1m9s
CI / Release (push) Successful in 5s
CI / Notify (push) Successful in 1s
Ref: ADR-0057
v0.0.3
2026-02-13 15:34:01 -05:00
36db6d63d5
chore: add pre-commit config with ruff hooks
CI / Lint (push) Successful in 2m29s
CI / Test (push) Successful in 2m29s
CI / Release (push) Successful in 1m6s
CI / Notify (push) Successful in 1s
v0.0.2
2026-02-02 09:10:39 -05:00
49c804e234
fix: ruff formatting and allow-direct-references for handler-base dep
CI / Lint (push) Successful in 40s
CI / Test (push) Successful in 43s
CI / Release (push) Successful in 5s
CI / Notify (push) Successful in 1s
v0.0.1
2026-02-02 08:44:51 -05:00
7c7a147db6
fix: upgrade setup-uv to v7 with explicit activate-environment: false
CI / Lint (push) Failing after 21s
CI / Test (push) Failing after 17s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 1s
2026-02-02 08:26:11 -05:00
26b168c9a6
fix: downgrade setup-uv to v4 for act_runner compatibility
CI / Notify (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Release (push) Has been cancelled
CI / Lint (push) Has been cancelled
2026-02-02 08:25:24 -05:00
6c345d9295
fix: use --extra dev for optional dependencies
CI / Lint (push) Failing after 24s
CI / Test (push) Failing after 22s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 1s
2026-02-02 08:15:00 -05:00
adf39c570d
fix: add --all-groups to uv sync to install dev dependencies
CI / Lint (push) Failing after 20s
CI / Test (push) Failing after 18s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 2s
2026-02-02 08:11:53 -05:00
aac97994d8
feat: add ntfy notifications and semantic versioning (ADR-0015)
CI / Lint (push) Failing after 18s
CI / Test (push) Failing after 16s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 2s
2026-02-02 08:00:31 -05:00
0513f82c92
ci: re-trigger pipeline
CI / Lint (push) Failing after 1s
CI / Test (push) Failing after 1s
2026-02-02 07:51:09 -05:00
871f64ee4c
ci: add Gitea Actions workflow, add uv.lock
CI / Lint (push) Failing after 1s
CI / Test (push) Failing after 1s
2026-02-02 07:16:20 -05:00
3f1e05eaad
refactor: consolidate to handler-base, migrate to pyproject.toml, add tests
2026-02-02 07:11:08 -05:00
50b1835688
feat: add pipeline bridge for NATS to Argo/Kubeflow
...
- pipeline_bridge.py: Standalone bridge service
- pipeline_bridge_v2.py: handler-base version
- Supports Argo Workflows and Kubeflow Pipelines
- Workflow monitoring and status publishing
- Dockerfile variants for standalone and handler-base
2026-02-02 06:23:21 -05:00
57514f2b09
Initial commit
2026-02-02 11:08:05 +00:00