Skip to content

Commit 81f9312

Browse files
committed
release(v1.1.0): prepare release
This is the official v1.1.0 release. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent 1b834b7 commit 81f9312

9 files changed

Lines changed: 369 additions & 11 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 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 2026-04-16T17:59:27Z by kres b6d29bf-dirty.
3+
# Generated on 2026-04-17T13:29:30Z by kres ae3e740-dirty.
44

55
concurrency:
66
group: ${{ github.head_ref || github.run_id }}
@@ -118,6 +118,10 @@ jobs:
118118
driver: remote
119119
endpoint: tcp://buildkit-amd64.ci.svc.cluster.local:1234
120120
timeout-minutes: 10
121+
- name: CI temp release tag
122+
if: github.event_name == 'pull_request'
123+
run: |
124+
make ci-temp-release-tag
121125
- name: Check dirty
122126
if: github.event_name == 'pull_request'
123127
run: |

.kres.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ spec:
769769
Licensor: Sidero Labs, Inc.
770770
LicensedWork: Image Factory
771771
Copyright: (c) 2026 Sidero Labs, Inc.
772-
ChangeDate: "2030-02-09"
772+
ChangeDate: "2030-04-17"
773773
ChangeLicense: Mozilla Public License, version 2.0
774774
EnterpriseLink: https://www.siderolabs.com/contact/
775775
header: |

CHANGELOG.md

Lines changed: 345 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2026-04-17T12:07:32Z by kres ae3e740.
3+
# Generated on 2026-04-17T13:38:16Z by kres ae3e740-dirty.
44

55
# common variables
66

77
SHA := $(shell git describe --match=none --always --abbrev=8 --dirty)
8-
TAG := $(shell git describe --tag --always --dirty --match v[0-9]\*)
8+
TAG ?= $(shell git describe --tag --always --dirty --match v[0-9]\*)
99
TAG_SUFFIX ?=
10-
ABBREV_TAG := $(shell git describe --tags >/dev/null 2>/dev/null && git describe --tag --always --match v[0-9]\* --abbrev=0 || echo 'undefined')
10+
ABBREV_TAG ?= $(shell git describe --tags >/dev/null 2>/dev/null && git describe --tag --always --match v[0-9]\* --abbrev=0 || echo 'undefined')
1111
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
1212
ARTIFACTS := _out
1313
IMAGE_TAG ?= $(TAG)$(TAG_SUFFIX)
1414
OPERATING_SYSTEM := $(shell uname -s | tr '[:upper:]' '[:lower:]')
1515
GOARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
16+
CI_RELEASE_TAG := $(shell git log --oneline --format=%B -n 1 HEAD^2 -- 2>/dev/null | head -n 1 | sed -r "/^release\(.*\)/ s/^release\((.*)\):.*$$/\\1/; t; Q")
1617
WITH_DEBUG ?= false
1718
WITH_RACE ?= false
1819
REGISTRY ?= ghcr.io
@@ -180,6 +181,14 @@ $(ARTIFACTS): ## Creates artifacts directory.
180181
clean: ## Cleans up all artifacts.
181182
@rm -rf $(ARTIFACTS)
182183

184+
.PHONY: ci-temp-release-tag
185+
ci-temp-release-tag: ## Generates a temporary release tag for CI run.
186+
@if [ -n "$(CI_RELEASE_TAG)" -a -n "$${GITHUB_ENV}" ]; then \
187+
echo Setting temporary release tag "$(CI_RELEASE_TAG)"; \
188+
echo "TAG=$(CI_RELEASE_TAG)" >> "$${GITHUB_ENV}"; \
189+
echo "ABBREV_TAG=$(CI_RELEASE_TAG)" >> "$${GITHUB_ENV}"; \
190+
fi
191+
183192
target-%: ## Builds the specified target defined in the Dockerfile. The build result will only remain in the build cache.
184193
@$(BUILD) --target=$* $(COMMON_ARGS) $(TARGET_ARGS) $(CI_ARGS) .
185194

deploy/helm/image-factory/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: image-factory
33
description: A Helm chart to deploy Sidero Image Factory on a Kubernetes cluster
44
type: application
5-
version: 1.0.3
6-
appVersion: "v1.0.3"
5+
version: 1.1.0
6+
appVersion: "v1.1.0"
77
home: https://github.com/siderolabs/image-factory
88
sources:
99
- https://github.com/siderolabs/image-factory

deploy/helm/image-factory/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# image-factory
22

3-
![Version: 1.0.3](https://img.shields.io/badge/Version-1.0.3-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: v1.0.3](https://img.shields.io/badge/AppVersion-v1.0.3-informational?style=flat)
3+
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: v1.1.0](https://img.shields.io/badge/AppVersion-v1.1.0-informational?style=flat)
44

55
A Helm chart to deploy Sidero Image Factory on a Kubernetes cluster
66

enterprise/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Licensed Work: Image Factory
77
The Licensed Work is (c) 2026 Sidero Labs, Inc.
88
Additional Use Grant: None
99

10-
Change Date: 2030-02-09
10+
Change Date: 2030-04-17
1111

1212
Change License: Mozilla Public License, version 2.0
1313

hack/release.toml

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

8-
previous = "v1.0.2"
8+
previous = "v1.0.3"
99
pre_release = false
1010

1111
[notes]

internal/version/data/tag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.3
1+
v1.1.0

0 commit comments

Comments
 (0)