Skip to content

Commit a559172

Browse files
committed
feat: update module to v3 (breaking change - semantic versioning)
1 parent e4e23ff commit a559172

21 files changed

+31
-31
lines changed

cmd/reverseproxy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"flag"
55
"os"
66

7-
"github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure"
7+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure"
88
)
99

1010
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/janmbaco/go-reverseproxy-ssl
1+
module github.com/janmbaco/go-reverseproxy-ssl/v3
22

33
go 1.25
44

internal/application/hosts_resolver/virtualhost_resolver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
"github.com/improbable-eng/grpc-web/go/grpcweb"
88
"github.com/janmbaco/go-infrastructure/v2/dependencyinjection"
9-
"github.com/janmbaco/go-reverseproxy-ssl/internal/domain"
10-
"github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/grpcutil"
9+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/domain"
10+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/grpcutil"
1111
"google.golang.org/grpc"
1212
)
1313

internal/application/hosts_resolver/virtualhost_resolver_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"testing"
55

66
"github.com/janmbaco/go-infrastructure/v2/dependencyinjection"
7-
"github.com/janmbaco/go-reverseproxy-ssl/internal/domain"
8-
"github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/grpcutil"
9-
"github.com/janmbaco/go-reverseproxy-ssl/internal/mocks"
7+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/domain"
8+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/grpcutil"
9+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/mocks"
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212
)

internal/application/reverse_proxy_configurator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77

88
"github.com/janmbaco/go-infrastructure/v2/configuration"
99
"github.com/janmbaco/go-infrastructure/v2/server"
10-
"github.com/janmbaco/go-reverseproxy-ssl/internal/domain"
11-
certs "github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/certificates"
10+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/domain"
11+
certs "github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/certificates"
1212
"golang.org/x/crypto/acme/autocert"
1313
)
1414

internal/application/server_state.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net/http"
55
"sync"
66

7-
"github.com/janmbaco/go-reverseproxy-ssl/internal/domain"
7+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/domain"
88
"github.com/jinzhu/copier"
99
)
1010

internal/application/server_state_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sync"
66
"testing"
77

8-
"github.com/janmbaco/go-reverseproxy-ssl/internal/domain"
8+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/domain"
99
"github.com/stretchr/testify/assert"
1010
)
1111

internal/domain/clientcertificatehost.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package domain
22

33
import (
4-
certs "github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/certificates"
4+
certs "github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/certificates"
55
)
66

77
// ClientCertificateHost is used to configure a simple virtual host using TLS client communication.

internal/domain/clientcertificatehost_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package domain
33
import (
44
"testing"
55

6-
certs "github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/certificates"
6+
certs "github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/certificates"
77
"github.com/stretchr/testify/assert"
88
)
99

internal/domain/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
"github.com/janmbaco/go-reverseproxy-ssl/internal/infrastructure/grpcutil"
7+
"github.com/janmbaco/go-reverseproxy-ssl/v3/internal/infrastructure/grpcutil"
88
"github.com/stretchr/testify/assert"
99
)
1010

0 commit comments

Comments
 (0)