From 819f62ac8dc27d11149cc7e132c1bfeb7ecd96f5 Mon Sep 17 00:00:00 2001 From: Cam Hutchison Date: Wed, 8 May 2024 12:09:16 +1000 Subject: [PATCH] Release 15.3.1 (#1066) * Release 15.3.1 * access/email: Embed example TOML file The teleport repo changed to remove the exported `email.ExampleConfig` variable, but we depend on it here. Add the example config as a file and embed it in main. This plugin is on its last days as it gets migrated to the teleport repo, so duplicating this example config here for a short time will not become a maintenance issue. --- access/discord/Makefile | 2 +- access/email/Makefile | 2 +- access/email/example_config.toml | 37 ++++++++++++ access/email/main.go | 6 +- access/jira/Makefile | 2 +- access/mattermost/Makefile | 2 +- access/msteams/Makefile | 2 +- access/pagerduty/Makefile | 2 +- access/slack/Makefile | 2 +- charts/access/discord/Chart.yaml | 6 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 8 +-- charts/access/email/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 24 ++++---- .../__snapshot__/deployment_test.yaml.snap | 58 +++++++++---------- charts/access/jira/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 8 +-- charts/access/mattermost/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 28 ++++----- charts/access/msteams/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 8 +-- charts/access/pagerduty/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 8 +-- charts/access/slack/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 8 +-- charts/event-handler/Chart.yaml | 4 +- .../__snapshot__/configmap_test.yaml.snap | 4 +- .../__snapshot__/deployment_test.yaml.snap | 4 +- event-handler/Makefile | 2 +- go.mod | 8 ++- go.sum | 17 ++++-- terraform/install.mk | 2 +- 37 files changed, 175 insertions(+), 127 deletions(-) create mode 100644 access/email/example_config.toml diff --git a/access/discord/Makefile b/access/discord/Makefile index 31de914bf..4585fde3f 100644 --- a/access/discord/Makefile +++ b/access/discord/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/email/Makefile b/access/email/Makefile index 5149112f5..f31dc1c90 100644 --- a/access/email/Makefile +++ b/access/email/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/email/example_config.toml b/access/email/example_config.toml new file mode 100644 index 000000000..462f01e97 --- /dev/null +++ b/access/email/example_config.toml @@ -0,0 +1,37 @@ +# Example email plugin configuration TOML file + +[teleport] +addr = "0.0.0.0:3025" # Teleport Auth Server GRPC API address + +# When using --format=file: +# identity = "/var/lib/teleport/plugins/email/auth_id" # Identity file +# refresh_identity = true # Refresh identity file on a periodic basis. +# +# When using --format=tls: +# client_key = "/var/lib/teleport/plugins/email/auth.key" # Teleport TLS secret key +# client_crt = "/var/lib/teleport/plugins/email/auth.crt" # Teleport TLS certificate +# root_cas = "/var/lib/teleport/plugins/email/auth.cas" # Teleport CA certs + +[mailgun] +domain = "your-domain-name" +private_key = "xoxb-11xx" +# private_key_file = "/var/lib/teleport/plugins/email/mailgun_private_key" + +[smtp] +host = "smtp.gmail.com" +port = 587 +username = "username@gmail.com" +password = "" +# password_file = "/var/lib/teleport/plugins/email/smtp_password" +starttls_policy = "mandatory" # mandatory|opportunistic|disabled + +[delivery] +sender = "noreply@example.com" # From: email address + +[role_to_recipients] +"dev" = "dev-manager@example.com" # All requests to 'dev' role will be sent to this address +"*" = ["root@example.com", "admin@example.com"] # These recipients will receive review requests not handled by the roles above + +[log] +output = "stderr" # Logger output. Could be "stdout", "stderr" or "/var/lib/teleport/email.log" +severity = "INFO" # Logger severity. Could be "INFO", "ERROR", "DEBUG" or "WARN". diff --git a/access/email/main.go b/access/email/main.go index da4c999d7..7d2fd486b 100644 --- a/access/email/main.go +++ b/access/email/main.go @@ -18,6 +18,7 @@ package main import ( "context" + _ "embed" "fmt" "os" "time" @@ -29,6 +30,9 @@ import ( "github.com/gravitational/trace" ) +//go:embed example_config.toml +var exampleConfig string + func main() { logger.Init() app := kingpin.New("teleport-email", "Teleport plugin for access requests approval via E-mail.") @@ -52,7 +56,7 @@ func main() { switch selectedCmd { case "configure": - fmt.Print(email.ExampleConfig) + fmt.Print(exampleConfig) case "version": lib.PrintVersion(app.Name, Version, Gitref) case "start": diff --git a/access/jira/Makefile b/access/jira/Makefile index 7deffae30..e418cdadf 100644 --- a/access/jira/Makefile +++ b/access/jira/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/mattermost/Makefile b/access/mattermost/Makefile index 9e6889715..a60c04b1c 100644 --- a/access/mattermost/Makefile +++ b/access/mattermost/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/msteams/Makefile b/access/msteams/Makefile index 746a4167e..2603e3882 100644 --- a/access/msteams/Makefile +++ b/access/msteams/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/pagerduty/Makefile b/access/pagerduty/Makefile index 113c17d25..057e18a8b 100644 --- a/access/pagerduty/Makefile +++ b/access/pagerduty/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/access/slack/Makefile b/access/slack/Makefile index 39b964b76..37b733a82 100644 --- a/access/slack/Makefile +++ b/access/slack/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 BUILDDIR ?= build diff --git a/charts/access/discord/Chart.yaml b/charts/access/discord/Chart.yaml index 1a1aca44e..55bb38984 100644 --- a/charts/access/discord/Chart.yaml +++ b/charts/access/discord/Chart.yaml @@ -15,16 +15,16 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap index 569cbe745..ba3c0bc65 100644 --- a/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap @@ -24,6 +24,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-discord-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-discord-15.3.1 name: RELEASE-NAME-teleport-plugin-discord diff --git a/charts/access/discord/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/discord/tests/__snapshot__/deployment_test.yaml.snap index 2e74cb0b5..a5547d4a5 100644 --- a/charts/access/discord/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/discord/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-discord-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-discord-15.3.1 name: RELEASE-NAME-teleport-plugin-discord spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-discord-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-discord-15.3.1 spec: containers: - command: diff --git a/charts/access/email/Chart.yaml b/charts/access/email/Chart.yaml index 95c0cae86..6c9ab8136 100644 --- a/charts/access/email/Chart.yaml +++ b/charts/access/email/Chart.yaml @@ -13,10 +13,10 @@ description: A Helm chart for the Teleport Email Plugin type: application # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap index e7f53d6c5..ad5a949b7 100644 --- a/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap @@ -26,8 +26,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on): 1: | @@ -59,8 +59,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, no starttls): 1: | @@ -92,8 +92,8 @@ should match the snapshot (smtp on, no starttls): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, password file): 1: | @@ -125,8 +125,8 @@ should match the snapshot (smtp on, password file): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, roleToRecipients set): 1: | @@ -161,8 +161,8 @@ should match the snapshot (smtp on, roleToRecipients set): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, starttls disabled): 1: | @@ -194,6 +194,6 @@ should match the snapshot (smtp on, starttls disabled): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email diff --git a/charts/access/email/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/email/tests/__snapshot__/deployment_test.yaml.snap index d84aaf6a8..10836d40c 100644 --- a/charts/access/email/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/email/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should be possible to override volume name (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -22,8 +22,8 @@ should be possible to override volume name (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -34,7 +34,7 @@ should be possible to override volume name (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -75,8 +75,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -90,8 +90,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -136,8 +136,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -151,8 +151,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -163,7 +163,7 @@ should match the snapshot (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -204,8 +204,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -219,8 +219,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -231,7 +231,7 @@ should match the snapshot (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -272,8 +272,8 @@ should mount external secret (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -287,8 +287,8 @@ should mount external secret (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -299,7 +299,7 @@ should mount external secret (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -340,8 +340,8 @@ should mount external secret (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -355,8 +355,8 @@ should mount external secret (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-email-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-email-15.3.1 spec: containers: - command: @@ -367,7 +367,7 @@ should mount external secret (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: diff --git a/charts/access/jira/Chart.yaml b/charts/access/jira/Chart.yaml index 6524cc1e7..46c5ba167 100644 --- a/charts/access/jira/Chart.yaml +++ b/charts/access/jira/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap index a5ee08acf..bf22fba2a 100644 --- a/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap @@ -32,6 +32,6 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-jira-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-jira-15.3.1 name: RELEASE-NAME-teleport-plugin-jira diff --git a/charts/access/jira/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/jira/tests/__snapshot__/deployment_test.yaml.snap index c2c4920d3..5a43142e6 100644 --- a/charts/access/jira/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/jira/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-jira-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-jira-15.3.1 name: RELEASE-NAME-teleport-plugin-jira spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-jira-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-jira-15.3.1 spec: containers: - command: diff --git a/charts/access/mattermost/Chart.yaml b/charts/access/mattermost/Chart.yaml index d5eee2bce..cc53bc801 100644 --- a/charts/access/mattermost/Chart.yaml +++ b/charts/access/mattermost/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap index 76acfcaa7..e7ef95b66 100644 --- a/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap @@ -22,6 +22,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 name: RELEASE-NAME-teleport-plugin-mattermost diff --git a/charts/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap index ffe7aa925..dd6405961 100644 --- a/charts/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 spec: containers: - command: @@ -75,8 +75,8 @@ should mount external secret: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -90,8 +90,8 @@ should mount external secret: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 spec: containers: - command: @@ -102,7 +102,7 @@ should mount external secret: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: @@ -143,8 +143,8 @@ should override volume name: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -158,8 +158,8 @@ should override volume name: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-mattermost-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-mattermost-15.3.1 spec: containers: - command: @@ -170,7 +170,7 @@ should override volume name: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.3.0 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.3.1 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: diff --git a/charts/access/msteams/Chart.yaml b/charts/access/msteams/Chart.yaml index 241e24cf4..50040f8ed 100644 --- a/charts/access/msteams/Chart.yaml +++ b/charts/access/msteams/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap index 9fffa6b61..f4ecdef37 100644 --- a/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap @@ -29,6 +29,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-msteams-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-msteams-15.3.1 name: RELEASE-NAME-teleport-plugin-msteams diff --git a/charts/access/msteams/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/msteams/tests/__snapshot__/deployment_test.yaml.snap index 78b41f122..72f9b1592 100644 --- a/charts/access/msteams/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/msteams/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-msteams-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-msteams-15.3.1 name: RELEASE-NAME-teleport-plugin-msteams spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-msteams-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-msteams-15.3.1 spec: containers: - command: diff --git a/charts/access/pagerduty/Chart.yaml b/charts/access/pagerduty/Chart.yaml index 59bc65289..5090cae02 100644 --- a/charts/access/pagerduty/Chart.yaml +++ b/charts/access/pagerduty/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap index 500df2dec..386ad6729 100644 --- a/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap @@ -21,6 +21,6 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-pagerduty-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-pagerduty-15.3.1 name: RELEASE-NAME-teleport-plugin-pagerduty diff --git a/charts/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap index b24ca63dd..ece99fbfe 100644 --- a/charts/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-pagerduty-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-pagerduty-15.3.1 name: RELEASE-NAME-teleport-plugin-pagerduty spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-pagerduty-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-pagerduty-15.3.1 spec: containers: - command: diff --git a/charts/access/slack/Chart.yaml b/charts/access/slack/Chart.yaml index 4966d258c..5201d4807 100644 --- a/charts/access/slack/Chart.yaml +++ b/charts/access/slack/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap index c3d28c220..910daccc0 100644 --- a/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap @@ -24,6 +24,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-slack-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-slack-15.3.1 name: RELEASE-NAME-teleport-plugin-slack diff --git a/charts/access/slack/tests/__snapshot__/deployment_test.yaml.snap b/charts/access/slack/tests/__snapshot__/deployment_test.yaml.snap index 193f6705f..e525eb129 100644 --- a/charts/access/slack/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/access/slack/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-slack-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-slack-15.3.1 name: RELEASE-NAME-teleport-plugin-slack spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-slack-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-slack-15.3.1 spec: containers: - command: diff --git a/charts/event-handler/Chart.yaml b/charts/event-handler/Chart.yaml index b82d1d07b..db5e7daa3 100644 --- a/charts/event-handler/Chart.yaml +++ b/charts/event-handler/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "15.3.0" +version: "15.3.1" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "15.3.0" +appVersion: "15.3.1" diff --git a/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap b/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap index 4cf61ad40..e7cfd4226 100644 --- a/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap @@ -24,6 +24,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-event-handler - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-event-handler-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-event-handler-15.3.1 name: RELEASE-NAME-teleport-plugin-event-handler diff --git a/charts/event-handler/tests/__snapshot__/deployment_test.yaml.snap b/charts/event-handler/tests/__snapshot__/deployment_test.yaml.snap index 3f2652db4..21a68649b 100644 --- a/charts/event-handler/tests/__snapshot__/deployment_test.yaml.snap +++ b/charts/event-handler/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-event-handler - app.kubernetes.io/version: 15.3.0 - helm.sh/chart: teleport-plugin-event-handler-15.3.0 + app.kubernetes.io/version: 15.3.1 + helm.sh/chart: teleport-plugin-event-handler-15.3.1 name: RELEASE-NAME-teleport-plugin-event-handler spec: replicas: 1 diff --git a/event-handler/Makefile b/event-handler/Makefile index d1da9f32c..d9b59498b 100644 --- a/event-handler/Makefile +++ b/event-handler/Makefile @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 GO_VERSION=1.21.9 GITTAG=v$(VERSION) diff --git a/go.mod b/go.mod index 4d2d5e8a9..39a167517 100644 --- a/go.mod +++ b/go.mod @@ -33,7 +33,7 @@ require ( golang.org/x/net v0.24.0 golang.org/x/sync v0.7.0 google.golang.org/grpc v1.62.1 - google.golang.org/protobuf v1.33.0 + google.golang.org/protobuf v1.34.0 gopkg.in/mail.v2 v2.3.1 // indirect ) @@ -197,6 +197,7 @@ require ( github.com/hashicorp/go-hclog v1.2.2 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-plugin v1.4.8 // indirect + github.com/hashicorp/go-retryablehttp v0.7.5 // indirect github.com/hashicorp/go-uuid v1.0.3 // indirect github.com/hashicorp/go-version v1.6.0 // indirect github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect @@ -295,6 +296,7 @@ require ( github.com/vulcand/predicate v1.2.0 // indirect github.com/weppos/publicsuffix-go v0.30.1-0.20230620154423-38c92ad2d5c6 // indirect github.com/x448/float16 v0.8.4 // indirect + github.com/xanzy/go-gitlab v0.103.0 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect @@ -361,8 +363,8 @@ replace ( github.com/alecthomas/kingpin/v2 => github.com/gravitational/kingpin/v2 v2.1.11-0.20230515143221-4ec6b70ecd33 github.com/coreos/go-oidc => github.com/gravitational/go-oidc v0.1.1 github.com/gogo/protobuf => github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf - github.com/gravitational/teleport => github.com/gravitational/teleport v0.0.0-20240501011405-0a192a42c3d1 // ref: tags/v15.3.0 - github.com/gravitational/teleport/api => github.com/gravitational/teleport/api v0.0.0-20240501011405-0a192a42c3d1 // ref: tags/v15.3.0 + github.com/gravitational/teleport => github.com/gravitational/teleport v0.0.0-20240507172345-1d048d0736fc // ref: tags/v15.3.1 + github.com/gravitational/teleport/api => github.com/gravitational/teleport/api v0.0.0-20240507172345-1d048d0736fc // ref: tags/v15.3.1 github.com/julienschmidt/httprouter => github.com/gravitational/httprouter v1.3.1-0.20220408074523-c876c5e705a5 github.com/microsoft/go-mssqldb => github.com/gravitational/go-mssqldb v0.11.1-0.20230331180905-0f76f1751cd3 github.com/vulcand/predicate => github.com/gravitational/predicate v1.3.1 diff --git a/go.sum b/go.sum index 3aff6e2fd..dc4ce5252 100644 --- a/go.sum +++ b/go.sum @@ -605,10 +605,10 @@ github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf h1:MQ4e8X github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gravitational/roundtrip v1.0.2 h1:eOCY0NEKKaB0ksJmvhO6lPMFz1pIIef+vyPBTBROQ5c= github.com/gravitational/roundtrip v1.0.2/go.mod h1:fuI1booM2hLRA/B/m5MRAPOU6mBZNYcNycono2UuTw0= -github.com/gravitational/teleport v0.0.0-20240501011405-0a192a42c3d1 h1:UjgonkblKl22I1Wjq8MmM+i4/vTYxq64VaAzeMu563o= -github.com/gravitational/teleport v0.0.0-20240501011405-0a192a42c3d1/go.mod h1:oTdLA63vnQprm6/r4Z04bPKbFwH4m4vt95q5HKu1Eps= -github.com/gravitational/teleport/api v0.0.0-20240501011405-0a192a42c3d1 h1:spiQSgM8rplYPa2B1D340aqgTBGQiOp7L2EjmMJSPcI= -github.com/gravitational/teleport/api v0.0.0-20240501011405-0a192a42c3d1/go.mod h1:vxwmW2PcHFVPNsnZRFY9nlj3lCy/wapl0l6iQ3YgI5k= +github.com/gravitational/teleport v0.0.0-20240507172345-1d048d0736fc h1:SbTzPZhx32fH50N+AkGp/rF+o3l2Dlnl3YuzmBrB9pQ= +github.com/gravitational/teleport v0.0.0-20240507172345-1d048d0736fc/go.mod h1:WcDpfIRrJNxwMrhYolj/RxiajHxis5vsQkPFKABFb5E= +github.com/gravitational/teleport/api v0.0.0-20240507172345-1d048d0736fc h1:v+USukvuLEeUWeY28MzFNw2eh1eP9OAH21Cc+CJjAsc= +github.com/gravitational/teleport/api v0.0.0-20240507172345-1d048d0736fc/go.mod h1:vxwmW2PcHFVPNsnZRFY9nlj3lCy/wapl0l6iQ3YgI5k= github.com/gravitational/trace v1.3.1 h1:jwZEuRtCYpLhUtqHo+JH+lu2qM0LB98UagqHtvdKuLI= github.com/gravitational/trace v1.3.1/go.mod h1:E61mn73aro7Zg9gZheZaeUsK6gjUMbCLazY76xuYAVA= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM= @@ -639,6 +639,7 @@ github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320/go.mod h1:EiZBM github.com/hashicorp/go-getter v1.5.3 h1:NF5+zOlQegim+w/EUhSLh6QhXHmZMEeHLQzllkQ3ROU= github.com/hashicorp/go-getter v1.5.3/go.mod h1:BrrV/1clo8cCYu6mxvboYg+KutTiFnXjMEgDD8+i7ZI= github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd/go.mod h1:9bjs9uLqI8l75knNv3lV1kA55veR+WUPSiKIWcQHudI= +github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v0.14.1/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v0.16.1/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= @@ -654,6 +655,8 @@ github.com/hashicorp/go-plugin v1.3.0/go.mod h1:F9eH4LrE/ZsRdbwhfjs9k9HoDUwAHnYt github.com/hashicorp/go-plugin v1.4.1/go.mod h1:5fGEH17QVwTTcR0zV7yhDPLLmFX9YSZ38b18Udy6vYQ= github.com/hashicorp/go-plugin v1.4.8 h1:CHGwpxYDOttQOY7HOWgETU9dyVjOXzniXDqJcYJE1zM= github.com/hashicorp/go-plugin v1.4.8/go.mod h1:viDMjcLJuDui6pXb8U4HVfb8AamCWhHGUjr2IrTF67s= +github.com/hashicorp/go-retryablehttp v0.7.5 h1:bJj+Pj19UZMIweq/iie+1u5YCdGrnxCT9yvm0e+Nd5M= +github.com/hashicorp/go-retryablehttp v0.7.5/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= github.com/hashicorp/go-safetemp v1.0.0 h1:2HR189eFNrjHQyENnQMMpCiBAsRxzbTMIgBhEyExpmo= github.com/hashicorp/go-safetemp v1.0.0/go.mod h1:oaerMy3BhqiTbVye6QuFhFtIceqFoDHxNAB65b+Rj1I= @@ -1128,6 +1131,8 @@ github.com/weppos/publicsuffix-go v0.30.1-0.20230620154423-38c92ad2d5c6/go.mod h github.com/weppos/publicsuffix-go/publicsuffix/generator v0.0.0-20220927085643-dc0d00c92642/go.mod h1:GHfoeIdZLdZmLjMlzBftbTDntahTttUMWjxZwQJhULE= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= +github.com/xanzy/go-gitlab v0.103.0 h1:J9pTQoq0GsEFqzd6srCM1QfdfKAxSNz6mT6ntrpNF2w= +github.com/xanzy/go-gitlab v0.103.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.0/go.mod h1:3s9xbODqPuuhK9JV1R321M/FlMZSBvE5aY6eAcqrDh0= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= @@ -1626,8 +1631,8 @@ google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp0 google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4= +google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= diff --git a/terraform/install.mk b/terraform/install.mk index b355397c5..476d6f4d6 100644 --- a/terraform/install.mk +++ b/terraform/install.mk @@ -1,4 +1,4 @@ -VERSION?=15.3.0 +VERSION?=15.3.1 OS ?= $(shell go env GOOS) ARCH ?= $(shell go env GOARCH)