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.0
to
v1.0.1
+4
-1
.gitignore

@@ -24,2 +24,5 @@ # Binaries

# Go Modules
go.sum
go.sum
# Mac
.DS_Store
+1
-1

@@ -7,3 +7,3 @@ package store_test

"github.com/gradientzero/comby-postgres-store"
"github.com/gradientzero/comby-store-postgres"
"github.com/gradientzero/comby/v2"

@@ -10,0 +10,0 @@ )

@@ -7,3 +7,3 @@ package store_test

"github.com/gradientzero/comby-postgres-store"
"github.com/gradientzero/comby-store-postgres"
"github.com/gradientzero/comby/v2"

@@ -10,0 +10,0 @@ )

+2
-39

@@ -1,2 +0,2 @@

module github.com/gradientzero/comby-postgres-store
module github.com/gradientzero/comby-store-postgres

@@ -12,39 +12,2 @@ go 1.22

require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-redis/redis/v9 v9.0.0-beta.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/huandu/go-clone v1.7.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/compress v1.17.7 // indirect
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/minio/md5-simd v1.1.0 // indirect
github.com/minio/minio-go/v7 v7.0.32 // indirect
github.com/minio/sha256-simd v0.1.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rs/xid v1.2.1 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.17.0 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.29.0 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/sqlite v1.28.0 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.1 // indirect
)
require github.com/huandu/go-clone v1.7.2 // indirect

@@ -1,2 +0,2 @@

# comby-postgres-store
# comby-store-postgres

@@ -20,6 +20,6 @@ Implementation of the EventStore and CommandStore interfaces defined in [comby](https://github.com/gradientzero/comby) with Postgres. **comby** is a powerful application framework designed with Event Sourcing and Command Query Responsibility Segregation (CQRS) principles, written in Go.

*comby-postgres-store* supports the latest version of comby (v2), requires Go version 1.22+ and is based on Postgres driver [lib/pq](https://github.com/lib/pq).
*comby-store-postgres* supports the latest version of comby (v2), requires Go version 1.22+ and is based on Postgres driver [lib/pq](https://github.com/lib/pq).
```shell
go get github.com/gradientzero/comby-postgres-store
go get github.com/gradientzero/comby-store-postgres
```

@@ -31,3 +31,3 @@

import (
"github.com/gradientzero/comby-postgres-store"
"github.com/gradientzero/comby-store-postgres"
"github.com/gradientzero/comby/v2"

@@ -34,0 +34,0 @@ )