Skip to content

Commit 79fa7c7

Browse files
authored
Merge pull request #41 from gitopia/feature/storage
Configure git server host based on latency check of active providers
2 parents 1d059cf + bd87220 commit 79fa7c7

File tree

19 files changed

+278
-223
lines changed

19 files changed

+278
-223
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
build
1+
build
2+
.DS_Store

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes will be documented here.
44

5+
## [v2.0.0] - 2025-09-08
6+
7+
- upgrade gitopia version to v6.0.0 and gitopia-go version to v0.7.0
8+
- automatic selection of storage provider with the least latency
9+
- add liveness check for storage providers and remove gitserver host from default config
10+
- handle lfs url config using inline configuration removing .lfsconfig dependency
11+
- fix clone of lfs repositories
12+
- minimal logging improvements and redirect git command stdout to stderr to avoid protocol issues
13+
- pass current state of repository packfile in set branch and tag requests
14+
- approve packfile update and lfs object updates in remote helper
15+
- prevent duplicate git hooks calls inside remote helper and improve code to do single push instead of multiple push calls for each ref update
16+
- git push request now goes to storage provider even for delete branch or tag operations
17+
518
## [v1.10.0] - 2024-12-02
619

720
- upgrade gitopia version to v5.1.0

cmd/git-gitopia/lfs/init.go

Lines changed: 0 additions & 98 deletions
This file was deleted.

cmd/git-gitopia/lfs/root.go

Lines changed: 0 additions & 18 deletions
This file was deleted.

cmd/git-gitopia/root.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package main
22

33
import (
44
"github.com/cosmos/cosmos-sdk/client/keys"
5-
"github.com/gitopia/git-remote-gitopia/cmd/git-gitopia/lfs"
65
"github.com/gitopia/gitopia-go"
76
"github.com/spf13/cobra"
87
)
@@ -16,7 +15,6 @@ func RootCommand() *cobra.Command {
1615
},
1716
}
1817
cmd.AddCommand(keys.Commands("."))
19-
cmd.AddCommand(lfs.Commands())
2018

2119
return cmd
2220
}

0 commit comments

Comments
 (0)