Skip to content

Commit 07ab0d0

Browse files
authored
Merge pull request #112 from zdtsw-forking/sync/upstream-8035b31
[sync] upstream llm-d/llm-d-batch-gateway 8035b31 [2026-07-23]
2 parents f59f12e + 99f36fc commit 07ab0d0

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# excluded from errcheck. Write-path Close errors (e.g. after writing
1010
# to a file) should still be checked explicitly.
1111

12-
# v2 is required for Go 1.25+ (v1 does not support Go 1.25).
12+
# v2 is required for Go 1.25+ (v1 does not support Go 1.25 or later).
1313
# See: https://github.com/golangci/golangci-lint/issues/5873
1414
version: "2"
1515

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Batch Gateway
22

33
[![Go Report Card](https://goreportcard.com/badge/github.com/llm-d/llm-d-batch-gateway)](https://goreportcard.com/report/github.com/llm-d/llm-d-batch-gateway)
4-
[![Go Version](https://img.shields.io/badge/Go-1.25-blue.svg)](https://golang.org/)
4+
[![Go Version](https://img.shields.io/badge/Go-1.26-blue.svg)](https://golang.org/)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
66
[![Join Slack](https://img.shields.io/badge/Join_Slack-blue?logo=slack)](https://llm-d.slack.com/archives/C0AA8772H7T)
77
[![apiserver](https://img.shields.io/github/v/release/llm-d/llm-d-batch-gateway?label=apiserver)](https://github.com/llm-d/llm-d-batch-gateway/pkgs/container/batch-gateway-apiserver)
@@ -162,7 +162,7 @@ batch-gateway/
162162

163163
### Prerequisites
164164

165-
- Go 1.25 or later.
165+
- Go 1.26 or later.
166166
- PostgreSQL 12+ (for metadata storage).
167167
- Redis 6+ or Valkey 8+ (for job queue).
168168
- S3-compatible object storage or local filesystem.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/llm-d/llm-d-batch-gateway
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.38.0

test/e2e/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ End-to-end tests for the batch-gateway. They run against a live deployment and c
55
## Prerequisites
66

77
- `kubectl`, `helm`, `kind`, Docker or Podman
8-
- Go 1.25+
8+
- Go 1.26+
99

1010
## 1. Deploy the server
1111

test/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/llm-d/llm-d-batch-gateway/test/e2e
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/llm-d/llm-d-async/api v0.7.4

test/integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Integration tests validate feature-level behavior through the real HTTP stack
1313

1414
## Prerequisites
1515

16-
- Go 1.25+
16+
- Go 1.26+
1717
- Docker or Podman (optional, for inference client tests)
1818
- S3-compatible service (optional, for S3 tests — set `S3_TEST_ENDPOINT`)
1919

0 commit comments

Comments
 (0)