From 3bbfcd5d598f0aa0f4d1f840f3ba7df4a74dbe5c Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sat, 27 Dec 2025 16:08:08 +0700 Subject: Release rescached v4.4.4 (2025-12-27) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This release mostly chores. **💧 all: replace golangci-lint with "go vet"** **💧 all: replace debug package with internal Debug variabel** The [debug.Value] will be removed in the next release of pakakeh.go. **💧 internal/cmd/gocheck: add internal static analyzers** Instead of using binary fieldalignment and shadow, run them by creating command that call the same Analyzer internally. This analyzers help finding possible panic on httpd.go. **💧 make: remove build task from install tasks** The build task should be run by user, while install tasks run by root. If we make build depends on install then the binaries will rebuild by user root. **💧 Makefile: do not run "embed" when building rescached** The embed command should be run once when the assets file in _www changes. **💧 all: cleaning README and expand the index in documentation** In the README, we remove the EXIT STATUS and AUTHOR sections. Those sections are not informative. In the index, we expand the preamble to include short information about what is rescached. **💧 make: fix building resolver** Seems like the "go tool doc" subcommand has been removed on latest release of Go. --- go.mod | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index ceff384..93179f5 100644 --- a/go.mod +++ b/go.mod @@ -3,23 +3,24 @@ module git.sr.ht/~shulhan/rescached -go 1.23.4 +go 1.24.0 require ( - git.sr.ht/~shulhan/ciigo v0.15.1 - git.sr.ht/~shulhan/pakakeh.go v0.60.0 + git.sr.ht/~shulhan/ciigo v0.15.3 + git.sr.ht/~shulhan/pakakeh.go v0.60.2 ) require ( - git.sr.ht/~shulhan/asciidoctor-go v0.6.2 // indirect - github.com/yuin/goldmark v1.7.8 // indirect + git.sr.ht/~shulhan/asciidoctor-go v0.7.2 // indirect + github.com/kr/text v0.2.0 // indirect + github.com/yuin/goldmark v1.7.13 // indirect github.com/yuin/goldmark-meta v1.1.0 // indirect - golang.org/x/exp v0.0.0-20250207012021-f9890c6ad9f3 // indirect - golang.org/x/mod v0.22.0 // indirect - golang.org/x/net v0.34.0 // indirect - golang.org/x/sync v0.10.0 // indirect - golang.org/x/sys v0.30.0 // indirect - golang.org/x/tools v0.29.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/sync v0.19.0 // indirect + golang.org/x/sys v0.39.0 // indirect + golang.org/x/tools v0.40.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) -- cgit v1.3