Skip to content

Commit e47e0dc

Browse files
Marco Bergencesmarvin
authored andcommitted
Merge branch 'release/v1.8.0'
2 parents a0c5a8c + 06e87ae commit e47e0dc

22 files changed

+277
-282
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.8.0] - 2026-02-26
10+
### Changed
11+
- [#6] Update go dependencies
12+
913
## [v1.7.0] - 2025-10-08
1014
### Changed
1115
- [#4] Update to k8s-io-libs v0.34.1

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ github = new GitHub(this, git)
1212
changelog = new Changelog(this)
1313
Docker docker = new Docker(this)
1414
gpg = new Gpg(this, docker)
15-
goVersion = "1.24.1"
15+
goVersion = "1.26.0"
1616
Makefile makefile = new Makefile(this)
1717

1818
// Configuration of repository

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ ARTIFACT_ID=k8s-backup-operator-crd
33
APPEND_CRD_SUFFIX=false
44
IMAGE=cloudogu/${ARTIFACT_ID}:${VERSION}
55

6-
VERSION=1.7.0
7-
GOTAG=1.24.1
8-
MAKEFILES_VERSION=10.2.0
6+
VERSION=1.8.0
7+
GOTAG=1.26.0
8+
MAKEFILES_VERSION=10.6.0
9+
LINT_VERSION=v2.10.1
910

1011
include build/make/variables.mk
1112
include build/make/self-update.mk

api/ecosystem/mock_BackupInterface_test.go

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

api/ecosystem/mock_BackupScheduleInterface_test.go

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

api/ecosystem/mock_Interface_test.go

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

api/ecosystem/mock_RestoreInterface_test.go

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

api/ecosystem/mock_restInterface_test.go

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

api/v1/mock_RequeuableObject_test.go

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

build/make/bats.mk

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BATS_SUPPORT=$(BATS_LIBRARY_DIR)/bats-support
99
BATS_FILE=$(BATS_LIBRARY_DIR)/bats-file
1010
BATS_BASE_IMAGE?=bats/bats
1111
BATS_CUSTOM_IMAGE?=cloudogu/bats
12-
BATS_TAG?=1.11.0
12+
BATS_TAG?=1.12.0
1313
BATS_DIR=build/make/bats
1414
BATS_WORKDIR="${WORKDIR}"/"${BATS_DIR}"
1515

@@ -18,15 +18,19 @@ unit-test-shell: unit-test-shell-$(ENVIRONMENT)
1818

1919
$(BATS_ASSERT):
2020
@git clone --depth 1 https://github.com/bats-core/bats-assert $@
21+
@rm -rf $@/.git
2122

2223
$(BATS_MOCK):
2324
@git clone --depth 1 https://github.com/grayhemp/bats-mock $@
25+
@rm -rf $@/.git
2426

2527
$(BATS_SUPPORT):
2628
@git clone --depth 1 https://github.com/bats-core/bats-support $@
29+
@rm -rf $@/.git
2730

2831
$(BATS_FILE):
2932
@git clone --depth 1 https://github.com/bats-core/bats-file $@
33+
@rm -rf $@/.git
3034

3135
$(BASH_SRC):
3236
BASH_SRC:=$(shell find "${WORKDIR}" -type f -name "*.sh")
@@ -49,10 +53,10 @@ unit-test-shell-local: $(BASH_SRC) $(PASSWD) $(ETCGROUP) $(HOME_DIR) buildTestIm
4953
"${BATS_DIR}"/customBatsEntrypoint.sh make unit-test-shell-generic-no-junit
5054

5155
unit-test-shell-generic:
52-
@bats --formatter junit --output ${BASH_TEST_REPORT_DIR} ${TESTS_DIR}
56+
@bats --report-formatter junit --formatter junit --output ${BASH_TEST_REPORT_DIR} ${TESTS_DIR}
5357

5458
unit-test-shell-generic-no-junit:
55-
@bats ${TESTS_DIR}
59+
@bats --report-formatter junit --output ${BASH_TEST_REPORT_DIR} ${TESTS_DIR}
5660

5761
.PHONY buildTestImage:
5862
buildTestImage:

0 commit comments

Comments
 (0)