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

chore(plugins): bump versions for Falco 0.37.0 #403

Merged
Merged
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
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.9.1"
PluginVersion = "0.10.0"
PluginEventSource = "aws_cloudtrail"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/cloudtrail/rules/aws_cloudtrail_rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

- required_plugin_versions:
- name: cloudtrail
version: 0.8.0
version: 0.10.0
- name: json
version: 0.7.0

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.10.0-rc1"
PluginVersion = "0.10.0"
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.2.2"
PluginVersion = "0.3.0"
PluginEventSource = "gcp_auditlog"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/gcpaudit/rules/gcp_auditlog_rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

- required_plugin_versions:
- name: gcpaudit
version: 0.2.0
version: 0.3.0
- name: json
version: 0.7.0

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.6.1"
PluginVersion = "0.7.0"
PluginEventSource = "github"
ExtractEventSource = "github"
)
Expand Down
2 changes: 1 addition & 1 deletion plugins/github/rules/github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

- required_plugin_versions:
- name: github
version: 0.6.0
version: 0.7.0

- rule: Webhook Connected
desc: Detect a webhook link
Expand Down
2 changes: 1 addition & 1 deletion plugins/k8saudit-eks/pkg/k8sauditeks/k8sauditeks.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (k *Plugin) Info() *plugins.Info {
Name: pluginName,
Description: "Read Kubernetes Audit Events for EKS from Cloudwatch Logs",
Contact: "github.com/falcosecurity/plugins",
Version: "0.3.0",
Version: "0.4.0",
EventSource: "k8s_audit",
}
}
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.6.1",
Version: "0.7.0",
EventSource: "k8s_audit",
}
}
Expand Down
4 changes: 2 additions & 2 deletions plugins/k8saudit/rules/k8s_audit_rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

- required_plugin_versions:
- name: k8saudit
version: 0.6.0
version: 0.7.0
alternatives:
- name: k8saudit-eks
version: 0.2.0
version: 0.4.0
- name: json
version: 0.7.0

Expand Down
2 changes: 1 addition & 1 deletion plugins/okta/rules/okta_rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

- required_plugin_versions:
- name: okta
version: 0.8.0
version: 0.10.0

# Example Rule on login in to OKTA. Disabled by default since it might be noisy
#- rule: User logged in to OKTA
Expand Down
Loading