|
2 | 2 |
|
3 | 3 | All notable changes to this project are documented in this file.
|
4 | 4 |
|
| 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 | + |
5 | 59 | ## 0.29.0
|
6 | 60 |
|
7 | 61 | **Release date:** 2022-09-09
|
|
0 commit comments