You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

github.com/gradientzero/comby-store-postgres

Package Overview
Dependencies
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/gradientzero/comby-store-postgres - go Package Compare versions

Comparing version
v1.0.5
to
v1.0.6
+1
-1
command.store.postgres_test.go

@@ -24,3 +24,3 @@ package store_test

// check if the attribute is set
if v, ok := commandStore.Options().Attributes.Get("key1"); ok {
if v := commandStore.Options().Attributes.Get("key1"); v != nil {
if v != "value" {

@@ -27,0 +27,0 @@ t.Fatalf("wrong value: %q", v)

@@ -24,3 +24,3 @@ package store_test

// check if the attribute is set
if v, ok := eventStore.Options().Attributes.Get("key1"); ok {
if v := eventStore.Options().Attributes.Get("key1"); v != nil {
if v != "value" {

@@ -27,0 +27,0 @@ t.Fatalf("wrong value: %q", v)

+2
-2

@@ -5,6 +5,6 @@ module github.com/gradientzero/comby-store-postgres

replace github.com/gradientzero/comby/v2 v2.0.0 => /Users/me/Documents/gradient0/repos/comby/comby
replace github.com/gradientzero/comby/v2 v2.3.0 => /Users/me/Documents/gradient0/repos/comby/comby
require (
github.com/gradientzero/comby/v2 v2.0.0
github.com/gradientzero/comby/v2 v2.3.0
github.com/lib/pq v1.10.9

@@ -11,0 +11,0 @@ )