Skip to content
This repository was archived by the owner on Oct 14, 2024. It is now read-only.

Commit 8f2dcfa

Browse files
authored
release(ci): prepare version v0.7.2 (#1895)
* release: update module set to version v0.7.2 * fix: remove stash all command from multimod prerelease * Prepare vmclarity for version v0.7.2 * docs: add troubleshooting to prerelease step * fix(installation): missing replace
1 parent 3adddf7 commit 8f2dcfa

22 files changed

Lines changed: 86 additions & 81 deletions

File tree

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,6 @@ multimod-verify: bin/multimod
541541

542542
.PHONY: multimod-prerelease
543543
multimod-prerelease: bin/multimod
544-
git stash --all
545544
$(MULTIMOD_BIN) prerelease --all-module-sets --skip-go-mod-tidy=true --commit-to-different-branch=false
546545

547546

RELEASE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ make multimod-verify
3838
make multimod-prerelease
3939
```
4040

41+
> [!NOTE]
42+
> If this command fails with `failed: working tree not clean`, please run `git stash --all` and retry.
43+
4144
* Review the changes made in the last commit to ensure correctness.
4245

4346
* Push the branch to the GitHub repository.

api/client/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.22.4
55
require (
66
github.com/deepmap/oapi-codegen/v2 v2.2.0
77
github.com/oapi-codegen/runtime v1.1.1
8-
github.com/openclarity/vmclarity/api/types v0.7.1
9-
github.com/openclarity/vmclarity/core v0.7.1
8+
github.com/openclarity/vmclarity/api/types v0.7.2
9+
github.com/openclarity/vmclarity/core v0.7.2
1010
)
1111

1212
require (
@@ -19,7 +19,7 @@ require (
1919
github.com/josharian/intern v1.0.0 // indirect
2020
github.com/mailru/easyjson v0.7.7 // indirect
2121
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
22-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
22+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
2323
github.com/perimeterx/marshmallow v1.1.5 // indirect
2424
golang.org/x/mod v0.17.0 // indirect
2525
golang.org/x/text v0.15.0 // indirect

api/server/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ require (
1616
github.com/oapi-codegen/echo-middleware v1.0.2
1717
github.com/oapi-codegen/runtime v1.1.1
1818
github.com/onsi/gomega v1.33.1
19-
github.com/openclarity/vmclarity/api/types v0.7.1
20-
github.com/openclarity/vmclarity/core v0.7.1
21-
github.com/openclarity/vmclarity/scanner v0.7.1
19+
github.com/openclarity/vmclarity/api/types v0.7.2
20+
github.com/openclarity/vmclarity/core v0.7.2
21+
github.com/openclarity/vmclarity/scanner v0.7.2
2222
github.com/sirupsen/logrus v1.9.3
2323
github.com/spf13/cobra v1.8.1
2424
github.com/spf13/viper v1.18.2
@@ -55,7 +55,7 @@ require (
5555
github.com/mattn/go-sqlite3 v1.14.17 // indirect
5656
github.com/mitchellh/mapstructure v1.5.0 // indirect
5757
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
58-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
58+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
5959
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
6060
github.com/perimeterx/marshmallow v1.1.5 // indirect
6161
github.com/pkg/errors v0.9.1 // indirect

api/types/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.22.4
55
require (
66
github.com/deepmap/oapi-codegen/v2 v2.2.0
77
github.com/oapi-codegen/runtime v1.1.1
8-
github.com/openclarity/vmclarity/core v0.7.1
9-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1
8+
github.com/openclarity/vmclarity/core v0.7.2
9+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2
1010
)
1111

1212
require (

cli/go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ require (
88
github.com/google/go-cmp v0.6.0
99
github.com/google/uuid v1.6.0
1010
github.com/onsi/gomega v1.33.1
11-
github.com/openclarity/vmclarity/api/client v0.7.1
12-
github.com/openclarity/vmclarity/api/types v0.7.1
13-
github.com/openclarity/vmclarity/core v0.7.1
14-
github.com/openclarity/vmclarity/scanner v0.7.1
15-
github.com/openclarity/vmclarity/utils v0.7.1
11+
github.com/openclarity/vmclarity/api/client v0.7.2
12+
github.com/openclarity/vmclarity/api/types v0.7.2
13+
github.com/openclarity/vmclarity/core v0.7.2
14+
github.com/openclarity/vmclarity/scanner v0.7.2
15+
github.com/openclarity/vmclarity/utils v0.7.2
1616
github.com/sirupsen/logrus v1.9.3
1717
github.com/spf13/cobra v1.8.1
1818
github.com/spf13/viper v1.18.2
@@ -316,8 +316,8 @@ require (
316316
github.com/olekukonko/tablewriter v0.0.5 // indirect
317317
github.com/open-policy-agent/opa v0.64.1 // indirect
318318
github.com/openclarity/grype-server/api v0.0.0-20240619144520-b9ba72524a9c // indirect
319-
github.com/openclarity/vmclarity/plugins/runner v0.7.1 // indirect
320-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
319+
github.com/openclarity/vmclarity/plugins/runner v0.7.2 // indirect
320+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
321321
github.com/openclarity/yara-rule-server v0.3.0 // indirect
322322
github.com/opencontainers/go-digest v1.0.0 // indirect
323323
github.com/opencontainers/image-spec v1.1.0 // indirect

containerruntimediscovery/client/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/openclarity/vmclarity/containerruntimediscovery/client
33
go 1.22.4
44

55
require (
6-
github.com/openclarity/vmclarity/api/types v0.7.1
7-
github.com/openclarity/vmclarity/containerruntimediscovery/types v0.7.1
6+
github.com/openclarity/vmclarity/api/types v0.7.2
7+
github.com/openclarity/vmclarity/containerruntimediscovery/types v0.7.2
88
)
99

1010
require (
@@ -19,8 +19,8 @@ require (
1919
github.com/mailru/easyjson v0.7.7 // indirect
2020
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
2121
github.com/oapi-codegen/runtime v1.1.1 // indirect
22-
github.com/openclarity/vmclarity/core v0.7.1 // indirect
23-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
22+
github.com/openclarity/vmclarity/core v0.7.2 // indirect
23+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
2424
github.com/perimeterx/marshmallow v1.1.5 // indirect
2525
golang.org/x/mod v0.17.0 // indirect
2626
golang.org/x/text v0.15.0 // indirect

containerruntimediscovery/server/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/openclarity/vmclarity/containerruntimediscovery/server
33
go 1.22.4
44

55
require (
6-
github.com/openclarity/vmclarity/api/types v0.7.1
7-
github.com/openclarity/vmclarity/containerruntimediscovery/types v0.7.1
6+
github.com/openclarity/vmclarity/api/types v0.7.2
7+
github.com/openclarity/vmclarity/containerruntimediscovery/types v0.7.2
88
)
99

1010
require (
@@ -13,7 +13,7 @@ require (
1313
github.com/containers/image/v5 v5.31.1
1414
github.com/docker/docker v26.1.4+incompatible
1515
github.com/labstack/echo/v4 v4.12.0
16-
github.com/openclarity/vmclarity/core v0.7.1
16+
github.com/openclarity/vmclarity/core v0.7.2
1717
github.com/sirupsen/logrus v1.9.3
1818
github.com/spf13/cobra v1.8.1
1919
github.com/spf13/viper v1.18.2
@@ -90,7 +90,7 @@ require (
9090
github.com/multiformats/go-multihash v0.2.1 // indirect
9191
github.com/multiformats/go-varint v0.0.6 // indirect
9292
github.com/oapi-codegen/runtime v1.1.1 // indirect
93-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
93+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
9494
github.com/opencontainers/go-digest v1.0.0 // indirect
9595
github.com/opencontainers/image-spec v1.1.0 // indirect
9696
github.com/opencontainers/runtime-spec v1.2.0 // indirect

containerruntimediscovery/types/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/openclarity/vmclarity/containerruntimediscovery/types
22

33
go 1.22.4
44

5-
require github.com/openclarity/vmclarity/api/types v0.7.1
5+
require github.com/openclarity/vmclarity/api/types v0.7.2
66

77
require (
88
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
@@ -16,8 +16,8 @@ require (
1616
github.com/mailru/easyjson v0.7.7 // indirect
1717
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
1818
github.com/oapi-codegen/runtime v1.1.1 // indirect
19-
github.com/openclarity/vmclarity/core v0.7.1 // indirect
20-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
19+
github.com/openclarity/vmclarity/core v0.7.2 // indirect
20+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
2121
github.com/perimeterx/marshmallow v1.1.5 // indirect
2222
golang.org/x/mod v0.17.0 // indirect
2323
golang.org/x/text v0.15.0 // indirect

e2e/go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ require (
77
github.com/google/uuid v1.6.0
88
github.com/onsi/ginkgo/v2 v2.19.0
99
github.com/onsi/gomega v1.33.1
10-
github.com/openclarity/vmclarity/api/client v0.7.1
11-
github.com/openclarity/vmclarity/api/types v0.7.1
12-
github.com/openclarity/vmclarity/core v0.7.1
13-
github.com/openclarity/vmclarity/scanner v0.7.1
14-
github.com/openclarity/vmclarity/testenv v0.7.1
15-
github.com/openclarity/vmclarity/uibackend/client v0.7.1
16-
github.com/openclarity/vmclarity/uibackend/types v0.7.1
10+
github.com/openclarity/vmclarity/api/client v0.7.2
11+
github.com/openclarity/vmclarity/api/types v0.7.2
12+
github.com/openclarity/vmclarity/core v0.7.2
13+
github.com/openclarity/vmclarity/scanner v0.7.2
14+
github.com/openclarity/vmclarity/testenv v0.7.2
15+
github.com/openclarity/vmclarity/uibackend/client v0.7.2
16+
github.com/openclarity/vmclarity/uibackend/types v0.7.2
1717
github.com/sirupsen/logrus v1.9.3
1818
github.com/spf13/viper v1.18.2
1919
)
@@ -354,10 +354,10 @@ require (
354354
github.com/olekukonko/tablewriter v0.0.5 // indirect
355355
github.com/open-policy-agent/opa v0.64.1 // indirect
356356
github.com/openclarity/grype-server/api v0.0.0-20240619144520-b9ba72524a9c // indirect
357-
github.com/openclarity/vmclarity/installation v0.7.1 // indirect
358-
github.com/openclarity/vmclarity/plugins/runner v0.7.1 // indirect
359-
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.1 // indirect
360-
github.com/openclarity/vmclarity/utils v0.7.1 // indirect
357+
github.com/openclarity/vmclarity/installation v0.7.2 // indirect
358+
github.com/openclarity/vmclarity/plugins/runner v0.7.2 // indirect
359+
github.com/openclarity/vmclarity/plugins/sdk-go v0.7.2 // indirect
360+
github.com/openclarity/vmclarity/utils v0.7.2 // indirect
361361
github.com/openclarity/yara-rule-server v0.3.0 // indirect
362362
github.com/opencontainers/go-digest v1.0.0 // indirect
363363
github.com/opencontainers/image-spec v1.1.0 // indirect

0 commit comments

Comments
 (0)