Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/release-controller-api/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"encoding/json"
"errors"
"fmt"
"html/template"
"io/fs"
"math"
"net/http"
Expand All @@ -16,7 +17,6 @@ import (
"strconv"
"strings"
"sync"
"text/template"
"time"

"github.com/openshift/release-controller/pkg/apis/release/v1alpha1"
Expand Down
5 changes: 3 additions & 2 deletions cmd/release-controller-api/http_candidate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package main
import (
"encoding/json"
"fmt"
"html/template"
"net/http"
"sort"
"strings"
"text/template"
"time"

releasecontroller "github.com/openshift/release-controller/pkg/release-controller"
Expand All @@ -17,8 +17,9 @@ import (
"k8s.io/apimachinery/pkg/labels"
"k8s.io/klog"

imagev1 "github.com/openshift/api/image/v1"
"slices"

imagev1 "github.com/openshift/api/image/v1"
)

const candidatePageHtml = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/release-controller-api/http_compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package main

import (
"fmt"
"html/template"
"net/http"
"strings"
"text/template"
"time"

v1 "github.com/openshift/api/image/v1"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiserver v0.30.1 // indirect
k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 // indirect
Expand Down