diff options
| author | Shulhan <ms@kilabit.info> | 2026-02-10 12:17:39 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-02-10 12:17:39 +0700 |
| commit | 8fd9d5e3d41d1352c98e42a04fbeab0bddac0674 (patch) | |
| tree | 3bfd3f72e854f819e81e914a3a44befb45066871 /go.mod | |
| parent | fbad5db9b998ca64feaffee78ba680300d3a52a6 (diff) | |
| download | lilin-dev.tar.xz | |
**🪵 all: rename notif field "webhook_url" to "remote_url"
These changes is to minimize duplicate field on "notif" section, so
different kind of notif can use the same "remote_url" value.
**🌱 all: support sending notification to SMTP server (email)**
In the main configuration, lilin.cfg, user now can add "notif" section with
kind "smtp" to send notification using user's email.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,18 +1,18 @@ -// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> // SPDX-License-Identifier: GPL-3.0-only +// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> module git.sr.ht/~shulhan/lilin -go 1.24.0 +go 1.25.0 -require git.sr.ht/~shulhan/pakakeh.go v0.60.2 +require git.sr.ht/~shulhan/pakakeh.go v0.61.0 require ( - golang.org/x/crypto v0.46.0 // indirect - golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect - golang.org/x/mod v0.31.0 // indirect - golang.org/x/net v0.48.0 // indirect + golang.org/x/crypto v0.47.0 // indirect + golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect + golang.org/x/mod v0.32.0 // indirect + golang.org/x/net v0.49.0 // indirect golang.org/x/sync v0.19.0 // indirect - golang.org/x/sys v0.39.0 // indirect - golang.org/x/tools v0.40.0 // indirect + golang.org/x/sys v0.40.0 // indirect + golang.org/x/tools v0.41.0 // indirect ) |
