From ed06b88b155634761a2e9ae3b71d4ee7c1dd2f9a Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Thu, 12 Mar 2026 09:24:17 +0100 Subject: [PATCH 1/2] add documentation for glob pattern https://github.com/roadrunner-server/grpc/pull/145 --- grpc/grpc.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grpc/grpc.md b/grpc/grpc.md index 690842c..b3a3d0e 100644 --- a/grpc/grpc.md +++ b/grpc/grpc.md @@ -343,7 +343,7 @@ grpc: {% endtabs %} {% hint style="info" %} -You can define multiple proto files in the `proto` section. +You can define multiple proto files in the `proto` section. As of [2025.1.9], one can use glob patterns to specify multiple proto files. {% endhint %} After configuring the server, you can start it using the following command: @@ -445,13 +445,14 @@ grpc: # This option is required listen: "tcp://127.0.0.1:9001" - # Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field. + # Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field and after [2025.1.9] glob patterns are supported. # # This option is required proto: - "*.proto" - "first.proto" - "second.proto" + - "some/path/**/*.proto" # GRPC TLS configuration # From d7dee60b37e0ed6bc0d5178cbaa90e62530187ea Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Thu, 12 Mar 2026 11:10:43 +0100 Subject: [PATCH 2/2] fix: minor --- grpc/grpc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grpc/grpc.md b/grpc/grpc.md index b3a3d0e..f0af973 100644 --- a/grpc/grpc.md +++ b/grpc/grpc.md @@ -343,7 +343,7 @@ grpc: {% endtabs %} {% hint style="info" %} -You can define multiple proto files in the `proto` section. As of [2025.1.9], one can use glob patterns to specify multiple proto files. +You can define multiple proto files in the `proto` section. From [>=2025.1.9], one can use glob patterns to specify multiple proto files. {% endhint %} After configuring the server, you can start it using the following command: @@ -445,7 +445,7 @@ grpc: # This option is required listen: "tcp://127.0.0.1:9001" - # Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field and after [2025.1.9] glob patterns are supported. + # Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field and in version [>=2025.1.9] glob patterns are supported. # # This option is required proto: