Update host plugin mains against SIGHUP swallowing sdk

pull/2682/head
Jeff Mitchell 3 years ago
parent b8a3def368
commit 3fa866e6bf

@ -13,6 +13,12 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
downstream connections for worker and controller servers.
([PR](https://github.com/hashicorp/boundary/pull/2668))
### Bug Fixes
* plugins: Ignore `SIGHUP` sent to parent process; some init systems, notably
`dumb-init`, would pass them along to the child processes and cause the
plugin to exit ([PR](https://github.com/hashicorp/boundary/pull/2677))
## 0.11.1 (2022/11/30)
### New and Improved

@ -4,7 +4,7 @@ go 1.17
require (
github.com/hashicorp/boundary-plugin-host-aws v0.1.3
github.com/hashicorp/boundary/sdk v0.0.21
github.com/hashicorp/boundary/sdk v0.0.27
)
require (

@ -84,8 +84,9 @@ github.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:
github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
github.com/hashicorp/boundary-plugin-host-aws v0.1.3 h1:dmsS0wpul4gcXLSNYGypiBg8wmx4Oalh9wI6ZQjNDy0=
github.com/hashicorp/boundary-plugin-host-aws v0.1.3/go.mod h1:xpgU6rHcw9aWOs4knpz6UGKCG5jGCaVDeuEbUWJM6gM=
github.com/hashicorp/boundary/sdk v0.0.21 h1:amDhqGTQh8+AMBKe4rLeqJUxntkviurWV9ws2UUhFHI=
github.com/hashicorp/boundary/sdk v0.0.21/go.mod h1:LQJL4dxljJc1rhsc8j0IC+P5vh8Ttr7onfqGGDFzd2w=
github.com/hashicorp/boundary/sdk v0.0.27 h1:8jJiiLnfoCEOH4S3ma7DvC2FVYLHcrh06Y34IxyBDbU=
github.com/hashicorp/boundary/sdk v0.0.27/go.mod h1:rriE6QxdGmK8zDenGdeKDcZewVl8tzUdXOYTBf8uj+Y=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=

@ -4,7 +4,7 @@ go 1.17
require (
github.com/hashicorp/boundary-plugin-host-azure v0.1.1
github.com/hashicorp/boundary/sdk v0.0.20
github.com/hashicorp/boundary/sdk v0.0.27
)
require (

@ -169,8 +169,9 @@ github.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:
github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
github.com/hashicorp/boundary-plugin-host-azure v0.1.1 h1:RYR4EqC9/7v5axFmr/hR4mrZDLXwRGse3TKL5d7l7Eg=
github.com/hashicorp/boundary-plugin-host-azure v0.1.1/go.mod h1:eRum48eNzMVXRY2OFrRGYFLNHwHqww+U0ClI8EzEsPQ=
github.com/hashicorp/boundary/sdk v0.0.20 h1:coETbBGtWLNqqkqabwgVGbC8g4ajXFSFzFC2ng8OF6o=
github.com/hashicorp/boundary/sdk v0.0.20/go.mod h1:LQJL4dxljJc1rhsc8j0IC+P5vh8Ttr7onfqGGDFzd2w=
github.com/hashicorp/boundary/sdk v0.0.27 h1:8jJiiLnfoCEOH4S3ma7DvC2FVYLHcrh06Y34IxyBDbU=
github.com/hashicorp/boundary/sdk v0.0.27/go.mod h1:rriE6QxdGmK8zDenGdeKDcZewVl8tzUdXOYTBf8uj+Y=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=

Loading…
Cancel
Save