Skip to content

Commit 4179a02

Browse files
authored
Merge pull request #339 from splitio/impression-properties
[FME-11994] Release Impression properties
2 parents 391f43c + 0a3b891 commit 4179a02

Some content is hidden

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

84 files changed

+748
-232
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
5.12.0 (Jan 2, 2025)
2+
- Split Proxy:
3+
- Added support for new impression properties to be appended to the impressions sent to the Split backend. Read more in our docs.
4+
- Split-Sync:
5+
- Added support for new impression properties to be appended to the impressions sent to the Split backend. Read more in our docs.
6+
17
5.11.1 (Dec 16, 2025)
28
- Fixed vulnerabilities:
39
- Updated golang image to 1.24.11

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/gin-gonic/gin v1.10.1
99
github.com/google/uuid v1.3.0
1010
github.com/splitio/gincache v1.0.1
11-
github.com/splitio/go-split-commons/v8 v8.0.0
11+
github.com/splitio/go-split-commons/v9 v9.1.0
1212
github.com/splitio/go-toolkit/v5 v5.4.1
1313
github.com/stretchr/testify v1.11.1
1414
go.etcd.io/bbolt v1.3.6

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ github.com/rogpeppe/go-internal v1.8.0 h1:FCbCCtXNOY3UtUuHUYaghJg4y7Fd14rXifAYUA
7474
github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
7575
github.com/splitio/gincache v1.0.1 h1:dLYdANY/BqH4KcUMCe/LluLyV5WtuE/LEdQWRE06IXU=
7676
github.com/splitio/gincache v1.0.1/go.mod h1:CcgJDSM9Af75kyBH0724v55URVwMBuSj5x1eCWIOECY=
77-
github.com/splitio/go-split-commons/v8 v8.0.0 h1:wLk5eT6WU2LfxtaWG3ZHlTbNMGWP2eYsZTb1o+tFpkI=
78-
github.com/splitio/go-split-commons/v8 v8.0.0/go.mod h1:vgRGPn0s4RC9/zp1nIn4KeeIEj/K3iXE2fxYQbCk/WI=
77+
github.com/splitio/go-split-commons/v9 v9.1.0 h1:sfmPMuEDTtbIOJ+MeWNbfYl2/xKB/25d4/J95OUD+X0=
78+
github.com/splitio/go-split-commons/v9 v9.1.0/go.mod h1:gJuaKo04Swlh4w9C1b2jBAqAdFxEd/Vpd8jnFINOeDY=
7979
github.com/splitio/go-toolkit/v5 v5.4.1 h1:srTyvDBJZMUcJ/KiiQDMyjCuELVgTBh2TGRVn0sOXEE=
8080
github.com/splitio/go-toolkit/v5 v5.4.1/go.mod h1:SifzysrOVDbzMcOE8zjX02+FG5az4FrR3Us/i5SeStw=
8181
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

splitio/admin/common/config.go

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

33
import (
4-
"github.com/splitio/go-split-commons/v8/engine/grammar/constants"
5-
"github.com/splitio/go-split-commons/v8/storage"
4+
"github.com/splitio/go-split-commons/v9/engine/grammar/constants"
5+
"github.com/splitio/go-split-commons/v9/storage"
66
)
77

88
var ProducerFeatureFlagsRules = []string{constants.MatcherTypeAllKeys, constants.MatcherTypeInSegment, constants.MatcherTypeWhitelist, constants.MatcherTypeEqualTo, constants.MatcherTypeGreaterThanOrEqualTo, constants.MatcherTypeLessThanOrEqualTo, constants.MatcherTypeBetween,

splitio/admin/controllers/helpers.go

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

8-
"github.com/splitio/go-split-commons/v8/storage"
9-
"github.com/splitio/go-split-commons/v8/telemetry"
8+
"github.com/splitio/go-split-commons/v9/storage"
9+
"github.com/splitio/go-split-commons/v9/telemetry"
1010

1111
"github.com/splitio/split-synchronizer/v5/splitio/admin/views/dashboard"
1212
"github.com/splitio/split-synchronizer/v5/splitio/producer/evcalc"

splitio/admin/controllers/helpers_test.go

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

66
"github.com/splitio/split-synchronizer/v5/splitio/admin/views/dashboard"
77

8-
"github.com/splitio/go-split-commons/v8/dtos"
9-
"github.com/splitio/go-split-commons/v8/storage/mocks"
8+
"github.com/splitio/go-split-commons/v9/dtos"
9+
"github.com/splitio/go-split-commons/v9/storage/mocks"
1010
"github.com/splitio/go-toolkit/v5/datastructures/set"
1111

1212
"github.com/stretchr/testify/assert"

splitio/admin/controllers/observability_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"github.com/splitio/split-synchronizer/v5/splitio/provisional/observability"
1212
"github.com/splitio/split-synchronizer/v5/splitio/proxy/storage"
1313

14-
"github.com/splitio/go-split-commons/v8/dtos"
15-
"github.com/splitio/go-split-commons/v8/storage/mocks"
14+
"github.com/splitio/go-split-commons/v9/dtos"
15+
"github.com/splitio/go-split-commons/v9/storage/mocks"
1616
"github.com/splitio/go-toolkit/v5/datastructures/set"
1717
"github.com/splitio/go-toolkit/v5/logging"
1818

splitio/commitversion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ This file is created automatically, please do not edit
55
*/
66

77
// CommitVersion is the version of the last commit previous to release
8-
const CommitVersion = "829fcf8"
8+
const CommitVersion = "913fffe"

splitio/common/conf/advanced.go

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

6-
"github.com/splitio/go-split-commons/v8/conf"
6+
"github.com/splitio/go-split-commons/v9/conf"
77
)
88

99
// InitAdvancedOptions initializes an advanced config with default values + overriden urls.

splitio/common/conf/validators.go

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

6-
"github.com/splitio/go-split-commons/v8/flagsets"
6+
"github.com/splitio/go-split-commons/v9/flagsets"
77
)
88

99
type FlagSetValidationError struct {

0 commit comments

Comments
 (0)