Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO NOT MERGE: specify tlskyber=0 go to disable two-packet TLS hello #5391

Closed
wants to merge 2 commits into from
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
1 change: 1 addition & 0 deletions .release/ci.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ project "boundary" {
release_branches = [
"main",
"release/**",
"jbrandhorst-downgrade-0.18-go",
]
}
}
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary

go 1.23.3

godebug tlskyber=0

replace github.com/hashicorp/boundary/api => ./api

replace github.com/hashicorp/boundary/sdk => ./sdk
Expand Down
2 changes: 2 additions & 0 deletions plugins/boundary/mains/aws/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/aws

go 1.23.3

godebug tlskyber=0

require (
github.com/hashicorp/boundary-plugin-aws v0.4.2
github.com/hashicorp/boundary/sdk v0.0.49
Expand Down
2 changes: 2 additions & 0 deletions plugins/boundary/mains/azure/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/azure

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/boundary-plugin-azure v0.1.3
github.com/hashicorp/boundary/sdk v0.0.39
Expand Down
2 changes: 2 additions & 0 deletions plugins/boundary/mains/minio/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/minio

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/boundary-plugin-minio v0.1.5
github.com/hashicorp/boundary/sdk v0.0.43-0.20240717182311-a20aae98794a
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/alicloudkms/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/alicloudkms

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/alicloudkms/v2 v2.0.3
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/awskms/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/awskms

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/awskms/v2 v2.0.10
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/azurekeyvault/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/azurekeyvault

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/azurekeyvault/v2 v2.0.11
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/gcpckms/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/gcpckms

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/gcpckms/v2 v2.0.12
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/ocikms/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/ocikms

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/ocikms/v2 v2.0.8
Expand Down
2 changes: 2 additions & 0 deletions plugins/kms/mains/transit/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/hashicorp/boundary/plugins/kms/mains/transit

go 1.23.0

godebug tlskyber=0

require (
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.7
github.com/hashicorp/go-kms-wrapping/wrappers/transit/v2 v2.0.12
Expand Down
Loading