Skip to content

Commit ca012e2

Browse files
author
Paulo Gomes
authored
Merge pull request #472 from pjbgf/release-v0.28.0
Release v0.28.0
2 parents 2922cce + 864d031 commit ca012e2

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
# Changelog
22

3+
## 0.28.0
4+
5+
**Release date:** 2022-12-21
6+
7+
This prerelease removes all code references to `libgit2` and `git2go`, from
8+
this release onwards the controller will use `go-git` as the only git implementation.
9+
For more information, refer to version 0.27.0's changelog, which started `libgit2`'s
10+
deprecation process.
11+
12+
The feature gate `ForceGoGitImplementation` was removed, users passing it as their
13+
controller's startup args will need to remove it before upgrading.
14+
15+
Two new feature gates were introduced and are enabled by default:
16+
- `GitShallowClone`: enables the use of shallow clones when pulling source
17+
from Git repositories.
18+
- `GitAllBranchReferences`: enables users to toggle the download of all branch
19+
head references when push branches are configured.
20+
21+
To opt-out from the feature gates above, start the controller with:
22+
`--feature-gates=GitShallowClone=false,GitAllBranchReferences=false`.
23+
24+
Fixes:
25+
- Block the creation of empty commits
26+
[#470](https://github.com/fluxcd/image-automation-controller/pull/470)
27+
28+
Improvements:
29+
- Add GitShallowClone feature
30+
[#463](https://github.com/fluxcd/image-automation-controller/pull/463)
31+
- Add feature gate GitAllBranchReferences
32+
[#469](https://github.com/fluxcd/image-automation-controller/pull/469)
33+
- Remove libgit2 and git2go from codebase
34+
[#468](https://github.com/fluxcd/image-automation-controller/pull/468)
35+
- build: Link libgit2 via LIB_FUZZING_ENGINE
36+
[#465](https://github.com/fluxcd/image-automation-controller/pull/465)
37+
- build: Add postbuild script for fuzzing
38+
[#464](https://github.com/fluxcd/image-automation-controller/pull/464)
39+
- build: Fix cifuzz and improve fuzz tests' reliability
40+
[#462](https://github.com/fluxcd/image-automation-controller/pull/462)
41+
- Update dependencies
42+
[#471](https://github.com/fluxcd/image-automation-controller/pull/471)
43+
344
## 0.27.0
445

546
**Release date:** 2022-11-21

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ resources:
55
images:
66
- name: fluxcd/image-automation-controller
77
newName: fluxcd/image-automation-controller
8-
newTag: v0.27.0
8+
newTag: v0.28.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4
1616
github.com/cyphar/filepath-securejoin v0.2.3
1717
github.com/fluxcd/go-git/v5 v5.0.0-20221219190809-2e5c9d01cfc4
18-
github.com/fluxcd/image-automation-controller/api v0.27.0
18+
github.com/fluxcd/image-automation-controller/api v0.28.0
1919
github.com/fluxcd/image-reflector-controller/api v0.23.1
2020
github.com/fluxcd/pkg/apis/acl v0.1.0
2121
github.com/fluxcd/pkg/apis/event v0.2.0

0 commit comments

Comments
 (0)