Compare commits
2 Commits
a9fb759e57
...
62a1f5cf8b
Author | SHA1 | Date | |
---|---|---|---|
|
62a1f5cf8b | ||
2baa213a94 |
47
CHANGELOG.md
Normal file
47
CHANGELOG.md
Normal file
@ -0,0 +1,47 @@
|
||||
# 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-02-05
|
||||
|
||||
### 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 golang.org/x/sync to v0.11.0
|
||||
- *(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
@ -10,7 +10,7 @@ require (
|
||||
github.com/joho/godotenv v1.5.1
|
||||
github.com/spf13/cobra v1.8.1
|
||||
gitlab.com/greyxor/slogor v1.6.1
|
||||
golang.org/x/sync v0.10.0
|
||||
golang.org/x/sync v0.11.0
|
||||
)
|
||||
|
||||
require (
|
||||
|
2
go.sum
2
go.sum
@ -93,6 +93,8 @@ golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
|
||||
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
|
||||
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
|
||||
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
||||
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
|
||||
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
||||
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
|
||||
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
|
||||
|
Loading…
x
Reference in New Issue
Block a user