Skip to content

Commit fd9c1a2

Browse files
committed
Release v0.7.1
Signed-off-by: Stefan Prodan <[email protected]>
1 parent 1fdde00 commit fd9c1a2

File tree

5 files changed

+68
-5
lines changed

5 files changed

+68
-5
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.7.1
4+
5+
**Release date:** 2021-03-16
6+
7+
This prerelease comes with updates to the runtime packages.
8+
9+
Improvements:
10+
* Update dependencies
11+
[#121](https://github.com/fluxcd/image-reflector-controller/pull/121)
12+
13+
Fixes:
14+
* Fix `last scan` print column for `ImageRepository`
15+
[#119](https://github.com/fluxcd/image-reflector-controller/pull/119)
16+
317
## 0.7.0
418

519
**Release date:** 2021-02-24

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ endif
1313
all: manager
1414

1515
# Run tests
16-
test: generate fmt vet manifests
16+
test: generate fmt vet manifests api-docs
1717
go test ./... -coverprofile cover.out
1818
cd api; go test ./... -coverprofile cover.out
1919

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ resources:
55
images:
66
- name: fluxcd/image-reflector-controller
77
newName: fluxcd/image-reflector-controller
8-
newTag: v0.7.0
8+
newTag: v0.7.1

docs/api/image-reflector.md

+51-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Resource Types:
1818
(<em>Appears on:</em>
1919
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
2020
</p>
21-
<p>AlphabeticalPolicy specifices a alphabetical ordering policy.</p>
21+
<p>AlphabeticalPolicy specifies a alphabetical ordering policy.</p>
2222
<div class="md-typeset__scrollwrap">
2323
<div class="md-typeset__table">
2424
<table>
@@ -197,6 +197,20 @@ AlphabeticalPolicy
197197
<p>Alphabetical set of rules to use for alphabetical ordering of the tags.</p>
198198
</td>
199199
</tr>
200+
<tr>
201+
<td>
202+
<code>numerical</code><br>
203+
<em>
204+
<a href="#image.toolkit.fluxcd.io/v1alpha1.NumericalPolicy">
205+
NumericalPolicy
206+
</a>
207+
</em>
208+
</td>
209+
<td>
210+
<em>(Optional)</em>
211+
<p>Numerical set of rules to use for numerical ordering of the tags.</p>
212+
</td>
213+
</tr>
200214
</tbody>
201215
</table>
202216
</div>
@@ -683,6 +697,41 @@ github.com/fluxcd/pkg/apis/meta.ReconcileRequestStatus
683697
</table>
684698
</div>
685699
</div>
700+
<h3 id="image.toolkit.fluxcd.io/v1alpha1.NumericalPolicy">NumericalPolicy
701+
</h3>
702+
<p>
703+
(<em>Appears on:</em>
704+
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
705+
</p>
706+
<p>NumericalPolicy specifies a numerical ordering policy.</p>
707+
<div class="md-typeset__scrollwrap">
708+
<div class="md-typeset__table">
709+
<table>
710+
<thead>
711+
<tr>
712+
<th>Field</th>
713+
<th>Description</th>
714+
</tr>
715+
</thead>
716+
<tbody>
717+
<tr>
718+
<td>
719+
<code>order</code><br>
720+
<em>
721+
string
722+
</em>
723+
</td>
724+
<td>
725+
<em>(Optional)</em>
726+
<p>Order specifies the sorting order of the tags. Given the integer values
727+
from 0 to 9 as tags, ascending order would select 9, and descending order
728+
would select 0.</p>
729+
</td>
730+
</tr>
731+
</tbody>
732+
</table>
733+
</div>
734+
</div>
686735
<h3 id="image.toolkit.fluxcd.io/v1alpha1.ScanResult">ScanResult
687736
</h3>
688737
<p>
@@ -731,7 +780,7 @@ Kubernetes meta/v1.Time
731780
(<em>Appears on:</em>
732781
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
733782
</p>
734-
<p>SemVerPolicy specifices a semantic version policy.</p>
783+
<p>SemVerPolicy specifies a semantic version policy.</p>
735784
<div class="md-typeset__scrollwrap">
736785
<div class="md-typeset__table">
737786
<table>

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/fluxcd/image-reflector-controller/api => ./api
77
require (
88
github.com/Masterminds/semver/v3 v3.1.1
99
github.com/dgraph-io/badger/v3 v3.2011.1
10-
github.com/fluxcd/image-reflector-controller/api v0.7.0
10+
github.com/fluxcd/image-reflector-controller/api v0.7.1
1111
github.com/fluxcd/pkg/apis/meta v0.8.0
1212
github.com/fluxcd/pkg/runtime v0.8.4
1313
github.com/fluxcd/pkg/version v0.0.1

0 commit comments

Comments
 (0)