Skip to content

Commit a2cb2d7

Browse files
committed
fix missing updates
1 parent b674025 commit a2cb2d7

File tree

14 files changed

+14
-19
lines changed

14 files changed

+14
-19
lines changed

.github/workflows/plugin-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
- name: Set up Go 1.19
151151
uses: actions/setup-go@v2
152152
with:
153-
go-version: 1.18
153+
go-version: 1.19
154154
- name: Setup docker (missing on MacOS)
155155
if: runner.os == 'macos'
156156
env:

docs/en/agent/support-plugins.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metrics based on the tracing data.
1212
* `fiber`: [Fiber](https://github.com/gofiber/fiber) tested v2.49.0 to v2.50.0.
1313
* `echov4`: [Echov4](https://github.com/labstack/echo) tested v4.0.0 to v4.11.4
1414
* HTTP Client
15-
* `http`: [Native HTTP](https://pkg.go.dev/net/http) tested go v1.17 to go v1.20.
15+
* `http`: [Native HTTP](https://pkg.go.dev/net/http) tested go v1.19 to go v1.20.
1616
* `fasthttp`: [FastHttp](https://github.com/valyala/fasthttp) tested v1.10.0 to v1.50.0.
1717
* RPC Frameworks
1818
* `dubbo`: [Dubbo](https://github.com/apache/dubbo-go) tested v3.0.1 to v3.0.5.

docs/en/setup/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN go build -toolexec="skywalking-go-agent" -a /path/to/project
2323

2424
In the above code, we have performed the following actions:
2525

26-
1. Used the SkyWalking Go provided image as the base image, which currently supports the following Go versions: **1.16, 1.17, 1.18, 1.19, 1.20**.
26+
1. Used the SkyWalking Go provided image as the base image, which currently supports the following Go versions: **1.19, 1.20, 1.21, 1.22, 1.23**.
2727
2. Copied the project into the Docker image.
2828
3. Installed SkyWalking Go and compiled the project, [read this documentation for more detail](./gobuild.md).
2929
The SkyWalking Go agent is already installed in the `/usr/local/bin` directory with the name **skywalking-go-agent**.

plugins/go-elasticsearchv8/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/apache/skywalking-go/plugins/go-elasticsearchv8
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/elastic/elastic-transport-go/v8 v8.3.0 // indirect

test/plugins/scenarios/gin/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test/plugins/scenarios/gin
22

3-
go 1.18
3+
go 1.19
44

55
require github.com/gin-gonic/gin v1.9.0
66

test/plugins/scenarios/gin/plugin.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: github.com/gin-gonic/gin
2121
export-port: 8080
2222
support-version:
23-
- go: 1.17
24-
framework:
25-
- v1.7.0
26-
- v1.8.0
27-
- v1.8.2
28-
- go: 1.18
23+
- go: 1.19
2924
framework:
3025
- v1.9.0
3126
- go: 1.23

test/plugins/scenarios/go-elasticsearchv8/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test/plugins/scenarios/go-elasticsearchv8
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/elastic/elastic-transport-go/v8 v8.3.0 // indirect

test/plugins/scenarios/go-elasticsearchv8/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: github.com/elastic/go-elasticsearch
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v8.11.1
2626
- v8.11.0

test/plugins/scenarios/mux/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test/plugins/scenarios/mux
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/gorilla/mux v1.8.0 // indirect

test/plugins/scenarios/mux/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: github.com/gorilla/mux
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v1.7.0
2626
- v1.7.1

test/plugins/scenarios/short_versions_gin/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test/plugins/scenarios/short_versions_gin
22

3-
go 1.18
3+
go 1.19
44

55
require github.com/gin-gonic/gin v1.9.0
66

test/plugins/scenarios/short_versions_gin/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ start-script: ./bin/startup.sh
2020
framework: github.com/gin-gonic/gin
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v1.9.0

test/plugins/scenarios/zap/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module test/plugins/scenarios/zap
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
go.uber.org/atomic v1.7.0 // indirect

test/plugins/scenarios/zap/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: go.uber.org/zap
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v1.17.0
2626
- v1.18.0

0 commit comments

Comments
 (0)