Skip to content

Commit f059b5e

Browse files
author
Eric Stroczynski
authored
*: release v0.18.2 (#3289)
1 parent afce309 commit f059b5e

File tree

10 files changed

+19
-22
lines changed

10 files changed

+19
-22
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.18.2
2+
3+
### Bug Fixes
4+
5+
- Fix bug in `operator-sdk bundle validation` that causes erroneous validation errors when the number of annotations in an existing `annotations.yaml` does not equal the number of default bundle annotations by upgrading the `operator-registry` dependency. ([#3284](https://github.com/operator-framework/operator-sdk/pull/3284))
6+
- Fix the download URL for the `tini` binary on ARM64 for the ansible operator base image. ([#3286](https://github.com/operator-framework/operator-sdk/pull/3286))
7+
- Fix bug in `bundle validate` that erroneously causes errors when a CRD manifest contains versions not present in a bundled CSV by bumping the api library version. ([#3288](https://github.com/operator-framework/operator-sdk/pull/3288))
8+
19
## v0.18.1
210

311
### Bug Fixes

changelog/fragments/3221-bugfix.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

changelog/fragments/3234-arm64-tini-url.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

changelog/fragments/validation-bug-bump-api-2.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk v0.18.x
45+
github.com/operator-framework/operator-sdk v0.18.2
4646
sigs.k8s.io/controller-runtime v0.6.0
4747
)
4848

internal/scaffold/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.18.x
44+
github.com/operator-framework/operator-sdk v0.18.2
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk v0.18.x
45+
github.com/operator-framework/operator-sdk v0.18.2
4646
sigs.k8s.io/controller-runtime v0.6.0
4747
)
4848

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
//var needs to be used instead of const for ldflags
2323
var (
24-
Version = "v0.18.1+git"
24+
Version = "v0.18.2"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

website/content/en/docs/install-operator-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ brew install operator-sdk
2222

2323
```sh
2424
# Set the release version variable
25-
$ RELEASE_VERSION=v0.18.1
25+
$ RELEASE_VERSION=v0.18.2
2626
# Linux
2727
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
2828
# macOS
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: v0.18.2
3+
weight: 999981998
4+
---
5+
6+
There are no migrations for this release! :tada:

0 commit comments

Comments
 (0)