Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Release 0.5.4 merges #575

Merged
merged 19 commits into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
bdc4bf4
build(deps): bump github.com/go-logr/logr from 1.2.3 to 1.2.4 (#546)
dependabot[bot] Mar 30, 2023
b2f0fd1
envoy: fix SPIFFE path parsing for non-default partitions in Consul E…
mikemorris Apr 3, 2023
fe6549b
build(deps): bump golang.org/x/tools from 0.7.0 to 0.8.0 (#550)
dependabot[bot] Apr 7, 2023
9f0a455
build(deps): bump github.com/containerd/containerd from 1.6.11 to 1.6…
dependabot[bot] Apr 7, 2023
cd0ff54
build(deps): bump github.com/opencontainers/runc from 1.1.2 to 1.1.5 …
dependabot[bot] Apr 7, 2023
37ec614
build(deps): bump github.com/docker/docker (#548)
dependabot[bot] Apr 10, 2023
e99d8c8
build(deps): bump github.com/hashicorp/vault/sdk from 0.8.1 to 0.9.0 …
dependabot[bot] Apr 10, 2023
03c72b4
build(deps): bump github.com/prometheus/client_golang (#556)
dependabot[bot] Apr 27, 2023
03ea4e9
build(deps): bump sigs.k8s.io/e2e-framework from 0.1.0 to 0.2.0 (#557)
dependabot[bot] Apr 27, 2023
b9fcdaf
build(deps): bump github.com/hashicorp/vault/api from 1.9.0 to 1.9.1 …
dependabot[bot] Apr 27, 2023
4c2d079
build(deps): bump github.com/docker/docker (#563)
dependabot[bot] Apr 28, 2023
8b0d88c
build(deps): bump sigs.k8s.io/controller-tools from 0.11.3 to 0.11.4 …
dependabot[bot] Apr 28, 2023
72a1905
build(deps): bump k8s.io/klog/v2 from 2.90.1 to 2.100.1 (#564)
dependabot[bot] May 9, 2023
2034de7
build(deps): bump github.com/prometheus/client_golang (#566)
dependabot[bot] May 10, 2023
376d21e
build(deps): bump golang.org/x/net from 0.9.0 to 0.10.0 (#567)
dependabot[bot] May 11, 2023
759e79b
build(deps): bump github.com/docker/distribution (#568)
dependabot[bot] May 11, 2023
526b367
go: build w/ Go 1.19.9 (#570)
nathancoleman May 12, 2023
b4c8202
build(deps): bump golang.org/x/tools from 0.8.0 to 0.9.1 (#569)
dependabot[bot] May 12, 2023
a0774e4
build(deps): bump github.com/docker/docker (#571)
dependabot[bot] May 15, 2023
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
3 changes: 3 additions & 0 deletions .changelog/547.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
add support for parsing SPIFFE paths for non-default partitions in Consul Enterprise
```
3 changes: 3 additions & 0 deletions .changelog/570.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
go: build with Go v1.19.9
```
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
matrix:
goos: ["linux"]
goarch: ["arm", "arm64", "386", "amd64"]
go: ["1.19.4"]
go: ["1.19.9"]
fail-fast: true

name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

FROM golang:1.19.4-alpine as go-discover
FROM golang:1.19.9-alpine as go-discover
RUN CGO_ENABLED=0 go install github.com/hashicorp/go-discover/cmd/discover@49f60c093101c9c5f6b04d5b1c80164251a761a6

# ===================================
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.4-alpine as go-discover
FROM golang:1.19.9-alpine as go-discover
RUN CGO_ENABLED=0 go install github.com/hashicorp/go-discover/cmd/discover@49f60c093101c9c5f6b04d5b1c80164251a761a6

FROM alpine:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.11.4
name: gatewayclassconfigs.api-gateway.consul.hashicorp.com
spec:
group: api-gateway.consul.hashicorp.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.11.4
name: meshservices.api-gateway.consul.hashicorp.com
spec:
group: api-gateway.consul.hashicorp.com
Expand Down
1 change: 0 additions & 1 deletion config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: consul-api-gateway-controller
rules:
- apiGroups:
Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ require (
github.com/armon/go-metrics v0.4.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/deepmap/oapi-codegen v1.11.0
github.com/docker/docker v23.0.2+incompatible
github.com/docker/docker v23.0.6+incompatible
github.com/envoyproxy/go-control-plane v0.10.3
github.com/go-logr/logr v1.2.3
github.com/go-logr/logr v1.2.4
github.com/golang/mock v1.6.0
github.com/golangci/golangci-lint v1.52.2
github.com/google/uuid v1.3.0
Expand All @@ -20,29 +20,29 @@ require (
github.com/hashicorp/go-changelog v0.0.0-20221013053416-ba40b3a8c7ff
github.com/hashicorp/go-hclog v1.5.0
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/vault/api v1.9.0
github.com/hashicorp/vault/sdk v0.8.1
github.com/hashicorp/vault/api v1.9.1
github.com/hashicorp/vault/sdk v0.9.0
github.com/kr/text v0.2.0
github.com/mitchellh/cli v1.1.5
github.com/mitchellh/mapstructure v1.5.0
github.com/prometheus/client_golang v1.14.0
github.com/prometheus/client_golang v1.15.1
github.com/stretchr/testify v1.8.2
github.com/vladimirvivien/gexe v0.2.0
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
golang.org/x/net v0.8.0
golang.org/x/sync v0.1.0
golang.org/x/tools v0.7.0
golang.org/x/net v0.10.0
golang.org/x/sync v0.2.0
golang.org/x/tools v0.9.1
google.golang.org/grpc v1.54.0
k8s.io/api v0.26.3
k8s.io/apiextensions-apiserver v0.26.3
k8s.io/apimachinery v0.26.3
k8s.io/client-go v0.26.3
k8s.io/klog/v2 v2.90.1
k8s.io/klog/v2 v2.100.1
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
sigs.k8s.io/controller-runtime v0.14.6
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20221007015352-8ad090e0663e
sigs.k8s.io/controller-tools v0.11.3
sigs.k8s.io/e2e-framework v0.1.0
sigs.k8s.io/controller-tools v0.11.4
sigs.k8s.io/e2e-framework v0.2.0
sigs.k8s.io/gateway-api v0.5.1
)

Expand Down Expand Up @@ -83,12 +83,12 @@ require (
github.com/chavacava/garif v0.0.0-20230227094218-b8c73b2037b8 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b // indirect
github.com/containerd/containerd v1.6.11 // indirect
github.com/containerd/containerd v1.6.18 // indirect
github.com/curioswitch/go-reassign v0.2.0 // indirect
github.com/daixiang0/gci v0.10.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denis-tingaikin/go-header v0.4.3 // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
Expand Down Expand Up @@ -125,7 +125,7 @@ require (
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
Expand Down Expand Up @@ -221,7 +221,7 @@ require (
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
github.com/opencontainers/runc v1.1.2 // indirect
github.com/opencontainers/runc v1.1.5 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pierrec/lz4 v2.5.2+incompatible // indirect
Expand All @@ -230,8 +230,8 @@ require (
github.com/polyfloyd/go-errorlint v1.4.0 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/quasilyte/go-ruleguard v0.3.19 // indirect
github.com/quasilyte/gogrep v0.5.0 // indirect
github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect
Expand Down Expand Up @@ -281,18 +281,18 @@ require (
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.5.0 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/mod v0.9.0 // indirect
golang.org/x/oauth2 v0.4.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/oauth2 v0.5.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/time v0.3.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/protobuf v1.28.1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
Expand Down
Loading