mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-06 03:16:46 +00:00
update: changelog 0.20.0
Signed-off-by: rajibmitra <fiorm.github@gmail.com>
This commit is contained in:
parent
defaf7bddb
commit
d77080a8c2
26
CHANGELOG.md
26
CHANGELOG.md
@ -2,6 +2,32 @@
|
|||||||
|
|
||||||
This file documents all notable changes to Falco. The release numbering uses [semantic versioning](http://semver.org).
|
This file documents all notable changes to Falco. The release numbering uses [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
|
## v0.20.0
|
||||||
|
|
||||||
|
Released on 2020-02-24
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
* fix: memory leak introduced in 0.18.0 happening while using json events and the kubernetes audit endpoint [[#1041](https://github.com/falcosecurity/falco/pull/1041)]
|
||||||
|
* new: grpc version api [[#872](https://github.com/falcosecurity/falco/pull/872)]
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* fix: the base64 output format (-b) now works with both json and normal output. [[#1033](https://github.com/falcosecurity/falco/pull/1033)]
|
||||||
|
* fix: version follows semver 2 bnf [[#872](https://github.com/falcosecurity/falco/pull/872)]
|
||||||
|
|
||||||
|
### Rule Changes
|
||||||
|
|
||||||
|
* rule(write below etc): add "dsc_host" as a ms oms program [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(write below etc): let mcafee write to /etc/cma.d [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(write below etc): let avinetworks supervisor write some ssh cfg [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(write below etc): alow writes to /etc/pki from openshift secrets dir [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(write below root): let runc write to /exec.fifo [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(change thread namespace): let cilium-cni change namespaces [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
* rule(run shell untrusted): let puma reactor spawn shells [[#1028](https://github.com/falcosecurity/falco/pull/1028)]
|
||||||
|
|
||||||
|
|
||||||
## v0.19.0
|
## v0.19.0
|
||||||
|
|
||||||
Released on 2020-01-23
|
Released on 2020-01-23
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#### Latest release
|
#### Latest release
|
||||||
|
|
||||||
**v0.19.0**
|
**v0.20.0**
|
||||||
Read the [change log](CHANGELOG.md)
|
Read the [change log](CHANGELOG.md)
|
||||||
|
|
||||||
[](https://circleci.com/gh/falcosecurity/falco) [](https://bestpractices.coreinfrastructure.org/projects/2317) [](COPYING)
|
[](https://circleci.com/gh/falcosecurity/falco) [](https://bestpractices.coreinfrastructure.org/projects/2317) [](COPYING)
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
ARG ALPINE_VERSION=3.10
|
ARG ALPINE_VERSION=3.10
|
||||||
ARG KERNEL_VERSION=4.9.184
|
ARG KERNEL_VERSION=4.9.184
|
||||||
ARG FALCO_VERSION=0.19.0
|
ARG FALCO_VERSION=0.20.0
|
||||||
|
|
||||||
FROM linuxkit/kernel:${KERNEL_VERSION} AS ksrc
|
FROM linuxkit/kernel:${KERNEL_VERSION} AS ksrc
|
||||||
FROM falcosecurity/falco:${FALCO_VERSION}-minimal as falco
|
FROM falcosecurity/falco:${FALCO_VERSION}-minimal as falco
|
||||||
FROM alpine:${ALPINE_VERSION} AS probe-build
|
FROM alpine:${ALPINE_VERSION} AS probe-build
|
||||||
LABEL maintainer="opensource@sysdig.com"
|
LABEL maintainer="opensource@sysdig.com"
|
||||||
ARG KERNEL_VERSION=4.9.184
|
ARG KERNEL_VERSION=4.9.184
|
||||||
ARG FALCO_VERSION=0.19.0
|
ARG FALCO_VERSION=0.20.0
|
||||||
ENV FALCO_VERSION=${FALCO_VERSION}
|
ENV FALCO_VERSION=${FALCO_VERSION}
|
||||||
ENV KERNEL_VERSION=${KERNEL_VERSION}
|
ENV KERNEL_VERSION=${KERNEL_VERSION}
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ RUN apk add --no-cache --update \
|
|||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
FROM alpine:${ALPINE_VERSION}
|
FROM alpine:${ALPINE_VERSION}
|
||||||
ARG FALCO_VERSION=0.19.0
|
ARG FALCO_VERSION=0.20.0
|
||||||
ENV FALCO_VERSION=${FALCO_VERSION}
|
ENV FALCO_VERSION=${FALCO_VERSION}
|
||||||
COPY --from=probe-build /usr/src/falco-${FALCO_VERSION}/falco-probe.ko /
|
COPY --from=probe-build /usr/src/falco-${FALCO_VERSION}/falco-probe.ko /
|
||||||
CMD ["insmod","/falco-probe.ko"]
|
CMD ["insmod","/falco-probe.ko"]
|
||||||
|
@ -2,7 +2,7 @@ FROM ubuntu:18.04 as ubuntu
|
|||||||
|
|
||||||
LABEL maintainer="opensource@sysdig.com"
|
LABEL maintainer="opensource@sysdig.com"
|
||||||
|
|
||||||
ARG FALCO_VERSION=0.19.0
|
ARG FALCO_VERSION=0.20.0
|
||||||
|
|
||||||
ENV FALCO_VERSION=${FALCO_VERSION}
|
ENV FALCO_VERSION=${FALCO_VERSION}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ spec:
|
|||||||
privileged: true
|
privileged: true
|
||||||
#env:
|
#env:
|
||||||
# - name: FALCOCTL_FALCO_VERSION
|
# - name: FALCOCTL_FALCO_VERSION
|
||||||
# value: 0.19.0
|
# value: 0.20.0
|
||||||
# - name: FALCOCTL_FALCO_PROBE_URL
|
# - name: FALCOCTL_FALCO_PROBE_URL
|
||||||
# value:
|
# value:
|
||||||
# - name: FALCOCTL_FALCO_PROBE_REPO
|
# - name: FALCOCTL_FALCO_PROBE_REPO
|
||||||
@ -31,7 +31,7 @@ spec:
|
|||||||
readOnly: true
|
readOnly: true
|
||||||
containers:
|
containers:
|
||||||
- name: falco
|
- name: falco
|
||||||
image: falcosecurity/falco:0.19.0-slim
|
image: falcosecurity/falco:0.20.0-slim
|
||||||
securityContext:
|
securityContext:
|
||||||
privileged: true
|
privileged: true
|
||||||
# Uncomment the 3 lines below to enable eBPF support for Falco.
|
# Uncomment the 3 lines below to enable eBPF support for Falco.
|
||||||
|
Loading…
Reference in New Issue
Block a user