aboutsummaryrefslogtreecommitdiff
path: root/go.mod
AgeCommit message (Collapse)AuthorFilesLines
2021-08-17update go mod to go 1.17Chris Lu1-1/+84
2021-08-17update fuse versionChris Lu1-2/+2
2021-08-17gccgo buildKonstantin Lebedev1-1/+2
2021-08-17mount: use pooled goroutine instead of round-robinChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/2263
2021-08-17The IEEE assembler optimizations has been submitted and will be part of the ↵Konstantin Lebedev1-2/+1
Go 1.6 standard library. https://github.com/klauspost/crc32
2021-08-12gocql updateChris Lu1-2/+3
related to https://github.com/chrislusf/seaweedfs/issues/2246
2021-08-03Add autocompletebyunghwa.yun1-0/+1
2021-07-22fix security alert on github.com/dgrijalva/jwt-goChris Lu1-1/+1
resolve https://github.com/chrislusf/seaweedfs/security/dependabot/go.mod/github.com%2Fdgrijalva%2Fjwt-go/open
2021-07-22resolve gjson security alertChris Lu1-2/+2
resolve https://github.com/chrislusf/seaweedfs/security/dependabot/go.mod/github.com%2Ftidwall%2Fgjson/open
2021-07-22update mongodb lib due to security warningChris Lu1-1/+1
2021-07-01mount: recursively rename locallyChris Lu1-1/+1
2021-06-23adjust log levelChris Lu1-8/+0
2021-06-22Add process metrics of weed itselfJonas Falck1-5/+5
2021-06-03mount: support macfuse 4.xChris Lu1-2/+1
2021-05-24 - object write cache controlKonstantin Lebedev1-2/+3
- object write expires
2021-05-23filer: Support sqlite as filer meta storeChris Lu1-3/+3
2021-05-11fix possible nilChris Lu1-1/+1
2021-05-10Revert "Revert "Merge pull request #2027 from bingoohuang/master""Chris Lu1-3/+1
This reverts commit d74cdf011553ae073d524a080f65f418c76ccaa7.
2021-05-07fuse: avoid nil when invalidating entryChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/2055
2021-05-05revert PR #1903 avoid http error: superfluous response.WriteHeaderChris Lu1-2/+2
2021-04-30Revert "Merge pull request #2027 from bingoohuang/master"2.42Chris Lu1-1/+3
Need to revert because docker image build failed. The docker apk package only has go 1.15.
2021-04-27promote to go:embed instead of github.com/rakyll/statikbingoohuang1-3/+1
2021-04-18fuse 1.1.4Chris Lu1-2/+2
2021-04-18WIPChris Lu1-1/+1
no memory issue if some directory is removed, it may have this error $ rm -Rf ~/tmp/m2/s1 rm: fts_read: Device not configured
2021-04-12Merge branch 'upstreamMaster' into iam_handlersKonstantin Lebedev1-1/+1
2021-04-10GetUserPolicyKonstantin Lebedev1-0/+1
2021-04-10raft: fix possible nilChris Lu1-1/+1
panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x1962c8a] goroutine 68239935 [running]: github.com/chrislusf/raft.(*LogEntry).Term(...) /home/travis/gopath/pkg/mod/github.com/chrislusf/raft@v1.0.4/log_entry.go:59 github.com/chrislusf/raft.(*server).TakeSnapshot(0xc00014f320, 0xc028b5a600, 0xc03995bc00) /home/travis/gopath/pkg/mod/github.com/chrislusf/raft@v1.0.4/server.go:1276 +0x50a github.com/chrislusf/raft.(*server).maybeTakeSnapshot.func1(0xc00014f320) /home/travis/gopath/pkg/mod/github.com/chrislusf/raft@v1.0.4/server.go:1221 +0x5b created by github.com/chrislusf/raft.(*server).maybeTakeSnapshot /home/travis/gopath/pkg/mod/github.com/chrislusf/raft@v1.0.4/server.go:1219 +0x98
2021-04-07upgrade raft to v1.0.5Chris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1974
2021-03-25add a snowflake sequencer as more robust fid generator, but less ↵李海1-0/+1
compressable than small auto-inc id
2021-03-15avoid http error: superfluous response.WriteHeaderKonstantin Lebedev1-2/+2
https://github.com/chrislusf/seaweedfs/issues/1838
2021-03-12upgrade fuse version, add batch forgetChris Lu1-1/+1
2021-03-10Update go.modChris Lu1-0/+1
2021-03-08update pg to latest versionYoni Nakache1-1/+1
currently, it is an old 2+ years driver
2021-02-12use fasthttp lib to readChris Lu1-2/+3
2021-02-03RabbitMQ delay retry with Dead Letter ExchangeKonstantin Lebedev1-10/+13
https://github.com/chrislusf/seaweedfs/issues/1773 https://github.com/google/go-cloud/issues/2952
2021-01-27mount: skip daemon timeout on FreeBSDChris Lu1-1/+1
2021-01-26mount: properly invalidate kernel node cache entryChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1752
2021-01-20mount: limit background requests and congestion thresholdChris Lu1-1/+1
2021-01-11Revert "Revert "filer store: redis module upgrade""Chris Lu1-4/+2
This reverts commit dd0171e35cb032781b703bc8ae95d8a21f59ea76.
2021-01-11Revert "filer store: redis module upgrade"Chris Lu1-2/+4
This reverts commit 40161c9cec3b8a0ed16bb355c6d6f3e7f23a094c.
2021-01-08update ccache versionChris Lu1-1/+1
2021-01-08filer store: redis module upgradeChris Lu1-4/+2
2021-01-06fix s3 upload "use of closed network connection"yuwang1-1/+1
2021-01-03address raft nil snapshot during flushChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1718
2021-01-02worksChris Lu1-0/+1
performance seems about the same as leveldb for insert entries
2020-12-23Update go.modChris Lu1-1/+1
2020-12-23seems compilingChris Lu1-0/+1
2020-12-10check cross device rename errorChris Lu1-1/+1
2020-11-21remove zstdChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1629
2020-11-15load filer conf and match by prefixChris Lu1-0/+5