Skip to content

Commit

Permalink
Bump operator-framework/api to v0.3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
varshaprasad96 committed Oct 28, 2020
1 parent 193a76c commit a6975dc
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 5 deletions.
80 changes: 78 additions & 2 deletions changelog/fragments/upgrade-operator-framework-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# release notes and/or the migration guide
entries:
- description: >
Upgrade operator-framework/api version from `v0.3.13` to `0.3.18`.
Upgrade operator-framework/api version from `v0.3.13` to [`v0.3.20`](https://github.com/operator-framework/api/releases/tag/v0.3.20).
# kind is one of:
# - addition
# - change
Expand All @@ -14,3 +13,80 @@ entries:
# Is this a breaking change?
breaking: false
# Migration can be defined to automatically add a section to
# the migration guide. This is required for breaking changes.
migration:
header: Upgrade operator-framework/api version from `v0.3.13` to `0.3.20`
body: >
In the `go.mod` file replace `operator-framework/api v0.3.13`
with `operator-framework/api v0.3.20` and then run `go mod tidy`.
- description: >
Enable users to pass in the path to a json-encoded file of custom categories via an environmental variable when
performing optional operatorhub UI validation for CSV categories.
# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "addition"
# Is this a breaking change?
breaking: false
# Migration can be defined to automatically add a section to
# the migration guide. This is required for breaking changes.
migration:
header: Enable defining of custom CSV categories during bundle validation.
body: >
Users can specify the path to a json-encoded file contating custom categories through an environment
variable (`OPERATOR_BUNDLE_CATEGORIES`) while performing optional operatorHub UI validation for CSV categories. Refer to
[api #69](https://github.com/operator-framework/api/pull/69).
- description: >
Add a `properties` field to bundle lookups for dependency resolution.
# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "addition"
# Is this a breaking change?
breaking: false
# Migration can be defined to automatically add a section to
# the migration guide. This is required for breaking changes.
migration:
header: Add a `properties` field to bundle lookups for dependency resolution.
body: >
Added a `properties` field to `BundleLookup` to support property projection which
in turn helps in reducing dependency resolution problems while creating `InstallPlan`.
Refer to [api #66](https://github.com/operator-framework/api/pull/66).
- description: >
Webhook container port specified in CSV defaults to `443` if not specified by the user.
# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "bugfix"

# Is this a breaking change?
breaking: false

# Migration can be defined to automatically add a section to
# the migration guide. This is required for breaking changes.
migration:
header: Specify default webhook container port in CSV.
body: >
Webhook container port specified in CSV defaults to `443` if not specified by the user.
Refer to [api #71](https://github.com/operator-framework/api/pull/71).
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/markbates/inflect v1.0.4
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1
github.com/operator-framework/api v0.3.18
github.com/operator-framework/api v0.3.20
github.com/operator-framework/operator-lib v0.1.0
github.com/operator-framework/operator-registry v1.14.3
github.com/prometheus/client_golang v1.5.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ
github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4=
github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4=
github.com/operator-framework/api v0.3.7-0.20200602203552-431198de9fc2/go.mod h1:Xbje9x0SHmh0nihE21kpesB38vk3cyxnE6JdDS8Jo1Q=
github.com/operator-framework/api v0.3.18 h1:9Kh6Ilmudu2Yrb4m4yh/525xmgsg5f4Py9re0V5K6xw=
github.com/operator-framework/api v0.3.18/go.mod h1:Xbje9x0SHmh0nihE21kpesB38vk3cyxnE6JdDS8Jo1Q=
github.com/operator-framework/api v0.3.20 h1:2Ks8GXXl/H2sV9ll2iQBUO65ABQ5VuzN3IKEZCJWljo=
github.com/operator-framework/api v0.3.20/go.mod h1:Xbje9x0SHmh0nihE21kpesB38vk3cyxnE6JdDS8Jo1Q=
github.com/operator-framework/operator-lib v0.1.0 h1:7Qy6v2ZccvCeFLWEkrGnN+U+DkaeIWp0gAZaBM9T3DI=
github.com/operator-framework/operator-lib v0.1.0/go.mod h1:HLw61JTIEeq0YLeVf4dwYx/zt4DmLGZUVWI1y3Lf5Hg=
github.com/operator-framework/operator-registry v1.14.3 h1:WiIYJy9cfnbzvlwoO5ikgqHnj/WwKLqItJlTz5EeEzQ=
Expand Down

0 comments on commit a6975dc

Please sign in to comment.