From 31a8d9c2873640ab73a397f830d5029107686bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jochum?= Date: Thu, 7 Dec 2023 01:57:39 +0100 Subject: [PATCH] fix(all): it's go 1.21 not 1.21.5, pt6. --- benchmarks/rps/go.mod | 3 +-- client/orb_transport/basehertz/go.mod | 2 +- client/orb_transport/basehertz/go.sum | 2 ++ client/orb_transport/basehttp/go.mod | 2 +- client/orb_transport/basehttp/go.sum | 2 ++ client/orb_transport/drpc/go.mod | 3 ++- client/orb_transport/drpc/go.sum | 2 ++ client/orb_transport/grpc/go.mod | 3 ++- client/orb_transport/grpc/go.sum | 2 ++ client/orb_transport/h2c/go.mod | 6 +++--- client/orb_transport/h2c/go.sum | 4 ++++ client/orb_transport/hertzh2c/go.mod | 6 +++--- client/orb_transport/hertzh2c/go.sum | 4 ++++ client/orb_transport/hertzhttp/go.mod | 6 +++--- client/orb_transport/hertzhttp/go.sum | 4 ++++ client/orb_transport/http/go.mod | 6 +++--- client/orb_transport/http/go.sum | 4 ++++ client/orb_transport/http3/go.mod | 6 +++--- client/orb_transport/http3/go.sum | 4 ++++ client/orb_transport/https/go.mod | 6 +++--- client/orb_transport/https/go.sum | 4 ++++ client/tests/go.mod | 27 ++++++++++++++------------- client/tests/go.sum | 24 ++++++++++++++++++++++++ config/tests/go.mod | 3 +-- registry/consul/go.mod | 2 +- registry/consul/go.sum | 2 ++ registry/mdns/go.mod | 3 +-- registry/nats/go.mod | 3 +-- server/grpc/go.mod | 3 +-- server/http/go.mod | 3 +-- server/tests/go.mod | 3 +-- 31 files changed, 104 insertions(+), 50 deletions(-) diff --git a/benchmarks/rps/go.mod b/benchmarks/rps/go.mod index 714f11c4..bc177777 100644 --- a/benchmarks/rps/go.mod +++ b/benchmarks/rps/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/benchmarks/rps -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 diff --git a/client/orb_transport/basehertz/go.mod b/client/orb_transport/basehertz/go.mod index 58613103..a75ffdb5 100644 --- a/client/orb_transport/basehertz/go.mod +++ b/client/orb_transport/basehertz/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/cloudwego/hertz v0.7.2 github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 ) require ( diff --git a/client/orb_transport/basehertz/go.sum b/client/orb_transport/basehertz/go.sum index 997c4f8f..b3e99b96 100644 --- a/client/orb_transport/basehertz/go.sum +++ b/client/orb_transport/basehertz/go.sum @@ -52,6 +52,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= diff --git a/client/orb_transport/basehttp/go.mod b/client/orb_transport/basehttp/go.mod index cd39a4e7..43c1fb2f 100644 --- a/client/orb_transport/basehttp/go.mod +++ b/client/orb_transport/basehttp/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 ) require github.com/cornelk/hashmap v1.0.8 // indirect diff --git a/client/orb_transport/basehttp/go.sum b/client/orb_transport/basehttp/go.sum index b69320a7..2c2d1033 100644 --- a/client/orb_transport/basehttp/go.sum +++ b/client/orb_transport/basehttp/go.sum @@ -18,6 +18,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= diff --git a/client/orb_transport/drpc/go.mod b/client/orb_transport/drpc/go.mod index 53f8cfb2..932d3d07 100644 --- a/client/orb_transport/drpc/go.mod +++ b/client/orb_transport/drpc/go.mod @@ -2,9 +2,10 @@ module github.com/go-orb/plugins/client/orb_transport/drpc go 1.21 + require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231205052311-482ca12d811d github.com/go-orb/plugins/codecs/proto v0.0.0-20231205052311-482ca12d811d diff --git a/client/orb_transport/drpc/go.sum b/client/orb_transport/drpc/go.sum index 5fc92541..52c840e2 100644 --- a/client/orb_transport/drpc/go.sum +++ b/client/orb_transport/drpc/go.sum @@ -52,6 +52,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05 h1:2ygm/mJfGtC/dNvrgXy7v57pSPDmAy3mitejcmouOCk= github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05/go.mod h1:OBpWNo8j7owv13FexdfA7u3yVGDq73XXt007cDLMUsA= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231205052311-482ca12d811d h1:sLkCVFSIcM+wabC782u9fmvBnFXKvOXWTZVtOUKuqS8= diff --git a/client/orb_transport/grpc/go.mod b/client/orb_transport/grpc/go.mod index 301b28fb..19fefaeb 100644 --- a/client/orb_transport/grpc/go.mod +++ b/client/orb_transport/grpc/go.mod @@ -2,9 +2,10 @@ module github.com/go-orb/plugins/client/orb_transport/grpc go 1.21 + require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231205052311-482ca12d811d github.com/go-orb/plugins/codecs/proto v0.0.0-20231205052311-482ca12d811d diff --git a/client/orb_transport/grpc/go.sum b/client/orb_transport/grpc/go.sum index 5ab9c4f4..d5fba41b 100644 --- a/client/orb_transport/grpc/go.sum +++ b/client/orb_transport/grpc/go.sum @@ -83,6 +83,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05 h1:2ygm/mJfGtC/dNvrgXy7v57pSPDmAy3mitejcmouOCk= github.com/go-orb/plugins/client/tests v0.0.0-20231205051152-a7c84fe79f05/go.mod h1:OBpWNo8j7owv13FexdfA7u3yVGDq73XXt007cDLMUsA= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231205052311-482ca12d811d h1:sLkCVFSIcM+wabC782u9fmvBnFXKvOXWTZVtOUKuqS8= diff --git a/client/orb_transport/h2c/go.mod b/client/orb_transport/h2c/go.mod index aa9ecc5b..635ced10 100644 --- a/client/orb_transport/h2c/go.mod +++ b/client/orb_transport/h2c/go.mod @@ -1,11 +1,11 @@ module github.com/go-orb/plugins/client/orb_transport/h2c -go 1.21 +go 1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/h2c/go.sum b/client/orb_transport/h2c/go.sum index 779cf474..f08e6aad 100644 --- a/client/orb_transport/h2c/go.sum +++ b/client/orb_transport/h2c/go.sum @@ -83,6 +83,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018 h1:jpIOnIFE+zsKFoVnurL7BFCtpUmO9lndbqoYvutwCVE= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:Nvv83sCh4O6RtIoaC8WUopZLDRFioZugCzEMqV3H2nM= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207001307-6bf78e510437 h1:ZjdKzyFprgqu862uoKegthibJGSi4KXVYil7rP45YY0= @@ -95,6 +97,8 @@ github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bb github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bbed223afb0a/go.mod h1:i1NRPLwQUfia6sfNe3+wrEjebF8s0uXLF4CO2mfjNqA= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c h1:Yq7Izqke2TqllL87etPxz32BDSfFco6/+jS7yjl9xzo= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c/go.mod h1:NOUamVwxeoyuJaACp0Nrkf1LZlXGq6t+X/sytvkHRM4= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 h1:euvQuBhB0KESMTQCA1fCeIcH6PdrfgnFBULQZPk9Wso= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98/go.mod h1:iOy7kI3O+IXWF0TF8VA0xHyMz0+XPHrLW7LrL5CmYP0= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/orb_transport/hertzh2c/go.mod b/client/orb_transport/hertzh2c/go.mod index 75070f4c..56c6ea4e 100644 --- a/client/orb_transport/hertzh2c/go.mod +++ b/client/orb_transport/hertzh2c/go.mod @@ -1,12 +1,12 @@ module github.com/go-orb/plugins/client/orb_transport/hertzh2c -go 1.21 +go 1.21.5 require ( github.com/cloudwego/hertz v0.7.2 github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/hertzh2c/go.sum b/client/orb_transport/hertzh2c/go.sum index e9a87b46..3bbbc78e 100644 --- a/client/orb_transport/hertzh2c/go.sum +++ b/client/orb_transport/hertzh2c/go.sum @@ -81,6 +81,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231206235910-b8f58c9e9018 h1:RFC59GQazZvgi2lMWyvOKcahGD7N5hFMC69oPKw8utM= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:k1IyNtSIHX1dm+9CXJRrccRcH3atb4Lm0XXZXIBAlGw= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207001307-6bf78e510437 h1:4oN5Mg9qTKRw4Q0w4UG6zcE8qmPf8fGWAvyZTkYlMGE= @@ -93,6 +95,8 @@ github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005018-b github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005018-bbed223afb0a/go.mod h1:gZz6u6LApMRfJSWzcgcWVEkWm8BXt9aIjYbAYx25494= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c h1:hgkZTDIJAzn+bROAZQ0C71E9nTFPYrfHE9DP70VDgzQ= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c/go.mod h1:yhxK14XH010qM7x2rNvU+hYKh+CRsoF+hKC4kr6Oj5o= +github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98 h1:Lf/gpAqGA3XoLPcE+ZK60/N1DFMshnZ47Ma3QTR/Cb8= +github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98/go.mod h1:ju/teT+1X8egK6R0D1vNtP/+RdhF6Yjbe7lf6JjKx34= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/orb_transport/hertzhttp/go.mod b/client/orb_transport/hertzhttp/go.mod index 2d3948fd..f8911265 100644 --- a/client/orb_transport/hertzhttp/go.mod +++ b/client/orb_transport/hertzhttp/go.mod @@ -1,12 +1,12 @@ module github.com/go-orb/plugins/client/orb_transport/hertzhttp -go 1.21 +go 1.21.5 require ( github.com/cloudwego/hertz v0.7.2 github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/hertzhttp/go.sum b/client/orb_transport/hertzhttp/go.sum index e9a87b46..3bbbc78e 100644 --- a/client/orb_transport/hertzhttp/go.sum +++ b/client/orb_transport/hertzhttp/go.sum @@ -81,6 +81,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231206235910-b8f58c9e9018 h1:RFC59GQazZvgi2lMWyvOKcahGD7N5hFMC69oPKw8utM= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:k1IyNtSIHX1dm+9CXJRrccRcH3atb4Lm0XXZXIBAlGw= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207001307-6bf78e510437 h1:4oN5Mg9qTKRw4Q0w4UG6zcE8qmPf8fGWAvyZTkYlMGE= @@ -93,6 +95,8 @@ github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005018-b github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005018-bbed223afb0a/go.mod h1:gZz6u6LApMRfJSWzcgcWVEkWm8BXt9aIjYbAYx25494= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c h1:hgkZTDIJAzn+bROAZQ0C71E9nTFPYrfHE9DP70VDgzQ= github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005250-d82199510e5c/go.mod h1:yhxK14XH010qM7x2rNvU+hYKh+CRsoF+hKC4kr6Oj5o= +github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98 h1:Lf/gpAqGA3XoLPcE+ZK60/N1DFMshnZ47Ma3QTR/Cb8= +github.com/go-orb/plugins/client/orb_transport/basehertz v0.0.0-20231207005512-c448de528f98/go.mod h1:ju/teT+1X8egK6R0D1vNtP/+RdhF6Yjbe7lf6JjKx34= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/orb_transport/http/go.mod b/client/orb_transport/http/go.mod index acf23b8c..31485bbb 100644 --- a/client/orb_transport/http/go.mod +++ b/client/orb_transport/http/go.mod @@ -1,11 +1,11 @@ module github.com/go-orb/plugins/client/orb_transport/http -go 1.21 +go 1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/http/go.sum b/client/orb_transport/http/go.sum index 779cf474..f08e6aad 100644 --- a/client/orb_transport/http/go.sum +++ b/client/orb_transport/http/go.sum @@ -83,6 +83,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018 h1:jpIOnIFE+zsKFoVnurL7BFCtpUmO9lndbqoYvutwCVE= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:Nvv83sCh4O6RtIoaC8WUopZLDRFioZugCzEMqV3H2nM= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207001307-6bf78e510437 h1:ZjdKzyFprgqu862uoKegthibJGSi4KXVYil7rP45YY0= @@ -95,6 +97,8 @@ github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bb github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bbed223afb0a/go.mod h1:i1NRPLwQUfia6sfNe3+wrEjebF8s0uXLF4CO2mfjNqA= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c h1:Yq7Izqke2TqllL87etPxz32BDSfFco6/+jS7yjl9xzo= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c/go.mod h1:NOUamVwxeoyuJaACp0Nrkf1LZlXGq6t+X/sytvkHRM4= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 h1:euvQuBhB0KESMTQCA1fCeIcH6PdrfgnFBULQZPk9Wso= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98/go.mod h1:iOy7kI3O+IXWF0TF8VA0xHyMz0+XPHrLW7LrL5CmYP0= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/orb_transport/http3/go.mod b/client/orb_transport/http3/go.mod index f3000466..7e3c5a01 100644 --- a/client/orb_transport/http3/go.mod +++ b/client/orb_transport/http3/go.mod @@ -1,11 +1,11 @@ module github.com/go-orb/plugins/client/orb_transport/http3 -go 1.21 +go 1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/http3/go.sum b/client/orb_transport/http3/go.sum index 779cf474..f08e6aad 100644 --- a/client/orb_transport/http3/go.sum +++ b/client/orb_transport/http3/go.sum @@ -83,6 +83,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018 h1:jpIOnIFE+zsKFoVnurL7BFCtpUmO9lndbqoYvutwCVE= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:Nvv83sCh4O6RtIoaC8WUopZLDRFioZugCzEMqV3H2nM= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207001307-6bf78e510437 h1:ZjdKzyFprgqu862uoKegthibJGSi4KXVYil7rP45YY0= @@ -95,6 +97,8 @@ github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bb github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bbed223afb0a/go.mod h1:i1NRPLwQUfia6sfNe3+wrEjebF8s0uXLF4CO2mfjNqA= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c h1:Yq7Izqke2TqllL87etPxz32BDSfFco6/+jS7yjl9xzo= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c/go.mod h1:NOUamVwxeoyuJaACp0Nrkf1LZlXGq6t+X/sytvkHRM4= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 h1:euvQuBhB0KESMTQCA1fCeIcH6PdrfgnFBULQZPk9Wso= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98/go.mod h1:iOy7kI3O+IXWF0TF8VA0xHyMz0+XPHrLW7LrL5CmYP0= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/orb_transport/https/go.mod b/client/orb_transport/https/go.mod index e9ec17ab..e12cbe6a 100644 --- a/client/orb_transport/https/go.mod +++ b/client/orb_transport/https/go.mod @@ -1,11 +1,11 @@ module github.com/go-orb/plugins/client/orb_transport/https -go 1.21 +go 1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 diff --git a/client/orb_transport/https/go.sum b/client/orb_transport/https/go.sum index 779cf474..f08e6aad 100644 --- a/client/orb_transport/https/go.sum +++ b/client/orb_transport/https/go.sum @@ -83,6 +83,8 @@ github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a h1:STSIf github.com/go-orb/plugins/client/orb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c h1:RsDaOAnOrNj1T0og2SIsoD+m7aS0efg9AeuxHBhRsK0= github.com/go-orb/plugins/client/orb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98 h1:umprHFl60FR1YXS5YwvBFcyRFDXPTpxGapcsRALL5Ro= +github.com/go-orb/plugins/client/orb v0.0.0-20231207005512-c448de528f98/go.mod h1:GG0Yz7G9+ocLqzXb5Fegm534bo+RYt1hvWEAbtoBNgY= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018 h1:jpIOnIFE+zsKFoVnurL7BFCtpUmO9lndbqoYvutwCVE= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231206235910-b8f58c9e9018/go.mod h1:Nvv83sCh4O6RtIoaC8WUopZLDRFioZugCzEMqV3H2nM= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207001307-6bf78e510437 h1:ZjdKzyFprgqu862uoKegthibJGSi4KXVYil7rP45YY0= @@ -95,6 +97,8 @@ github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bb github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005018-bbed223afb0a/go.mod h1:i1NRPLwQUfia6sfNe3+wrEjebF8s0uXLF4CO2mfjNqA= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c h1:Yq7Izqke2TqllL87etPxz32BDSfFco6/+jS7yjl9xzo= github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005250-d82199510e5c/go.mod h1:NOUamVwxeoyuJaACp0Nrkf1LZlXGq6t+X/sytvkHRM4= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98 h1:euvQuBhB0KESMTQCA1fCeIcH6PdrfgnFBULQZPk9Wso= +github.com/go-orb/plugins/client/orb_transport/basehttp v0.0.0-20231207005512-c448de528f98/go.mod h1:iOy7kI3O+IXWF0TF8VA0xHyMz0+XPHrLW7LrL5CmYP0= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417 h1:R0w4VNORPGbEYhTA/bouTRlnXj0MIUrkUfbtDc5iBVc= github.com/go-orb/plugins/client/tests v0.0.0-20231206234938-5c2c970f4417/go.mod h1:cbuDXrYqr6X4qI1+hKyAjQfRZTZzL0XdYaNe89NYhb8= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231206235910-b8f58c9e9018 h1:HB9V5jSulY5hNTxVKXSpuxEMJ+Y+9V5GIHwl/+Xc/ls= diff --git a/client/tests/go.mod b/client/tests/go.mod index 84f6b36e..87f3743a 100644 --- a/client/tests/go.mod +++ b/client/tests/go.mod @@ -1,21 +1,22 @@ module github.com/go-orb/plugins/client/tests -go 1.21 +go 1.21.4 + require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 - github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/config/source/file v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/log/slog v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/server/drpc v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/server/grpc v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/server/hertz v0.0.0-20231207005250-d82199510e5c - github.com/go-orb/plugins/server/http v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/config/source/file v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/log/slog v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/server/drpc v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/server/grpc v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/server/hertz v0.0.0-20231207005512-c448de528f98 + github.com/go-orb/plugins/server/http v0.0.0-20231207005512-c448de528f98 github.com/google/wire v0.5.0 github.com/hashicorp/consul/sdk v0.15.0 github.com/stretchr/testify v1.8.4 diff --git a/client/tests/go.sum b/client/tests/go.sum index 3033142e..19c6575c 100644 --- a/client/tests/go.sum +++ b/client/tests/go.sum @@ -59,6 +59,8 @@ github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005018-bbed223afb0a h1:BQ github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005018-bbed223afb0a/go.mod h1:GGZXc5L58XmcM0f482soTGrvxolZzmchHM027R1H62o= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005250-d82199510e5c h1:yZny1qcyhQ2McfEpRPil8eXh6nma5sewUdVBgRkaWzs= github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005250-d82199510e5c/go.mod h1:GGZXc5L58XmcM0f482soTGrvxolZzmchHM027R1H62o= +github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005512-c448de528f98 h1:by2NILjC3Ox3ddaDCckQG6crWbbFmMfo3qjachs/bgQ= +github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20231207005512-c448de528f98/go.mod h1:GGZXc5L58XmcM0f482soTGrvxolZzmchHM027R1H62o= github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417 h1:3Wle8l9XKLh/xPz1gucfdFvxcnee+sh7ImBCO3h9jaw= github.com/go-orb/plugins/codecs/proto v0.0.0-20231206234938-5c2c970f4417/go.mod h1:QkMhT9Px1hAF519UEiFPG0Zg7Mi4TE40PvN2zPBGMMA= github.com/go-orb/plugins/codecs/proto v0.0.0-20231206235910-b8f58c9e9018 h1:8Re4sRJriNzbh730m6jvIa8xl8dQG0wM2uIqBKkrqx4= @@ -73,6 +75,8 @@ github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005018-bbed223afb0a h1:aTa github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005018-bbed223afb0a/go.mod h1:89iMUVip822z6kkZuIhNYbofKRl1eNtxHT6qrKr30cg= github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005250-d82199510e5c h1:YzLMhn+h5Ru3BhD/x3m4DLEfyPzhCVl0K4uy3V5f+YI= github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005250-d82199510e5c/go.mod h1:89iMUVip822z6kkZuIhNYbofKRl1eNtxHT6qrKr30cg= +github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005512-c448de528f98 h1:tVMx4S3Us/ScrD9+orT/A08T596yhDmlsGxWwXd5+fE= +github.com/go-orb/plugins/codecs/proto v0.0.0-20231207005512-c448de528f98/go.mod h1:89iMUVip822z6kkZuIhNYbofKRl1eNtxHT6qrKr30cg= github.com/go-orb/plugins/codecs/yaml v0.0.0-20231206234938-5c2c970f4417 h1:XZDmiu3np8vkTp2gosxfG1WFJYN63t8BqXdkAjS7OkM= github.com/go-orb/plugins/codecs/yaml v0.0.0-20231206234938-5c2c970f4417/go.mod h1:MXJELVXzjoeb1qnkhByOsQQT1JwCCCf42wArgb/w/rg= github.com/go-orb/plugins/codecs/yaml v0.0.0-20231206235910-b8f58c9e9018 h1:Q8DSjzEJlMsKTPwqPJEv4ZQhKHJX59o5SOBh4CfT//E= @@ -87,6 +91,8 @@ github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005018-bbed223afb0a h1:olVR github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005018-bbed223afb0a/go.mod h1:rX8JrykFTHJq0ZY4akAWY3FpTu/4hkw5gypt9ZH+kxc= github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005250-d82199510e5c h1:pL69QCrYaadaBn9O4jElNI+2/ojMs57eWCoonXEGUBA= github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005250-d82199510e5c/go.mod h1:rX8JrykFTHJq0ZY4akAWY3FpTu/4hkw5gypt9ZH+kxc= +github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005512-c448de528f98 h1:IVEA3rPG452U/ZHnVfvX+rCCN5RzJ9kDYP1pm+ZPdIA= +github.com/go-orb/plugins/codecs/yaml v0.0.0-20231207005512-c448de528f98/go.mod h1:rX8JrykFTHJq0ZY4akAWY3FpTu/4hkw5gypt9ZH+kxc= github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231206234938-5c2c970f4417 h1:pj0g53plLOpiUp4jjPs7g4xQjViv9YYUEfs7XFsHj2o= github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231206234938-5c2c970f4417/go.mod h1:pLDf1iZn2o89FewuLZQ+BYLB9FsvKAn+x1guQi9PX/0= github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231206235910-b8f58c9e9018 h1:qIleTBVUZdujx7o5jY+hH9ObRzDKMZL0Y7yK0kw1ECQ= @@ -101,6 +107,8 @@ github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005018-bbed223 github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005018-bbed223afb0a/go.mod h1:qyTdKkntpXSHeL04Cq5tYYrENTSE1KlyNGuw068NK8o= github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005250-d82199510e5c h1:/CYbafr/u1ZCpthNDsd1CCZWCqI64xxBoZ1MlR3EsOg= github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005250-d82199510e5c/go.mod h1:qyTdKkntpXSHeL04Cq5tYYrENTSE1KlyNGuw068NK8o= +github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005512-c448de528f98 h1:4aBjdOQvDqL2ZDN0SuwyHUNgQfdxQhfhP3rlbFq4DmE= +github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20231207005512-c448de528f98/go.mod h1:qyTdKkntpXSHeL04Cq5tYYrENTSE1KlyNGuw068NK8o= github.com/go-orb/plugins/config/source/file v0.0.0-20231206234938-5c2c970f4417 h1:5atM1be+/Rl9rePl+UeB1wKFaZoP5XCjrB00niLuePk= github.com/go-orb/plugins/config/source/file v0.0.0-20231206234938-5c2c970f4417/go.mod h1:vlE6xdlC2EaNtuOMYPEesZH+4GHH7LhjLFBqBiEfj+k= github.com/go-orb/plugins/config/source/file v0.0.0-20231206235910-b8f58c9e9018 h1:/Xq8hqJQrdIfQR+1f2ZFGkBgtX/XOKvwwTfmaETipHI= @@ -115,6 +123,8 @@ github.com/go-orb/plugins/config/source/file v0.0.0-20231207005018-bbed223afb0a github.com/go-orb/plugins/config/source/file v0.0.0-20231207005018-bbed223afb0a/go.mod h1:+brLI5FTMvjwPfw1oMSp48pg8pQ9qdDFDD/ab0Qm+00= github.com/go-orb/plugins/config/source/file v0.0.0-20231207005250-d82199510e5c h1:G6PxgwQngF7QozsIyreYX+pVkgPMF6AqELTVCXnOlg8= github.com/go-orb/plugins/config/source/file v0.0.0-20231207005250-d82199510e5c/go.mod h1:+brLI5FTMvjwPfw1oMSp48pg8pQ9qdDFDD/ab0Qm+00= +github.com/go-orb/plugins/config/source/file v0.0.0-20231207005512-c448de528f98 h1:ugMLC7/YLyP1DcGpMyk0+3V1RDqlAWwCIiz4t/nX08Q= +github.com/go-orb/plugins/config/source/file v0.0.0-20231207005512-c448de528f98/go.mod h1:+brLI5FTMvjwPfw1oMSp48pg8pQ9qdDFDD/ab0Qm+00= github.com/go-orb/plugins/log/lumberjack v0.0.0-20231206234938-5c2c970f4417 h1:+CUwnPxRVrApcmNi/oXDp9VP01Bu0CKvoq4Ns+aYHi0= github.com/go-orb/plugins/log/lumberjack v0.0.0-20231206234938-5c2c970f4417/go.mod h1:Tc3mBbr7Gveaphw+G9EgBG+Kvv5fwV/PZtJhTB1LkMA= github.com/go-orb/plugins/log/lumberjack v0.0.0-20231206235910-b8f58c9e9018 h1:7ZD44WozNu5Ejho9jVhzpB0XJF/dBeTDlwfBHyfCK1Q= @@ -129,6 +139,8 @@ github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005018-bbed223afb0a h1:N github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005018-bbed223afb0a/go.mod h1:M5os6miUKV1ZSBHXE2DTzxGUw+YmgncSZwrrJ7zo124= github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005250-d82199510e5c h1:3G56kRkQCqHkwG6qpMElTY/20hM2ozpVZAO1Wv6Jyog= github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005250-d82199510e5c/go.mod h1:M5os6miUKV1ZSBHXE2DTzxGUw+YmgncSZwrrJ7zo124= +github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005512-c448de528f98 h1:VyxIdHlKaAy+F3RjSiUCpsG55naLWdhr6E78wfojieQ= +github.com/go-orb/plugins/log/lumberjack v0.0.0-20231207005512-c448de528f98/go.mod h1:M5os6miUKV1ZSBHXE2DTzxGUw+YmgncSZwrrJ7zo124= github.com/go-orb/plugins/log/slog v0.0.0-20231206234938-5c2c970f4417 h1:qX9IwV0C1e1yfyhMT5TFtGugyXZ1bt2xpWxtG889SdA= github.com/go-orb/plugins/log/slog v0.0.0-20231206234938-5c2c970f4417/go.mod h1:jJjEPQQqOs033VXiA8mdmABE/lsQdGYjeINP7Ra6WGY= github.com/go-orb/plugins/log/slog v0.0.0-20231206235910-b8f58c9e9018 h1:FPM5cZoPUuyEMu2pMPfC8cIaFJmLpYAvcNk2s64MSgo= @@ -143,6 +155,8 @@ github.com/go-orb/plugins/log/slog v0.0.0-20231207005018-bbed223afb0a h1:yhlXRn/ github.com/go-orb/plugins/log/slog v0.0.0-20231207005018-bbed223afb0a/go.mod h1:EdVLx57PCul9ck4gSZ3UfLWChjYj01B8jlbWS9Nvy1Y= github.com/go-orb/plugins/log/slog v0.0.0-20231207005250-d82199510e5c h1:uq/XH+IK8HclD24F8wzVHjy/SEd2buA+IHYHePFlDOE= github.com/go-orb/plugins/log/slog v0.0.0-20231207005250-d82199510e5c/go.mod h1:EdVLx57PCul9ck4gSZ3UfLWChjYj01B8jlbWS9Nvy1Y= +github.com/go-orb/plugins/log/slog v0.0.0-20231207005512-c448de528f98 h1:0mrA3M2ucyBMcVmnW/s/GIWYxsJpeBtiSEJM06x4w+k= +github.com/go-orb/plugins/log/slog v0.0.0-20231207005512-c448de528f98/go.mod h1:EdVLx57PCul9ck4gSZ3UfLWChjYj01B8jlbWS9Nvy1Y= github.com/go-orb/plugins/registry/mdns v0.0.0-20231206234938-5c2c970f4417 h1:u46u6S1dFylXlNJTrDLnah+h9xqESMgTqdxJCBc6E+A= github.com/go-orb/plugins/registry/mdns v0.0.0-20231206234938-5c2c970f4417/go.mod h1:20pr716uA6acGrTT/lLozlOCrt3q74G2U9txvhFYQfg= github.com/go-orb/plugins/registry/mdns v0.0.0-20231206235910-b8f58c9e9018 h1:8BiPxO452RLEw4Z4Jzh5ZMnx0w+FnWdVZ63mKATI/q8= @@ -157,6 +171,8 @@ github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005018-bbed223afb0a h1:I9 github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005018-bbed223afb0a/go.mod h1:otYTgUYW8x1TGcVB32n+VtUPuxYQs8Ra2bKL0zlEQxw= github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005250-d82199510e5c h1:r5ySsPK0L6kxhB5uTTy53rkij7qARE5kpTiR9tZ93HU= github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005250-d82199510e5c/go.mod h1:otYTgUYW8x1TGcVB32n+VtUPuxYQs8Ra2bKL0zlEQxw= +github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005512-c448de528f98 h1:UoglQMi49NLTIK2TMKLv60x+09Re0/TfNZL0RIqTC5Y= +github.com/go-orb/plugins/registry/mdns v0.0.0-20231207005512-c448de528f98/go.mod h1:otYTgUYW8x1TGcVB32n+VtUPuxYQs8Ra2bKL0zlEQxw= github.com/go-orb/plugins/registry/tests v0.0.0-20231205051152-a7c84fe79f05 h1:HL6/6l+Ezio0mdvZo+fCK6ssGFFrk4EucqCKXwGGlIU= github.com/go-orb/plugins/registry/tests v0.0.0-20231205051152-a7c84fe79f05/go.mod h1:Nvf7DoZwRN7beKCb3ty4ydfI4eJeQR1x6LkckEjMsoQ= github.com/go-orb/plugins/server/drpc v0.0.0-20231206234938-5c2c970f4417 h1:FajS90CjUBi4rGoM1GMJ13o6SQT8JJ5rhF3igJMilk0= @@ -173,6 +189,8 @@ github.com/go-orb/plugins/server/drpc v0.0.0-20231207005018-bbed223afb0a h1:rBd3 github.com/go-orb/plugins/server/drpc v0.0.0-20231207005018-bbed223afb0a/go.mod h1:V14X5Ki1SC34dLyoxUmrZQHJjVpfBHTzhY7oESuEtmo= github.com/go-orb/plugins/server/drpc v0.0.0-20231207005250-d82199510e5c h1:pUF2Deb14MQDGuZfksdQcKEiCWRkodU428OOcAjrdTs= github.com/go-orb/plugins/server/drpc v0.0.0-20231207005250-d82199510e5c/go.mod h1:V14X5Ki1SC34dLyoxUmrZQHJjVpfBHTzhY7oESuEtmo= +github.com/go-orb/plugins/server/drpc v0.0.0-20231207005512-c448de528f98 h1:LOnKzgsxQ5IZbSqv6tt2ojAsR3WUiDM35ieaSZnl/Pw= +github.com/go-orb/plugins/server/drpc v0.0.0-20231207005512-c448de528f98/go.mod h1:V14X5Ki1SC34dLyoxUmrZQHJjVpfBHTzhY7oESuEtmo= github.com/go-orb/plugins/server/grpc v0.0.0-20231206234938-5c2c970f4417 h1:QqmJzSwE1z+tUxH4eEDQAevd0zL8ytENjCuMxaQ84fc= github.com/go-orb/plugins/server/grpc v0.0.0-20231206234938-5c2c970f4417/go.mod h1:kKyGqWRps5n2LnB/e7gqJO6fz5keDQvwMIO8zR23k28= github.com/go-orb/plugins/server/grpc v0.0.0-20231206235910-b8f58c9e9018 h1:kNOfWyzLNArPnLSXPT86XzRa4SWLpBp+Af4fEYMu5lM= @@ -187,6 +205,8 @@ github.com/go-orb/plugins/server/grpc v0.0.0-20231207005018-bbed223afb0a h1:9Dfa github.com/go-orb/plugins/server/grpc v0.0.0-20231207005018-bbed223afb0a/go.mod h1:i5k2rjqMqRgoOL1OIGL0RIfKyrSXrksi9ZOgg0n1QCQ= github.com/go-orb/plugins/server/grpc v0.0.0-20231207005250-d82199510e5c h1:lZ253IJNUssphlEFDYv4/2XPDx9URMb+i5Mt+QGQrbA= github.com/go-orb/plugins/server/grpc v0.0.0-20231207005250-d82199510e5c/go.mod h1:i5k2rjqMqRgoOL1OIGL0RIfKyrSXrksi9ZOgg0n1QCQ= +github.com/go-orb/plugins/server/grpc v0.0.0-20231207005512-c448de528f98 h1:DeE2eDs8WCbUaXiXtcOzapMisjEgrSvtlU9F9uhWPzs= +github.com/go-orb/plugins/server/grpc v0.0.0-20231207005512-c448de528f98/go.mod h1:i5k2rjqMqRgoOL1OIGL0RIfKyrSXrksi9ZOgg0n1QCQ= github.com/go-orb/plugins/server/hertz v0.0.0-20231206234938-5c2c970f4417 h1:xKi61Vnp5ctGs3zPvLaODkpC7VB+UopCi2ZI65Ful6Q= github.com/go-orb/plugins/server/hertz v0.0.0-20231206234938-5c2c970f4417/go.mod h1:uqlhyz72MbwCFRx6gZciSCACuiZz/5zsUYBRqiun3PY= github.com/go-orb/plugins/server/hertz v0.0.0-20231206235910-b8f58c9e9018 h1:Qf+waiREHvo2ObnnY375YRBWkRrKbUEztrAi+EEY3Qs= @@ -201,6 +221,8 @@ github.com/go-orb/plugins/server/hertz v0.0.0-20231207005018-bbed223afb0a h1:fag github.com/go-orb/plugins/server/hertz v0.0.0-20231207005018-bbed223afb0a/go.mod h1:KnHqRpD4Hggym/WGjXvCpLx2G4ltoHKyIoVnvC9Yd5c= github.com/go-orb/plugins/server/hertz v0.0.0-20231207005250-d82199510e5c h1:WIIQjZoETgZt4Flai+tYD4ipDE2nN8QS7gH09Ph8b/E= github.com/go-orb/plugins/server/hertz v0.0.0-20231207005250-d82199510e5c/go.mod h1:KnHqRpD4Hggym/WGjXvCpLx2G4ltoHKyIoVnvC9Yd5c= +github.com/go-orb/plugins/server/hertz v0.0.0-20231207005512-c448de528f98 h1:GMVfTEXlnfqdnr7QdMwssjIEZmiYqYHPmKDhGfgkn3Q= +github.com/go-orb/plugins/server/hertz v0.0.0-20231207005512-c448de528f98/go.mod h1:KnHqRpD4Hggym/WGjXvCpLx2G4ltoHKyIoVnvC9Yd5c= github.com/go-orb/plugins/server/http v0.0.0-20231206234938-5c2c970f4417 h1:I0nlRb8cK8hcqLllxQV/ewuhTCb6fKvwp/jFJk9F/bI= github.com/go-orb/plugins/server/http v0.0.0-20231206234938-5c2c970f4417/go.mod h1:iI/d2pzyIwCQFXRngbC7xrE6zYRGZCV/QrtcjmSI10M= github.com/go-orb/plugins/server/http v0.0.0-20231206235910-b8f58c9e9018 h1:Z59jOv+AO+oCd+cbSoUJmBCfuv5zw9vxQmXoVMjv0RQ= @@ -215,6 +237,8 @@ github.com/go-orb/plugins/server/http v0.0.0-20231207005018-bbed223afb0a h1:3hWq github.com/go-orb/plugins/server/http v0.0.0-20231207005018-bbed223afb0a/go.mod h1:Zy5cIRQordHuRHB6p8aOlpHqtpd/Lk6Bnl3kMKocdrg= github.com/go-orb/plugins/server/http v0.0.0-20231207005250-d82199510e5c h1:7s6f/L54k4M42CyADNcVerdg7xvqt10m8TJ2EbpQHcg= github.com/go-orb/plugins/server/http v0.0.0-20231207005250-d82199510e5c/go.mod h1:Zy5cIRQordHuRHB6p8aOlpHqtpd/Lk6Bnl3kMKocdrg= +github.com/go-orb/plugins/server/http v0.0.0-20231207005512-c448de528f98 h1:SwlbXBOM5HuIIn9oxscCiitr7rG0mLNhIWvJ3l2zuy4= +github.com/go-orb/plugins/server/http v0.0.0-20231207005512-c448de528f98/go.mod h1:Zy5cIRQordHuRHB6p8aOlpHqtpd/Lk6Bnl3kMKocdrg= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= diff --git a/config/tests/go.mod b/config/tests/go.mod index 81213216..e09ee800 100644 --- a/config/tests/go.mod +++ b/config/tests/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/config/tests -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231205050211-f64e9b008f76 diff --git a/registry/consul/go.mod b/registry/consul/go.mod index 2e340bbf..101fdc0f 100644 --- a/registry/consul/go.mod +++ b/registry/consul/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 github.com/go-orb/plugins/log/slog v0.0.0-20231205051152-a7c84fe79f05 - github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005250-d82199510e5c + github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005512-c448de528f98 github.com/go-orb/plugins/registry/tests v0.0.0-20231205051152-a7c84fe79f05 github.com/google/uuid v1.4.0 github.com/hashicorp/consul/api v1.26.1 diff --git a/registry/consul/go.sum b/registry/consul/go.sum index d8397de9..36a0f063 100644 --- a/registry/consul/go.sum +++ b/registry/consul/go.sum @@ -49,6 +49,8 @@ github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005018-bbed223afb0a h1 github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005018-bbed223afb0a/go.mod h1:7zIV1On4VUhLyZe/2ZXNT8PWAiyzhKiDSIegUm1UI/A= github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005250-d82199510e5c h1:7duH+sY0da1gWDn9sAgj5rOo/o8UFshV9HSLYelNyX0= github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005250-d82199510e5c/go.mod h1:7zIV1On4VUhLyZe/2ZXNT8PWAiyzhKiDSIegUm1UI/A= +github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005512-c448de528f98 h1:MPdfA6lSNhjxWV1sFZP+GKi0r45Ilc/EghK5u29o76w= +github.com/go-orb/plugins/registry/regutil v0.0.0-20231207005512-c448de528f98/go.mod h1:7zIV1On4VUhLyZe/2ZXNT8PWAiyzhKiDSIegUm1UI/A= github.com/go-orb/plugins/registry/tests v0.0.0-20231205051152-a7c84fe79f05 h1:HL6/6l+Ezio0mdvZo+fCK6ssGFFrk4EucqCKXwGGlIU= github.com/go-orb/plugins/registry/tests v0.0.0-20231205051152-a7c84fe79f05/go.mod h1:Nvf7DoZwRN7beKCb3ty4ydfI4eJeQR1x6LkckEjMsoQ= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= diff --git a/registry/mdns/go.mod b/registry/mdns/go.mod index 88087f78..11e6028f 100644 --- a/registry/mdns/go.mod +++ b/registry/mdns/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/registry/mdns -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 diff --git a/registry/nats/go.mod b/registry/nats/go.mod index 8d3b6b34..68d8a7ab 100644 --- a/registry/nats/go.mod +++ b/registry/nats/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/registry/nats -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 diff --git a/server/grpc/go.mod b/server/grpc/go.mod index 1fbaf6a5..8e1fa9eb 100644 --- a/server/grpc/go.mod +++ b/server/grpc/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/server/grpc -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231206042514-b8eae8c79078 diff --git a/server/http/go.mod b/server/http/go.mod index 1a2fea7a..87d42805 100644 --- a/server/http/go.mod +++ b/server/http/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/server/http -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-chi/chi v1.5.5 diff --git a/server/tests/go.mod b/server/tests/go.mod index e29db91f..b733e472 100644 --- a/server/tests/go.mod +++ b/server/tests/go.mod @@ -1,8 +1,7 @@ module github.com/go-orb/plugins/server/tests -go 1.21.4 +go 1.21 -toolchain go1.21.5 require ( github.com/go-orb/go-orb v0.0.0-20231205050211-f64e9b008f76