Skip to content

Commit

Permalink
chore(plugins): bump versions
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <[email protected]>
  • Loading branch information
LucaGuerra authored and poiana committed May 22, 2024
1 parent 5e23552 commit aaee539
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugins/cloudtrail/pkg/cloudtrail/cloudtrail.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const (
PluginName = "cloudtrail"
PluginDescription = "reads cloudtrail JSON data saved to file in the directory specified in the settings"
PluginContact = "github.com/falcosecurity/plugins/"
PluginVersion = "0.12.1"
PluginVersion = "0.12.2"
PluginEventSource = "aws_cloudtrail"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/dummy/pkg/dummy/dummy.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
PluginName = "dummy"
PluginDescription = "Reference plugin for educational purposes"
PluginContact = "github.com/falcosecurity/plugins"
PluginVersion = "0.11.2"
PluginVersion = "0.11.3"
PluginEventSource = "dummy"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const (
PluginName = "gcpaudit"
PluginDescription = "Read GCP Audit Logs"
PluginContact = "github.com/falcosecurity/plugins"
PluginVersion = "0.3.2"
PluginVersion = "0.3.3"
PluginEventSource = "gcp_auditlog"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/github/pkg/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const (
PluginName = "github"
PluginDescription = "Reads github webhook events, by listening on a socket or by reading events from disk"
PluginContact = "github.com/falcosecurity/plugins"
PluginVersion = "0.7.3"
PluginVersion = "0.7.4"
PluginEventSource = "github"
ExtractEventSource = "github"
)
Expand Down
2 changes: 1 addition & 1 deletion plugins/k8saudit/pkg/k8saudit/k8saudit.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (k *Plugin) Info() *plugins.Info {
Name: pluginName,
Description: "Read Kubernetes Audit Events and monitor Kubernetes Clusters",
Contact: "github.com/falcosecurity/plugins",
Version: "0.10.0-rc1",
Version: "0.10.0",
EventSource: "k8s_audit",
}
}
Expand Down
7 changes: 4 additions & 3 deletions plugins/kafka/pkg/kafka/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,22 @@ import (
"crypto/tls"
"crypto/x509"
"encoding/json"
"os"
"time"

"github.com/alecthomas/jsonschema"
"github.com/falcosecurity/plugin-sdk-go/pkg/sdk"
"github.com/falcosecurity/plugin-sdk-go/pkg/sdk/plugins"
"github.com/falcosecurity/plugin-sdk-go/pkg/sdk/plugins/source"
"github.com/segmentio/kafka-go"
"os"
"time"
)

const (
PluginID uint32 = 18
PluginName = "kafka"
PluginDescription = "Read events from Kafka topics into Falco"
PluginContact = "github.com/falcosecurity/plugins"
PluginVersion = "0.1.0"
PluginVersion = "0.1.1"
PluginEventSource = "kafka"
)

Expand Down

0 comments on commit aaee539

Please sign in to comment.