Skip to content

Commit b674025

Browse files
committed
remove older versions
1 parent 5686358 commit b674025

File tree

77 files changed

+77
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+77
-92
lines changed

.github/workflows/plugin-tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
timeout-minutes: 60
3535
steps:
36-
- name: Set up Go 1.18
36+
- name: Set up Go 1.19
3737
uses: actions/setup-go@v2
3838
with:
39-
go-version: 1.18
39+
go-version: 1.19
4040
- name: Setup docker (missing on MacOS)
4141
if: runner.os == 'macos'
4242
env:
@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
name: test-tools-macos-12
149149
path: test/plugins/dist
150-
- name: Set up Go 1.18
150+
- name: Set up Go 1.19
151151
uses: actions/setup-go@v2
152152
with:
153153
go-version: 1.18

.github/workflows/skywalking-go.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ubuntu-latest
2626
timeout-minutes: 60
2727
steps:
28-
- name: Set up Go 1.18
28+
- name: Set up Go 1.19
2929
uses: actions/setup-go@v2
3030
with:
31-
go-version: 1.18
31+
go-version: 1.19
3232
- name: Check out code into the Go module directory
3333
uses: actions/checkout@v2
3434
with:
@@ -48,7 +48,7 @@ jobs:
4848
fail-fast: true
4949
matrix:
5050
os: [ ubuntu-latest, macos-13, windows-latest ]
51-
go-version: [ 1.18, 1.19 ]
51+
go-version: [ 1.19 ]
5252
runs-on: ${{ matrix.os }}
5353
timeout-minutes: 60
5454
steps:

CHANGES.md

+1-1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# User used targeting base image
1818
ARG BASE_GO_IMAGE
1919
# Build the agent base image
20-
ARG BASE_BUILDER_IMAGE='golang:1.18'
20+
ARG BASE_BUILDER_IMAGE='golang:1.19'
2121

2222
FROM ${BASE_BUILDER_IMAGE} as builder
2323
# Go Agent Version

Makefile

+1-4
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,12 @@ release: ## Build skywalking-go agent release
127127
/bin/sh tools/release/create_bin_release.sh
128128
/bin/sh tools/release/create_source_release.sh
129129

130-
base.all := go1.16 go1.17 go1.18 go1.19 go1.20 go1.21 go1.22 go1.23
130+
base.all := go1.19 go1.20 go1.21 go1.22 go1.23
131131
base.each = $(word 1, $@)
132132

133133

134134
##@ Docker
135135

136-
base.image.go1.16 := golang:1.16
137-
base.image.go1.17 := golang:1.17
138-
base.image.go1.18 := golang:1.18
139136
base.image.go1.19 := golang:1.19
140137
base.image.go1.20 := golang:1.20
141138
base.image.go1.21 := golang:1.21

go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/google/uuid v1.3.0

go.work

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.18
1+
go 1.19
22

33
use (
44
.

plugins/amqp/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require github.com/rabbitmq/amqp091-go v1.9.0 // indirect

plugins/core/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/dave/dst v0.27.2

plugins/dubbo/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require dubbo.apache.org/dubbo-go/v3 v3.0.5
66

plugins/echov4/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/labstack/echo/v4 v4.6.3

plugins/fasthttp/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/stretchr/testify v1.8.4

plugins/fiber/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/andybalholm/brotli v1.0.5 // indirect

plugins/gin/go.mod

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

3-
go 1.18
3+
go 1.19
44

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

plugins/go-redisv9/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-redisv9
22

3-
go 1.18
3+
go 1.19
44

55
require github.com/redis/go-redis/v9 v9.0.5
66

plugins/go-restfulv3/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-restfulv3
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/emicklei/go-restful/v3 v3.10.2

plugins/gorm/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/go-sql-driver/mysql v1.7.1

plugins/http/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require github.com/stretchr/testify v1.8.2
66

plugins/irisv12/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/kataras/iris/v12 v12.2.0

plugins/kratosv2/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/go-kratos/kratos/v2 v2.6.2 // indirect

plugins/microv4/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/Microsoft/go-winio v0.6.0 // indirect

plugins/mongo/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require go.mongodb.org/mongo-driver v1.11.7 // indirect

plugins/mux/go.mod

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

3-
go 1.18
3+
go 1.19
44

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

plugins/pulsar/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require github.com/apache/pulsar-client-go v0.12.0 // indirect

plugins/rocketmq/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/apache/rocketmq-client-go/v2 v2.1.2 // indirect

plugins/runtimemetrics/go.mod

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

3-
go 1.18
3+
go 1.19

plugins/segmentio-kafka/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/klauspost/compress v1.15.9 // indirect

plugins/sql/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require github.com/go-sql-driver/mysql v1.7.1 // indirect

plugins/trace-activation/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/apache/skywalking-go/plugin/trace
22

3-
go 1.18
3+
go 1.19
44

55
require github.com/dave/dst v0.27.2 // indirect

test/benchmark-codebase/consumer/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module consumer
22

3-
go 1.18
3+
go 1.19
44

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

test/benchmark-codebase/provider/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module provider
22

3-
go 1.18
3+
go 1.19
44

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

test/plugins/runner-helper/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module plugin-runner-helper
22

3-
go 1.18
3+
go 1.19
44

55
require gopkg.in/yaml.v3 v3.0.1
66

test/plugins/scenarios/amqp/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/apache/skywalking-go v0.3.0 // indirect

test/plugins/scenarios/amqp/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/rabbitmq/amqp091-go
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v1.9.0
2626
dependencies:
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module test/plugins/scenarios/discard-reporter
22

3-
go 1.18
3+
go 1.19

test/plugins/scenarios/discard-reporter/plugin.yml

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,5 @@ start-script: ./bin/startup.sh
2020
framework: go
2121
export-port: 8080
2222
support-version:
23-
- go: 1.17
24-
- go: 1.18
2523
- go: 1.19
2624
- go: 1.20

test/plugins/scenarios/dubbo/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
dubbo.apache.org/dubbo-go/v3 v3.0.1

test/plugins/scenarios/dubbo/plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: dubbo.apache.org/dubbo-go/v3
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v3.0.1
2626
- v3.0.2

test/plugins/scenarios/echov4/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/labstack/echo/v4 v4.11.4

test/plugins/scenarios/echov4/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/labstack/echo/v4
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v4.0.0
2626
- v4.1.0

test/plugins/scenarios/fasthttp/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/fasthttp/router v1.0.2

test/plugins/scenarios/fasthttp/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/valyala/fasthttp
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v1.10.0
2626
- v1.20.0

test/plugins/scenarios/fiber/go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require github.com/gofiber/fiber/v2 v2.50.0
66

test/plugins/scenarios/fiber/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/gofiber/fiber/v2
2121
export-port: 8080
2222
support-version:
23-
- go: 1.18
23+
- go: 1.19
2424
framework:
2525
- v2.49.0
2626
- v2.49.1

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

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ start-script: ./bin/startup.sh
2020
framework: github.com/redis/go-redis/v9
2121
export-port: 8080
2222
support-version:
23-
- go: 1.17
24-
framework:
25-
- v9.0.3
26-
- go: 1.18
23+
- go: 1.19
2724
framework:
2825
- v9.0.4
2926
- v9.0.5

0 commit comments

Comments
 (0)