Skip to content

Commit 9d010a1

Browse files
committed
merge prerelease branch
1 parent 69d06e4 commit 9d010a1

25 files changed

+42
-42
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/launchdarkly/go-sdk-common/v3
33
go 1.18
44

55
require (
6-
github.com/launchdarkly/go-jsonstream/v2 v2.0.0
6+
github.com/launchdarkly/go-jsonstream/v3 v3.0.0
77
github.com/launchdarkly/go-test-helpers/v3 v3.0.1
88
github.com/mailru/easyjson v0.7.6
99
github.com/stretchr/testify v1.6.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
33
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
44
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
55
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
6-
github.com/launchdarkly/go-jsonstream/v2 v2.0.0 h1:5NBbJmQAiUVVfAGR6tPuMITGO2+8mxLD0Azyeqgq5Yw=
7-
github.com/launchdarkly/go-jsonstream/v2 v2.0.0/go.mod h1:8WhgeCtJdsc7VXg7tSzQmCYnw+nRAo5ReOLhVYcLiJk=
6+
github.com/launchdarkly/go-jsonstream/v3 v3.0.0 h1:qJF/WI09EUJ7kSpmP5d1Rhc81NQdYUhP17McKfUq17E=
7+
github.com/launchdarkly/go-jsonstream/v3 v3.0.0/go.mod h1:/1Gyml6fnD309JOvunOSfyysWbZ/ZzcA120gF/cQtC4=
88
github.com/launchdarkly/go-test-helpers/v3 v3.0.1 h1:Z4lUVrh7+hIvL47KVjEBE/owbqqjKUEYTp4aBX/5OZM=
99
github.com/launchdarkly/go-test-helpers/v3 v3.0.1/go.mod h1:u2ZvJlc/DDJTFrshWW50tWMZHLVYXofuSHUfTU/eIwM=
1010
github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA=

ldattr/ref.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/launchdarkly/go-sdk-common/v3/lderrors"
99
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
1010

11-
"github.com/launchdarkly/go-jsonstream/v2/jreader"
11+
"github.com/launchdarkly/go-jsonstream/v3/jreader"
1212
)
1313

1414
// Ref is an attribute name or path expression identifying a value within a Context.

ldcontext/context_easyjson.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/launchdarkly/go-sdk-common/v3/lderrors"
99
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
1010

11-
"github.com/launchdarkly/go-jsonstream/v2/jwriter"
11+
"github.com/launchdarkly/go-jsonstream/v3/jwriter"
1212

1313
"github.com/mailru/easyjson/jlexer"
1414
ej_jwriter "github.com/mailru/easyjson/jwriter"
@@ -36,7 +36,7 @@ import (
3636
// update both context_unmarshaling.go and context_easyjson.go. Our unit tests run the same test
3737
// data against both implementations to verify that they are in sync.
3838
//
39-
// For more information, see: https://github.com/launchdarkly/go-jsonstream/v2
39+
// For more information, see: https://github.com/launchdarkly/go-jsonstream/v3
4040

4141
// Arbitrary preallocation size that's likely to be longer than we will need for private/redacted
4242
// attribute lists, to minimize reallocations during unmarshaling.

ldcontext/context_marshaling.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ldcontext
33
import (
44
"github.com/launchdarkly/go-sdk-common/v3/ldattr"
55

6-
"github.com/launchdarkly/go-jsonstream/v2/jwriter"
6+
"github.com/launchdarkly/go-jsonstream/v3/jwriter"
77
)
88

99
// MarshalJSON provides JSON serialization for Context when using json.MarshalJSON.

ldcontext/context_marshaling_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
1010
"github.com/launchdarkly/go-test-helpers/v3/jsonhelpers"
1111

12-
"github.com/launchdarkly/go-jsonstream/v2/jwriter"
12+
"github.com/launchdarkly/go-jsonstream/v3/jwriter"
1313

1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"

ldcontext/context_serialization.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package ldcontext
22

33
import (
4-
"github.com/launchdarkly/go-jsonstream/v2/jreader"
5-
"github.com/launchdarkly/go-jsonstream/v2/jwriter"
4+
"github.com/launchdarkly/go-jsonstream/v3/jreader"
5+
"github.com/launchdarkly/go-jsonstream/v3/jwriter"
66
)
77

88
// Note: other ContextSerialization methods are in the conditionally-compiled file

ldcontext/context_unmarshaling.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/launchdarkly/go-sdk-common/v3/lderrors"
66
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
77

8-
"github.com/launchdarkly/go-jsonstream/v2/jreader"
8+
"github.com/launchdarkly/go-jsonstream/v3/jreader"
99
)
1010

1111
// See internAttributeNameIfPossible().

ldcontext/context_unmarshaling_test.go

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

99
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
1010

11-
"github.com/launchdarkly/go-jsonstream/v2/jreader"
11+
"github.com/launchdarkly/go-jsonstream/v3/jreader"
1212

1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"

ldreason/reason.go

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

66
"github.com/launchdarkly/go-sdk-common/v3/ldvalue"
77

8-
"github.com/launchdarkly/go-jsonstream/v2/jreader"
9-
"github.com/launchdarkly/go-jsonstream/v2/jwriter"
8+
"github.com/launchdarkly/go-jsonstream/v3/jreader"
9+
"github.com/launchdarkly/go-jsonstream/v3/jwriter"
1010
)
1111

1212
// EvalReasonKind defines the possible values of EvaluationReason.GetKind().

0 commit comments

Comments
 (0)