Skip to content

Commit f4de0a4

Browse files
authored
Merge pull request #923 from fluxcd/release-v0.30.0
Release v0.30.0
2 parents 0598bee + 7349c6e commit f4de0a4

File tree

3 files changed

+56
-2
lines changed

3 files changed

+56
-2
lines changed

CHANGELOG.md

+54
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,60 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.30.0
6+
7+
**Release date:** 2022-09-29
8+
9+
This prerelease adds support for Cosign verification in `OCIRepository` source.
10+
The signatures verification can be configured by setting `OCIRepository.spec.verify` with
11+
`provider` as `cosign` and a `secretRef` to a secret containing the public key.
12+
Cosign keyless verification is also supported, please see the
13+
[OCIRepository API documentation](https://github.com/fluxcd/source-controller/blob/api/v0.30.0/docs/spec/v1beta2/ocirepositories.md#verification)
14+
for more details.
15+
16+
It also comes with strict validation rules for API fields which define a
17+
(time) duration. Effectively, this means values without a time unit (e.g. `ms`,
18+
`s`, `m`, `h`) will now be rejected by the API server. To stimulate sane
19+
configurations, the units `ns`, `us` and `µs` can no longer be configured, nor
20+
can `h` be set for fields defining a timeout value.
21+
22+
In addition, the controller dependencies have been updated
23+
to Kubernetes controller-runtime v0.13.
24+
25+
:warning: **Breaking changes:**
26+
- `.spec.interval` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m|h))+$"`
27+
- `.spec.timeout` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m))+$"`
28+
29+
Improvements:
30+
- api: add custom validation for v1.Duration types
31+
[#903](https://github.com/fluxcd/source-controller/pull/903)
32+
- [RFC-0003] Implement OCIRepository verification using Cosign
33+
[#876](https://github.com/fluxcd/source-controller/pull/876)
34+
- Consider bipolarity conditions in Ready condition summarization
35+
[#907](https://github.com/fluxcd/source-controller/pull/907)
36+
- Update Bucket related SDK dependencies
37+
[#911](https://github.com/fluxcd/source-controller/pull/911)
38+
- Add custom CA certificates to system certificates
39+
[#904](https://github.com/fluxcd/source-controller/pull/904)
40+
- [OCIRepository] Optimise OCI artifacts reconciliation
41+
[#913](https://github.com/fluxcd/source-controller/pull/913)
42+
- Update dependencies
43+
[#919](https://github.com/fluxcd/source-controller/pull/919)
44+
- Build with Go 1.19
45+
[#920](https://github.com/fluxcd/source-controller/pull/920)
46+
- Bump libgit2 image and disable cosign verification for CI
47+
[#921](https://github.com/fluxcd/source-controller/pull/921)
48+
- OCIRepositoryReconciler no-op improvements
49+
[#917](https://github.com/fluxcd/source-controller/pull/917)
50+
- Accept a slice of remote.Option for cosign verification
51+
[#916](https://github.com/fluxcd/source-controller/pull/916)
52+
- Update pkg/oci to v0.11.0
53+
[#922](https://github.com/fluxcd/source-controller/pull/922)
54+
55+
Fixes:
56+
- Handle nil OCI authenticator with malformed registry
57+
[#897](https://github.com/fluxcd/source-controller/pull/897)
58+
559
## 0.29.0
660

761
**Release date:** 2022-09-09

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resources:
66
images:
77
- name: fluxcd/source-controller
88
newName: fluxcd/source-controller
9-
newTag: v0.29.0
9+
newTag: v0.30.0

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ require (
4343
github.com/fluxcd/pkg/testserver v0.3.0
4444
github.com/fluxcd/pkg/untar v0.2.0
4545
github.com/fluxcd/pkg/version v0.2.0
46-
github.com/fluxcd/source-controller/api v0.29.0
46+
github.com/fluxcd/source-controller/api v0.30.0
4747
github.com/go-git/go-billy/v5 v5.3.1
4848
github.com/go-git/go-git/v5 v5.4.2
4949
github.com/go-logr/logr v1.2.3

0 commit comments

Comments
 (0)