diff --git a/access/discord/Makefile b/access/discord/Makefile index de6c5853e..7d3462ea0 100644 --- a/access/discord/Makefile +++ b/access/discord/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/email/Makefile b/access/email/Makefile index 400e6c09a..e1464eca5 100644 --- a/access/email/Makefile +++ b/access/email/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/jira/Makefile b/access/jira/Makefile index 32676ea1d..00bf4bdb4 100644 --- a/access/jira/Makefile +++ b/access/jira/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/mattermost/Makefile b/access/mattermost/Makefile index 2a38d8a3f..308eeab1d 100644 --- a/access/mattermost/Makefile +++ b/access/mattermost/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/msteams/Makefile b/access/msteams/Makefile index 900bb3b9b..040496054 100644 --- a/access/msteams/Makefile +++ b/access/msteams/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/msteams/plugindata.go b/access/msteams/plugindata.go index 67c1424a4..7018cc4c9 100644 --- a/access/msteams/plugindata.go +++ b/access/msteams/plugindata.go @@ -41,7 +41,11 @@ func DecodePluginData(dataMap map[string]string) (PluginData, error) { data := PluginData{} var errors []error - data.AccessRequestData = plugindata.DecodeAccessRequestData(dataMap) + accessRequestData, err := plugindata.DecodeAccessRequestData(dataMap) + if err != nil { + return data, trace.Wrap(err, "failed to decode access request data") + } + data.AccessRequestData = accessRequestData if str := dataMap["messages"]; str != "" { for _, encodedMsg := range strings.Split(str, ",") { @@ -70,7 +74,11 @@ func DecodePluginData(dataMap map[string]string) (PluginData, error) { // EncodePluginData serializes plugin data to a string map func EncodePluginData(data PluginData) (map[string]string, error) { - result := plugindata.EncodeAccessRequestData(data.AccessRequestData) + result, err := plugindata.EncodeAccessRequestData(data.AccessRequestData) + if err != nil { + return nil, trace.Wrap(err, "failed to encode access request data") + } + var errors []error var encodedMessages []string diff --git a/access/pagerduty/Makefile b/access/pagerduty/Makefile index ed707e23a..5244b31ff 100644 --- a/access/pagerduty/Makefile +++ b/access/pagerduty/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/access/slack/Makefile b/access/slack/Makefile index fa0fc120f..639724c29 100644 --- a/access/slack/Makefile +++ b/access/slack/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 BUILDDIR ?= build diff --git a/charts/access/discord/Chart.yaml b/charts/access/discord/Chart.yaml index f6076e827..58b21c2ba 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: "14.0.0" +version: "14.0.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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap index fae5be6a0..a14936797 100644 --- a/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/discord/tests/__snapshot__/configmap_test.yaml.snap @@ -23,6 +23,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: 14.0.0 - helm.sh/chart: teleport-plugin-discord-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-discord-14.0.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 638fa08b8..52c3d9271 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: 14.0.0 - helm.sh/chart: teleport-plugin-discord-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-discord-14.0.1 name: RELEASE-NAME-teleport-plugin-discord spec: replicas: 1 diff --git a/charts/access/email/Chart.yaml b/charts/access/email/Chart.yaml index 5a4be96d0..b96c5148a 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap index 4eef463a3..a18e3e191 100644 --- a/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/email/tests/__snapshot__/configmap_test.yaml.snap @@ -25,8 +25,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on): 1: | @@ -57,8 +57,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, no starttls): 1: | @@ -89,8 +89,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, password file): 1: | @@ -121,8 +121,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, roleToRecipients set): 1: | @@ -156,8 +156,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, starttls disabled): 1: | @@ -188,6 +188,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.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 c89b01bce..88c57b306 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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -31,7 +31,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:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -73,8 +73,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -132,8 +132,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -156,7 +156,7 @@ should match the snapshot (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -198,8 +198,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -222,7 +222,7 @@ should match the snapshot (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -264,8 +264,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -288,7 +288,7 @@ should mount external secret (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -330,8 +330,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: 14.0.0 - helm.sh/chart: teleport-plugin-email-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-email-14.0.1 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -354,7 +354,7 @@ should mount external secret (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-email:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: diff --git a/charts/access/jira/Chart.yaml b/charts/access/jira/Chart.yaml index 83a474c0b..26ff7d7f2 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap index 9b17da81c..c4a3beae8 100644 --- a/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/jira/tests/__snapshot__/configmap_test.yaml.snap @@ -31,6 +31,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: 14.0.0 - helm.sh/chart: teleport-plugin-jira-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-jira-14.0.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 b4edd17a8..83ded0e0e 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: 14.0.0 - helm.sh/chart: teleport-plugin-jira-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-jira-14.0.1 name: RELEASE-NAME-teleport-plugin-jira spec: replicas: 1 diff --git a/charts/access/mattermost/Chart.yaml b/charts/access/mattermost/Chart.yaml index c88d2323b..a77d54087 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap index bd65e29ed..3e6a32ce9 100644 --- a/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap @@ -21,6 +21,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: 14.0.0 - helm.sh/chart: teleport-plugin-mattermost-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-mattermost-14.0.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 d42484904..f110eaabd 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: 14.0.0 - helm.sh/chart: teleport-plugin-mattermost-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-mattermost-14.0.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -73,8 +73,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: 14.0.0 - helm.sh/chart: teleport-plugin-mattermost-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-mattermost-14.0.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -97,7 +97,7 @@ should mount external secret: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: @@ -139,8 +139,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: 14.0.0 - helm.sh/chart: teleport-plugin-mattermost-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-mattermost-14.0.1 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -163,7 +163,7 @@ should override volume name: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:14.0.0 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:14.0.1 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: diff --git a/charts/access/msteams/Chart.yaml b/charts/access/msteams/Chart.yaml index ec54595b9..ec6be021f 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap index ab351c55a..546e98e61 100644 --- a/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/msteams/tests/__snapshot__/configmap_test.yaml.snap @@ -28,6 +28,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: 14.0.0 - helm.sh/chart: teleport-plugin-msteams-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-msteams-14.0.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 51d2ba9bd..080b52566 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: 14.0.0 - helm.sh/chart: teleport-plugin-msteams-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-msteams-14.0.1 name: RELEASE-NAME-teleport-plugin-msteams spec: replicas: 1 diff --git a/charts/access/pagerduty/Chart.yaml b/charts/access/pagerduty/Chart.yaml index 59fb8e1a0..915fe45fb 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap index d88e1ca60..d06a46ff1 100644 --- a/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap @@ -20,6 +20,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: 14.0.0 - helm.sh/chart: teleport-plugin-pagerduty-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-pagerduty-14.0.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 e0ec6e3fe..8d6d7ca42 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: 14.0.0 - helm.sh/chart: teleport-plugin-pagerduty-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-pagerduty-14.0.1 name: RELEASE-NAME-teleport-plugin-pagerduty spec: replicas: 1 diff --git a/charts/access/slack/Chart.yaml b/charts/access/slack/Chart.yaml index f1285fa30..cde95d7d6 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap b/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap index 9ede96d39..28af65811 100644 --- a/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/access/slack/tests/__snapshot__/configmap_test.yaml.snap @@ -23,6 +23,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: 14.0.0 - helm.sh/chart: teleport-plugin-slack-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-slack-14.0.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 fabf28ac9..f770fe542 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: 14.0.0 - helm.sh/chart: teleport-plugin-slack-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-slack-14.0.1 name: RELEASE-NAME-teleport-plugin-slack spec: replicas: 1 diff --git a/charts/event-handler/Chart.yaml b/charts/event-handler/Chart.yaml index 12a2cb7b6..63fe69dfe 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: "14.0.0" +version: "14.0.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: "14.0.0" +appVersion: "14.0.1" diff --git a/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap b/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap index ce1bc21d7..febbdd3f1 100644 --- a/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap +++ b/charts/event-handler/tests/__snapshot__/configmap_test.yaml.snap @@ -23,6 +23,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: 14.0.0 - helm.sh/chart: teleport-plugin-event-handler-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-event-handler-14.0.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 e53a01472..b370b64c6 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: 14.0.0 - helm.sh/chart: teleport-plugin-event-handler-14.0.0 + app.kubernetes.io/version: 14.0.1 + helm.sh/chart: teleport-plugin-event-handler-14.0.1 name: RELEASE-NAME-teleport-plugin-event-handler spec: replicas: 1 diff --git a/event-handler/Makefile b/event-handler/Makefile index d79e20a09..0a9a66d95 100644 --- a/event-handler/Makefile +++ b/event-handler/Makefile @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 GO_VERSION=1.21.1 GITTAG=v$(VERSION) diff --git a/go.mod b/go.mod index 8a8ff1e1c..4b2866120 100644 --- a/go.mod +++ b/go.mod @@ -134,8 +134,8 @@ require ( replace ( 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-20230920220719-599429b9733c // ref: tags/v14.0.0 - github.com/gravitational/teleport/api => github.com/gravitational/teleport/api v0.0.0-20230920220719-599429b9733c // ref: tags/v14.0.0 + github.com/gravitational/teleport => github.com/gravitational/teleport v0.0.0-20230926235732-2108b207b45f // ref: tags/v14.0.1 + github.com/gravitational/teleport/api => github.com/gravitational/teleport/api v0.0.0-20230926235732-2108b207b45f // ref: tags/v14.0.1 github.com/julienschmidt/httprouter => github.com/rw-access/httprouter v1.3.1-0.20210321233808-98e93175c124 github.com/microsoft/go-mssqldb => github.com/gravitational/go-mssqldb v0.11.1-0.20230331180905-0f76f1751cd3 ) diff --git a/go.sum b/go.sum index e1f00680f..71e5ae107 100644 --- a/go.sum +++ b/go.sum @@ -272,10 +272,10 @@ github.com/gravitational/kingpin v2.1.11-0.20220901134012-2a1956e29525+incompati github.com/gravitational/kingpin v2.1.11-0.20220901134012-2a1956e29525+incompatible/go.mod h1:LWxG30M3FcrjhOn3T4zz7JmBoQJ45MWZmOXgy9Ganoc= github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf h1:MQ4e8XcxvZTeuOmRl7yE519vcWc2h/lyvYzsvt41cdY= github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gravitational/teleport v0.0.0-20230920220719-599429b9733c h1:S2jzLafYFsBw7jYKbiJLsLB6/Mvy4xXdak2KeHGrWJs= -github.com/gravitational/teleport v0.0.0-20230920220719-599429b9733c/go.mod h1:nurKk+o9ZZ9txBkpmar1RTQZGcSBDJ/wwr4BVGGzRis= -github.com/gravitational/teleport/api v0.0.0-20230920220719-599429b9733c h1:3t3+2/h+v9QrD0hEmCgzD8I+iWt7w2e5kBfsgcRuSwA= -github.com/gravitational/teleport/api v0.0.0-20230920220719-599429b9733c/go.mod h1:Ze8VqE9BzsgLVSDK2dHIYP2VC0knkJC+0xn6xvOZtDE= +github.com/gravitational/teleport v0.0.0-20230926235732-2108b207b45f h1:HKfQLW5BaP3AVxFRmzyORz2CsXojTlyxJk4iNuImrxc= +github.com/gravitational/teleport v0.0.0-20230926235732-2108b207b45f/go.mod h1:XB2I63saR2wfyon7i9m6QC//LEgoE6T5iLAZXXYGNhY= +github.com/gravitational/teleport/api v0.0.0-20230926235732-2108b207b45f h1:eg6FrVVPBAayi4P/wynSIVXhqcCZxE7hi8D6hcKCaXg= +github.com/gravitational/teleport/api v0.0.0-20230926235732-2108b207b45f/go.mod h1:Ze8VqE9BzsgLVSDK2dHIYP2VC0knkJC+0xn6xvOZtDE= github.com/gravitational/trace v1.3.1 h1:jwZEuRtCYpLhUtqHo+JH+lu2qM0LB98UagqHtvdKuLI= github.com/gravitational/trace v1.3.1/go.mod h1:E61mn73aro7Zg9gZheZaeUsK6gjUMbCLazY76xuYAVA= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= diff --git a/terraform/install.mk b/terraform/install.mk index 2ba5952d6..485ab15aa 100644 --- a/terraform/install.mk +++ b/terraform/install.mk @@ -1,4 +1,4 @@ -VERSION=14.0.0 +VERSION=14.0.1 OS ?= $(shell go env GOOS) ARCH ?= $(shell go env GOARCH)