Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rancher/steve
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: beeper/rancher-steve
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: beeper
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 44 files changed
  • 9 contributors

Commits on Jan 24, 2024

  1. Bumps rancher/wrangler to it's tagged v2 version.

    The previous wrangler commit included all of the v2 changes.
    Except for the import paths changes.
    KevinJoiner committed Jan 24, 2024
    Copy the full SHA
    7a5069b View commit details
  2. Merge pull request #144 from KevinJoiner/2.8-wrangler-v2

    [2.8] Bumps rancher/wrangler to it's tagged v2 version.
    cbron authored Jan 24, 2024
    Copy the full SHA
    b2e0dae View commit details

Commits on Feb 7, 2024

  1. Copy the full SHA
    17e9252 View commit details

Commits on Feb 8, 2024

  1. update dynamiclistner

    Signed-off-by: Chirayu Kapoor <chirayu.kapoor@suse.com>
    chiukapoor committed Feb 8, 2024
    Copy the full SHA
    a890c52 View commit details

Commits on Feb 13, 2024

  1. Merge pull request #157 from chiukapoor/v2.8-backport-for-v1.28

    [v1.28] [v2.8] Bump dynamiclistner to v0.4.0-rc2
    kinarashah authored Feb 13, 2024
    Copy the full SHA
    24878f9 View commit details

Commits on Mar 4, 2024

  1. WatchNames: return errors via WebSocket

    Align behavior with plain Watch, which also does the same.
    
    Fixes rancher/rancher#41809
    
    Signed-off-by: Silvio Moioli <silvio@moioli.net>
    moio committed Mar 4, 2024
    Copy the full SHA
    fbeca61 View commit details
  2. adapt tests

    Signed-off-by: Silvio Moioli <silvio@moioli.net>
    moio committed Mar 4, 2024
    Copy the full SHA
    95e5200 View commit details

Commits on Mar 5, 2024

  1. Merge pull request #165 from moio/watchnames_propagate_errors_28

    [Backport 2.8] WatchNames: return errors via WebSocket
    MbolotSuse authored Mar 5, 2024
    Copy the full SHA
    3943409 View commit details

Commits on Apr 11, 2024

  1. Fix data race

    JonCrowther committed Apr 11, 2024
    Copy the full SHA
    2dfb9be View commit details
  2. Merge pull request #190 from JonCrowther/fix-race-condition-2.8

    [2.8 Backport] Fix data race
    MbolotSuse authored Apr 11, 2024
    Copy the full SHA
    a80bf83 View commit details

Commits on Jan 16, 2025

  1. Copy the full SHA
    239b8be View commit details
Showing with 232 additions and 602 deletions.
  1. +1 −1 README.md
  2. +31 −29 go.mod
  3. +97 −489 go.sum
  4. +1 −1 main.go
  5. +1 −1 pkg/accesscontrol/access_control.go
  6. +1 −1 pkg/accesscontrol/access_store.go
  7. +1 −1 pkg/accesscontrol/policy_rule_index.go
  8. +2 −2 pkg/accesscontrol/role_revision_index.go
  9. +1 −1 pkg/aggregation/watch.go
  10. +1 −1 pkg/attributes/attributes.go
  11. +16 −4 pkg/clustercache/controller.go
  12. +2 −2 pkg/controllers/schema/schemas.go
  13. +3 −3 pkg/podimpersonation/podimpersonation.go
  14. +2 −2 pkg/resources/cluster/apply.go
  15. +2 −2 pkg/resources/cluster/cluster.go
  16. +1 −1 pkg/resources/cluster/cluster_type.go
  17. +1 −1 pkg/resources/common/dynamiccolumns.go
  18. +4 −4 pkg/resources/common/formatter.go
  19. +2 −2 pkg/resources/counts/counts.go
  20. +2 −2 pkg/resources/counts/counts_test.go
  21. +1 −1 pkg/resources/schema.go
  22. +2 −2 pkg/resources/schemas/template.go
  23. +1 −1 pkg/resources/schemas/template_test.go
  24. +1 −1 pkg/schema/collection.go
  25. +2 −2 pkg/schema/converter/crd.go
  26. +2 −2 pkg/schema/converter/discovery.go
  27. +1 −1 pkg/schema/converter/k8stonorman.go
  28. +2 −2 pkg/schema/converter/openapi.go
  29. +1 −1 pkg/schema/converter/openapiv3.go
  30. +1 −1 pkg/schema/factory_test.go
  31. +3 −3 pkg/schema/table/mapper.go
  32. +2 −2 pkg/server/cli/clicontext.go
  33. +11 −11 pkg/server/config.go
  34. +3 −3 pkg/stores/partition/listprocessor/processor.go
  35. +1 −1 pkg/stores/partition/listprocessor/processor_test.go
  36. +1 −1 pkg/stores/partition/store.go
  37. +2 −2 pkg/stores/partition/store_test.go
  38. +1 −1 pkg/stores/proxy/error_wrapper.go
  39. +5 −4 pkg/stores/proxy/proxy_store.go
  40. +11 −4 pkg/stores/proxy/proxy_store_test.go
  41. +1 −1 pkg/stores/proxy/rbac_store.go
  42. +1 −1 pkg/stores/proxy/rbac_store_test.go
  43. +2 −2 pkg/stores/proxy/unformatter.go
  44. +2 −2 pkg/summarycache/summarycache.go
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -239,7 +239,7 @@ import (
"context"

"github.com/rancher/steve/pkg/server"
"github.com/rancher/wrangler/pkg/kubeconfig"
"github.com/rancher/wrangler/v2/pkg/kubeconfig"
)

func steve() error {
60 changes: 31 additions & 29 deletions go.mod
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ replace (
github.com/crewjam/saml => github.com/rancher/saml v0.2.0
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20181214184433-b04c0947ad2f
github.com/matryer/moq => github.com/rancher/moq v0.0.0-20190404221404-ee5226d43009
k8s.io/client-go => github.com/rancher/client-go v1.27.4-rancher1
k8s.io/client-go => github.com/rancher/client-go v1.28.6-rancher1
)

require (
@@ -17,46 +17,46 @@ require (
github.com/pborman/uuid v1.2.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.16.0
github.com/rancher/apiserver v0.0.0-20230831052300-120e615b17ba
github.com/rancher/dynamiclistener v0.3.6-rc2.0.20230831052350-0132d96ec2c5
github.com/rancher/apiserver v0.0.0-20240207153744-69b3c2b56f3f
github.com/rancher/dynamiclistener v0.4.0-rc2
github.com/rancher/kubernetes-provider-detector v0.1.5
github.com/rancher/norman v0.0.0-20230831160711-5de27f66385d
github.com/rancher/norman v0.0.0-20240206180703-6eda4bc94b4c
github.com/rancher/remotedialer v0.3.0
github.com/rancher/wrangler v1.1.1-0.20230831050635-df1bd5aae9df
github.com/rancher/wrangler/v2 v2.1.3
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
github.com/urfave/cli v1.22.14
github.com/urfave/cli/v2 v2.25.7
golang.org/x/sync v0.3.0
k8s.io/api v0.27.4
k8s.io/apiextensions-apiserver v0.27.4
k8s.io/apimachinery v0.27.4
k8s.io/apiserver v0.27.4
golang.org/x/sync v0.5.0
k8s.io/api v0.28.6
k8s.io/apiextensions-apiserver v0.28.6
k8s.io/apimachinery v0.28.6
k8s.io/apiserver v0.28.6
k8s.io/client-go v12.0.0+incompatible
k8s.io/klog v1.0.0
k8s.io/kube-aggregator v0.27.4
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
k8s.io/kube-aggregator v0.28.6
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.1 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
@@ -71,10 +71,10 @@ require (
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.10.1 // indirect
github.com/rancher/lasso v0.0.0-20230830164424-d684fdeb6f29 // indirect
github.com/rancher/lasso v0.0.0-20240123150939-7055397d6dfa // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
@@ -87,25 +87,27 @@ require (
go.opentelemetry.io/otel/sdk v1.10.0 // indirect
go.opentelemetry.io/otel/trace v1.10.0 // indirect
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/crypto v0.16.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.10.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/term v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
google.golang.org/grpc v1.51.0 // indirect
google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/component-base v0.27.4 // indirect
k8s.io/component-base v0.28.6 // indirect
k8s.io/klog/v2 v2.100.1 // indirect
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 // indirect
sigs.k8s.io/cli-utils v0.27.0 // indirect
sigs.k8s.io/cli-utils v0.28.0 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
Loading