feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
module sojuboy
|
|
|
|
|
|
|
|
|
|
go 1.23.0
|
|
|
|
|
|
|
|
|
|
toolchain go1.24.6
|
|
|
|
|
|
|
|
|
|
require (
|
2025-08-15 20:41:31 -05:00
|
|
|
github.com/go-shiori/go-readability v0.0.0-20250217085726-9f5bf5ca7612
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
github.com/gregdel/pushover v1.3.1
|
|
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
|
|
|
github.com/sashabaranov/go-openai v1.41.1
|
|
|
|
|
github.com/sorcix/irc v1.1.4
|
2025-08-16 20:23:12 -05:00
|
|
|
golang.org/x/net v0.35.0
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
modernc.org/sqlite v1.38.2
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2025-08-15 20:41:31 -05:00
|
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
|
|
|
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2025-08-15 20:41:31 -05:00
|
|
|
github.com/go-shiori/dom v0.0.0-20230515143342-73569d674e1c // indirect
|
|
|
|
|
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
|
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
|
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
|
|
|
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect
|
|
|
|
|
golang.org/x/sys v0.34.0 // indirect
|
2025-08-15 20:41:31 -05:00
|
|
|
golang.org/x/text v0.22.0 // indirect
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
modernc.org/libc v1.66.3 // indirect
|
|
|
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
|
|
|
modernc.org/memory v1.11.0 // indirect
|
|
|
|
|
)
|