From 266b2a4067d25536716849b3b145dd76d569bc22 Mon Sep 17 00:00:00 2001 From: Roger Johansson Date: Fri, 24 Nov 2023 16:26:24 +0100 Subject: [PATCH 1/2] fix mod issues --- _examples/actor-autorespond/go.mod | 10 +++--- _examples/actor-backpressure/go.mod | 10 +++--- _examples/actor-deadletter/go.mod | 10 +++--- _examples/actor-helloworld/go.mod | 10 +++--- _examples/actor-inprocess-benchmark/go.mod | 10 +++--- _examples/actor-jaegertracing/go.mod | 10 +++--- _examples/actor-lifecycleevents/go.mod | 10 +++--- _examples/actor-logging/go.mod | 12 +++---- _examples/actor-mailbox-middleware/go.mod | 10 +++--- _examples/actor-messagebatch/go.mod | 10 +++--- _examples/actor-mixins/go.mod | 10 +++--- _examples/actor-receive-middleware/go.mod | 10 +++--- _examples/actor-receive-timeout/go.mod | 10 +++--- _examples/actor-request-response/go.mod | 10 +++--- _examples/actor-setbehavior/go.mod | 10 +++--- _examples/actor-spawn-benchmark/go.mod | 10 +++--- _examples/actor-supervision/go.mod | 10 +++--- _examples/cluster-basic/go.mod | 12 +++---- _examples/cluster-broadcast/go.mod | 12 +++---- .../cluster-eventstream-broadcast/go.mod | 12 +++---- _examples/cluster-grain/go.mod | 12 +++---- _examples/cluster-metrics/go.mod | 12 +++---- _examples/cluster-restartgracefully/go.mod | 12 +++---- _examples/kubernetes-sample/go.mod | 12 +++---- .../opentelemetry-custom-provider/go.mod | 4 +-- _examples/opentelemetry/go.mod | 10 +++--- _examples/persistence/go.mod | 10 +++--- _examples/remote-activate/go.mod | 12 +++---- _examples/remote-advertised-address/go.mod | 12 +++---- _examples/remote-benchmark/go.mod | 12 +++---- _examples/remote-channels/go.mod | 12 +++---- _examples/remote-chat/go.mod | 12 +++---- _examples/remote-header/go.mod | 12 +++---- _examples/remote-routing/go.mod | 12 +++---- _examples/remote-watch/go.mod | 12 +++---- _examples/router-demo/go.mod | 10 +++--- _examples/router-limitconcurrency/go.mod | 10 +++--- _examples/scheduler/go.mod | 10 +++--- go.mod | 14 ++++---- go.sum | 33 ++++++++++--------- 40 files changed, 227 insertions(+), 226 deletions(-) diff --git a/_examples/actor-autorespond/go.mod b/_examples/actor-autorespond/go.mod index 705dfd9e..155620e9 100644 --- a/_examples/actor-autorespond/go.mod +++ b/_examples/actor-autorespond/go.mod @@ -14,21 +14,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-backpressure/go.mod b/_examples/actor-backpressure/go.mod index 76b77860..d08721ab 100644 --- a/_examples/actor-backpressure/go.mod +++ b/_examples/actor-backpressure/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-deadletter/go.mod b/_examples/actor-deadletter/go.mod index 24260174..84f779e9 100644 --- a/_examples/actor-deadletter/go.mod +++ b/_examples/actor-deadletter/go.mod @@ -18,21 +18,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-helloworld/go.mod b/_examples/actor-helloworld/go.mod index 49663406..2a595f1f 100644 --- a/_examples/actor-helloworld/go.mod +++ b/_examples/actor-helloworld/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-inprocess-benchmark/go.mod b/_examples/actor-inprocess-benchmark/go.mod index 7b0e6203..07c09d52 100644 --- a/_examples/actor-inprocess-benchmark/go.mod +++ b/_examples/actor-inprocess-benchmark/go.mod @@ -14,21 +14,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-jaegertracing/go.mod b/_examples/actor-jaegertracing/go.mod index 0f57d8af..b1c23c5f 100644 --- a/_examples/actor-jaegertracing/go.mod +++ b/_examples/actor-jaegertracing/go.mod @@ -20,7 +20,7 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect @@ -28,15 +28,15 @@ require ( github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect go.uber.org/atomic v1.9.0 // indirect golang.org/x/sys v0.14.0 // indirect diff --git a/_examples/actor-lifecycleevents/go.mod b/_examples/actor-lifecycleevents/go.mod index 818e5aed..6988289e 100644 --- a/_examples/actor-lifecycleevents/go.mod +++ b/_examples/actor-lifecycleevents/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-logging/go.mod b/_examples/actor-logging/go.mod index 000edec8..261da22b 100644 --- a/_examples/actor-logging/go.mod +++ b/_examples/actor-logging/go.mod @@ -20,25 +20,25 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/samber/lo v1.38.1 // indirect github.com/samber/slog-common v0.11.0 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect ) diff --git a/_examples/actor-mailbox-middleware/go.mod b/_examples/actor-mailbox-middleware/go.mod index 5ec9a820..d8edd174 100644 --- a/_examples/actor-mailbox-middleware/go.mod +++ b/_examples/actor-mailbox-middleware/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-messagebatch/go.mod b/_examples/actor-messagebatch/go.mod index 09c2c885..ceab3bff 100644 --- a/_examples/actor-messagebatch/go.mod +++ b/_examples/actor-messagebatch/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-mixins/go.mod b/_examples/actor-mixins/go.mod index 6932a109..be124f4c 100644 --- a/_examples/actor-mixins/go.mod +++ b/_examples/actor-mixins/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-receive-middleware/go.mod b/_examples/actor-receive-middleware/go.mod index 611f4bbb..cc0f512f 100644 --- a/_examples/actor-receive-middleware/go.mod +++ b/_examples/actor-receive-middleware/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-receive-timeout/go.mod b/_examples/actor-receive-timeout/go.mod index e2de4805..b770eb77 100644 --- a/_examples/actor-receive-timeout/go.mod +++ b/_examples/actor-receive-timeout/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-request-response/go.mod b/_examples/actor-request-response/go.mod index 0ffddb92..49886e83 100644 --- a/_examples/actor-request-response/go.mod +++ b/_examples/actor-request-response/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-setbehavior/go.mod b/_examples/actor-setbehavior/go.mod index 0ec28b8e..677f9bdc 100644 --- a/_examples/actor-setbehavior/go.mod +++ b/_examples/actor-setbehavior/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-spawn-benchmark/go.mod b/_examples/actor-spawn-benchmark/go.mod index 7717da11..862b41d4 100644 --- a/_examples/actor-spawn-benchmark/go.mod +++ b/_examples/actor-spawn-benchmark/go.mod @@ -14,21 +14,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/actor-supervision/go.mod b/_examples/actor-supervision/go.mod index a7786075..e923196b 100644 --- a/_examples/actor-supervision/go.mod +++ b/_examples/actor-supervision/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/cluster-basic/go.mod b/_examples/cluster-basic/go.mod index b03ad0de..daa76f07 100644 --- a/_examples/cluster-basic/go.mod +++ b/_examples/cluster-basic/go.mod @@ -22,7 +22,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/consul/api v1.26.1 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect @@ -41,17 +41,17 @@ require ( github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/cluster-broadcast/go.mod b/_examples/cluster-broadcast/go.mod index 468de488..24820f09 100644 --- a/_examples/cluster-broadcast/go.mod +++ b/_examples/cluster-broadcast/go.mod @@ -20,7 +20,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/labstack/echo v3.3.10+incompatible // indirect github.com/labstack/gommon v0.3.1 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect @@ -30,20 +30,20 @@ require ( github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.1 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/crypto v0.15.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sync v0.5.0 // indirect golang.org/x/sys v0.14.0 // indirect diff --git a/_examples/cluster-eventstream-broadcast/go.mod b/_examples/cluster-eventstream-broadcast/go.mod index fa13542a..b1ce7adf 100644 --- a/_examples/cluster-eventstream-broadcast/go.mod +++ b/_examples/cluster-eventstream-broadcast/go.mod @@ -7,7 +7,7 @@ replace github.com/asynkron/protoactor-go => ../.. require ( github.com/asynkron/goconsole v0.0.0-20160504192649-bfa12eebf716 github.com/asynkron/protoactor-go v0.0.0-00010101000000-000000000000 - github.com/google/uuid v1.3.1 + github.com/google/uuid v1.4.0 google.golang.org/protobuf v1.31.0 ) @@ -30,20 +30,20 @@ require ( github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.1 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/crypto v0.15.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sync v0.5.0 // indirect golang.org/x/sys v0.14.0 // indirect diff --git a/_examples/cluster-grain/go.mod b/_examples/cluster-grain/go.mod index 5b703e7e..952f7dec 100644 --- a/_examples/cluster-grain/go.mod +++ b/_examples/cluster-grain/go.mod @@ -22,7 +22,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/consul/api v1.26.1 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect @@ -41,17 +41,17 @@ require ( github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/cluster-metrics/go.mod b/_examples/cluster-metrics/go.mod index 66bbfe76..fe7181ec 100644 --- a/_examples/cluster-metrics/go.mod +++ b/_examples/cluster-metrics/go.mod @@ -22,7 +22,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/consul/api v1.26.1 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect @@ -41,17 +41,17 @@ require ( github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/cluster-restartgracefully/go.mod b/_examples/cluster-restartgracefully/go.mod index b4a53b45..88a200f3 100644 --- a/_examples/cluster-restartgracefully/go.mod +++ b/_examples/cluster-restartgracefully/go.mod @@ -23,7 +23,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/consul/api v1.26.1 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect @@ -44,17 +44,17 @@ require ( github.com/onsi/gomega v1.30.0 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/kubernetes-sample/go.mod b/_examples/kubernetes-sample/go.mod index 8a350ff3..802b7872 100644 --- a/_examples/kubernetes-sample/go.mod +++ b/_examples/kubernetes-sample/go.mod @@ -28,7 +28,7 @@ require ( github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-cmp v0.6.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect @@ -40,17 +40,17 @@ require ( github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/oauth2 v0.11.0 // indirect golang.org/x/sys v0.14.0 // indirect diff --git a/_examples/opentelemetry-custom-provider/go.mod b/_examples/opentelemetry-custom-provider/go.mod index a6d6f2d2..62af14cc 100644 --- a/_examples/opentelemetry-custom-provider/go.mod +++ b/_examples/opentelemetry-custom-provider/go.mod @@ -24,12 +24,12 @@ require ( github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/twmb/murmur3 v1.1.6 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect diff --git a/_examples/opentelemetry/go.mod b/_examples/opentelemetry/go.mod index aada612c..af68f889 100644 --- a/_examples/opentelemetry/go.mod +++ b/_examples/opentelemetry/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/persistence/go.mod b/_examples/persistence/go.mod index 0f1a7689..166f4843 100644 --- a/_examples/persistence/go.mod +++ b/_examples/persistence/go.mod @@ -18,21 +18,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect ) diff --git a/_examples/remote-activate/go.mod b/_examples/remote-activate/go.mod index 40c8e1c9..af1ff41b 100644 --- a/_examples/remote-activate/go.mod +++ b/_examples/remote-activate/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-advertised-address/go.mod b/_examples/remote-advertised-address/go.mod index c274b409..ed2413ee 100644 --- a/_examples/remote-advertised-address/go.mod +++ b/_examples/remote-advertised-address/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-benchmark/go.mod b/_examples/remote-benchmark/go.mod index 0078516e..142790bb 100644 --- a/_examples/remote-benchmark/go.mod +++ b/_examples/remote-benchmark/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-channels/go.mod b/_examples/remote-channels/go.mod index d6153a6d..50cd4bc4 100644 --- a/_examples/remote-channels/go.mod +++ b/_examples/remote-channels/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-chat/go.mod b/_examples/remote-chat/go.mod index b678c54c..9f330f72 100644 --- a/_examples/remote-chat/go.mod +++ b/_examples/remote-chat/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-header/go.mod b/_examples/remote-header/go.mod index 80bd61d0..55eab6e5 100644 --- a/_examples/remote-header/go.mod +++ b/_examples/remote-header/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-routing/go.mod b/_examples/remote-routing/go.mod index 6e2eca93..373d7b8c 100644 --- a/_examples/remote-routing/go.mod +++ b/_examples/remote-routing/go.mod @@ -20,24 +20,24 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/remote-watch/go.mod b/_examples/remote-watch/go.mod index 294bd881..bd19a169 100644 --- a/_examples/remote-watch/go.mod +++ b/_examples/remote-watch/go.mod @@ -20,23 +20,23 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect golang.org/x/net v0.18.0 // indirect golang.org/x/sys v0.14.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/_examples/router-demo/go.mod b/_examples/router-demo/go.mod index ef95326c..c4b3afe0 100644 --- a/_examples/router-demo/go.mod +++ b/_examples/router-demo/go.mod @@ -17,22 +17,22 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/router-limitconcurrency/go.mod b/_examples/router-limitconcurrency/go.mod index d76eb539..8a1c7e2d 100644 --- a/_examples/router-limitconcurrency/go.mod +++ b/_examples/router-limitconcurrency/go.mod @@ -17,22 +17,22 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/_examples/scheduler/go.mod b/_examples/scheduler/go.mod index 611c82d4..4d70ad99 100644 --- a/_examples/scheduler/go.mod +++ b/_examples/scheduler/go.mod @@ -17,21 +17,21 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/sdk v1.21.0 // indirect - go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect golang.org/x/sys v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect diff --git a/go.mod b/go.mod index cc955312..79c0d388 100644 --- a/go.mod +++ b/go.mod @@ -9,16 +9,16 @@ require ( github.com/couchbase/gocb v1.6.7 github.com/emirpasic/gods v1.18.1 github.com/gogo/protobuf v1.3.2 - github.com/google/uuid v1.3.1 + github.com/google/uuid v1.4.0 github.com/hashicorp/consul/api v1.26.1 github.com/opentracing/opentracing-go v1.2.0 github.com/orcaman/concurrent-map v1.0.0 github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b github.com/stretchr/testify v1.8.4 go.opentelemetry.io/otel v1.21.0 - go.opentelemetry.io/otel/exporters/prometheus v0.39.0 + go.opentelemetry.io/otel/exporters/prometheus v0.44.0 go.opentelemetry.io/otel/metric v1.21.0 - go.opentelemetry.io/otel/sdk/metric v0.39.0 + go.opentelemetry.io/otel/sdk/metric v1.21.0 golang.org/x/net v0.18.0 google.golang.org/grpc v1.59.0 google.golang.org/protobuf v1.31.0 @@ -26,12 +26,12 @@ require ( require ( github.com/go-zookeeper/zk v1.0.3 - github.com/golang/mock v1.5.0 + github.com/golang/mock v1.6.0 github.com/labstack/echo v3.3.10+incompatible github.com/lithammer/shortuuid/v4 v4.0.0 - github.com/twmb/murmur3 v1.1.6 + github.com/twmb/murmur3 v1.1.8 go.etcd.io/etcd/client/v3 v3.5.10 - golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 + golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa golang.org/x/sync v0.5.0 k8s.io/api v0.28.4 k8s.io/apimachinery v0.28.4 @@ -86,7 +86,7 @@ require ( github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.17.0 - github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect + github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.11.1 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect diff --git a/go.sum b/go.sum index 09efc94c..e2789a43 100644 --- a/go.sum +++ b/go.sum @@ -70,8 +70,8 @@ github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5x github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang/mock v1.5.0 h1:jlYHihg//f7RRwuPfptm04yp4s7O6Kw8EZiVYIGcH0g= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -96,8 +96,8 @@ github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/ github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= -github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= +github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/consul/api v1.26.1 h1:5oSXOO5fboPZeW5SN+TdGFP/BILDgBm19OrPZ/pICIM= github.com/hashicorp/consul/api v1.26.1/go.mod h1:B4sQTeaSO16NtynqrAdwOlahJ7IUDZM9cj2420xYL8A= github.com/hashicorp/consul/sdk v0.15.0 h1:2qK9nDrr4tiJKRoxPGhm6B7xJjLVIQqkjiab2M4aKjU= @@ -238,8 +238,8 @@ github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+L github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 h1:v7DLqVdK4VrYkVD5diGdl4sxJurKJEMnODWRJlxV9oM= -github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= +github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= +github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= @@ -278,8 +278,8 @@ github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl github.com/tinylib/msgp v1.1.5/go.mod h1:eQsjooMTnV42mHu917E26IogZ2930nFyBQdofk10Udg= github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31/go.mod h1:onvgF043R+lC5RZ8IT9rBXDaEDnpnw/Cl+HFiw+v/7Q= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= -github.com/twmb/murmur3 v1.1.6 h1:mqrRot1BRxm+Yct+vavLMou2/iJt0tNVTTC0QoIjaZg= -github.com/twmb/murmur3 v1.1.6/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ= +github.com/twmb/murmur3 v1.1.8 h1:8Yt9taO/WN3l08xErzjeschgZU2QSrwm1kclYq+0aRg= +github.com/twmb/murmur3 v1.1.8/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.2.1 h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52WA1u4= @@ -295,14 +295,14 @@ go.etcd.io/etcd/client/v3 v3.5.10 h1:W9TXNZ+oB3MCd/8UjxHTWK5J9Nquw9fQBLJd5ne5/Ao go.etcd.io/etcd/client/v3 v3.5.10/go.mod h1:RVeBnDz2PUEZqTpgqwAtUd8nAPf5kjyFyND7P1VkOKc= go.opentelemetry.io/otel v1.21.0 h1:hzLeKBZEL7Okw2mGzZ0cc4k/A7Fta0uoPgaJCr8fsFc= go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo= -go.opentelemetry.io/otel/exporters/prometheus v0.39.0 h1:whAaiHxOatgtKd+w0dOi//1KUxj3KoPINZdtDaDj3IA= -go.opentelemetry.io/otel/exporters/prometheus v0.39.0/go.mod h1:4jo5Q4CROlCpSPsXLhymi+LYrDXd2ObU5wbKayfZs7Y= +go.opentelemetry.io/otel/exporters/prometheus v0.44.0 h1:08qeJgaPC0YEBu2PQMbqU3rogTlyzpjhCI2b58Yn00w= +go.opentelemetry.io/otel/exporters/prometheus v0.44.0/go.mod h1:ERL2uIeBtg4TxZdojHUwzZfIFlUIjZtxubT5p4h1Gjg= go.opentelemetry.io/otel/metric v1.21.0 h1:tlYWfeo+Bocx5kLEloTjbcDwBuELRrIFxwdQ36PlJu4= go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzug24uvsyIEJRWM= go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZXQ8= go.opentelemetry.io/otel/sdk v1.21.0/go.mod h1:Nna6Yv7PWTdgJHVRD9hIYywQBRx7pbox6nwBnZIxl/E= -go.opentelemetry.io/otel/sdk/metric v0.39.0 h1:Kun8i1eYf48kHH83RucG93ffz0zGV1sh46FAScOTuDI= -go.opentelemetry.io/otel/sdk/metric v0.39.0/go.mod h1:piDIRgjcK7u0HCL5pCA4e74qpK/jk3NiUoAHATVAmiI= +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.21.0 h1:WD9i5gzvoUPuXIXH24ZNBudiarZDKuekPqi/E8fpfLc= go.opentelemetry.io/otel/trace v1.21.0/go.mod h1:LGbsEB0f9LGjN+OZaQQ26sohbOmiMR+BaslueVtS/qQ= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= @@ -322,8 +322,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.15.0 h1:frVn1TEaCEaZcn3Tmd7Y2b5KKPaZ+I32Q2OA3kYp5TA= golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= -golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 h1:m64FZMko/V45gv0bNmrNYoDEq8U5YUhetc9cBWKS1TQ= -golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63/go.mod h1:0v4NqG35kSWCMzLaMeX+IQrlSnVE/bqGSyC2cz/9Le8= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -396,9 +396,10 @@ golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20201022035929-9cf592e881e9/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 h1:Vve/L0v7CXXuxUmaMGIEK/dEeq7uiqb5qBgQrZzIE7E= -golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846/go.mod h1:Sc0INKfu04TlqNoRA1hgpFZbhYXHPr4V5DzpSBTPqQM= +golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= +golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= From 432bd77687856de40b3a97a1684e2f0feb8bf434 Mon Sep 17 00:00:00 2001 From: Roger Johansson Date: Fri, 24 Nov 2023 16:35:34 +0100 Subject: [PATCH 2/2] fix mod issues --- _examples/cluster-basic/shared/protos.pb.go | 2 +- .../protos.pb.go | 2 +- _examples/cluster-metrics/shared/protos.pb.go | 2 +- .../shared/protos_protoactor.go | 34 ++++++++----------- .../protos.pb.go | 6 ++-- .../opentelemetry-custom-provider/go.mod | 8 ++--- .../remote-activate/messages/protos.pb.go | 2 +- .../messages/protos.pb.go | 2 +- .../remote-benchmark/messages/protos.pb.go | 2 +- .../remote-channels/messages/protos.pb.go | 2 +- _examples/remote-chat/messages/protos.pb.go | 2 +- _examples/remote-header/messages/protos.pb.go | 2 +- .../remote-routing/messages/messages.pb.go | 2 +- _examples/remote-watch/messages/protos.pb.go | 2 +- cluster/cluster.pb.go | 4 +-- .../cluster_test_tool/pubsub_cluster.pb.go | 4 +-- cluster/gossip.pb.go | 4 +-- cluster/grain.pb.go | 2 +- cluster/pubsub.pb.go | 5 ++- cluster/pubsub_test.pb.go | 4 +-- remote/remote.pb.go | 2 +- remote/remote_grpc.pb.go | 2 +- router/routercontracts.pb.go | 2 +- 23 files changed, 46 insertions(+), 53 deletions(-) diff --git a/_examples/cluster-basic/shared/protos.pb.go b/_examples/cluster-basic/shared/protos.pb.go index a92286f3..6a240a0c 100644 --- a/_examples/cluster-basic/shared/protos.pb.go +++ b/_examples/cluster-basic/shared/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package shared diff --git a/_examples/cluster-eventstream-broadcast/protos.pb.go b/_examples/cluster-eventstream-broadcast/protos.pb.go index fd499599..6128028b 100644 --- a/_examples/cluster-eventstream-broadcast/protos.pb.go +++ b/_examples/cluster-eventstream-broadcast/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package main diff --git a/_examples/cluster-metrics/shared/protos.pb.go b/_examples/cluster-metrics/shared/protos.pb.go index 7c9939d0..e61ae45b 100644 --- a/_examples/cluster-metrics/shared/protos.pb.go +++ b/_examples/cluster-metrics/shared/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package shared diff --git a/_examples/cluster-metrics/shared/protos_protoactor.go b/_examples/cluster-metrics/shared/protos_protoactor.go index b571fac5..52203a27 100644 --- a/_examples/cluster-metrics/shared/protos_protoactor.go +++ b/_examples/cluster-metrics/shared/protos_protoactor.go @@ -4,27 +4,21 @@ package shared import ( "errors" "fmt" + "log/slog" "math" "time" "github.com/asynkron/protoactor-go/actor" "github.com/asynkron/protoactor-go/cluster" - logmod "github.com/asynkron/protoactor-go/log" "google.golang.org/protobuf/proto" ) var ( - plog = logmod.New(logmod.InfoLevel, "[GRAIN][shared]") - _ = proto.Marshal - _ = fmt.Errorf - _ = math.Inf + _ = proto.Marshal + _ = fmt.Errorf + _ = math.Inf ) -// SetLogLevel sets the log level. -func SetLogLevel(level logmod.Level) { - plog.SetLevel(level) -} - var xHelloFactory func() Hello // HelloFactory produces a Hello @@ -89,7 +83,7 @@ func (g *HelloGrainClient) SayHello(r *HelloRequest, opts ...cluster.GrainCallOp return nil, err } reqMsg := &cluster.GrainRequest{MethodIndex: 0, MessageData: bytes} - resp, err := g.cluster.Call(g.Identity, "Hello", reqMsg, opts...) + resp, err := g.cluster.Request(g.Identity, "Hello", reqMsg, opts...) if err != nil { return nil, err } @@ -115,7 +109,7 @@ func (g *HelloGrainClient) Add(r *AddRequest, opts ...cluster.GrainCallOption) ( return nil, err } reqMsg := &cluster.GrainRequest{MethodIndex: 1, MessageData: bytes} - resp, err := g.cluster.Call(g.Identity, "Hello", reqMsg, opts...) + resp, err := g.cluster.Request(g.Identity, "Hello", reqMsg, opts...) if err != nil { return nil, err } @@ -141,7 +135,7 @@ func (g *HelloGrainClient) VoidFunc(r *AddRequest, opts ...cluster.GrainCallOpti return nil, err } reqMsg := &cluster.GrainRequest{MethodIndex: 2, MessageData: bytes} - resp, err := g.cluster.Call(g.Identity, "Hello", reqMsg, opts...) + resp, err := g.cluster.Request(g.Identity, "Hello", reqMsg, opts...) if err != nil { return nil, err } @@ -170,7 +164,7 @@ type HelloActor struct { // Receive ensures the lifecycle of the actor for the received message func (a *HelloActor) Receive(ctx actor.Context) { switch msg := ctx.Message().(type) { - case *actor.Started: // pass + case *actor.Started: //pass case *cluster.ClusterInit: a.ctx = cluster.NewGrainContext(ctx, msg.Identity, msg.Cluster) a.inner = xHelloFactory() @@ -192,7 +186,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { req := &HelloRequest{} err := proto.Unmarshal(msg.MessageData, req) if err != nil { - plog.Error("SayHello(HelloRequest) proto.Unmarshal failed.", logmod.Error(err)) + ctx.Logger().Error("[Grain] SayHello(HelloRequest) proto.Unmarshal failed.", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return @@ -205,7 +199,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { } bytes, err := proto.Marshal(r0) if err != nil { - plog.Error("SayHello(HelloRequest) proto.Marshal failed", logmod.Error(err)) + ctx.Logger().Error("[Grain] SayHello(HelloRequest) proto.Marshal failed", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return @@ -216,7 +210,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { req := &AddRequest{} err := proto.Unmarshal(msg.MessageData, req) if err != nil { - plog.Error("Add(AddRequest) proto.Unmarshal failed.", logmod.Error(err)) + ctx.Logger().Error("[Grain] Add(AddRequest) proto.Unmarshal failed.", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return @@ -229,7 +223,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { } bytes, err := proto.Marshal(r0) if err != nil { - plog.Error("Add(AddRequest) proto.Marshal failed", logmod.Error(err)) + ctx.Logger().Error("[Grain] Add(AddRequest) proto.Marshal failed", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return @@ -240,7 +234,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { req := &AddRequest{} err := proto.Unmarshal(msg.MessageData, req) if err != nil { - plog.Error("VoidFunc(AddRequest) proto.Unmarshal failed.", logmod.Error(err)) + ctx.Logger().Error("[Grain] VoidFunc(AddRequest) proto.Unmarshal failed.", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return @@ -253,7 +247,7 @@ func (a *HelloActor) Receive(ctx actor.Context) { } bytes, err := proto.Marshal(r0) if err != nil { - plog.Error("VoidFunc(AddRequest) proto.Marshal failed", logmod.Error(err)) + ctx.Logger().Error("[Grain] VoidFunc(AddRequest) proto.Marshal failed", slog.Any("error", err)) resp := &cluster.GrainErrorResponse{Err: err.Error()} ctx.Respond(resp) return diff --git a/_examples/cluster-pubsub-batching-producer/protos.pb.go b/_examples/cluster-pubsub-batching-producer/protos.pb.go index 83bf91ed..572bbd6e 100644 --- a/_examples/cluster-pubsub-batching-producer/protos.pb.go +++ b/_examples/cluster-pubsub-batching-producer/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.9 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: protos.proto package main @@ -78,7 +78,7 @@ var file_protos_proto_rawDesc = []byte{ 0x72, 0x6f, 0x74, 0x6f, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x67, 0x6f, 0x2f, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2d, 0x70, 0x75, 0x62, 0x73, 0x75, 0x62, 0x2d, 0x62, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2d, 0x70, - 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x69, 0x6e, 0x62, 0x06, 0x70, 0x72, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x69, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } diff --git a/_examples/opentelemetry-custom-provider/go.mod b/_examples/opentelemetry-custom-provider/go.mod index 62af14cc..062cf9e9 100644 --- a/_examples/opentelemetry-custom-provider/go.mod +++ b/_examples/opentelemetry-custom-provider/go.mod @@ -18,16 +18,16 @@ require ( github.com/go-logr/logr v1.3.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/uuid v1.3.1 // indirect + github.com/google/uuid v1.4.0 // indirect github.com/lithammer/shortuuid/v4 v4.0.0 // indirect github.com/lmittmann/tint v1.0.3 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/orcaman/concurrent-map v1.0.0 // indirect github.com/prometheus/client_golang v1.17.0 // indirect github.com/prometheus/client_model v0.5.0 // indirect - github.com/prometheus/common v0.44.0 // indirect - github.com/prometheus/procfs v0.11.1 // indirect - github.com/twmb/murmur3 v1.1.6 // indirect + github.com/prometheus/common v0.45.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect + github.com/twmb/murmur3 v1.1.8 // indirect go.opentelemetry.io/otel v1.21.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect diff --git a/_examples/remote-activate/messages/protos.pb.go b/_examples/remote-activate/messages/protos.pb.go index 8cad6b77..caba27a1 100644 --- a/_examples/remote-activate/messages/protos.pb.go +++ b/_examples/remote-activate/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-advertised-address/messages/protos.pb.go b/_examples/remote-advertised-address/messages/protos.pb.go index 0e155248..4b370422 100644 --- a/_examples/remote-advertised-address/messages/protos.pb.go +++ b/_examples/remote-advertised-address/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-benchmark/messages/protos.pb.go b/_examples/remote-benchmark/messages/protos.pb.go index 019cd3e5..b775f07f 100644 --- a/_examples/remote-benchmark/messages/protos.pb.go +++ b/_examples/remote-benchmark/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-channels/messages/protos.pb.go b/_examples/remote-channels/messages/protos.pb.go index f0df1c80..df4adf20 100644 --- a/_examples/remote-channels/messages/protos.pb.go +++ b/_examples/remote-channels/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-chat/messages/protos.pb.go b/_examples/remote-chat/messages/protos.pb.go index 73ae21aa..1fc0fe44 100644 --- a/_examples/remote-chat/messages/protos.pb.go +++ b/_examples/remote-chat/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-header/messages/protos.pb.go b/_examples/remote-header/messages/protos.pb.go index 249718b2..ab711db1 100644 --- a/_examples/remote-header/messages/protos.pb.go +++ b/_examples/remote-header/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/_examples/remote-routing/messages/messages.pb.go b/_examples/remote-routing/messages/messages.pb.go index 766c41a5..d25fe718 100644 --- a/_examples/remote-routing/messages/messages.pb.go +++ b/_examples/remote-routing/messages/messages.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: messages.proto package messages diff --git a/_examples/remote-watch/messages/protos.pb.go b/_examples/remote-watch/messages/protos.pb.go index 36eca43c..e6853887 100644 --- a/_examples/remote-watch/messages/protos.pb.go +++ b/_examples/remote-watch/messages/protos.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: protos.proto package messages diff --git a/cluster/cluster.pb.go b/cluster/cluster.pb.go index cd39234c..6659f6bc 100644 --- a/cluster/cluster.pb.go +++ b/cluster/cluster.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.9 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: cluster.proto package cluster diff --git a/cluster/cluster_test_tool/pubsub_cluster.pb.go b/cluster/cluster_test_tool/pubsub_cluster.pb.go index 0eddac0e..59e9ba11 100644 --- a/cluster/cluster_test_tool/pubsub_cluster.pb.go +++ b/cluster/cluster_test_tool/pubsub_cluster.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.9 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: pubsub_cluster.proto package cluster_test_tool diff --git a/cluster/gossip.pb.go b/cluster/gossip.pb.go index 59788762..2db8cb51 100644 --- a/cluster/gossip.pb.go +++ b/cluster/gossip.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.26.0 -// protoc v3.20.2 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: gossip.proto package cluster diff --git a/cluster/grain.pb.go b/cluster/grain.pb.go index 8b107310..dda1debe 100644 --- a/cluster/grain.pb.go +++ b/cluster/grain.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: grain.proto package cluster diff --git a/cluster/pubsub.pb.go b/cluster/pubsub.pb.go index 7ef74e94..85529e85 100644 --- a/cluster/pubsub.pb.go +++ b/cluster/pubsub.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.9 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: pubsub.proto package cluster @@ -135,7 +135,6 @@ type SubscriberIdentity struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Identity: - // // *SubscriberIdentity_Pid // *SubscriberIdentity_ClusterIdentity Identity isSubscriberIdentity_Identity `protobuf_oneof:"Identity"` diff --git a/cluster/pubsub_test.pb.go b/cluster/pubsub_test.pb.go index 3c93c83a..a8c473e2 100644 --- a/cluster/pubsub_test.pb.go +++ b/cluster/pubsub_test.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.9 +// protoc-gen-go v1.27.1 +// protoc v4.24.3 // source: pubsub_test.proto package cluster diff --git a/remote/remote.pb.go b/remote/remote.pb.go index e826dab1..969266cb 100644 --- a/remote/remote.pb.go +++ b/remote/remote.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: remote.proto package remote diff --git a/remote/remote_grpc.pb.go b/remote/remote_grpc.pb.go index 4b82d770..60772399 100644 --- a/remote/remote_grpc.pb.go +++ b/remote/remote_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 -// - protoc v3.19.1 +// - protoc v4.24.3 // source: remote.proto package remote diff --git a/router/routercontracts.pb.go b/router/routercontracts.pb.go index 95c37896..c3ce3451 100644 --- a/router/routercontracts.pb.go +++ b/router/routercontracts.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 -// protoc v3.19.1 +// protoc v4.24.3 // source: routercontracts.proto package router