Skip to content

Commit f3cb258

Browse files
committed
fix(project): update all deps
1 parent 940df4d commit f3cb258

File tree

18 files changed

+361
-312
lines changed

18 files changed

+361
-312
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:23.5.0-alpine AS nodejs-builder
1+
FROM node:24.11.0-alpine AS nodejs-builder
22
RUN mkdir -p /src/ui
33
COPY ui/package.json ui/package-lock.json /src/ui/
44
RUN cd /src/ui && npm ci && touch node_modules/.install

cmd/karma/tests/testscript/043_invalid_flag.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ cmp stdout stdout.txt
55
cmp stderr stderr.txt
66

77
-- stderr.txt --
8-
unknown flag: --invalid.flag
98
Usage of karma:
109
--alertAcknowledgement.author string Default silence author when acknowledging alerts with short lived silences (default "karma")
1110
--alertAcknowledgement.comment string Comment used when acknowledging alerts with short lived silences (default "ACK! This alert was acknowledged using karma on %NOW%")
@@ -85,5 +84,5 @@ Usage of karma:
8584
--ui.refresh duration UI refresh interval (default 30s)
8685
--ui.theme string Default theme, 'light', 'dark' or 'auto' (follow browser preference) (default "auto")
8786
--version Print version and exit
88-
-- stdout.txt --
8987
unknown flag: --invalid.flag
88+
-- stdout.txt --

cmd/karma/tests/testscript/044_invalid_flag_alertmanager_timeout.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ cmp stdout stdout.txt
44
cmp stderr stderr.txt
55

66
-- stderr.txt --
7-
invalid argument "abc123" for "--alertmanager.timeout" flag: time: invalid duration "abc123"
87
Usage of karma:
98
--alertAcknowledgement.author string Default silence author when acknowledging alerts with short lived silences (default "karma")
109
--alertAcknowledgement.comment string Comment used when acknowledging alerts with short lived silences (default "ACK! This alert was acknowledged using karma on %NOW%")
@@ -84,5 +83,5 @@ Usage of karma:
8483
--ui.refresh duration UI refresh interval (default 30s)
8584
--ui.theme string Default theme, 'light', 'dark' or 'auto' (follow browser preference) (default "auto")
8685
--version Print version and exit
87-
-- stdout.txt --
8886
invalid argument "abc123" for "--alertmanager.timeout" flag: time: invalid duration "abc123"
87+
-- stdout.txt --

demo/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:23.5.0-alpine AS nodejs-builder
1+
FROM node:24.11.0-alpine AS nodejs-builder
22
RUN mkdir -p /src/ui
33
RUN apk add make git
44
COPY ui/package.json ui/package-lock.json /src/ui/
@@ -26,7 +26,7 @@ FROM ghcr.io/prymitive/kthxbye:v0.16 AS kthxbye
2626

2727
FROM prom/alertmanager:v0.27.0 AS alertmanager
2828

29-
FROM alpine:3.21
29+
FROM alpine:3.22.2
3030
COPY --from=kthxbye /kthxbye /kthxbye
3131
COPY --from=alertmanager /bin/alertmanager /alertmanager
3232
RUN apk add supervisor python3 && rm -rf /tmp/* /var/cache/apk/*

go.mod

Lines changed: 50 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -3,51 +3,61 @@ module github.com/prymitive/karma
33
go 1.25.0
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.3.1
6+
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/beme/abide v0.0.0-20190723115211-635a09831760
88
github.com/cespare/xxhash/v2 v2.3.0
99
github.com/cnf/structhash v0.0.0-20250313080605-df4c6cc74a9a
1010
github.com/fvbommel/sortorder v1.1.0
11-
github.com/go-chi/chi/v5 v5.2.1
12-
github.com/go-chi/cors v1.2.1
13-
github.com/go-openapi/errors v0.22.1
14-
github.com/go-openapi/runtime v0.28.0
15-
github.com/go-openapi/strfmt v0.23.0
16-
github.com/go-openapi/swag v0.23.1
17-
github.com/go-openapi/validate v0.24.0
11+
github.com/go-chi/chi/v5 v5.2.3
12+
github.com/go-chi/cors v1.2.2
13+
github.com/go-openapi/errors v0.22.3
14+
github.com/go-openapi/runtime v0.29.0
15+
github.com/go-openapi/strfmt v0.24.0
16+
github.com/go-openapi/swag v0.25.1
17+
github.com/go-openapi/validate v0.25.0
1818
github.com/google/go-cmp v0.7.0
1919
github.com/hashicorp/golang-lru/v2 v2.0.7
20-
github.com/jarcoal/httpmock v1.3.1
21-
github.com/klauspost/compress v1.18.0
20+
github.com/jarcoal/httpmock v1.4.1
21+
github.com/klauspost/compress v1.18.1
2222
github.com/knadh/koanf v1.5.0
2323
github.com/mitchellh/mapstructure v1.5.0
2424
github.com/pmezard/go-difflib v1.0.0
25-
github.com/prometheus/client_golang v1.21.1
26-
github.com/prometheus/common v0.63.0
25+
github.com/prometheus/client_golang v1.23.2
26+
github.com/prometheus/common v0.67.2
2727
github.com/prymitive/randomcolor v0.0.0-20210705210145-26c3401033a6
2828
github.com/rogpeppe/go-internal v1.14.1
29-
github.com/rs/zerolog v1.33.0
30-
github.com/spf13/pflag v1.0.6
29+
github.com/rs/zerolog v1.34.0
30+
github.com/spf13/pflag v1.0.10
3131
go.uber.org/automaxprocs v1.6.0
32+
go.yaml.in/yaml/v3 v3.0.4
3233
gopkg.in/go-playground/colors.v1 v1.2.0
33-
gopkg.in/yaml.v3 v3.0.1
3434
)
3535

3636
require (
3737
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3838
github.com/beorn7/perks v1.0.1 // indirect
39-
github.com/fsnotify/fsnotify v1.8.0 // indirect
40-
github.com/go-logr/logr v1.4.2 // indirect
39+
github.com/fsnotify/fsnotify v1.9.0 // indirect
40+
github.com/go-logr/logr v1.4.3 // indirect
4141
github.com/go-logr/stdr v1.2.2 // indirect
42-
github.com/go-openapi/analysis v0.23.0 // indirect
43-
github.com/go-openapi/jsonpointer v0.21.1 // indirect
44-
github.com/go-openapi/jsonreference v0.21.0 // indirect
45-
github.com/go-openapi/loads v0.22.0 // indirect
46-
github.com/go-openapi/spec v0.21.0 // indirect
42+
github.com/go-openapi/analysis v0.24.0 // indirect
43+
github.com/go-openapi/jsonpointer v0.22.1 // indirect
44+
github.com/go-openapi/jsonreference v0.21.2 // indirect
45+
github.com/go-openapi/loads v0.23.1 // indirect
46+
github.com/go-openapi/spec v0.22.0 // indirect
47+
github.com/go-openapi/swag/cmdutils v0.25.1 // indirect
48+
github.com/go-openapi/swag/conv v0.25.1 // indirect
49+
github.com/go-openapi/swag/fileutils v0.25.1 // indirect
50+
github.com/go-openapi/swag/jsonname v0.25.1 // indirect
51+
github.com/go-openapi/swag/jsonutils v0.25.1 // indirect
52+
github.com/go-openapi/swag/loading v0.25.1 // indirect
53+
github.com/go-openapi/swag/mangling v0.25.1 // indirect
54+
github.com/go-openapi/swag/netutils v0.25.1 // indirect
55+
github.com/go-openapi/swag/stringutils v0.25.1 // indirect
56+
github.com/go-openapi/swag/typeutils v0.25.1 // indirect
57+
github.com/go-openapi/swag/yamlutils v0.25.1 // indirect
58+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
4759
github.com/google/uuid v1.6.0 // indirect
48-
github.com/josharian/intern v1.0.0 // indirect
4960
github.com/json-iterator/go v1.1.12 // indirect
50-
github.com/mailru/easyjson v0.9.0 // indirect
5161
github.com/mattn/go-colorable v0.1.14 // indirect
5262
github.com/mattn/go-isatty v0.0.20 // indirect
5363
github.com/mitchellh/copystructure v1.2.0 // indirect
@@ -56,17 +66,20 @@ require (
5666
github.com/modern-go/reflect2 v1.0.2 // indirect
5767
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5868
github.com/oklog/ulid v1.3.1 // indirect
59-
github.com/opentracing/opentracing-go v1.2.0 // indirect
60-
github.com/prometheus/client_model v0.6.1 // indirect
61-
github.com/prometheus/procfs v0.16.0 // indirect
62-
github.com/sergi/go-diff v1.3.1 // indirect
63-
go.mongodb.org/mongo-driver v1.17.3 // indirect
64-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
65-
go.opentelemetry.io/otel v1.35.0 // indirect
66-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
67-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
68-
golang.org/x/sync v0.12.0 // indirect
69-
golang.org/x/sys v0.31.0 // indirect
70-
golang.org/x/tools v0.31.0 // indirect
71-
google.golang.org/protobuf v1.36.5 // indirect
69+
github.com/prometheus/client_model v0.6.2 // indirect
70+
github.com/prometheus/procfs v0.19.2 // indirect
71+
github.com/sergi/go-diff v1.4.0 // indirect
72+
go.mongodb.org/mongo-driver v1.17.6 // indirect
73+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
74+
go.opentelemetry.io/otel v1.38.0 // indirect
75+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
76+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
77+
go.yaml.in/yaml/v2 v2.4.3 // indirect
78+
golang.org/x/net v0.46.0 // indirect
79+
golang.org/x/sync v0.17.0 // indirect
80+
golang.org/x/sys v0.37.0 // indirect
81+
golang.org/x/text v0.30.0 // indirect
82+
golang.org/x/tools v0.38.0 // indirect
83+
google.golang.org/protobuf v1.36.10 // indirect
84+
gopkg.in/yaml.v3 v3.0.1 // indirect
7285
)

0 commit comments

Comments
 (0)