Skip to content

Commit a818dc6

Browse files
authored
Release changes for v1.7.0-rc.1 (#1534)
* Update k8s.io packages (#1531) * update supported version of k8s.io/client-go * update tutorial deps * add context * release changes for v1.7.0-rc.1
1 parent 2e6aa4f commit a818dc6

File tree

74 files changed

+205
-150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+205
-150
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# If you want information on how to edit this file checkout,
5454
# http://makefiletutorial.com/
5555

56-
BASE_VERSION = 0.0.0-dev
56+
BASE_VERSION = 1.7.0-rc.1
5757
SHORT_SHA = $(shell git rev-parse --short=7 HEAD | tr -d [:punct:])
5858
BRANCH_NAME = $(shell git rev-parse --abbrev-ref HEAD | tr -d [:punct:])
5959
VERSION = $(BASE_VERSION)-$(SHORT_SHA)

cloudbuild.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ artifacts:
164164
- install/yaml/06-open-match-override-configmap.yaml
165165

166166
substitutions:
167-
_OM_VERSION: "0.0.0-dev"
167+
_OM_VERSION: "1.7.0-rc.1"
168168
_GCB_POST_SUBMIT: "0"
169169
_GCB_LATEST_VERSION: "undefined"
170170
_ARTIFACTS_BUCKET: "gs://open-match-build-artifacts/output/"

go.mod

+24-13
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ require (
3939
github.com/spf13/viper v1.7.1
4040
github.com/stretchr/testify v1.8.1
4141
go.opencensus.io v0.24.0
42-
golang.org/x/net v0.3.0
42+
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10
4343
golang.org/x/sync v0.1.0
4444
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37
4545
google.golang.org/grpc v1.51.0
4646
google.golang.org/protobuf v1.28.1
47-
k8s.io/api v0.0.0-20191004102349-159aefb8556b // kubernetes-1.14.10
48-
k8s.io/apimachinery v0.0.0-20191004074956-c5d2f014d689 // kubernetes-1.14.10
49-
k8s.io/client-go v11.0.1-0.20191029005444-8e4128053008+incompatible // kubernetes-1.14.10
47+
k8s.io/api v0.26.1 // kubernetes-1.14.10
48+
k8s.io/apimachinery v0.26.1
49+
k8s.io/client-go v0.26.1
5050
)
5151

5252
require (
@@ -63,28 +63,36 @@ require (
6363
github.com/census-instrumentation/opencensus-proto v0.2.1 // indirect
6464
github.com/cespare/xxhash/v2 v2.1.1 // indirect
6565
github.com/davecgh/go-spew v1.1.1 // indirect
66+
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
67+
github.com/go-logr/logr v1.2.3 // indirect
68+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
69+
github.com/go-openapi/jsonreference v0.20.0 // indirect
70+
github.com/go-openapi/swag v0.19.14 // indirect
6671
github.com/go-stack/stack v1.8.0 // indirect
6772
github.com/gogo/protobuf v1.3.2 // indirect
68-
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
73+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
74+
github.com/google/gnostic v0.5.7-v3refs // indirect
6975
github.com/google/go-cmp v0.5.9 // indirect
70-
github.com/google/gofuzz v1.0.0 // indirect
76+
github.com/google/gofuzz v1.1.0 // indirect
7177
github.com/google/uuid v1.3.0 // indirect
7278
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
7379
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
74-
github.com/googleapis/gnostic v0.3.1 // indirect
7580
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
7681
github.com/hashicorp/errwrap v1.1.0 // indirect
7782
github.com/hashicorp/go-multierror v1.1.0 // indirect
7883
github.com/hashicorp/golang-lru v0.5.1 // indirect
7984
github.com/hashicorp/hcl v1.0.0 // indirect
8085
github.com/imdario/mergo v0.3.11 // indirect
8186
github.com/jmespath/go-jmespath v0.4.0 // indirect
82-
github.com/json-iterator/go v1.1.10 // indirect
87+
github.com/josharian/intern v1.0.0 // indirect
88+
github.com/json-iterator/go v1.1.12 // indirect
8389
github.com/magiconair/properties v1.8.1 // indirect
90+
github.com/mailru/easyjson v0.7.6 // indirect
8491
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
8592
github.com/mitchellh/mapstructure v1.1.2 // indirect
8693
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
87-
github.com/modern-go/reflect2 v1.0.1 // indirect
94+
github.com/modern-go/reflect2 v1.0.2 // indirect
95+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8896
github.com/opentracing/opentracing-go v1.1.0 // indirect
8997
github.com/pelletier/go-toml v1.8.1 // indirect
9098
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -99,19 +107,22 @@ require (
99107
github.com/subosito/gotenv v1.2.0 // indirect
100108
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect
101109
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb // indirect
102-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
103110
golang.org/x/oauth2 v0.3.0 // indirect
104111
golang.org/x/sys v0.3.0 // indirect
112+
golang.org/x/term v0.3.0 // indirect
105113
golang.org/x/text v0.5.0 // indirect
106-
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
114+
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
107115
google.golang.org/api v0.103.0 // indirect
108116
google.golang.org/appengine v1.6.7 // indirect
109117
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
110118
gopkg.in/inf.v0 v0.9.1 // indirect
111119
gopkg.in/ini.v1 v1.51.0 // indirect
112120
gopkg.in/yaml.v2 v2.4.0 // indirect
113121
gopkg.in/yaml.v3 v3.0.1 // indirect
114-
k8s.io/klog v1.0.0 // indirect
115-
k8s.io/utils v0.0.0-20200729134348-d5654de09c73 // indirect
122+
k8s.io/klog/v2 v2.80.1 // indirect
123+
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
124+
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
125+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
126+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
116127
sigs.k8s.io/yaml v1.3.0 // indirect
117128
)

0 commit comments

Comments
 (0)