mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
1d5a8283e0
Previously we used strings to pass microservice versions. This invited bugs due to missing input validation.
25 lines
617 B
Python
25 lines
617 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "semver",
|
|
srcs = ["semver.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/semver",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/compatibility",
|
|
"@org_golang_x_mod//semver",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "semver_test",
|
|
srcs = ["semver_test.go"],
|
|
embed = [":semver"],
|
|
deps = [
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
|
],
|
|
)
|