Skip to content

Commit

Permalink
Merge pull request #122 from fluxcd/release-v0.7.1
Browse files Browse the repository at this point in the history
Release v0.7.1
  • Loading branch information
stefanprodan authored Mar 16, 2021
2 parents 1fdde00 + fd9c1a2 commit c50006a
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.7.1

**Release date:** 2021-03-16

This prerelease comes with updates to the runtime packages.

Improvements:
* Update dependencies
[#121](https://github.com/fluxcd/image-reflector-controller/pull/121)

Fixes:
* Fix `last scan` print column for `ImageRepository`
[#119](https://github.com/fluxcd/image-reflector-controller/pull/119)

## 0.7.0

**Release date:** 2021-02-24
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif
all: manager

# Run tests
test: generate fmt vet manifests
test: generate fmt vet manifests api-docs
go test ./... -coverprofile cover.out
cd api; go test ./... -coverprofile cover.out

Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/image-reflector-controller
newName: fluxcd/image-reflector-controller
newTag: v0.7.0
newTag: v0.7.1
53 changes: 51 additions & 2 deletions docs/api/image-reflector.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Resource Types:
(<em>Appears on:</em>
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
</p>
<p>AlphabeticalPolicy specifices a alphabetical ordering policy.</p>
<p>AlphabeticalPolicy specifies a alphabetical ordering policy.</p>
<div class="md-typeset__scrollwrap">
<div class="md-typeset__table">
<table>
Expand Down Expand Up @@ -197,6 +197,20 @@ AlphabeticalPolicy
<p>Alphabetical set of rules to use for alphabetical ordering of the tags.</p>
</td>
</tr>
<tr>
<td>
<code>numerical</code><br>
<em>
<a href="#image.toolkit.fluxcd.io/v1alpha1.NumericalPolicy">
NumericalPolicy
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Numerical set of rules to use for numerical ordering of the tags.</p>
</td>
</tr>
</tbody>
</table>
</div>
Expand Down Expand Up @@ -683,6 +697,41 @@ github.com/fluxcd/pkg/apis/meta.ReconcileRequestStatus
</table>
</div>
</div>
<h3 id="image.toolkit.fluxcd.io/v1alpha1.NumericalPolicy">NumericalPolicy
</h3>
<p>
(<em>Appears on:</em>
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
</p>
<p>NumericalPolicy specifies a numerical ordering policy.</p>
<div class="md-typeset__scrollwrap">
<div class="md-typeset__table">
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>order</code><br>
<em>
string
</em>
</td>
<td>
<em>(Optional)</em>
<p>Order specifies the sorting order of the tags. Given the integer values
from 0 to 9 as tags, ascending order would select 9, and descending order
would select 0.</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3 id="image.toolkit.fluxcd.io/v1alpha1.ScanResult">ScanResult
</h3>
<p>
Expand Down Expand Up @@ -731,7 +780,7 @@ Kubernetes meta/v1.Time
(<em>Appears on:</em>
<a href="#image.toolkit.fluxcd.io/v1alpha1.ImagePolicyChoice">ImagePolicyChoice</a>)
</p>
<p>SemVerPolicy specifices a semantic version policy.</p>
<p>SemVerPolicy specifies a semantic version policy.</p>
<div class="md-typeset__scrollwrap">
<div class="md-typeset__table">
<table>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replace github.com/fluxcd/image-reflector-controller/api => ./api
require (
github.com/Masterminds/semver/v3 v3.1.1
github.com/dgraph-io/badger/v3 v3.2011.1
github.com/fluxcd/image-reflector-controller/api v0.7.0
github.com/fluxcd/image-reflector-controller/api v0.7.1
github.com/fluxcd/pkg/apis/meta v0.8.0
github.com/fluxcd/pkg/runtime v0.8.4
github.com/fluxcd/pkg/version v0.0.1
Expand Down

0 comments on commit c50006a

Please sign in to comment.