Skip to content

Commit c517c50

Browse files
committed
release(v0.5.1): prepare release
This is the official v0.5.1 release. Signed-off-by: Dmitrii Sharshakov <[email protected]>
1 parent 3ea108b commit c517c50

File tree

11 files changed

+53
-20
lines changed

11 files changed

+53
-20
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

5-
name: default
65
concurrency:
76
group: ${{ github.head_ref || github.run_id }}
87
cancel-in-progress: true
@@ -17,6 +16,7 @@ concurrency:
1716
branches:
1817
- main
1918
- release-*
19+
name: default
2020
jobs:
2121
default:
2222
permissions:

.github/workflows/lock.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

5-
name: Lock old issues
65
"on":
76
schedule:
87
- cron: 0 2 * * *
8+
name: Lock old issues
99
permissions:
1010
issues: write
1111
jobs:

.github/workflows/slack-notify.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-12-18T18:57:15Z by kres fcff05e.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

5-
name: slack-notify
65
"on":
76
workflow_run:
87
workflows:
98
- default
109
types:
1110
- completed
11+
name: slack-notify
1212
jobs:
1313
slack-notify:
1414
runs-on:

.github/workflows/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

5-
name: Close stale issues and PRs
65
"on":
76
schedule:
87
- cron: 30 1 * * *
8+
name: Close stale issues and PRs
99
permissions:
1010
issues: write
1111
pull-requests: write

.golangci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

55
version: "2"
66

@@ -49,6 +49,9 @@ linters:
4949
- perfsprint # complains about us using fmt.Sprintf in non-performance critical code, updating just kres took too long
5050
- musttag # seems to be broken - goes into imported libraries and reports issues there
5151
- nolintlint # gives false positives - disable until https://github.com/golangci/golangci-lint/issues/3228 is resolved
52+
- wsl # replaced by wsl_v5
53+
- noinlineerr
54+
- embeddedstructfieldcheck # fighting in many places with fieldalignment
5255
# all available settings of specific linters
5356
settings:
5457
cyclop:
@@ -90,6 +93,10 @@ linters:
9093
simple: true
9194
range-loops: true # Report preallocation suggestions on range loops, true by default
9295
for-loops: false # Report preallocation suggestions on for loops, false by default
96+
revive:
97+
rules:
98+
- name: var-naming # Complains about package names like "common"
99+
disabled: true
93100
rowserrcheck: { }
94101
testpackage: { }
95102
unparam:

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## [bldr 0.5.1](https://github.com/siderolabs/bldr/releases/tag/v0.5.1) (2025-07-15)
2+
3+
Welcome to the v0.5.1 release of bldr!
4+
5+
6+
7+
Please try out the release binaries and report any issues at
8+
https://github.com/siderolabs/bldr/issues.
9+
10+
### Contributors
11+
12+
* Dmitrii Sharshakov
13+
14+
### Changes
15+
<details><summary>1 commit</summary>
16+
<p>
17+
18+
* [`3ea108b`](https://github.com/siderolabs/bldr/commit/3ea108b0dce619891052792c4dcb5b179109ca42) feat: add `name` parameter to override names in SBOM
19+
</p>
20+
</details>
21+
22+
### Dependency Changes
23+
24+
This release has no dependency changes
25+
26+
Previous release can be found at [v0.5.0](https://github.com/siderolabs/bldr/releases/tag/v0.5.0)
27+
28+
129
## [bldr 0.5.0](https://github.com/siderolabs/bldr/releases/tag/v0.5.0) (2025-07-09)
230

331
Welcome to the v0.5.0 release of bldr!

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# syntax = docker/dockerfile-upstream:1.16.0-labs
1+
# syntax = docker/dockerfile-upstream:1.17.1-labs
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
5+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
66

77
ARG TOOLCHAIN
88

@@ -11,7 +11,7 @@ FROM ghcr.io/siderolabs/ca-certificates:v1.10.0 AS image-ca-certificates
1111
FROM ghcr.io/siderolabs/fhs:v1.10.0 AS image-fhs
1212

1313
# runs markdownlint
14-
FROM docker.io/oven/bun:1.2.15-alpine AS lint-markdown
14+
FROM docker.io/oven/bun:1.2.18-alpine AS lint-markdown
1515
WORKDIR /src
1616
1717
COPY .markdownlint.json .

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2025-07-09T13:01:51Z by kres 1700045.
3+
# Generated on 2025-07-15T11:42:33Z by kres c691b83.
44

55
# common variables
66

@@ -19,14 +19,14 @@ USERNAME ?= siderolabs
1919
REGISTRY_AND_USERNAME ?= $(REGISTRY)/$(USERNAME)
2020
PROTOBUF_GO_VERSION ?= 1.36.6
2121
GRPC_GO_VERSION ?= 1.5.1
22-
GRPC_GATEWAY_VERSION ?= 2.26.3
22+
GRPC_GATEWAY_VERSION ?= 2.27.1
2323
VTPROTOBUF_VERSION ?= 0.6.0
2424
GOIMPORTS_VERSION ?= 0.34.0
2525
GOMOCK_VERSION ?= 0.5.2
2626
DEEPCOPY_VERSION ?= v0.5.6
27-
GOLANGCILINT_VERSION ?= v2.1.6
27+
GOLANGCILINT_VERSION ?= v2.2.2
2828
GOFUMPT_VERSION ?= v0.8.0
29-
GO_VERSION ?= 1.24.4
29+
GO_VERSION ?= 1.24.5
3030
GO_BUILDFLAGS ?=
3131
GO_LDFLAGS ?=
3232
CGO_ENABLED ?= 0

hack/release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project_name = "bldr"
55
github_repo = "siderolabs/bldr"
66
match_deps = "^github.com/(siderolabs/[a-zA-Z0-9-]+)$"
77

8-
previous = "v0.4.1"
8+
previous = "v0.5.0"
99
pre_release = false
1010

1111
# [notes]

internal/pkg/pkgfile/build.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,7 @@ func Build(ctx context.Context, c client.Client, options *environment.Options) (
247247
platformContextCache := newPlatformContextCache(*options, exportMap, c)
248248
solveTarget := solveTarget(platformContextCache, c, cacheImports)
249249

250-
var eg *errgroup.Group
251-
eg, ctx = errgroup.WithContext(ctx)
250+
eg, ctx := errgroup.WithContext(ctx)
252251

253252
for i, platform := range platforms {
254253
eg.Go(func() error {

0 commit comments

Comments
 (0)