Skip to content

Commit 2fb98fe

Browse files
committed
refactor: don't replace dots in subjects
Other changes: - build(docker): update base golang images from 1.22.9 to 1.23.0 for all Dockerfiles - build(docker): remove version '3.8' from all docker-compose YAML files to simplify configs - refactor(nats/options.go): improve comments formatting and clarity for QueueGroup and LoadBalancer options - refactor(nats/options.go): remove RawSubjectFunc and simplify SubjectFunc implementation - fix(nats/options.go): change defaultSubjectFunc to return eventName without replacing dots - build(go): update go version from 1.22.9 to 1.23.0 and add toolchain go1.23.11 in go.work file
1 parent 076eef4 commit 2fb98fe

File tree

12 files changed

+15
-1213
lines changed

12 files changed

+15
-1213
lines changed

.docker/coverage.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.9
1+
FROM golang:1.23.0
22
ARG TAGS
33
ENV TAGS $TAGS
44
WORKDIR /coverage

.docker/coverage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
nats:
43
image: nats

.docker/github.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.9
1+
FROM golang:1.23.0
22
ARG TAGS
33
ENV TAGS $TAGS
44
WORKDIR /github

.docker/github.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
nats:
43
image: nats

.docker/mongo-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
mongostore:
43
image: mongo

.docker/nats-bench.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.9
1+
FROM golang:1.23.0
22
WORKDIR /test
33
COPY go.mod go.sum /test/
44
RUN go mod download

.docker/nats-bench.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
jetstream:
43
image: nats

.docker/nats-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
nats:
43
image: nats

.docker/postgres-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
postgres:
43
image: postgres:latest

.docker/tag-test.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.9
1+
FROM golang:1.23.0
22
ARG TAGS
33
ARG TEST_PATH=./...
44
ENV TAGS $TAGS

0 commit comments

Comments
 (0)