Skip to content

Commit e01eebd

Browse files
authored
prepare to release v25 (#9391)
1 parent 951c513 commit e01eebd

File tree

398 files changed

+1123
-1125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

398 files changed

+1123
-1125
lines changed

.github/workflows/ci-dgraph-core-upgrade-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
cp dgraph/dgraph ~/go/bin/dgraph
5050
# run the core upgrade tests
5151
go test -v -timeout=120m -failfast -tags=upgrade \
52-
github.com/hypermodeinc/dgraph/v24/acl \
53-
github.com/hypermodeinc/dgraph/v24/worker \
54-
github.com/hypermodeinc/dgraph/v24/query
52+
github.com/hypermodeinc/dgraph/v25/acl \
53+
github.com/hypermodeinc/dgraph/v25/worker \
54+
github.com/hypermodeinc/dgraph/v25/query
5555
# clean up docker containers after test execution
5656
go clean -testcache
5757
# sleep

.github/workflows/ci-dgraph-system-upgrade-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
cp dgraph/dgraph ~/go/bin/dgraph
5050
# run the sytem upgrade tests
5151
go test -v -timeout=120m -failfast -tags=upgrade \
52-
github.com/hypermodeinc/dgraph/v24/systest/mutations-and-queries \
53-
github.com/hypermodeinc/dgraph/v24/systest/plugin \
54-
github.com/hypermodeinc/dgraph/v24/systest/multi-tenancy
52+
github.com/hypermodeinc/dgraph/v25/systest/mutations-and-queries \
53+
github.com/hypermodeinc/dgraph/v25/systest/plugin \
54+
github.com/hypermodeinc/dgraph/v25/systest/multi-tenancy
5555
# clean up docker containers after test execution
5656
go clean -testcache
5757
# sleep

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ delivery process.
150150

151151
Non-integration unit tests exist for many core packages that can be exercised without invoking the
152152
testing framework. For instance, to unit test the core DQL parsing package:
153-
`go test github.com/hypermodeinc/dgraph/v24/dql`.
153+
`go test github.com/hypermodeinc/dgraph/v25/dql`.
154154

155155
## Contributing
156156

acl/acl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818

1919
"github.com/dgraph-io/dgo/v250"
2020
"github.com/dgraph-io/dgo/v250/protos/api"
21-
"github.com/hypermodeinc/dgraph/v24/x"
21+
"github.com/hypermodeinc/dgraph/v25/x"
2222
)
2323

2424
func getUserAndGroup(conf *viper.Viper) (userId string, groupId string, err error) {

acl/acl_curl_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import (
1717
"github.com/golang/glog"
1818
"github.com/stretchr/testify/require"
1919

20-
"github.com/hypermodeinc/dgraph/v24/dgraphapi"
21-
"github.com/hypermodeinc/dgraph/v24/testutil"
22-
"github.com/hypermodeinc/dgraph/v24/x"
20+
"github.com/hypermodeinc/dgraph/v25/dgraphapi"
21+
"github.com/hypermodeinc/dgraph/v25/testutil"
22+
"github.com/hypermodeinc/dgraph/v25/x"
2323
)
2424

2525
func (asuite *AclTestSuite) TestCurlAuthorization() {

acl/acl_integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"github.com/stretchr/testify/require"
1717

1818
"github.com/dgraph-io/dgo/v250/protos/api"
19-
"github.com/hypermodeinc/dgraph/v24/dgraphapi"
20-
"github.com/hypermodeinc/dgraph/v24/x"
19+
"github.com/hypermodeinc/dgraph/v25/dgraphapi"
20+
"github.com/hypermodeinc/dgraph/v25/x"
2121
)
2222

2323
func (asuite *AclTestSuite) TestInvalidGetUser() {

acl/acl_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121

2222
"github.com/dgraph-io/dgo/v250"
2323
"github.com/dgraph-io/dgo/v250/protos/api"
24-
"github.com/hypermodeinc/dgraph/v24/dgraphapi"
25-
"github.com/hypermodeinc/dgraph/v24/dgraphtest"
26-
"github.com/hypermodeinc/dgraph/v24/x"
24+
"github.com/hypermodeinc/dgraph/v25/dgraphapi"
25+
"github.com/hypermodeinc/dgraph/v25/dgraphtest"
26+
"github.com/hypermodeinc/dgraph/v25/x"
2727
)
2828

2929
var (

acl/integration_test.go

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

1313
"github.com/stretchr/testify/suite"
1414

15-
"github.com/hypermodeinc/dgraph/v24/dgraphapi"
16-
"github.com/hypermodeinc/dgraph/v24/dgraphtest"
15+
"github.com/hypermodeinc/dgraph/v25/dgraphapi"
16+
"github.com/hypermodeinc/dgraph/v25/dgraphtest"
1717
)
1818

1919
type AclTestSuite struct {

acl/jwt_algo_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import (
1616
"github.com/golang-jwt/jwt/v5"
1717
"github.com/stretchr/testify/require"
1818

19-
"github.com/hypermodeinc/dgraph/v24/dgraphapi"
20-
"github.com/hypermodeinc/dgraph/v24/dgraphtest"
21-
"github.com/hypermodeinc/dgraph/v24/x"
19+
"github.com/hypermodeinc/dgraph/v25/dgraphapi"
20+
"github.com/hypermodeinc/dgraph/v25/dgraphtest"
21+
"github.com/hypermodeinc/dgraph/v25/x"
2222
)
2323

2424
func TestACLJwtAlgo(t *testing.T) {

acl/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/spf13/cobra"
1414
"github.com/spf13/viper"
1515

16-
"github.com/hypermodeinc/dgraph/v24/x"
16+
"github.com/hypermodeinc/dgraph/v25/x"
1717
)
1818

1919
var (

0 commit comments

Comments
 (0)