diff --git a/analysis/analysis.go b/analysis/analysis.go index 52ed5b4..f8737d6 100644 --- a/analysis/analysis.go +++ b/analysis/analysis.go @@ -8,10 +8,10 @@ import ( "runtime" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/util" "golang.org/x/sync/errgroup" "golang.org/x/time/rate" diff --git a/analysis/analysis_test.go b/analysis/analysis_test.go index af82b40..3e3605f 100644 --- a/analysis/analysis_test.go +++ b/analysis/analysis_test.go @@ -4,7 +4,7 @@ import ( "log" "testing" - "github.com/activecm/rita/config" + "github.com/activecm/rita/v5/config" "github.com/joho/godotenv" "github.com/spf13/afero" diff --git a/analysis/beacons.go b/analysis/beacons.go index eab65d5..eed6706 100644 --- a/analysis/beacons.go +++ b/analysis/beacons.go @@ -7,8 +7,8 @@ import ( "slices" "sort" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/util" "github.com/montanaflynn/stats" ) diff --git a/analysis/spagooper.go b/analysis/spagooper.go index feb8a39..5fc6880 100644 --- a/analysis/spagooper.go +++ b/analysis/spagooper.go @@ -8,9 +8,9 @@ import ( "strconv" "time" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/progressbar" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/progressbar" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/charmbracelet/bubbles/progress" diff --git a/cmd/cmd.go b/cmd/cmd.go index ca95ee9..ad0b7fe 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/activecm/rita/config" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/util" "github.com/google/go-github/github" "github.com/spf13/afero" diff --git a/cmd/cmd_test.go b/cmd/cmd_test.go index b9100d1..7ad5e3a 100644 --- a/cmd/cmd_test.go +++ b/cmd/cmd_test.go @@ -8,8 +8,8 @@ import ( "path/filepath" "testing" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/joho/godotenv" "github.com/spf13/afero" diff --git a/cmd/delete.go b/cmd/delete.go index 96a2d57..ea1aa24 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -7,8 +7,8 @@ import ( "regexp" "strings" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/manifoldco/promptui" "github.com/spf13/afero" diff --git a/cmd/delete_test.go b/cmd/delete_test.go index 1556e35..d30f90d 100644 --- a/cmd/delete_test.go +++ b/cmd/delete_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/database" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/cmd/import.go b/cmd/import.go index 974f43d..0e91a0a 100644 --- a/cmd/import.go +++ b/cmd/import.go @@ -14,13 +14,13 @@ import ( "time" "unicode" - "github.com/activecm/rita/analysis" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/modifier" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/analysis" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/modifier" + "github.com/activecm/rita/v5/util" "github.com/spf13/afero" "github.com/urfave/cli/v2" diff --git a/cmd/import_test.go b/cmd/import_test.go index 24dcf66..28cf43a 100644 --- a/cmd/import_test.go +++ b/cmd/import_test.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" iofs "io/fs" "os" @@ -15,7 +15,7 @@ import ( "testing" "time" - "github.com/activecm/rita/importer" + "github.com/activecm/rita/v5/importer" "github.com/ClickHouse/clickhouse-go/v2" "github.com/spf13/afero" diff --git a/cmd/list.go b/cmd/list.go index 8163781..aad09a0 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -6,8 +6,8 @@ import ( "os" "strconv" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/charmbracelet/lipgloss" "github.com/charmbracelet/lipgloss/table" diff --git a/cmd/list_test.go b/cmd/list_test.go index 819bedf..9789fa0 100644 --- a/cmd/list_test.go +++ b/cmd/list_test.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/cmd/validate.go b/cmd/validate.go index 3225cc8..7b74180 100644 --- a/cmd/validate.go +++ b/cmd/validate.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/activecm/rita/config" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/util" "github.com/spf13/afero" "github.com/urfave/cli/v2" diff --git a/cmd/view.go b/cmd/view.go index b1d4211..d07621e 100644 --- a/cmd/view.go +++ b/cmd/view.go @@ -6,10 +6,10 @@ import ( "errors" "fmt" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" + "github.com/activecm/rita/v5/viewer" "github.com/spf13/afero" "github.com/urfave/cli/v2" diff --git a/config/config.go b/config/config.go index 17058a1..99c826c 100644 --- a/config/config.go +++ b/config/config.go @@ -6,7 +6,7 @@ import ( "os" "sync" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/util" "github.com/hjson/hjson-go/v4" "github.com/spf13/afero" diff --git a/config/config_test.go b/config/config_test.go index f6494f6..d91a790 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -7,7 +7,7 @@ import ( "os" "testing" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/util" "github.com/joho/godotenv" "github.com/spf13/afero" diff --git a/config/filter.go b/config/filter.go index 84118ea..7b72708 100644 --- a/config/filter.go +++ b/config/filter.go @@ -1,7 +1,7 @@ package config import ( - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/util" "net" ) diff --git a/database/db.go b/database/db.go index 5b9b60e..354d982 100644 --- a/database/db.go +++ b/database/db.go @@ -9,8 +9,8 @@ import ( "net" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/logger" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/logger" clickhouse "github.com/ClickHouse/clickhouse-go/v2" driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver" diff --git a/database/db_test.go b/database/db_test.go index 08e0568..545a43f 100644 --- a/database/db_test.go +++ b/database/db_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" clickhouse "github.com/ClickHouse/clickhouse-go/v2" "github.com/spf13/afero" diff --git a/database/metadb.go b/database/metadb.go index 3d16863..f504e24 100644 --- a/database/metadb.go +++ b/database/metadb.go @@ -5,8 +5,8 @@ import ( "strconv" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" ) diff --git a/database/server.go b/database/server.go index a49cb96..abde117 100644 --- a/database/server.go +++ b/database/server.go @@ -7,8 +7,8 @@ import ( "fmt" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/logger" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/logger" clickhouse "github.com/ClickHouse/clickhouse-go/v2" driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver" diff --git a/database/server_test.go b/database/server_test.go index d1b4ceb..2d7f414 100644 --- a/database/server_test.go +++ b/database/server_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/ClickHouse/clickhouse-go/v2" "github.com/joho/godotenv" diff --git a/database/threat_intel.go b/database/threat_intel.go index a71accd..426843f 100644 --- a/database/threat_intel.go +++ b/database/threat_intel.go @@ -12,9 +12,9 @@ import ( "strings" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/util" clickhouse "github.com/ClickHouse/clickhouse-go/v2" "github.com/spf13/afero" diff --git a/database/threat_intel_test.go b/database/threat_intel_test.go index af1b1e4..9d17c10 100644 --- a/database/threat_intel_test.go +++ b/database/threat_intel_test.go @@ -10,7 +10,7 @@ import ( "sync" "testing" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/util" "github.com/stretchr/testify/require" ) diff --git a/database/valid_mime_types.go b/database/valid_mime_types.go index 3a45927..196d66c 100644 --- a/database/valid_mime_types.go +++ b/database/valid_mime_types.go @@ -8,8 +8,8 @@ import ( "os" "strings" - "github.com/activecm/rita/config" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/util" "github.com/spf13/afero" "golang.org/x/time/rate" diff --git a/database/writer.go b/database/writer.go index ff735ad..5535248 100644 --- a/database/writer.go +++ b/database/writer.go @@ -4,8 +4,8 @@ import ( "context" "sync" - "github.com/activecm/rita/config" - "github.com/activecm/rita/logger" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/logger" clickhouse "github.com/ClickHouse/clickhouse-go/v2" driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver" diff --git a/go.mod b/go.mod index 4003558..4423a93 100644 --- a/go.mod +++ b/go.mod @@ -1,20 +1,16 @@ -module github.com/activecm/rita +module github.com/activecm/rita/v5 -go 1.22.0 +go 1.22.3 require ( - github.com/ClickHouse/clickhouse-go/v2 v2.26.0 - github.com/blang/semver v3.5.1+incompatible + github.com/ClickHouse/clickhouse-go/v2 v2.23.2 github.com/charmbracelet/bubbles v0.18.0 - github.com/charmbracelet/bubbletea v0.26.6 + github.com/charmbracelet/bubbletea v0.26.3 github.com/charmbracelet/lipgloss v0.11.0 - github.com/dchest/siphash v1.2.3 - github.com/google/go-github v17.0.0+incompatible github.com/google/uuid v1.6.0 github.com/hjson/hjson-go/v4 v4.4.0 github.com/joho/godotenv v1.5.1 github.com/json-iterator/go v1.1.12 - github.com/manifoldco/promptui v0.9.0 github.com/montanaflynn/stats v0.7.1 github.com/muesli/reflow v0.3.0 github.com/rs/zerolog v1.33.0 @@ -30,6 +26,8 @@ require ( golang.org/x/time v0.5.0 ) +require github.com/google/go-querystring v1.1.0 // indirect + require ( dario.cat/mergo v1.0.0 // indirect github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect @@ -38,7 +36,7 @@ require ( github.com/ClickHouse/ch-go v0.61.5 // indirect github.com/Masterminds/semver/v3 v3.2.1 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect - github.com/Microsoft/hcsshim v0.11.4 // indirect + github.com/Microsoft/hcsshim v0.11.5 // indirect github.com/VividCortex/ewma v1.2.0 // indirect github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect github.com/andybalholm/brotli v1.1.0 // indirect @@ -58,31 +56,33 @@ require ( github.com/aws/smithy-go v1.19.0 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/beorn7/perks v1.0.1 // indirect + github.com/blang/semver v3.5.1+incompatible github.com/buger/goterm v1.0.4 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/charmbracelet/harmonica v0.2.0 // indirect github.com/charmbracelet/x/ansi v0.1.2 // indirect - github.com/charmbracelet/x/input v0.1.0 // indirect + github.com/charmbracelet/x/input v0.1.1 // indirect github.com/charmbracelet/x/term v0.1.1 // indirect - github.com/charmbracelet/x/windows v0.1.0 // indirect + github.com/charmbracelet/x/windows v0.1.2 // indirect github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect - github.com/compose-spec/compose-go/v2 v2.1.0 // indirect + github.com/compose-spec/compose-go/v2 v2.1.1 // indirect github.com/containerd/console v1.0.4 // indirect - github.com/containerd/containerd v1.7.15 // indirect + github.com/containerd/containerd v1.7.17 // indirect github.com/containerd/continuity v0.4.3 // indirect github.com/containerd/log v0.1.0 // indirect - github.com/containerd/ttrpc v1.2.3 // indirect + github.com/containerd/ttrpc v1.2.4 // indirect github.com/containerd/typeurl/v2 v2.1.1 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dchest/siphash v1.2.3 github.com/distribution/reference v0.6.0 // indirect - github.com/docker/buildx v0.14.0 // indirect - github.com/docker/cli v26.1.0+incompatible // indirect - github.com/docker/compose/v2 v2.27.0 // indirect + github.com/docker/buildx v0.14.1 // indirect + github.com/docker/cli v26.1.3+incompatible // indirect + github.com/docker/compose/v2 v2.27.1 // indirect github.com/docker/distribution v2.8.3+incompatible // indirect - github.com/docker/docker v26.1.1+incompatible // indirect + github.com/docker/docker v26.1.3+incompatible // indirect github.com/docker/docker-credential-helpers v0.8.0 // indirect github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect github.com/docker/go-connections v0.5.0 // indirect @@ -92,7 +92,7 @@ require ( github.com/emicklei/go-restful/v3 v3.11.0 // indirect github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect github.com/felixge/httpsnoop v1.0.4 // indirect - github.com/fsnotify/fsevents v0.1.1 // indirect + github.com/fsnotify/fsevents v0.2.0 // indirect github.com/fvbommel/sortorder v1.0.2 // indirect github.com/go-faster/city v1.0.1 // indirect github.com/go-faster/errors v0.7.1 // indirect @@ -108,7 +108,7 @@ require ( github.com/golang/protobuf v1.5.4 // indirect github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-cmp v0.6.0 // indirect - github.com/google/go-querystring v1.1.0 // indirect + github.com/google/go-github v17.0.0+incompatible github.com/google/gofuzz v1.2.0 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/gorilla/mux v1.8.1 // indirect @@ -125,11 +125,12 @@ require ( github.com/jonboulle/clockwork v0.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/mailru/easyjson v0.7.7 // indirect + github.com/manifoldco/promptui v0.9.0 github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-localereader v0.0.1 // indirect @@ -141,7 +142,7 @@ require ( github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect - github.com/moby/buildkit v0.13.1 // indirect + github.com/moby/buildkit v0.13.2 // indirect github.com/moby/docker-image-spec v1.3.1 // indirect github.com/moby/locker v1.0.1 // indirect github.com/moby/patternmatcher v0.6.0 // indirect @@ -175,7 +176,7 @@ require ( github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc // indirect github.com/rivo/uniseg v0.4.7 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/sahilm/fuzzy v0.1.1-0.20230530133925-c48e322e2a8f // indirect + github.com/sahilm/fuzzy v0.1.1 // indirect github.com/secure-systems-lab/go-securesystemslib v0.4.0 // indirect github.com/segmentio/asm v1.2.0 // indirect github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b // indirect @@ -191,19 +192,19 @@ require ( github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 // indirect github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect - github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 // indirect + github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c // indirect github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect github.com/xeipuuv/gojsonschema v1.2.0 // indirect github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect - github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect + github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect - go.opentelemetry.io/otel v1.26.0 // indirect + go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 // indirect @@ -211,24 +212,24 @@ require ( go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.42.0 // indirect - go.opentelemetry.io/otel/metric v1.26.0 // indirect + go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect - go.opentelemetry.io/otel/trace v1.26.0 // indirect + go.opentelemetry.io/otel/trace v1.24.0 // indirect go.opentelemetry.io/proto/otlp v1.0.0 // indirect go.uber.org/mock v0.4.0 // indirect golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.15.0 // indirect - golang.org/x/sys v0.21.0 // indirect - golang.org/x/term v0.19.0 // indirect + golang.org/x/sys v0.20.0 // indirect + golang.org/x/term v0.20.0 // indirect google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect google.golang.org/grpc v1.59.0 // indirect - google.golang.org/protobuf v1.33.0 // indirect + google.golang.org/protobuf v1.34.2 // indirect gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect @@ -243,5 +244,5 @@ require ( sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect sigs.k8s.io/yaml v1.3.0 // indirect - tags.cncf.io/container-device-interface v0.6.2 // indirect + tags.cncf.io/container-device-interface v0.7.2 // indirect ) diff --git a/go.sum b/go.sum index b371d98..0272834 100644 --- a/go.sum +++ b/go.sum @@ -19,14 +19,14 @@ github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8 github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/ClickHouse/ch-go v0.61.5 h1:zwR8QbYI0tsMiEcze/uIMK+Tz1D3XZXLdNrlaOpeEI4= github.com/ClickHouse/ch-go v0.61.5/go.mod h1:s1LJW/F/LcFs5HJnuogFMta50kKDO0lf9zzfrbl0RQg= -github.com/ClickHouse/clickhouse-go/v2 v2.26.0 h1:j4/y6NYaCcFkJwN/TU700ebW+nmsIy34RmUAAcZKy9w= -github.com/ClickHouse/clickhouse-go/v2 v2.26.0/go.mod h1:iDTViXk2Fgvf1jn2dbJd1ys+fBkdD1UMRnXlwmhijhQ= +github.com/ClickHouse/clickhouse-go/v2 v2.23.2 h1:+DAKPMnxLS7pduQZsrJc8OhdLS2L9MfDEJ2TS+hpYDM= +github.com/ClickHouse/clickhouse-go/v2 v2.23.2/go.mod h1:aNap51J1OM3yxQJRgM+AlP/MPkGBCL8A74uQThoQhR0= github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= -github.com/Microsoft/hcsshim v0.11.4 h1:68vKo2VN8DE9AdN4tnkWnmdhqdbpUFM8OF3Airm7fz8= -github.com/Microsoft/hcsshim v0.11.4/go.mod h1:smjE4dvqPX9Zldna+t5FG3rnoHhaB7QYxPRqGcpAD9w= +github.com/Microsoft/hcsshim v0.11.5 h1:haEcLNpj9Ka1gd3B3tAEs9CpE0c+1IhoL59w/exYU38= +github.com/Microsoft/hcsshim v0.11.5/go.mod h1:MV8xMfmECjl5HdO7U/3/hFVnkmSBjAjmA09d4bExKcU= github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2 h1:+vx7roKuyA63nhn5WAunQHLTznkw5W8b1Xc0dNjp83s= github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2/go.mod h1:HBCaDeC1lPdgDeDbhX8XFpy1jqjK0IBG8W5K+xYqA0w= github.com/Shopify/logrus-bugsnag v0.0.0-20170309145241-6dbc35f2c30d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= @@ -99,20 +99,20 @@ github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/charmbracelet/bubbles v0.18.0 h1:PYv1A036luoBGroX6VWjQIE9Syf2Wby2oOl/39KLfy0= github.com/charmbracelet/bubbles v0.18.0/go.mod h1:08qhZhtIwzgrtBjAcJnij1t1H0ZRjwHyGsy6AL11PSw= -github.com/charmbracelet/bubbletea v0.26.6 h1:zTCWSuST+3yZYZnVSvbXwKOPRSNZceVeqpzOLN2zq1s= -github.com/charmbracelet/bubbletea v0.26.6/go.mod h1:dz8CWPlfCCGLFbBlTY4N7bjLiyOGDJEnd2Muu7pOWhk= +github.com/charmbracelet/bubbletea v0.26.3 h1:iXyGvI+FfOWqkB2V07m1DF3xxQijxjY2j8PqiXYqasg= +github.com/charmbracelet/bubbletea v0.26.3/go.mod h1:bpZHfDHTYJC5g+FBK+ptJRCQotRC+Dhh3AoMxa/2+3Q= github.com/charmbracelet/harmonica v0.2.0 h1:8NxJWRWg/bzKqqEaaeFNipOu77YR5t8aSwG4pgaUBiQ= github.com/charmbracelet/harmonica v0.2.0/go.mod h1:KSri/1RMQOZLbw7AHqgcBycp8pgJnQMYYT8QZRqZ1Ao= github.com/charmbracelet/lipgloss v0.11.0 h1:UoAcbQ6Qml8hDwSWs0Y1cB5TEQuZkDPH/ZqwWWYTG4g= github.com/charmbracelet/lipgloss v0.11.0/go.mod h1:1UdRTH9gYgpcdNN5oBtjbu/IzNKtzVtb7sqN1t9LNn8= github.com/charmbracelet/x/ansi v0.1.2 h1:6+LR39uG8DE6zAmbu023YlqjJHkYXDF1z36ZwzO4xZY= github.com/charmbracelet/x/ansi v0.1.2/go.mod h1:dk73KoMTT5AX5BsX0KrqhsTqAnhZZoCBjs7dGWp4Ktw= -github.com/charmbracelet/x/input v0.1.0 h1:TEsGSfZYQyOtp+STIjyBq6tpRaorH0qpwZUj8DavAhQ= -github.com/charmbracelet/x/input v0.1.0/go.mod h1:ZZwaBxPF7IG8gWWzPUVqHEtWhc1+HXJPNuerJGRGZ28= +github.com/charmbracelet/x/input v0.1.1 h1:YDOJaTUKCqtGnq9PHzx3pkkl4pXDOANUHmhH3DqMtM4= +github.com/charmbracelet/x/input v0.1.1/go.mod h1:jvdTVUnNWj/RD6hjC4FsoB0SeZCJ2ZBkiuFP9zXvZI0= github.com/charmbracelet/x/term v0.1.1 h1:3cosVAiPOig+EV4X9U+3LDgtwwAoEzJjNdwbXDjF6yI= github.com/charmbracelet/x/term v0.1.1/go.mod h1:wB1fHt5ECsu3mXYusyzcngVWWlu1KKUmmLhfgr/Flxw= -github.com/charmbracelet/x/windows v0.1.0 h1:gTaxdvzDM5oMa/I2ZNF7wN78X/atWemG9Wph7Ika2k4= -github.com/charmbracelet/x/windows v0.1.0/go.mod h1:GLEO/l+lizvFDBPLIOk+49gdX49L9YWMB5t+DZd0jkQ= +github.com/charmbracelet/x/windows v0.1.2 h1:Iumiwq2G+BRmgoayww/qfcvof7W/3uLoelhxojXlRWg= +github.com/charmbracelet/x/windows v0.1.2/go.mod h1:GLEO/l+lizvFDBPLIOk+49gdX49L9YWMB5t+DZd0jkQ= github.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8= @@ -127,14 +127,14 @@ github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4 h1:/inchEIKaYC1Akx+H+g github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb h1:EDmT6Q9Zs+SbUoc7Ik9EfrFqcylYqgPZ9ANSbTAntnE= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb/go.mod h1:ZjrT6AXHbDs86ZSdt/osfBi5qfexBrKUdONk989Wnk4= -github.com/compose-spec/compose-go/v2 v2.1.0 h1:qdW2qISQlCQG8v1O2TChcdxgAWTUGgUX/CPSO+ES9+E= -github.com/compose-spec/compose-go/v2 v2.1.0/go.mod h1:bEPizBkIojlQ20pi2vNluBa58tevvj0Y18oUSHPyfdc= +github.com/compose-spec/compose-go/v2 v2.1.1 h1:tKuYJwAVgxIryRrsvWJSf1kNviVOQVVqwyHsV6YoIUc= +github.com/compose-spec/compose-go/v2 v2.1.1/go.mod h1:bEPizBkIojlQ20pi2vNluBa58tevvj0Y18oUSHPyfdc= github.com/containerd/cgroups v1.1.0 h1:v8rEWFl6EoqHB+swVNjVoCJE8o3jX7e8nqBGPLaDFBM= github.com/containerd/cgroups v1.1.0/go.mod h1:6ppBcbh/NOOUU+dMKrykgaBnK9lCIBxHqJDGwsa1mIw= github.com/containerd/console v1.0.4 h1:F2g4+oChYvBTsASRTz8NP6iIAi97J3TtSAsLbIFn4ro= github.com/containerd/console v1.0.4/go.mod h1:YynlIjWYF8myEu6sdkwKIvGQq+cOckRm6So2avqoYAk= -github.com/containerd/containerd v1.7.15 h1:afEHXdil9iAm03BmhjzKyXnnEBtjaLJefdU7DV0IFes= -github.com/containerd/containerd v1.7.15/go.mod h1:ISzRRTMF8EXNpJlTzyr2XMhN+j9K302C21/+cr3kUnY= +github.com/containerd/containerd v1.7.17 h1:KjNnn0+tAVQHAoaWRjmdak9WlvnFR/8rU1CHHy8Rm2A= +github.com/containerd/containerd v1.7.17/go.mod h1:vK+hhT4TIv2uejlcDlbVIc8+h/BqtKLIyNrtCZol8lI= github.com/containerd/continuity v0.4.3 h1:6HVkalIp+2u1ZLH1J/pYX2oBVXlJZvh1X1A7bEZ9Su8= github.com/containerd/continuity v0.4.3/go.mod h1:F6PTNCKepoxEaXLQp3wDAjygEnImnZ/7o4JzpodfroQ= github.com/containerd/fifo v1.1.0 h1:4I2mbh5stb1u6ycIABlBw9zgtlK8viPI9QkQNRQEEmY= @@ -146,8 +146,8 @@ github.com/containerd/nydus-snapshotter v0.13.7/go.mod h1:VPVKQ3jmHFIcUIV2yiQ1kI github.com/containerd/stargz-snapshotter v0.15.1 h1:fpsP4kf/Z4n2EYnU0WT8ZCE3eiKDwikDhL6VwxIlgeA= github.com/containerd/stargz-snapshotter/estargz v0.15.1 h1:eXJjw9RbkLFgioVaTG+G/ZW/0kEe2oEKCdS/ZxIyoCU= github.com/containerd/stargz-snapshotter/estargz v0.15.1/go.mod h1:gr2RNwukQ/S9Nv33Lt6UC7xEx58C+LHRdoqbEKjz1Kk= -github.com/containerd/ttrpc v1.2.3 h1:4jlhbXIGvijRtNC8F/5CpuJZ7yKOBFGFOOXg1bkISz0= -github.com/containerd/ttrpc v1.2.3/go.mod h1:ieWsXucbb8Mj9PH0rXCw1i8IunRbbAiDkpXkbfflWBM= +github.com/containerd/ttrpc v1.2.4 h1:eQCQK4h9dxDmpOb9QOOMh2NHTfzroH1IkmHiKZi05Oo= +github.com/containerd/ttrpc v1.2.4/go.mod h1:ojvb8SJBSch0XkqNO0L0YX/5NxR3UnVk2LzFKBK0upc= github.com/containerd/typeurl/v2 v2.1.1 h1:3Q4Pt7i8nYwy2KmQWIw2+1hTvwTE/6w9FqcttATPO/4= github.com/containerd/typeurl/v2 v2.1.1/go.mod h1:IDp2JFvbwZ31H8dQbEIY7sDl2L3o3HZj1hsSQlywkQ0= github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= @@ -168,17 +168,17 @@ github.com/dchest/siphash v1.2.3/go.mod h1:0NvQU092bT0ipiFN++/rXm69QG9tVxLAlQHIX github.com/denisenkom/go-mssqldb v0.0.0-20191128021309-1d7a30a10f73/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk= github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E= -github.com/docker/buildx v0.14.0 h1:FxqcfE7xgeEC4oQlKLpuvfobRDVDXrHE3jByM+mdyqk= -github.com/docker/buildx v0.14.0/go.mod h1:Vy/2lC9QsJvo33+7KKkN/GDE5WxnVqW0/dpcN7ZqPJY= -github.com/docker/cli v26.1.0+incompatible h1:+nwRy8Ocd8cYNQ60mozDDICICD8aoFGtlPXifX/UQ3Y= -github.com/docker/cli v26.1.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= -github.com/docker/compose/v2 v2.27.0 h1:FKyClQdErCxUZULC2zo6Jn5ve+epFPe/Y0HaxjmUzNg= -github.com/docker/compose/v2 v2.27.0/go.mod h1:uaqwmY6haO8wXWHk+LAsqqDapX6boH4izRKqj/E7+Bo= +github.com/docker/buildx v0.14.1 h1:Pr3HdtHoDsCghlIExgGp0WOIgvbiViushOKIPUIyFI4= +github.com/docker/buildx v0.14.1/go.mod h1:s6xxLYXZIWnkdYpSvxRmoqZTb1vViV9q2f+Hg8cWA3Y= +github.com/docker/cli v26.1.3+incompatible h1:bUpXT/N0kDE3VUHI2r5VMsYQgi38kYuoC0oL9yt3lqc= +github.com/docker/cli v26.1.3+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/compose/v2 v2.27.1 h1:sOeqcMN7E8HmWpjD43OVZ+Fi2t96+ZGf3aK356mTgZE= +github.com/docker/compose/v2 v2.27.1/go.mod h1:JZVWp9uVnP59S3KoVne6MboJRpx/eNr9HGE7/boB1vU= github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk= github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v26.1.1+incompatible h1:oI+4kkAgIwwb54b9OC7Xc3hSgu1RlJA/Lln/DF72djQ= -github.com/docker/docker v26.1.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v26.1.3+incompatible h1:lLCzRbrVZrljpVNobJu1J2FHk8V0s4BawoZippkc+xo= +github.com/docker/docker v26.1.3+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker-credential-helpers v0.8.0 h1:YQFtbBQb4VrpoPxhFuzEBPQ9E16qz5SpHLS+uswaCp8= github.com/docker/docker-credential-helpers v0.8.0/go.mod h1:UGFXcuoQ5TxPiB54nHOZ32AWRqQdECoh/Mg0AlEYb40= github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0= @@ -211,8 +211,8 @@ github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f/go.mod h1:vw97 github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5/go.mod h1:a2zkGnVExMxdzMo3M0Hi/3sEU+cWnZpSni0O6/Yb/P0= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/fsnotify/fsevents v0.1.1 h1:/125uxJvvoSDDBPen6yUZbil8J9ydKZnnl3TWWmvnkw= -github.com/fsnotify/fsevents v0.1.1/go.mod h1:+d+hS27T6k5J8CRaPLKFgwKYcpS7GwW3Ule9+SC2ZRc= +github.com/fsnotify/fsevents v0.2.0 h1:BRlvlqjvNTfogHfeBOFvSC9N0Ddy+wzQCQukyoD7o/c= +github.com/fsnotify/fsevents v0.2.0/go.mod h1:B3eEk39i4hz8y1zaWS/wPrAP4O6wkIl7HQwKBr1qH/w= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fvbommel/sortorder v1.0.2 h1:mV4o8B2hKboCdkJm+a7uX/SIpZob4JzUpc5GGnM45eo= github.com/fvbommel/sortorder v1.0.2/go.mod h1:uk88iVf1ovNn1iLfgUVU2F9o5eO30ui720w+kxuqRs0= @@ -348,8 +348,8 @@ github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:C github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= @@ -406,8 +406,8 @@ github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyua github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= -github.com/moby/buildkit v0.13.1 h1:L8afOFhPq2RPJJSr/VyzbufwID7jquZVB7oFHbPRcPE= -github.com/moby/buildkit v0.13.1/go.mod h1:aNmNQKLBFYAOFuzQjR3VA27/FijlvtBD1pjNwTSN37k= +github.com/moby/buildkit v0.13.2 h1:nXNszM4qD9E7QtG7bFWPnDI1teUQFQglBzon/IU3SzI= +github.com/moby/buildkit v0.13.2/go.mod h1:2cyVOv9NoHM7arphK9ZfHIWKn9YVZRFd1wXB8kKmEzY= github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0= github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo= github.com/moby/locker v1.0.1 h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg= @@ -526,8 +526,8 @@ github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8= github.com/rs/zerolog v1.33.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/sahilm/fuzzy v0.1.1-0.20230530133925-c48e322e2a8f h1:MvTmaQdww/z0Q4wrYjDSCcZ78NoftLQyHBSLW/Cx79Y= -github.com/sahilm/fuzzy v0.1.1-0.20230530133925-c48e322e2a8f/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y= +github.com/sahilm/fuzzy v0.1.1 h1:ceu5RHF8DGgoi+/dR5PsECjCDH1BE3Fnmpo7aVXOdRA= +github.com/sahilm/fuzzy v0.1.1/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y= github.com/secure-systems-lab/go-securesystemslib v0.4.0 h1:b23VGrQhTA8cN2CbBw7/FulN9fTtqYUdS5+Oxzt+DUE= github.com/secure-systems-lab/go-securesystemslib v0.4.0/go.mod h1:FGBZgq2tXWICsxWQW1msNf49F0Pf2Op5Htayx335Qbs= github.com/segmentio/asm v1.2.0 h1:9BQrFxC+YOHJlTlHGkTrFWf59nbL3XnCoFLTwDCI7ys= @@ -600,8 +600,8 @@ github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFA github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= -github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 h1:oZS8KCqAg62sxJkEq/Ppzqrb6EooqzWtL8Oaex7bc5c= -github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5/go.mod h1:vbbYqJlnswsbJqWUcJN8fKtBhnEgldDrcagTgnBVKKM= +github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c h1:+6wg/4ORAbnSoGDzg2Q1i3CeMcT/jjhye/ZfnBHy7/M= +github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c/go.mod h1:vbbYqJlnswsbJqWUcJN8fKtBhnEgldDrcagTgnBVKKM= github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea h1:SXhTLE6pb6eld/v/cCndK0AMpt1wiVFb/YYmqB3/QG0= github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea/go.mod h1:WPnis/6cRcDZSUvVmezrxJPkiO87ThFYsoUiMwWNDJk= github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 h1:Y/M5lygoNPKwVNLMPXgVfsRT40CSFKXCxuU8LoHySjs= @@ -624,8 +624,8 @@ github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17 github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no= github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM= -github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 h1:+qGGcbkzsfDQNPPe9UDgpxAWQrhbbBXOYJFQDq/dtJw= -github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913/go.mod h1:4aEEwZQutDLsQv2Deui4iYQ6DWTxR14g6m8Wv88+Xqk= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 h1:gEOO8jv9F4OT7lGCjxCBTO/36wtF6j2nSip77qHd4x4= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -641,8 +641,8 @@ go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0. go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1/go.mod h1:GnOaBaFQ2we3b9AGWJpsBa7v1S5RlQzlC3O7dRMxZhM= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= -go.opentelemetry.io/otel v1.26.0 h1:LQwgL5s/1W7YiiRwxf03QGnWLb2HW4pLiAhaA5cZXBs= -go.opentelemetry.io/otel v1.26.0/go.mod h1:UmLkJHUAidDval2EICqBMbnAd0/m2vmpf/dAM+fvFs4= +go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= +go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 h1:ZtfnDL+tUrs1F0Pzfwbg2d59Gru9NCH3bgSHBM6LDwU= go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0/go.mod h1:hG4Fj/y8TR/tlEDREo8tWstl9fO9gcFkn4xrx0Io8xU= go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 h1:NmnYCiR0qNufkldjVvyQfZTHSdzeHoZ41zggMsdMcLM= @@ -657,14 +657,14 @@ go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 h1:digkE go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0/go.mod h1:/OpE/y70qVkndM0TrxT4KBoN3RsFZP0QaofcfYrj76I= go.opentelemetry.io/otel/exporters/prometheus v0.42.0 h1:jwV9iQdvp38fxXi8ZC+lNpxjK16MRcZlpDYvbuO1FiA= go.opentelemetry.io/otel/exporters/prometheus v0.42.0/go.mod h1:f3bYiqNqhoPxkvI2LrXqQVC546K7BuRDL/kKuxkujhA= -go.opentelemetry.io/otel/metric v1.26.0 h1:7S39CLuY5Jgg9CrnA9HHiEjGMF/X2VHvoXGgSllRz30= -go.opentelemetry.io/otel/metric v1.26.0/go.mod h1:SY+rHOI4cEawI9a7N1A4nIg/nTQXe1ccCNWYOJUrpX4= +go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= +go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucgoDw= go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg= go.opentelemetry.io/otel/sdk/metric v1.21.0 h1:smhI5oD714d6jHE6Tie36fPx4WDFIg+Y6RfAY4ICcR0= go.opentelemetry.io/otel/sdk/metric v1.21.0/go.mod h1:FJ8RAsoPGv/wYMgBdUJXOm+6pzFY3YdljnXtv1SBE8Q= -go.opentelemetry.io/otel/trace v1.26.0 h1:1ieeAUb4y0TE26jUFrCIXKpTuVK7uJGN9/Z/2LP5sQA= -go.opentelemetry.io/otel/trace v1.26.0/go.mod h1:4iDxvGDQuUkHve82hJJ8UqrwswHYsZuWCBllGV2U2y0= +go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= +go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.opentelemetry.io/proto/otlp v1.0.0 h1:T0TX0tmXU8a3CbNXzEKGeU5mIVOdf0oykP+u2lIVU/I= go.opentelemetry.io/proto/otlp v1.0.0/go.mod h1:Sy6pihPLfYHkr3NkUbEhGHFhINUSI/v80hjKIs5JXpM= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= @@ -760,13 +760,13 @@ golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= -golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= -golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= +golang.org/x/term v0.20.0 h1:VnkxpohqXaOBYJtBmEppKUG6mXpi+4O6purfc2+sMhw= +golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -815,8 +815,8 @@ google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/cenkalti/backoff.v1 v1.1.0 h1:Arh75ttbsvlpVA7WtVpH4u9h6Zl46xuptxqLxPiSo4Y= @@ -868,5 +868,5 @@ sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+s sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08= sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= -tags.cncf.io/container-device-interface v0.6.2 h1:dThE6dtp/93ZDGhqaED2Pu374SOeUkBfuvkLuiTdwzg= -tags.cncf.io/container-device-interface v0.6.2/go.mod h1:Shusyhjs1A5Na/kqPVLL0KqnHQHuunol9LFeUNkuGVE= +tags.cncf.io/container-device-interface v0.7.2 h1:MLqGnWfOr1wB7m08ieI4YJ3IoLKKozEnnNYBtacDPQU= +tags.cncf.io/container-device-interface v0.7.2/go.mod h1:Xb1PvXv2BhfNb3tla4r9JL129ck1Lxv9KuU6eVOfKto= diff --git a/importer/conn.go b/importer/conn.go index ac32dee..2112b94 100644 --- a/importer/conn.go +++ b/importer/conn.go @@ -6,12 +6,12 @@ import ( "sync/atomic" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer/zeektypes" - zerolog "github.com/activecm/rita/logger" - "github.com/activecm/rita/progressbar" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer/zeektypes" + zerolog "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/progressbar" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" tea "github.com/charmbracelet/bubbletea" diff --git a/importer/dns.go b/importer/dns.go index f73824d..4dfad7e 100644 --- a/importer/dns.go +++ b/importer/dns.go @@ -7,10 +7,10 @@ import ( "sync/atomic" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer/zeektypes" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer/zeektypes" + "github.com/activecm/rita/v5/util" "github.com/google/uuid" ) diff --git a/importer/http.go b/importer/http.go index 8564fde..34bb5db 100644 --- a/importer/http.go +++ b/importer/http.go @@ -8,12 +8,12 @@ import ( "sync/atomic" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer/zeektypes" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/progressbar" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer/zeektypes" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/progressbar" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" tea "github.com/charmbracelet/bubbletea" diff --git a/importer/importer.go b/importer/importer.go index 28b2ed6..16f9ee8 100644 --- a/importer/importer.go +++ b/importer/importer.go @@ -11,12 +11,12 @@ import ( "sync" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer/zeektypes" - zerolog "github.com/activecm/rita/logger" - "github.com/activecm/rita/progressbar" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer/zeektypes" + zerolog "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/progressbar" + "github.com/activecm/rita/v5/util" "github.com/charmbracelet/bubbles/progress" "github.com/spf13/afero" diff --git a/importer/parser.go b/importer/parser.go index 13315c0..c346945 100644 --- a/importer/parser.go +++ b/importer/parser.go @@ -11,8 +11,8 @@ import ( "strings" "time" - zerolog "github.com/activecm/rita/logger" - "github.com/activecm/rita/util" + zerolog "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/util" jsoniter "github.com/json-iterator/go" "github.com/spf13/afero" diff --git a/importer/parser_test.go b/importer/parser_test.go index 8729e0b..3070ed6 100644 --- a/importer/parser_test.go +++ b/importer/parser_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/activecm/rita/importer/zeektypes" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/importer/zeektypes" + "github.com/activecm/rita/v5/util" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/importer/ssl.go b/importer/ssl.go index 09481ea..88df45f 100644 --- a/importer/ssl.go +++ b/importer/ssl.go @@ -9,12 +9,12 @@ import ( "sync/atomic" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/importer/zeektypes" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/progressbar" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/importer/zeektypes" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/progressbar" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" tea "github.com/charmbracelet/bubbletea" diff --git a/integration/analysis_view_test.go b/integration/analysis_view_test.go index b92a053..b955c5b 100644 --- a/integration/analysis_view_test.go +++ b/integration/analysis_view_test.go @@ -8,8 +8,8 @@ import ( "strconv" "testing" - "github.com/activecm/rita/modifier" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/modifier" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/stretchr/testify/require" diff --git a/integration/beacons_test.go b/integration/beacons_test.go index b2b82b2..a71f35a 100644 --- a/integration/beacons_test.go +++ b/integration/beacons_test.go @@ -7,11 +7,11 @@ import ( "testing" "time" - "github.com/activecm/rita/analysis" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/analysis" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/spf13/afero" diff --git a/integration/filter_test.go b/integration/filter_test.go index cea1812..33ef5db 100644 --- a/integration/filter_test.go +++ b/integration/filter_test.go @@ -6,11 +6,11 @@ import ( "testing" "time" - "github.com/activecm/rita/analysis" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/progressbar" + "github.com/activecm/rita/v5/analysis" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/progressbar" "github.com/ClickHouse/clickhouse-go/v2" "github.com/charmbracelet/bubbles/progress" diff --git a/integration/importer_test.go b/integration/importer_test.go index 6d99746..ca7bdf9 100644 --- a/integration/importer_test.go +++ b/integration/importer_test.go @@ -4,10 +4,10 @@ import ( "context" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - i "github.com/activecm/rita/importer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + i "github.com/activecm/rita/v5/importer" "reflect" diff --git a/integration/integration_test.go b/integration/integration_test.go index 89b5da3..83eb8a3 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/joho/godotenv" "github.com/spf13/afero" diff --git a/integration/materialized_view_test.go b/integration/materialized_view_test.go index 45ad92a..baa0737 100644 --- a/integration/materialized_view_test.go +++ b/integration/materialized_view_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/activecm/rita/importer" + "github.com/activecm/rita/v5/importer" "github.com/ClickHouse/clickhouse-go/v2" "github.com/stretchr/testify/require" diff --git a/integration/metadb_test.go b/integration/metadb_test.go index 146e762..5e01bf4 100644 --- a/integration/metadb_test.go +++ b/integration/metadb_test.go @@ -7,11 +7,11 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - i "github.com/activecm/rita/importer" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + i "github.com/activecm/rita/v5/importer" + "github.com/activecm/rita/v5/util" fp "path/filepath" diff --git a/integration/missing_host_test.go b/integration/missing_host_test.go index b4430e7..ff62774 100644 --- a/integration/missing_host_test.go +++ b/integration/missing_host_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/viewer" "github.com/ClickHouse/clickhouse-go/v2" "github.com/spf13/afero" diff --git a/integration/networkid_test.go b/integration/networkid_test.go index 5c578ff..8271f7b 100644 --- a/integration/networkid_test.go +++ b/integration/networkid_test.go @@ -5,10 +5,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/google/uuid" diff --git a/integration/open_sni_test.go b/integration/open_sni_test.go index 7a8ea54..1916e2f 100644 --- a/integration/open_sni_test.go +++ b/integration/open_sni_test.go @@ -6,10 +6,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/viewer" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/integration/prevalence_test.go b/integration/prevalence_test.go index d72f333..46d762b 100644 --- a/integration/prevalence_test.go +++ b/integration/prevalence_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/integration/proxy_rolling_test.go b/integration/proxy_rolling_test.go index 56a17c2..ac15da6 100644 --- a/integration/proxy_rolling_test.go +++ b/integration/proxy_rolling_test.go @@ -6,10 +6,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/viewer" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/integration/threat_intel_test.go b/integration/threat_intel_test.go index 5ed7900..72cc4e2 100644 --- a/integration/threat_intel_test.go +++ b/integration/threat_intel_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/spf13/afero" "github.com/stretchr/testify/require" diff --git a/integration_rolling/historical_first_seen_test.go b/integration_rolling/historical_first_seen_test.go index 27bd1eb..0787789 100644 --- a/integration_rolling/historical_first_seen_test.go +++ b/integration_rolling/historical_first_seen_test.go @@ -13,9 +13,9 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" "github.com/dchest/siphash" "github.com/spf13/afero" diff --git a/integration_rolling/ttl_test.go b/integration_rolling/ttl_test.go index 135661f..831e4eb 100644 --- a/integration_rolling/ttl_test.go +++ b/integration_rolling/ttl_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/joho/godotenv" diff --git a/logger/logger.go b/logger/logger.go index 1ad1f69..5899abd 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/activecm/rita/config" + "github.com/activecm/rita/v5/config" "github.com/rs/zerolog" "github.com/rs/zerolog/pkgerrors" diff --git a/modifier/modifier.go b/modifier/modifier.go index 113b828..4b38e38 100644 --- a/modifier/modifier.go +++ b/modifier/modifier.go @@ -6,11 +6,11 @@ import ( "net" "time" - "github.com/activecm/rita/analysis" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/analysis" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/util" "github.com/ClickHouse/clickhouse-go/v2" "github.com/google/uuid" diff --git a/rita.go b/rita.go index 81d7816..7cd7918 100644 --- a/rita.go +++ b/rita.go @@ -5,10 +5,10 @@ import ( "log" "os" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/logger" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/logger" + "github.com/activecm/rita/v5/viewer" "github.com/joho/godotenv" "github.com/urfave/cli/v2" diff --git a/viewer/csv.go b/viewer/csv.go index 7e37d2e..115d60a 100644 --- a/viewer/csv.go +++ b/viewer/csv.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/database" "github.com/charmbracelet/bubbles/list" ) diff --git a/viewer/csv_test.go b/viewer/csv_test.go index d881842..8c1cdf1 100644 --- a/viewer/csv_test.go +++ b/viewer/csv_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/viewer" "github.com/charmbracelet/bubbles/list" "github.com/stretchr/testify/require" diff --git a/viewer/list.go b/viewer/list.go index d1f1b62..78dd44f 100644 --- a/viewer/list.go +++ b/viewer/list.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/activecm/rita/config" + "github.com/activecm/rita/v5/config" "github.com/charmbracelet/bubbles/list" tea "github.com/charmbracelet/bubbletea" diff --git a/viewer/results.go b/viewer/results.go index 0461b74..2ae4b81 100644 --- a/viewer/results.go +++ b/viewer/results.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/ClickHouse/clickhouse-go/v2" "github.com/charmbracelet/bubbles/list" diff --git a/viewer/search.go b/viewer/search.go index eb24ff2..096c9c8 100644 --- a/viewer/search.go +++ b/viewer/search.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/util" "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" diff --git a/viewer/search_test.go b/viewer/search_test.go index b8b195c..ac26436 100644 --- a/viewer/search_test.go +++ b/viewer/search_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/viewer" "github.com/charmbracelet/bubbles/list" tea "github.com/charmbracelet/bubbletea" diff --git a/viewer/sidebar.go b/viewer/sidebar.go index b006226..7c2f071 100644 --- a/viewer/sidebar.go +++ b/viewer/sidebar.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/activecm/rita/util" + "github.com/activecm/rita/v5/util" "github.com/charmbracelet/bubbles/viewport" tea "github.com/charmbracelet/bubbletea" diff --git a/viewer/sidebar_test.go b/viewer/sidebar_test.go index 0a3f53f..53fcc90 100644 --- a/viewer/sidebar_test.go +++ b/viewer/sidebar_test.go @@ -1,7 +1,7 @@ package viewer_test import ( - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/viewer" tea "github.com/charmbracelet/bubbletea" "github.com/stretchr/testify/require" diff --git a/viewer/viewer.go b/viewer/viewer.go index bce128e..776fba0 100644 --- a/viewer/viewer.go +++ b/viewer/viewer.go @@ -8,8 +8,8 @@ import ( "slices" "time" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" "github.com/charmbracelet/bubbles/key" "github.com/charmbracelet/bubbles/list" diff --git a/viewer/viewer_test.go b/viewer/viewer_test.go index 8cd4fc9..730f639 100644 --- a/viewer/viewer_test.go +++ b/viewer/viewer_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - "github.com/activecm/rita/cmd" - "github.com/activecm/rita/config" - "github.com/activecm/rita/database" - "github.com/activecm/rita/viewer" + "github.com/activecm/rita/v5/cmd" + "github.com/activecm/rita/v5/config" + "github.com/activecm/rita/v5/database" + "github.com/activecm/rita/v5/viewer" tea "github.com/charmbracelet/bubbletea" "github.com/joho/godotenv"