diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-09 21:06:42 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-09 21:06:42 +0700 |
| commit | 7110b36c65969ed5065e55ad66faeb93995ea54c (patch) | |
| tree | 72e76a4bfcf1f0bf7457ad6f3cbcc23c8c3c646e /go.mod | |
| parent | 97bdd0d7b8411135c67d78441e73b8e2d6aff170 (diff) | |
| download | rescached-7110b36c65969ed5065e55ad66faeb93995ea54c.tar.xz | |
go.mod: update share and ciigo modules
= Release share v0.50.1 (2023-11-05)
This release bring many enhancements to "lib/memfs", a library for
caching file system in memory.
=== Enhancements
* lib/memfs: return nil in AddChild if file not exist
* lib/memfs: quote the path in the returned error
* lib/memfs: add method Child to Node
* lib/memfs: call the Init method in the embedded file
* lib/memfs: include empty directory
* lib/memfs: re-scan directory content on Node’s Update
= Release share v0.50.0 (2023-10-04)
This release bring many enhancements thanks to linters like revive,
fieldaligment, and shadow.
This release also replace "math/rand.Seed" with "crypto/rand".
Since Go 1.20 the "math/rand.Seed" is considered deprecated (the initial
value of rand is seeded automatically, not zero).
Now, it is the time to replace "math/rand" with more secure random
number generator, from "crypto/rand".
This changes affect tests in package "lib/email", "lib/http", and
"lib/stmp".
= Release ciigo v0.10.1 (2023-11-07)
In this release, update on asciidoctor-go add new features to parse
unordered list with '-' and some bug fixes related to rendering list.
The update on share module fix for permission error when scanning using
memfs and HTTP redirect for request to directory that does not end with
slash.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -6,16 +6,16 @@ module github.com/shuLhan/rescached-go/v4 go 1.20 require ( - git.sr.ht/~shulhan/ciigo v0.10.0 - github.com/shuLhan/share v0.49.1 + git.sr.ht/~shulhan/ciigo v0.10.1 + github.com/shuLhan/share v0.50.2-0.20231107202614-fdb1c05d62a2 ) require ( - git.sr.ht/~shulhan/asciidoctor-go v0.5.0 // indirect - github.com/yuin/goldmark v1.5.6 // indirect + git.sr.ht/~shulhan/asciidoctor-go v0.5.1-0.20231105052733-3d54e38bac45 // indirect + github.com/yuin/goldmark v1.6.0 // indirect github.com/yuin/goldmark-meta v1.1.0 // indirect - golang.org/x/net v0.15.0 // indirect - golang.org/x/sys v0.12.0 // indirect + golang.org/x/net v0.17.0 // indirect + golang.org/x/sys v0.14.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) |
