Compare commits
2 Commits
7c364819e2
...
a9fb759e57
Author | SHA1 | Date | |
---|---|---|---|
|
a9fb759e57 | ||
5e3f489386 |
46
CHANGELOG.md
Normal file
46
CHANGELOG.md
Normal file
@ -0,0 +1,46 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.0] - 2025-01-27
|
||||
|
||||
### Added
|
||||
- add dagger ci
|
||||
- add dead letter queue
|
||||
- move schedules to registered workers
|
||||
- prune old workers
|
||||
- deregister worker on close
|
||||
- add worker distributor and model registry
|
||||
- enable worker process
|
||||
- add migration
|
||||
- add executor (#3)
|
||||
Adds an executor which can process and dispatch events to a set of workers.
|
||||
Co-authored-by: kjuulh <contact@kjuulh.io>
|
||||
Co-committed-by: kjuulh <contact@kjuulh.io>
|
||||
- add basic main.go
|
||||
- add default
|
||||
|
||||
### Fixed
|
||||
- *(deps)* update module github.com/golang-migrate/migrate/v4 to v4.18.2
|
||||
- ci
|
||||
- *(deps)* update all dependencies
|
||||
- use dedicated connection for scheduler process
|
||||
- *(deps)* update module gitlab.com/greyxor/slogor to v1.6.1
|
||||
- orbis demo
|
||||
|
||||
### Other
|
||||
- add more specific log for when leader is acquired
|
||||
- add basic leader election on top of postgres
|
||||
|
||||
- add orbis demo
|
||||
|
||||
- add basic scheduler
|
||||
|
||||
- add utility scripts
|
||||
- add utility scripts
|
||||
- add logger
|
||||
- add cmd
|
2
go.mod
2
go.mod
@ -4,7 +4,7 @@ go 1.23.5
|
||||
|
||||
require (
|
||||
github.com/adhocore/gronx v1.19.5
|
||||
github.com/golang-migrate/migrate/v4 v4.18.1
|
||||
github.com/golang-migrate/migrate/v4 v4.18.2
|
||||
github.com/google/uuid v1.6.0
|
||||
github.com/jackc/pgx/v5 v5.7.2
|
||||
github.com/joho/godotenv v1.5.1
|
||||
|
2
go.sum
2
go.sum
@ -28,6 +28,8 @@ github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
|
||||
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
||||
github.com/golang-migrate/migrate/v4 v4.18.1 h1:JML/k+t4tpHCpQTCAD62Nu43NUFzHY4CV3uAuvHGC+Y=
|
||||
github.com/golang-migrate/migrate/v4 v4.18.1/go.mod h1:HAX6m3sQgcdO81tdjn5exv20+3Kb13cmGli1hrD6hks=
|
||||
github.com/golang-migrate/migrate/v4 v4.18.2 h1:2VSCMz7x7mjyTXx3m2zPokOY82LTRgxK1yQYKo6wWQ8=
|
||||
github.com/golang-migrate/migrate/v4 v4.18.2/go.mod h1:2CM6tJvn2kqPXwnXO/d3rAQYiyoIm180VsO8PRX6Rpk=
|
||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
|
||||
|
Loading…
x
Reference in New Issue
Block a user