Skip to content

Commit e84ad1f

Browse files
authored
Merge pull request #12 from tigrisdata/main
chore: Release
2 parents 27ae5fa + 37edaa9 commit e84ad1f

File tree

9 files changed

+271
-180
lines changed

9 files changed

+271
-180
lines changed

.github/workflows/commit_msg.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Lint PR"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- reopened
10+
11+
jobs:
12+
main:
13+
name: Validate PR title
14+
runs-on: ubuntu-latest
15+
permissions:
16+
pull-requests: read
17+
steps:
18+
- uses: amannn/action-semantic-pull-request@v5
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ archives:
2020
- format_overrides:
2121
- goos: windows
2222
formats: [ 'zip' ]
23-
name_template: "tigrisfs_tigris_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
23+
name_template: "tigrisfs_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
2424

2525
checksum:
2626
name_template: 'checksums.txt'
@@ -33,7 +33,7 @@ nfpms:
3333
- apk
3434
- deb
3535
- rpm
36-
file_name_template: "tigrisfs_tigris_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
36+
file_name_template: "tigrisfs_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
3737
contents:
3838
- src: pkg/[email protected]
3939
dst: /lib/systemd/system/[email protected]

CONTRIBUTING.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Contributing to TigrisFS
2+
3+
Thanks for your interest in contributing to **TigrisFS**!
4+
5+
## Setup
6+
7+
To set up the project locally:
8+
9+
```bash
10+
make setup
11+
```
12+
This will install all the necessary dependencies and set repositories commit message hook.
13+
14+
## Running Tests
15+
Run unit tests:
16+
17+
```bash
18+
make run-lint
19+
make run-test
20+
make run-cluster-test
21+
make run-xfstests
22+
```
23+
24+
## We use Conventional Commits
25+
26+
We follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification for commit messages.
27+
This helps in generating a changelog and understanding the history of changes.
28+
29+
Examples:
30+
31+
* feat(fs): add support for compressed file blocks
32+
* fix(cluster): handle node reconnection errors
33+
* chore: update dependencies
34+
35+
Common prefixes:
36+
37+
* feat – new feature
38+
* fix – bug fix
39+
* docs – documentation only changes
40+
* style – formatting, missing semicolons, etc.
41+
* refactor – code change that neither fixes a bug nor adds a feature
42+
* perf – performance improvement
43+
* test – adding or fixing tests
44+
* chore – tooling or maintenance
45+
46+
## Pull Requests
47+
48+
Fork the repo and create your branch:
49+
50+
```bash
51+
git checkout -b feat/my-feature
52+
```
53+
54+
Make your changes and commit using Conventional Commits.
55+
56+
Run the tests to ensure nothing breaks.
57+
58+
Push to your fork and open a Pull Request.

go.mod

Lines changed: 47 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -3,100 +3,99 @@ module github.com/tigrisdata/tigrisfs
33
go 1.24
44

55
require (
6-
cloud.google.com/go/storage v1.50.0
6+
cloud.google.com/go/storage v1.51.0
77
github.com/Azure/azure-pipeline-go v0.2.3
88
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
99
github.com/Azure/azure-storage-blob-go v0.15.0
10-
github.com/Azure/go-autorest/autorest v0.11.29
10+
github.com/Azure/go-autorest/autorest v0.11.30
1111
github.com/Azure/go-autorest/autorest/adal v0.9.24
1212
github.com/Azure/go-autorest/autorest/azure/auth v0.5.13
13-
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6
13+
github.com/Azure/go-autorest/autorest/azure/cli v0.4.7
1414
github.com/aws/aws-sdk-go v1.55.6
1515
github.com/gofrs/uuid v4.4.0+incompatible
1616
github.com/golang/protobuf v1.5.4
1717
github.com/google/uuid v1.6.0
18-
github.com/jacobsa/fuse v0.0.0-20241025064006-8ccd61173b05
18+
github.com/jacobsa/fuse v0.0.0-20250322085143-0e677feb56d9
1919
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
2020
github.com/mitchellh/go-homedir v1.1.0
2121
github.com/pkg/xattr v0.4.9
22-
github.com/rs/zerolog v1.33.0
22+
github.com/rs/zerolog v1.34.0
2323
github.com/sevlyar/go-daemon v0.1.6
2424
github.com/shirou/gopsutil v3.21.11+incompatible
25-
github.com/sirupsen/logrus v1.9.3
2625
github.com/stretchr/testify v1.10.0
2726
github.com/tidwall/btree v1.7.0
2827
github.com/urfave/cli v1.22.16
2928
github.com/winfsp/cgofuse v1.6.0
30-
golang.org/x/sync v0.10.0
31-
golang.org/x/sys v0.29.0
32-
google.golang.org/api v0.217.0
33-
google.golang.org/grpc v1.69.4
34-
google.golang.org/protobuf v1.36.3
29+
golang.org/x/sync v0.13.0
30+
golang.org/x/sys v0.32.0
31+
google.golang.org/api v0.228.0
32+
google.golang.org/grpc v1.71.1
33+
google.golang.org/protobuf v1.36.6
3534
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
3635
gopkg.in/ini.v1 v1.67.0
3736
)
3837

3938
require (
40-
cel.dev/expr v0.19.1 // indirect
41-
cloud.google.com/go v0.118.0 // indirect
42-
cloud.google.com/go/auth v0.14.0 // indirect
43-
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
39+
cel.dev/expr v0.23.1 // indirect
40+
cloud.google.com/go v0.120.0 // indirect
41+
cloud.google.com/go/auth v0.15.0 // indirect
42+
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
4443
cloud.google.com/go/compute/metadata v0.6.0 // indirect
45-
cloud.google.com/go/iam v1.3.1 // indirect
46-
cloud.google.com/go/monitoring v1.23.0 // indirect
44+
cloud.google.com/go/iam v1.5.0 // indirect
45+
cloud.google.com/go/monitoring v1.24.1 // indirect
4746
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
48-
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
49-
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
50-
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
51-
github.com/Azure/go-autorest/logger v0.2.1 // indirect
52-
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
53-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
54-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.49.0 // indirect
55-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.49.0 // indirect
47+
github.com/Azure/go-autorest/autorest/date v0.3.1 // indirect
48+
github.com/Azure/go-autorest/autorest/to v0.4.1 // indirect
49+
github.com/Azure/go-autorest/autorest/validation v0.3.2 // indirect
50+
github.com/Azure/go-autorest/logger v0.2.2 // indirect
51+
github.com/Azure/go-autorest/tracing v0.6.1 // indirect
52+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
53+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
54+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
5655
github.com/cespare/xxhash/v2 v2.3.0 // indirect
57-
github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3 // indirect
56+
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
5857
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
5958
github.com/davecgh/go-spew v1.1.1 // indirect
6059
github.com/dimchansky/utfbom v1.1.1 // indirect
61-
github.com/envoyproxy/go-control-plane/envoy v1.32.3 // indirect
62-
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
60+
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
61+
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
6362
github.com/felixge/httpsnoop v1.0.4 // indirect
6463
github.com/go-logr/logr v1.4.2 // indirect
6564
github.com/go-logr/stdr v1.2.2 // indirect
6665
github.com/go-ole/go-ole v1.3.0 // indirect
67-
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
66+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
6867
github.com/google/s2a-go v0.1.9 // indirect
69-
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
68+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
7069
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
7170
github.com/jmespath/go-jmespath v0.4.0 // indirect
7271
github.com/kr/pretty v0.3.1 // indirect
7372
github.com/kr/text v0.2.0 // indirect
74-
github.com/mattn/go-colorable v0.1.13 // indirect
73+
github.com/mattn/go-colorable v0.1.14 // indirect
7574
github.com/mattn/go-ieproxy v0.0.12 // indirect
76-
github.com/mattn/go-isatty v0.0.19 // indirect
75+
github.com/mattn/go-isatty v0.0.20 // indirect
7776
github.com/pkg/errors v0.9.1 // indirect
7877
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
7978
github.com/pmezard/go-difflib v1.0.0 // indirect
8079
github.com/rogpeppe/go-internal v1.13.1 // indirect
8180
github.com/russross/blackfriday/v2 v2.1.0 // indirect
8281
github.com/yusufpapurcu/wmi v1.2.4 // indirect
8382
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
84-
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
85-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
86-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
87-
go.opentelemetry.io/otel v1.34.0 // indirect
88-
go.opentelemetry.io/otel/metric v1.34.0 // indirect
89-
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
90-
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
91-
go.opentelemetry.io/otel/trace v1.34.0 // indirect
92-
golang.org/x/crypto v0.32.0 // indirect
93-
golang.org/x/net v0.34.0 // indirect
94-
golang.org/x/oauth2 v0.25.0 // indirect
95-
golang.org/x/text v0.21.0 // indirect
96-
golang.org/x/time v0.9.0 // indirect
97-
google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f // indirect
98-
google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f // indirect
99-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
83+
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
84+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
85+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
86+
go.opentelemetry.io/otel v1.35.0 // indirect
87+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
88+
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
89+
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
90+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
91+
golang.org/x/crypto v0.37.0 // indirect
92+
golang.org/x/net v0.39.0 // indirect
93+
golang.org/x/oauth2 v0.29.0 // indirect
94+
golang.org/x/text v0.24.0 // indirect
95+
golang.org/x/time v0.11.0 // indirect
96+
google.golang.org/genproto v0.0.0-20250407143221-ac9807e6c755 // indirect
97+
google.golang.org/genproto/googleapis/api v0.0.0-20250407143221-ac9807e6c755 // indirect
98+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250407143221-ac9807e6c755 // indirect
10099
gopkg.in/yaml.v3 v3.0.1 // indirect
101100
)
102101

0 commit comments

Comments
 (0)