Skip to content

Commit 87a2ec6

Browse files
committed
chore: update dependencies
1 parent c255c75 commit 87a2ec6

File tree

5 files changed

+24
-22
lines changed

5 files changed

+24
-22
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- uses: actions/setup-go@v5
6868
with:
69-
go-version: '1.22'
69+
go-version: '1.23'
7070

7171
- uses: docker/setup-qemu-action@v3
7272
- name: Set up Docker Buildx
@@ -215,7 +215,7 @@ jobs:
215215

216216
- uses: actions/setup-go@v5
217217
with:
218-
go-version: '1.22'
218+
go-version: '1.23'
219219

220220
- name: Export GPG key
221221
run: |

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.1.11
4+
5+
- Set new `Technology` property in extension description
6+
- Update dependencies (go 1.23)
7+
38
## v1.1.10
49

510
- JVM excludes via vm arguments (like `steadybit.agent.disable-jvm-attachment`) are working again

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##
44
## Build
55
##
6-
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm AS build
6+
FROM --platform=$BUILDPLATFORM golang:1.23-bookworm AS build
77

88
ARG TARGETOS TARGETARCH
99
ARG BUILD_WITH_COVERAGE

extjvm/java_vms_holder.go

-1
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,3 @@ func SignalHandler(signal os.Signal) {
371371
DeactivateDataSourceDiscovery()
372372
DeactivateSpringDiscovery()
373373
}
374-

go.mod

+16-18
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/steadybit/extension-jvm
22

3-
go 1.22.0
4-
5-
toolchain go1.22.2
3+
go 1.23
64

75
require (
86
codnect.io/chrono v1.1.3
@@ -14,10 +12,10 @@ require (
1412
github.com/shirou/gopsutil v3.21.11+incompatible
1513
github.com/steadybit/action-kit/go/action_kit_api/v2 v2.9.3
1614
github.com/steadybit/action-kit/go/action_kit_sdk v1.1.12
17-
github.com/steadybit/action-kit/go/action_kit_test v1.2.15
15+
github.com/steadybit/action-kit/go/action_kit_test v1.3.0
1816
github.com/steadybit/discovery-kit/go/discovery_kit_api v1.6.0
1917
github.com/steadybit/discovery-kit/go/discovery_kit_commons v0.2.0
20-
github.com/steadybit/discovery-kit/go/discovery_kit_sdk v1.1.0
18+
github.com/steadybit/discovery-kit/go/discovery_kit_sdk v1.2.1
2119
github.com/steadybit/discovery-kit/go/discovery_kit_test v1.1.2
2220
github.com/steadybit/extension-kit v1.8.18
2321
github.com/stretchr/testify v1.9.0
@@ -46,7 +44,7 @@ require (
4644
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4745
github.com/go-openapi/jsonreference v0.21.0 // indirect
4846
github.com/go-openapi/swag v0.23.0 // indirect
49-
github.com/go-resty/resty/v2 v2.14.0 // indirect
47+
github.com/go-resty/resty/v2 v2.15.3 // indirect
5048
github.com/godbus/dbus/v5 v5.1.0 // indirect
5149
github.com/gogo/protobuf v1.3.2 // indirect
5250
github.com/golang/protobuf v1.5.4 // indirect
@@ -61,7 +59,7 @@ require (
6159
github.com/mailru/easyjson v0.7.7 // indirect
6260
github.com/mattn/go-colorable v0.1.13 // indirect
6361
github.com/mattn/go-isatty v0.0.20 // indirect
64-
github.com/moby/spdystream v0.4.0 // indirect
62+
github.com/moby/spdystream v0.5.0 // indirect
6563
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6664
github.com/modern-go/reflect2 v1.0.2 // indirect
6765
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
@@ -78,28 +76,28 @@ require (
7876
github.com/sirupsen/logrus v1.9.3 // indirect
7977
github.com/spf13/pflag v1.0.5 // indirect
8078
github.com/tklauser/go-sysconf v0.3.14 // indirect
81-
github.com/tklauser/numcpus v0.8.0 // indirect
79+
github.com/tklauser/numcpus v0.9.0 // indirect
8280
github.com/ugorji/go/codec v1.2.12 // indirect
8381
github.com/x448/float16 v0.8.4 // indirect
8482
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
8583
github.com/yusufpapurcu/wmi v1.2.4 // indirect
8684
github.com/zmwangx/debounce v1.0.0 // indirect
87-
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 // indirect
88-
golang.org/x/net v0.28.0 // indirect
89-
golang.org/x/oauth2 v0.21.0 // indirect
85+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
86+
golang.org/x/net v0.30.0 // indirect
87+
golang.org/x/oauth2 v0.23.0 // indirect
9088
golang.org/x/sync v0.8.0 // indirect
91-
golang.org/x/term v0.23.0 // indirect
92-
golang.org/x/text v0.17.0 // indirect
93-
golang.org/x/time v0.6.0 // indirect
94-
google.golang.org/protobuf v1.34.2 // indirect
89+
golang.org/x/term v0.25.0 // indirect
90+
golang.org/x/text v0.19.0 // indirect
91+
golang.org/x/time v0.7.0 // indirect
92+
google.golang.org/protobuf v1.35.1 // indirect
9593
gopkg.in/inf.v0 v0.9.1 // indirect
9694
gopkg.in/yaml.v2 v2.4.0 // indirect
9795
gopkg.in/yaml.v3 v3.0.1 // indirect
9896
howett.net/plist v1.0.1 // indirect
9997
k8s.io/klog/v2 v2.130.1 // indirect
100-
k8s.io/kube-openapi v0.0.0-20240709000822-3c01b740850f // indirect
101-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
102-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
98+
k8s.io/kube-openapi v0.0.0-20241009091222-67ed5848f094 // indirect
99+
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
100+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
103101
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
104102
sigs.k8s.io/yaml v1.4.0 // indirect
105103
)

0 commit comments

Comments
 (0)