diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e0838e36..370a6a79 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -46,13 +46,13 @@ jobs: cache: 'yarn' - name: Initialize CodeQL - uses: github/codeql-action/init@ccf74c947955fd1cf117aef6a0e4e66191ef6f61 # v3.25.4 + uses: github/codeql-action/init@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5 with: languages: ${{ matrix.language }} - name: Autobuild - uses: github/codeql-action/autobuild@ccf74c947955fd1cf117aef6a0e4e66191ef6f61 # v3.25.4 + uses: github/codeql-action/autobuild@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@ccf74c947955fd1cf117aef6a0e4e66191ef6f61 # v3.25.4 + uses: github/codeql-action/analyze@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5 diff --git a/Makefile b/Makefile index 3eb8d34f..2e6c107e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,10 @@ MAKEFLAGS += --no-print-directory GO_VENDOR_DIR := ./vendor COMMON_DIR := $(GO_VENDOR_DIR)/github.com/aperturerobotics/common + COMMON_MAKEFILE := $(COMMON_DIR)/Makefile +TOOLS_DIR := .tools +TOOLS_MAKEFILE := .tools/Makefile export GO111MODULE=on undefine GOARCH @@ -21,11 +24,14 @@ $(COMMON_MAKEFILE): vendor exit 1; \ fi -$(MAKECMDGOALS): $(COMMON_MAKEFILE) - @$(MAKE) -C $(COMMON_DIR) PROJECT_DIR="$(PROJECT_DIR)" $@ +$(TOOLS_MAKEFILE): $(COMMON_MAKEFILE) + @$(MAKE) -C $(COMMON_DIR) TOOLS_DIR="$(TOOLS_DIR)" PROJECT_DIR="$(PROJECT_DIR)" tools + +$(MAKECMDGOALS): $(TOOLS_MAKEFILE) + @$(MAKE) -C $(TOOLS_DIR) TOOLS_DIR="$(TOOLS_DIR)" PROJECT_DIR="$(PROJECT_DIR)" $@ -%: $(COMMON_MAKEFILE) - @$(MAKE) -C $(COMMON_DIR) PROJECT_DIR="$(PROJECT_DIR)" $@ +%: $(TOOLS_MAKEFILE) + @$(MAKE) -C $(TOOLS_DIR) TOOLS_DIR="$(TOOLS_DIR)" PROJECT_DIR="$(PROJECT_DIR)" $@ vendor: go mod vendor diff --git a/daemon/api/api.pb.go b/daemon/api/api.pb.go index a7736e34..ae42f2ed 100644 --- a/daemon/api/api.pb.go +++ b/daemon/api/api.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/daemon/api/api.proto package bifrost_api diff --git a/daemon/api/controller/controller.pb.go b/daemon/api/controller/controller.pb.go index 13facc4b..d902dd63 100644 --- a/daemon/api/controller/controller.pb.go +++ b/daemon/api/controller/controller.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/daemon/api/controller/controller.proto package bifrost_api_controller diff --git a/entitygraph/config.pb.go b/entitygraph/config.pb.go index f9c0e326..61b63975 100644 --- a/entitygraph/config.pb.go +++ b/entitygraph/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/entitygraph/config.proto package bifrost_entitygraph diff --git a/go.mod b/go.mod index 479aac87..b0b7625d 100644 --- a/go.mod +++ b/go.mod @@ -3,10 +3,10 @@ module github.com/aperturerobotics/bifrost go 1.22 require ( - github.com/aperturerobotics/common v0.15.6 // latest + github.com/aperturerobotics/common v0.16.1 // latest github.com/aperturerobotics/controllerbus v0.45.2 // latest github.com/aperturerobotics/entitygraph v0.9.1 // latest - github.com/aperturerobotics/protobuf-go-lite v0.6.3 // latest + github.com/aperturerobotics/protobuf-go-lite v0.6.4 // latest github.com/aperturerobotics/starpc v0.32.8 // latest github.com/aperturerobotics/util v1.23.1 // master ) diff --git a/go.sum b/go.sum index 4bdfcc16..0c382785 100644 --- a/go.sum +++ b/go.sum @@ -4,8 +4,8 @@ github.com/aperturerobotics/bifrost-nats-client v1.10.1-0.20200831103200-24c3d04 github.com/aperturerobotics/bifrost-nats-client v1.10.1-0.20200831103200-24c3d0464e58/go.mod h1:ougcjYEZDYV8pVtaNbA5sgYDukkYHyKtSsW/T3B13j0= github.com/aperturerobotics/bifrost-nats-server/v2 v2.1.8-0.20221228081037-b7c2df0c151f h1:bmScByQNGDPPy9T+zdwu816XaCbFtD5UDyqZMRiHJ80= github.com/aperturerobotics/bifrost-nats-server/v2 v2.1.8-0.20221228081037-b7c2df0c151f/go.mod h1:kIcZtLpq4UIZzOqduYLm1mYU1nuMBtN6XuDCtQ21QT8= -github.com/aperturerobotics/common v0.15.6 h1:HsGGKilMGaDsDgjcU7/JAII6JEvAvf6APD3rUv0PeDs= -github.com/aperturerobotics/common v0.15.6/go.mod h1:R76WABZ3PDLrAhScLVjnzsI8S0rhIVNowxbzv4f8ZdM= +github.com/aperturerobotics/common v0.16.1 h1:+Ei4oSZo+3QTI38YHGDe8MhkW/FXwpA8DTSs3JJPAC4= +github.com/aperturerobotics/common v0.16.1/go.mod h1:zjDs8xIZYFHbElcM5l2wOoNu3a3xyy4+u3mQELzK7ss= github.com/aperturerobotics/controllerbus v0.45.2 h1:JhLEwMqm+RhZnmlMDO7XLPQ8ktDlf9THHjoREV7ALKk= github.com/aperturerobotics/controllerbus v0.45.2/go.mod h1:43diBmMA6fwU6whhGvjedaQP9egcNdmp3wzDuQnr/e0= github.com/aperturerobotics/entitygraph v0.9.1 h1:bCl0Q9N1hkQnOtdCYz7pNSYqH+5CY3EUCuD19dQmJeI= @@ -18,8 +18,8 @@ github.com/aperturerobotics/json-iterator-lite v1.0.0 h1:cihbrYWoK/S2RYXhJLpDZd+ github.com/aperturerobotics/json-iterator-lite v1.0.0/go.mod h1:snaApCEDtrHHP6UWSLKiYNOZU9A5NyzccKenx9oZEzg= github.com/aperturerobotics/logrus v1.9.4-0.20240119050608-13332fb58195 h1:uyeD1J23j/kFiCFO7rx+GQA4tCqOEy3IJyMK4f6vamE= github.com/aperturerobotics/logrus v1.9.4-0.20240119050608-13332fb58195/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/aperturerobotics/protobuf-go-lite v0.6.3 h1:AZ821ntYqzCpq6jE5rWJwJLikYbaa63Nka7YfW9EJdE= -github.com/aperturerobotics/protobuf-go-lite v0.6.3/go.mod h1:YTbfnUj3feSULhs8VgepAHFnF3wUc0CPj4jd2axy21I= +github.com/aperturerobotics/protobuf-go-lite v0.6.4 h1:zFak5xuNuiiEnF8d+pewYE9giyPtMLvSiusBq/FLEjA= +github.com/aperturerobotics/protobuf-go-lite v0.6.4/go.mod h1:YTbfnUj3feSULhs8VgepAHFnF3wUc0CPj4jd2axy21I= github.com/aperturerobotics/quic-go v0.43.1-0.20240504081906-25e38f065e10 h1:xtQ4K5XBgTSO47KbLYYEy9Y3HWLGeVNlbJXw1RfAXt4= github.com/aperturerobotics/quic-go v0.43.1-0.20240504081906-25e38f065e10/go.mod h1:IWwvw/rjosC5aPDuEgzbRPNlZSHC4b4ABztoalIe59g= github.com/aperturerobotics/starpc v0.32.8 h1:ZDKVV/NxGbk0TVfBUk7NvHC8EEoV2xzd/jgQaQuR5No= diff --git a/hash/hash.pb.go b/hash/hash.pb.go index 65dfc1f6..6705f26c 100644 --- a/hash/hash.pb.go +++ b/hash/hash.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/hash/hash.proto package hash diff --git a/http/listener/config.pb.go b/http/listener/config.pb.go index d1eb0fda..fbb2818c 100644 --- a/http/listener/config.pb.go +++ b/http/listener/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/http/listener/config.proto package bifrost_http_listener diff --git a/link/establish/config.pb.go b/link/establish/config.pb.go index d23f3a62..b453f935 100644 --- a/link/establish/config.pb.go +++ b/link/establish/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/link/establish/config.proto package link_establish_controller diff --git a/link/hold-open/config.pb.go b/link/hold-open/config.pb.go index 71405dba..f74fc3d0 100644 --- a/link/hold-open/config.pb.go +++ b/link/hold-open/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/link/hold-open/config.proto package link_holdopen_controller diff --git a/package.json b/package.json index 174bc308..31961ca2 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "singleQuote": true }, "devDependencies": { - "@aptre/common": "^0.15.6", + "@aptre/common": "^0.16.0", "depcheck": "^1.4.6", "prettier": "^3.1.1", "rimraf": "^5.0.6", @@ -55,6 +55,6 @@ "starpc": "^0.32.8" }, "resolutions": { - "@aptre/protobuf-es-lite": "0.4.3" + "@aptre/protobuf-es-lite": "0.4.4" } } diff --git a/peer/api/api.pb.go b/peer/api/api.pb.go index 7e5bd0d7..e7da13e3 100644 --- a/peer/api/api.pb.go +++ b/peer/api/api.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/peer/api/api.proto package peer_api diff --git a/peer/api/api_srpc.pb.go b/peer/api/api_srpc.pb.go index 7a6c1998..4222843b 100644 --- a/peer/api/api_srpc.pb.go +++ b/peer/api/api_srpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-srpc. DO NOT EDIT. -// protoc-gen-srpc version: v0.32.4 +// protoc-gen-srpc version: v0.32.8 // source: github.com/aperturerobotics/bifrost/peer/api/api.proto package peer_api diff --git a/peer/controller/config.pb.go b/peer/controller/config.pb.go index cc9ddad3..74c45e23 100644 --- a/peer/controller/config.pb.go +++ b/peer/controller/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/peer/controller/config.proto package peer_controller diff --git a/peer/peer.pb.go b/peer/peer.pb.go index 652ebda9..9e0242f8 100644 --- a/peer/peer.pb.go +++ b/peer/peer.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/peer/peer.proto package peer diff --git a/pubsub/api/api.pb.go b/pubsub/api/api.pb.go index 053d9b04..012372bd 100644 --- a/pubsub/api/api.pb.go +++ b/pubsub/api/api.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/api/api.proto package pubsub_api diff --git a/pubsub/api/api_srpc.pb.go b/pubsub/api/api_srpc.pb.go index 465c3751..f1f8988f 100644 --- a/pubsub/api/api_srpc.pb.go +++ b/pubsub/api/api_srpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-srpc. DO NOT EDIT. -// protoc-gen-srpc version: v0.32.4 +// protoc-gen-srpc version: v0.32.8 // source: github.com/aperturerobotics/bifrost/pubsub/api/api.proto package pubsub_api diff --git a/pubsub/floodsub/controller/config.pb.go b/pubsub/floodsub/controller/config.pb.go index 25bcebc5..eb9f65a3 100644 --- a/pubsub/floodsub/controller/config.pb.go +++ b/pubsub/floodsub/controller/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/floodsub/controller/config.proto package floodsub_controller diff --git a/pubsub/floodsub/floodsub.pb.go b/pubsub/floodsub/floodsub.pb.go index 393cbec2..151b8857 100644 --- a/pubsub/floodsub/floodsub.pb.go +++ b/pubsub/floodsub/floodsub.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/floodsub/floodsub.proto package floodsub diff --git a/pubsub/nats/controller/config.pb.go b/pubsub/nats/controller/config.pb.go index d368824d..5fbad016 100644 --- a/pubsub/nats/controller/config.pb.go +++ b/pubsub/nats/controller/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/nats/controller/config.proto package nats_controller diff --git a/pubsub/nats/nats.pb.go b/pubsub/nats/nats.pb.go index f04bb651..0abc3813 100644 --- a/pubsub/nats/nats.pb.go +++ b/pubsub/nats/nats.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/nats/nats.proto package nats diff --git a/pubsub/relay/config.pb.go b/pubsub/relay/config.pb.go index f3a6673e..f98e26d6 100644 --- a/pubsub/relay/config.pb.go +++ b/pubsub/relay/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/relay/config.proto package pubsub_relay diff --git a/pubsub/util/pubmessage/pubmessage.pb.go b/pubsub/util/pubmessage/pubmessage.pb.go index 9c20a107..f7500f83 100644 --- a/pubsub/util/pubmessage/pubmessage.pb.go +++ b/pubsub/util/pubmessage/pubmessage.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/pubsub/util/pubmessage/pubmessage.proto package pubmessage diff --git a/rpc/access/access.pb.go b/rpc/access/access.pb.go index 834511af..41b76220 100644 --- a/rpc/access/access.pb.go +++ b/rpc/access/access.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/rpc/access/access.proto package bifrost_rpc_access diff --git a/rpc/access/access_srpc.pb.go b/rpc/access/access_srpc.pb.go index 4797914f..fd80f8a7 100644 --- a/rpc/access/access_srpc.pb.go +++ b/rpc/access/access_srpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-srpc. DO NOT EDIT. -// protoc-gen-srpc version: v0.32.4 +// protoc-gen-srpc version: v0.32.8 // source: github.com/aperturerobotics/bifrost/rpc/access/access.proto package bifrost_rpc_access diff --git a/signaling/echo/echo.pb.go b/signaling/echo/echo.pb.go index d793de5b..10c66eac 100644 --- a/signaling/echo/echo.pb.go +++ b/signaling/echo/echo.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/signaling/echo/echo.proto package signaling_echo diff --git a/signaling/rpc/client/config.pb.go b/signaling/rpc/client/config.pb.go index ea0932d9..ab48d431 100644 --- a/signaling/rpc/client/config.pb.go +++ b/signaling/rpc/client/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/signaling/rpc/client/config.proto package signaling_rpc_client diff --git a/signaling/rpc/server/server.pb.go b/signaling/rpc/server/server.pb.go index 30b679ce..f1e56fd7 100644 --- a/signaling/rpc/server/server.pb.go +++ b/signaling/rpc/server/server.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/signaling/rpc/server/server.proto package signaling_rpc_server diff --git a/signaling/rpc/signaling.pb.go b/signaling/rpc/signaling.pb.go index efaae2d5..f2517908 100644 --- a/signaling/rpc/signaling.pb.go +++ b/signaling/rpc/signaling.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/signaling/rpc/signaling.proto package signaling_rpc diff --git a/signaling/rpc/signaling_srpc.pb.go b/signaling/rpc/signaling_srpc.pb.go index 98dff003..8e525f0b 100644 --- a/signaling/rpc/signaling_srpc.pb.go +++ b/signaling/rpc/signaling_srpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-srpc. DO NOT EDIT. -// protoc-gen-srpc version: v0.32.4 +// protoc-gen-srpc version: v0.32.8 // source: github.com/aperturerobotics/bifrost/signaling/rpc/signaling.proto package signaling_rpc diff --git a/stream/api/accept/accept.pb.go b/stream/api/accept/accept.pb.go index e08c4274..f09b27b6 100644 --- a/stream/api/accept/accept.pb.go +++ b/stream/api/accept/accept.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/api/accept/accept.proto package stream_api_accept diff --git a/stream/api/api.pb.go b/stream/api/api.pb.go index 810d4dc7..074f204e 100644 --- a/stream/api/api.pb.go +++ b/stream/api/api.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/api/api.proto package stream_api diff --git a/stream/api/api_srpc.pb.go b/stream/api/api_srpc.pb.go index e25ee888..6661f347 100644 --- a/stream/api/api_srpc.pb.go +++ b/stream/api/api_srpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-srpc. DO NOT EDIT. -// protoc-gen-srpc version: v0.32.4 +// protoc-gen-srpc version: v0.32.8 // source: github.com/aperturerobotics/bifrost/stream/api/api.proto package stream_api diff --git a/stream/api/dial/dial.pb.go b/stream/api/dial/dial.pb.go index 8029aeb1..59fc0f0d 100644 --- a/stream/api/dial/dial.pb.go +++ b/stream/api/dial/dial.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/api/dial/dial.proto package stream_api_dial diff --git a/stream/api/rpc/rpc.pb.go b/stream/api/rpc/rpc.pb.go index 59d39224..30ca24c8 100644 --- a/stream/api/rpc/rpc.pb.go +++ b/stream/api/rpc/rpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/api/rpc/rpc.proto package stream_api_rpc diff --git a/stream/echo/echo.pb.go b/stream/echo/echo.pb.go index 1d95195c..da45524b 100644 --- a/stream/echo/echo.pb.go +++ b/stream/echo/echo.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/echo/echo.proto package stream_echo diff --git a/stream/forwarding/forwarding.pb.go b/stream/forwarding/forwarding.pb.go index 45136616..ce9d46b2 100644 --- a/stream/forwarding/forwarding.pb.go +++ b/stream/forwarding/forwarding.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/forwarding/forwarding.proto package stream_forwarding diff --git a/stream/listening/listening.pb.go b/stream/listening/listening.pb.go index c2fd3275..ba626891 100644 --- a/stream/listening/listening.pb.go +++ b/stream/listening/listening.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/listening/listening.proto package stream_listening diff --git a/stream/srpc/client/client.pb.go b/stream/srpc/client/client.pb.go index 4e5ce3cf..d362d4a0 100644 --- a/stream/srpc/client/client.pb.go +++ b/stream/srpc/client/client.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/srpc/client/client.proto package stream_srpc_client diff --git a/stream/srpc/client/controller/config.pb.go b/stream/srpc/client/controller/config.pb.go index ad1a404c..adf54687 100644 --- a/stream/srpc/client/controller/config.pb.go +++ b/stream/srpc/client/controller/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/srpc/client/controller/config.proto package stream_srpc_client_controller diff --git a/stream/srpc/server/server.pb.go b/stream/srpc/server/server.pb.go index 4c03f782..613412a4 100644 --- a/stream/srpc/server/server.pb.go +++ b/stream/srpc/server/server.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/stream/srpc/server/server.proto package stream_srpc_server diff --git a/tptaddr/controller/config.pb.go b/tptaddr/controller/config.pb.go index a5b54730..125a575c 100644 --- a/tptaddr/controller/config.pb.go +++ b/tptaddr/controller/config.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/tptaddr/controller/config.proto package tptaddr_controller diff --git a/tptaddr/static/static.pb.go b/tptaddr/static/static.pb.go index 06cb28bf..f02e956c 100644 --- a/tptaddr/static/static.pb.go +++ b/tptaddr/static/static.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/tptaddr/static/static.proto package tptaddr_static diff --git a/transport/common/conn/conn.pb.go b/transport/common/conn/conn.pb.go index 76fd4821..19d30706 100644 --- a/transport/common/conn/conn.pb.go +++ b/transport/common/conn/conn.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/common/conn/conn.proto package conn diff --git a/transport/common/dialer/dialer.pb.go b/transport/common/dialer/dialer.pb.go index 486245f3..05f2ad71 100644 --- a/transport/common/dialer/dialer.pb.go +++ b/transport/common/dialer/dialer.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/common/dialer/dialer.proto package dialer diff --git a/transport/common/pconn/pconn.pb.go b/transport/common/pconn/pconn.pb.go index 4756e374..4454ddb9 100644 --- a/transport/common/pconn/pconn.pb.go +++ b/transport/common/pconn/pconn.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/common/pconn/pconn.proto package pconn diff --git a/transport/common/quic/quic.pb.go b/transport/common/quic/quic.pb.go index 911c3d6b..e86fdeb5 100644 --- a/transport/common/quic/quic.pb.go +++ b/transport/common/quic/quic.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/common/quic/quic.proto package transport_quic diff --git a/transport/controller/controller.pb.go b/transport/controller/controller.pb.go index 9f74eac0..1f2b823b 100644 --- a/transport/controller/controller.pb.go +++ b/transport/controller/controller.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/controller/controller.proto package transport_controller diff --git a/transport/inproc/inproc.pb.go b/transport/inproc/inproc.pb.go index acef353d..ffc9ea0b 100644 --- a/transport/inproc/inproc.pb.go +++ b/transport/inproc/inproc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/inproc/inproc.proto package inproc diff --git a/transport/udp/udp.pb.go b/transport/udp/udp.pb.go index 12620f71..d1ce0e28 100644 --- a/transport/udp/udp.pb.go +++ b/transport/udp/udp.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/udp/udp.proto package udp diff --git a/transport/webrtc/webrtc.pb.go b/transport/webrtc/webrtc.pb.go index 68af8d1b..ba977f75 100644 --- a/transport/webrtc/webrtc.pb.go +++ b/transport/webrtc/webrtc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/webrtc/webrtc.proto package webrtc diff --git a/transport/websocket/websocket.pb.go b/transport/websocket/websocket.pb.go index cfc34244..ed207231 100644 --- a/transport/websocket/websocket.pb.go +++ b/transport/websocket/websocket.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-lite. DO NOT EDIT. -// protoc-gen-go-lite version: v0.6.1 +// protoc-gen-go-lite version: v0.6.3 // source: github.com/aperturerobotics/bifrost/transport/websocket/websocket.proto package websocket diff --git a/yarn.lock b/yarn.lock index 4609a147..e760267d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,12 +2,12 @@ # yarn lockfile v1 -"@aptre/common@^0.15.6": - version "0.15.6" - resolved "https://registry.yarnpkg.com/@aptre/common/-/common-0.15.6.tgz#b608667d2329f02cd383761c98669cbe7c48e160" - integrity sha512-0NY2BwDMlxrlsWNGdust+Ik6R/igHgWHfm1mqjuUiq5XNgf/UvTVv/c+1ZVtwXZ78/c/5jKvsQZeFH/omZr43A== +"@aptre/common@^0.16.0": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@aptre/common/-/common-0.16.3.tgz#44c3e468ab87231c3f30d5ff9e48870d9c9a37b0" + integrity sha512-mhYZOVeSFsHuZmmlych6Wkw0rW7IOsCaxD2SbuDK0r7xmQqnpug0ITUv7Kgm/oFvbLSrlgQ4nBOAbz5rPaZs/Q== dependencies: - "@aptre/protobuf-es-lite" "^0.4.3" + "@aptre/protobuf-es-lite" "^0.4.4" "@typescript-eslint/eslint-plugin" "^7.8.0" "@typescript-eslint/parser" "^7.8.0" eslint "^9.2.0" @@ -27,10 +27,10 @@ uint8arrays "^5.0.0" ws "^8.4.0" -"@aptre/protobuf-es-lite@0.4.3", "@aptre/protobuf-es-lite@^0.4.3": - version "0.4.3" - resolved "https://registry.yarnpkg.com/@aptre/protobuf-es-lite/-/protobuf-es-lite-0.4.3.tgz#1839154a24ac19fb9f4f3bdb4fb0eccd9abdfebc" - integrity sha512-qiWodq4qZ6hAbgzMKHCGjaMoQr/Zj0gn8MGkZq6Pf9T93zEuafl0EijDblqRawmU7Ow9Ogzg/kq6G5bUWGvcpQ== +"@aptre/protobuf-es-lite@0.4.4", "@aptre/protobuf-es-lite@^0.4.3", "@aptre/protobuf-es-lite@^0.4.4": + version "0.4.4" + resolved "https://registry.yarnpkg.com/@aptre/protobuf-es-lite/-/protobuf-es-lite-0.4.4.tgz#2c5a305bd984a197c4b0fa57a5d23165ddac6535" + integrity sha512-fw5ukLnaK0b27oFir5vxucL/g7cv7Dv7298rBWNH2VcFVkYmr1dDJTAWpoSPc9OvJbGFX5rvdg0b8pRn5ZM0FA== dependencies: "@typescript/vfs" "^1.5.0" lz-string "^1.5.0" @@ -1179,9 +1179,9 @@ glob-parent@^6.0.2: is-glob "^4.0.3" glob@^10.3.7: - version "10.3.14" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.14.tgz#36501f871d373fe197fc5794588d0aa71e69ff68" - integrity sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g== + version "10.3.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.15.tgz#e72bc61bc3038c90605f5dd48543dc67aaf3b50d" + integrity sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw== dependencies: foreground-child "^3.1.0" jackspeak "^2.3.6" @@ -1685,9 +1685,9 @@ path-parse@^1.0.7: integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.11.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.0.tgz#332d64e9726bf667fb348e5a1c71005c09ad741a" - integrity sha512-LNHTaVkzaYaLGlO+0u3rQTz7QrHTFOuKyba9JMTQutkmtNew8dw8wOD7mTU/5fCPZzCWpfW0XnQKzY61P0aTaw== + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== dependencies: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" @@ -1829,9 +1829,9 @@ reusify@^1.0.4: integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^5.0.6: - version "5.0.6" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.6.tgz#f13b90af1794a2e8e1ecd052263bcf688742af88" - integrity sha512-X72SgyOf+1lFnGM6gYcmZ4+jMOwuT4E4SajKQzUIlI7EoR5eFHMhS/wf8Ll0mN+w2bxcIVldrJQ6xT7HFQywjg== + version "5.0.7" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.7.tgz#27bddf202e7d89cb2e0381656380d1734a854a74" + integrity sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg== dependencies: glob "^10.3.7"