Skip to content

Commit

Permalink
remove io.fabric8.kubernetes.model.annotation.PrinterColumn
Browse files Browse the repository at this point in the history
  • Loading branch information
bachmanity1 authored and manusa committed Sep 6, 2023
1 parent 7b916b5 commit afe0838
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 55 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#### New Features

#### _**Note**_: Breaking changes
* Fix #5343: Removed `io.fabric8.kubernetes.model.annotation.PrinterColumn`, use `io.fabric8.crd.generator.annotation.PrinterColumn`
* Fix #5368: ListOptions parameter ordering is now alphabetical. If you are using non-crud mocking for lists with options, you may need to update your parameter order.
* Fix #5391: Removed the vertx-uri-template dependency from the vertx client, if you need that for your application, then introduce your own dependency.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public enum ExcludedTopic {
@PrinterColumn(name = "jokeCategory", priority = 1)
@JsonPropertyDescription("category-description")
private Category category = Category.Any;
@io.fabric8.kubernetes.model.annotation.PrinterColumn(name = "excludedTopics")
@PrinterColumn(name = "excludedTopics")
private ExcludedTopic[] excluded = new ExcludedTopic[] { ExcludedTopic.nsfw, ExcludedTopic.racist,
ExcludedTopic.sexist };
private boolean safe;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package io.fabric8.crd.example.joke;

import io.fabric8.kubernetes.model.annotation.PrinterColumn;
import io.fabric8.crd.generator.annotation.PrinterColumn;

public class JokeRequestStatus {
public enum State {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*/
package io.fabric8.crd.generator.zookeeper.v1;

import io.fabric8.crd.generator.annotation.PrinterColumn;
import io.fabric8.kubernetes.model.annotation.LabelSelector;
import io.fabric8.kubernetes.model.annotation.PrinterColumn;
import io.fabric8.kubernetes.model.annotation.StatusReplicas;

import java.util.Map;
Expand Down

This file was deleted.

0 comments on commit afe0838

Please sign in to comment.