Skip to content

Commit c0a3add

Browse files
committed
chore: migrate module path to github.com/Basekick-Labs/msgpack/v6
- Change go.mod module from vmihailenco/msgpack/v5 to Basekick-Labs/msgpack/v6 - Update all internal imports across 23 Go files - Update extra/msgpappengine submodule to match (go 1.26, v6 path)
1 parent e88b838 commit c0a3add

25 files changed

Lines changed: 30 additions & 30 deletions

bench_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/vmihailenco/msgpack/v5"
11+
"github.com/Basekick-Labs/msgpack/v6"
1212
)
1313

1414
func BenchmarkDiscard(b *testing.B) {

decode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"time"
1111

12-
"github.com/vmihailenco/msgpack/v5/msgpcode"
12+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
1313
)
1414

1515
const (

decode_map.go

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

8-
"github.com/vmihailenco/msgpack/v5/msgpcode"
8+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
99
)
1010

1111
var errArrayStruct = errors.New("msgpack: number of fields in array-encoded struct has changed")

decode_number.go

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

8-
"github.com/vmihailenco/msgpack/v5/msgpcode"
8+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
99
)
1010

1111
func (d *Decoder) skipN(n int) error {

decode_query.go

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

8-
"github.com/vmihailenco/msgpack/v5/msgpcode"
8+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
99
)
1010

1111
type queryResult struct {

decode_slice.go

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

7-
"github.com/vmihailenco/msgpack/v5/msgpcode"
7+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
88
)
99

1010
var (

decode_string.go

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

7-
"github.com/vmihailenco/msgpack/v5/msgpcode"
7+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
88
)
99

1010
func (d *Decoder) bytesLen(c byte) (int, error) {

decode_value.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"reflect"
88
"sync"
99

10-
"github.com/vmihailenco/msgpack/v5/msgpcode"
10+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
1111
)
1212

1313
var recBufPool = sync.Pool{

encode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"github.com/vmihailenco/msgpack/v5/msgpcode"
9+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
1010
)
1111

1212
const (

encode_map.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sort"
77
"sync"
88

9-
"github.com/vmihailenco/msgpack/v5/msgpcode"
9+
"github.com/Basekick-Labs/msgpack/v6/msgpcode"
1010
)
1111

1212
var sortedKeysPool = sync.Pool{

0 commit comments

Comments
 (0)