Skip to content

Commit e4ab0cf

Browse files
Merge pull request #2895 from saschagrunert/version-bumpg
Update version to v0.7.3 and update linter
2 parents 1757508 + 517131f commit e4ab0cf

File tree

10 files changed

+20
-16
lines changed

10 files changed

+20
-16
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212
env:
1313
CARGO_TERM_COLOR: always
14-
NIX_VERSION: "2.30.1"
14+
NIX_VERSION: "2.32.4"
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
@@ -50,7 +50,7 @@ jobs:
5050
go-version-file: go.mod
5151
- uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
5252
with:
53-
version: v2.4.0
53+
version: v2.6.2
5454
only-new-issues: true
5555

5656
get-script:

.golangci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ linters:
3939
- goconst
4040
- gocritic
4141
- gocyclo
42+
- godoclint
4243
- godot
4344
- godox
4445
- goheader
@@ -55,6 +56,7 @@ linters:
5556
- ineffassign
5657
- interfacebloat
5758
- intrange
59+
- iotamixing
5860
- ireturn
5961
- lll
6062
- loggercheck
@@ -63,6 +65,7 @@ linters:
6365
- mirror
6466
- misspell
6567
- mnd
68+
- modernize
6669
- musttag
6770
- nakedret
6871
- nestif
@@ -95,6 +98,7 @@ linters:
9598
- tparallel
9699
- unconvert
97100
- unparam
101+
- unqueryvet
98102
- unused
99103
- usestdlibvars
100104
- usetesting

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ TEST_FLAGS ?=
1111
PACKAGE_NAME ?= $(shell cargo metadata --no-deps --format-version 1 | jq -r '.packages[2] | [ .name, .version ] | join("-v")')
1212
PREFIX ?= /usr
1313
CI_TAG ?=
14-
GOLANGCI_LINT_VERSION := v2.4.0
15-
ZEITGEIST_VERSION := v0.4.4
14+
GOLANGCI_LINT_VERSION := v2.6.2
15+
ZEITGEIST_VERSION := v0.5.4
1616

1717
COLOR:=\\033[36m
1818
NOCOLOR:=\\033[0m

conmon-rs/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "conmonrs-cli"
3-
version = "0.7.1"
3+
version = "0.7.3"
44
edition = "2024"
55

66
[dependencies]

conmon-rs/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "conmon-common"
33
# Version listed below is also used by .packit.sh
4-
version = "0.7.1"
4+
version = "0.7.3"
55
edition = "2024"
66

77
[dependencies]

conmon-rs/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "conmonrs"
3-
version = "0.7.1"
3+
version = "0.7.3"
44
edition = "2024"
55

66
[[bin]]

contrib/tracing/start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -uo pipefail
55
# shellcheck source=stop
66
source "$(dirname "${BASH_SOURCE[0]}")"/stop
77

8-
JAEGER_IMG="cr.jaegertracing.io/jaegertracing/jaeger:2.8.0"
8+
JAEGER_IMG="cr.jaegertracing.io/jaegertracing/jaeger:2.11.0"
99

1010
echo "Starting $JAEGER_CTR"
1111
"$CONTAINER_RUNTIME" run -d --rm --network host --name "$JAEGER_CTR" "$JAEGER_IMG"

dependencies.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ dependencies:
77
match: go
88

99
- name: golangci-lint
10-
version: 2.4.0
10+
version: 2.6.2
1111
refPaths:
1212
- path: .github/workflows/ci.yml
1313
match: version
1414
- path: Makefile
1515
match: GOLANGCI_LINT_VERSION
1616

1717
- name: zeitgeist
18-
version: 0.4.4
18+
version: 0.5.4
1919
refPaths:
2020
- path: Makefile
2121
match: ZEITGEIST_VERSION
2222

2323
- name: jaeger
24-
version: 2.8.0
24+
version: 2.11.0
2525
refPaths:
2626
- path: contrib/tracing/start
2727
match: JAEGER_IMG
2828

2929
- name: nix
30-
version: 2.30.1
30+
version: 2.32.4
3131
refPaths:
3232
- path: .github/workflows/ci.yml
3333
match: NIX_VERSION

pkg/client/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ var _ = Describe("ConmonClient", func() {
500500
Expect(err).NotTo(HaveOccurred())
501501

502502
type traceData struct {
503-
Data []interface{} `json:"data"`
503+
Data []any `json:"data"`
504504
}
505505
traces := &traceData{}
506506
Expect(json.Unmarshal(body, traces)).NotTo(HaveOccurred())

0 commit comments

Comments
 (0)