Skip to content

Commit a694b83

Browse files
authoredNov 8, 2023
Merge branch 'master' into fix/regex
2 parents 9be224d + fce8455 commit a694b83

File tree

3 files changed

+57
-59
lines changed

3 files changed

+57
-59
lines changed
 

‎.rr.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,8 @@ kv:
371371
file: "rr.db"
372372
# Access permission for the DB file.
373373
#
374-
# Default: "0777"
375-
permissions: 0777
374+
# Default: "0755"
375+
permissions: 0755
376376
# TTL keys check interval in seconds. It's safe to use 1 second here, but can be a little costly to performance.
377377
#
378378
# Default: "60" seconds
@@ -1387,8 +1387,8 @@ jobs:
13871387

13881388
# Permissions for the boltdb database file
13891389
#
1390-
# This option is optional. Default: 0777
1391-
permissions: 0777
1390+
# This option is optional. Default: 0755
1391+
permissions: 0755
13921392

13931393
test-local-2:
13941394
# Driver name
@@ -1429,12 +1429,12 @@ jobs:
14291429
# Auto-delete (exchange is deleted when last queue is unbound from it): https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges
14301430
#
14311431
# Default: false
1432-
exchange_auto_deleted: false
1432+
exchange_auto_delete: false
14331433

14341434
# Auto-delete (queue that has had at least one consumer is deleted when last consumer unsubscribes) (rabbitmq option: https://www.rabbitmq.com/queues.html#properties)
14351435
#
14361436
# Default: false
1437-
queue_auto_deleted: false
1437+
queue_auto_delete: false
14381438

14391439
# Delete queue when stopping the pipeline
14401440
#

‎go.mod

+15-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.21.1
77
require (
88
github.com/buger/goterm v1.0.4
99
github.com/dustin/go-humanize v1.0.1
10-
github.com/fatih/color v1.15.0
10+
github.com/fatih/color v1.16.0
1111
github.com/joho/godotenv v1.5.1
1212
github.com/olekukonko/tablewriter v0.0.5
1313
github.com/roadrunner-server/amqp/v4 v4.9.4
@@ -49,7 +49,7 @@ require (
4949
github.com/roadrunner-server/static/v4 v4.1.8
5050
github.com/roadrunner-server/status/v4 v4.4.6
5151
github.com/roadrunner-server/tcp/v4 v4.3.5
52-
github.com/spf13/cobra v1.7.0
52+
github.com/spf13/cobra v1.8.0
5353
github.com/spf13/viper v1.17.0
5454
github.com/stretchr/testify v1.8.4
5555
github.com/temporalio/roadrunner-temporal/v4 v4.5.4
@@ -58,9 +58,9 @@ require (
5858

5959
require (
6060
github.com/andybalholm/brotli v1.0.6 // indirect
61-
github.com/aws/aws-sdk-go v1.47.3 // indirect
61+
github.com/aws/aws-sdk-go v1.47.4 // indirect
6262
github.com/aws/aws-sdk-go-v2 v1.22.1 // indirect
63-
github.com/aws/aws-sdk-go-v2/config v1.22.0 // indirect
63+
github.com/aws/aws-sdk-go-v2/config v1.22.1 // indirect
6464
github.com/aws/aws-sdk-go-v2/credentials v1.15.1 // indirect
6565
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.2 // indirect
6666
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.1 // indirect
@@ -83,7 +83,7 @@ require (
8383
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
8484
github.com/emicklei/proto v1.12.2 // indirect
8585
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
86-
github.com/felixge/httpsnoop v1.0.3 // indirect
86+
github.com/felixge/httpsnoop v1.0.4 // indirect
8787
github.com/fsnotify/fsnotify v1.7.0 // indirect
8888
github.com/go-logr/logr v1.3.0 // indirect
8989
github.com/go-logr/stdr v1.2.2 // indirect
@@ -98,12 +98,12 @@ require (
9898
github.com/google/uuid v1.4.0 // indirect
9999
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
100100
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
101-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
101+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect
102102
github.com/hashicorp/hcl v1.0.0 // indirect
103103
github.com/inconshreveable/mousetrap v1.1.0 // indirect
104104
github.com/jmespath/go-jmespath v0.4.0 // indirect
105105
github.com/klauspost/compress v1.17.2 // indirect
106-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
106+
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
107107
github.com/libdns/libdns v0.2.1 // indirect
108108
github.com/magiconair/properties v1.8.7 // indirect
109109
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -181,16 +181,16 @@ require (
181181
go.uber.org/zap v1.26.0 // indirect
182182
golang.org/x/crypto v0.14.0 // indirect
183183
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
184-
golang.org/x/mod v0.13.0 // indirect
184+
golang.org/x/mod v0.14.0 // indirect
185185
golang.org/x/net v0.17.0 // indirect
186-
golang.org/x/sync v0.4.0 // indirect
187-
golang.org/x/sys v0.13.0 // indirect
188-
golang.org/x/text v0.13.0 // indirect
189-
golang.org/x/time v0.3.0 // indirect
186+
golang.org/x/sync v0.5.0 // indirect
187+
golang.org/x/sys v0.14.0 // indirect
188+
golang.org/x/text v0.14.0 // indirect
189+
golang.org/x/time v0.4.0 // indirect
190190
golang.org/x/tools v0.14.0 // indirect
191-
google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
192-
google.golang.org/genproto/googleapis/api v0.0.0-20231030173426-d783a09b4405 // indirect
193-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
191+
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
192+
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
193+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
194194
google.golang.org/grpc v1.59.0 // indirect
195195
google.golang.org/protobuf v1.31.0 // indirect
196196
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)
Please sign in to comment.