Skip to content

Commit

Permalink
use v6 in module path, go1.23.5 (#933)
Browse files Browse the repository at this point in the history
  • Loading branch information
FZambia authored Jan 19, 2025
1 parent cf07a3e commit 9abee5b
Show file tree
Hide file tree
Showing 114 changed files with 224 additions and 224 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.4]
go-version: [1.23.5]
steps:
- name: Install Go
uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
go-version: [1.23.4]
go-version: [1.23.5]
steps:
- name: Install Go
uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ builds:
- goos: freebsd
goarch: arm64
main: .
ldflags: -s -w -X github.com/centrifugal/centrifugo/internal/build.Version={{.Version}} -X github.com/centrifugal/centrifugo/internal/build.UsageStatsEndpoint={{ .Env.STATS_ENDPOINT }} -X github.com/centrifugal/centrifugo/internal/build.UsageStatsToken={{ .Env.STATS_TOKEN }}
ldflags: -s -w -X github.com/centrifugal/centrifugo/v6/internal/build.Version={{.Version}} -X github.com/centrifugal/centrifugo/v6/internal/build.UsageStatsEndpoint={{ .Env.STATS_ENDPOINT }} -X github.com/centrifugal/centrifugo/v6/internal/build.UsageStatsToken={{ .Env.STATS_TOKEN }}
binary: centrifugo
env:
# https://github.com/goreleaser/goreleaser/issues/225
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/centrifugal/centrifugo
module github.com/centrifugal/centrifugo/v6

go 1.23.0

Expand Down
12 changes: 6 additions & 6 deletions internal/admin/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import (
"net/http"
"strings"

"github.com/centrifugal/centrifugo/internal/api"
"github.com/centrifugal/centrifugo/internal/configtypes"
"github.com/centrifugal/centrifugo/internal/middleware"
"github.com/centrifugal/centrifugo/internal/reverseproxy"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/internal/webui"
"github.com/centrifugal/centrifugo/v6/internal/api"
"github.com/centrifugal/centrifugo/v6/internal/configtypes"
"github.com/centrifugal/centrifugo/v6/internal/middleware"
"github.com/centrifugal/centrifugo/v6/internal/reverseproxy"
"github.com/centrifugal/centrifugo/v6/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/webui"

"github.com/centrifugal/centrifuge"
"github.com/gorilla/securecookie"
Expand Down
8 changes: 4 additions & 4 deletions internal/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"sync"
"time"

. "github.com/centrifugal/centrifugo/internal/apiproto"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/configtypes"
"github.com/centrifugal/centrifugo/internal/subsource"
. "github.com/centrifugal/centrifugo/v6/internal/apiproto"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/configtypes"
"github.com/centrifugal/centrifugo/v6/internal/subsource"

"github.com/centrifugal/centrifuge"
"github.com/rs/zerolog/log"
Expand Down
6 changes: 3 additions & 3 deletions internal/api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"testing"
"time"

. "github.com/centrifugal/centrifugo/internal/apiproto"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/configtypes"
. "github.com/centrifugal/centrifugo/v6/internal/apiproto"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/configtypes"

"github.com/centrifugal/centrifuge"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion internal/api/consuming.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"errors"

"github.com/centrifugal/centrifugo/internal/apiproto"
"github.com/centrifugal/centrifugo/v6/internal/apiproto"

"github.com/centrifugal/centrifuge"
"github.com/rs/zerolog/log"
Expand Down
2 changes: 1 addition & 1 deletion internal/api/consuming_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/api/consuming_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"

"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/api/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"crypto/subtle"

. "github.com/centrifugal/centrifugo/internal/apiproto"
. "github.com/centrifugal/centrifugo/v6/internal/apiproto"

"github.com/centrifugal/centrifuge"
"google.golang.org/grpc"
Expand Down
2 changes: 1 addition & 1 deletion internal/api/grpc_handler_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/api/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"net/http"

. "github.com/centrifugal/centrifugo/internal/apiproto"
. "github.com/centrifugal/centrifugo/v6/internal/apiproto"

"github.com/centrifugal/centrifuge"
"github.com/rs/zerolog/log"
Expand Down
2 changes: 1 addition & 1 deletion internal/api/handler_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/api/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"testing"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"

"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/app/cmd.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app

import (
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions internal/app/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package app
import (
"fmt"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/confighelpers"
"github.com/centrifugal/centrifugo/internal/natsbroker"
"github.com/centrifugal/centrifugo/internal/redisnatsbroker"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/confighelpers"
"github.com/centrifugal/centrifugo/v6/internal/natsbroker"
"github.com/centrifugal/centrifugo/v6/internal/redisnatsbroker"

"github.com/centrifugal/centrifuge"
"github.com/rs/zerolog/log"
Expand Down
4 changes: 2 additions & 2 deletions internal/app/graphite.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strconv"
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/metrics/graphite"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/metrics/graphite"

"github.com/centrifugal/centrifuge"
"github.com/prometheus/client_golang/prometheus"
Expand Down
8 changes: 4 additions & 4 deletions internal/app/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"strconv"
"time"

"github.com/centrifugal/centrifugo/internal/api"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/internal/unigrpc"
"github.com/centrifugal/centrifugo/v6/internal/api"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/unigrpc"

"github.com/centrifugal/centrifuge"
"github.com/rs/zerolog/log"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package app
import (
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"

"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
Expand Down
22 changes: 11 additions & 11 deletions internal/app/mux.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ import (
"strconv"
"strings"

"github.com/centrifugal/centrifugo/internal/admin"
"github.com/centrifugal/centrifugo/internal/api"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/health"
"github.com/centrifugal/centrifugo/internal/middleware"
"github.com/centrifugal/centrifugo/internal/swaggerui"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/internal/unihttpstream"
"github.com/centrifugal/centrifugo/internal/unisse"
"github.com/centrifugal/centrifugo/internal/uniws"
"github.com/centrifugal/centrifugo/internal/wt"
"github.com/centrifugal/centrifugo/v6/internal/admin"
"github.com/centrifugal/centrifugo/v6/internal/api"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/health"
"github.com/centrifugal/centrifugo/v6/internal/middleware"
"github.com/centrifugal/centrifugo/v6/internal/swaggerui"
"github.com/centrifugal/centrifugo/v6/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/unihttpstream"
"github.com/centrifugal/centrifugo/v6/internal/unisse"
"github.com/centrifugal/centrifugo/v6/internal/uniws"
"github.com/centrifugal/centrifugo/v6/internal/wt"

"github.com/centrifugal/centrifuge"
"github.com/justinas/alice"
Expand Down
4 changes: 2 additions & 2 deletions internal/app/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strconv"
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/logging"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/logging"

"github.com/centrifugal/centrifuge"
)
Expand Down
4 changes: 2 additions & 2 deletions internal/app/origin.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net/http"
"sync"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/origin"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/origin"

"github.com/rs/zerolog/log"
)
Expand Down
10 changes: 5 additions & 5 deletions internal/app/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"strings"

"github.com/centrifugal/centrifugo/internal/client"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/configtypes"
"github.com/centrifugal/centrifugo/internal/proxy"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/client"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/configtypes"
"github.com/centrifugal/centrifugo/v6/internal/proxy"
"github.com/centrifugal/centrifugo/v6/internal/tools"

"github.com/rs/zerolog/log"
)
Expand Down
28 changes: 14 additions & 14 deletions internal/app/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ import (
"syscall"
"time"

"github.com/centrifugal/centrifugo/internal/api"
"github.com/centrifugal/centrifugo/internal/build"
"github.com/centrifugal/centrifugo/internal/client"
"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/confighelpers"
"github.com/centrifugal/centrifugo/internal/consuming"
"github.com/centrifugal/centrifugo/internal/jwtverify"
"github.com/centrifugal/centrifugo/internal/logging"
"github.com/centrifugal/centrifugo/internal/notify"
"github.com/centrifugal/centrifugo/internal/service"
"github.com/centrifugal/centrifugo/internal/survey"
"github.com/centrifugal/centrifugo/internal/telemetry"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/internal/usage"
"github.com/centrifugal/centrifugo/v6/internal/api"
"github.com/centrifugal/centrifugo/v6/internal/build"
"github.com/centrifugal/centrifugo/v6/internal/client"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/confighelpers"
"github.com/centrifugal/centrifugo/v6/internal/consuming"
"github.com/centrifugal/centrifugo/v6/internal/jwtverify"
"github.com/centrifugal/centrifugo/v6/internal/logging"
"github.com/centrifugal/centrifugo/v6/internal/notify"
"github.com/centrifugal/centrifugo/v6/internal/service"
"github.com/centrifugal/centrifugo/v6/internal/survey"
"github.com/centrifugal/centrifugo/v6/internal/telemetry"
"github.com/centrifugal/centrifugo/v6/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/usage"

"github.com/centrifugal/centrifuge"
"github.com/joho/godotenv"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"sync"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"

"github.com/rs/zerolog/log"
"golang.org/x/crypto/acme"
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/checkconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions internal/cli/checksubtoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"fmt"
"os"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/confighelpers"
"github.com/centrifugal/centrifugo/internal/jwtverify"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/confighelpers"
"github.com/centrifugal/centrifugo/v6/internal/jwtverify"

"github.com/cristalhq/jwt/v5"
"github.com/spf13/cobra"
Expand Down
6 changes: 3 additions & 3 deletions internal/cli/checktoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"fmt"
"os"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/confighelpers"
"github.com/centrifugal/centrifugo/internal/jwtverify"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/confighelpers"
"github.com/centrifugal/centrifugo/v6/internal/jwtverify"

"github.com/cristalhq/jwt/v5"
"github.com/spf13/cobra"
Expand Down
4 changes: 2 additions & 2 deletions internal/cli/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"path/filepath"
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/tools"

"github.com/pelletier/go-toml/v2"
"github.com/spf13/cobra"
Expand Down
4 changes: 2 additions & 2 deletions internal/cli/defaultenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"strconv"
"strings"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/config/envconfig"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/config/envconfig"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions internal/cli/genconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/centrifugal/centrifugo/internal/config"
"github.com/centrifugal/centrifugo/internal/tools"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/tools"

"github.com/spf13/cobra"
)
Expand Down
Loading

0 comments on commit 9abee5b

Please sign in to comment.