Skip to content

Commit b4b08d2

Browse files
author
netblue
committed
release 0.9.70 testing
1 parent 03c913a commit b4b08d2

3 files changed

Lines changed: 15 additions & 12 deletions

File tree

RELNOTES

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
firejail (0.9.69) baseline; urgency=low
2-
* work in progress
1+
firejail (0.9.70) baseline; urgency=low
2+
* security: CVE-2022-31214 - root escalation in --join logic
3+
Reported by Matthias Gerstner, working exploit code was provided to our
4+
development team. In the same time frame, the problem was independently
5+
reported by Birk Blechschmidt. Full working exploit code was also provided.
36
* feature: enable shell tab completion with --tab (#4936)
47
* feature: disable user profiles at compile time (#4990)
58
* feature: Allow resolution of .local names with avahi-daemon in the apparmor

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for firejail 0.9.69.
3+
# Generated by GNU Autoconf 2.69 for firejail 0.9.70.
44
#
55
# Report bugs to <netblue30@protonmail.com>.
66
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
580580
# Identity of this package.
581581
PACKAGE_NAME='firejail'
582582
PACKAGE_TARNAME='firejail'
583-
PACKAGE_VERSION='0.9.69'
584-
PACKAGE_STRING='firejail 0.9.69'
583+
PACKAGE_VERSION='0.9.70'
584+
PACKAGE_STRING='firejail 0.9.70'
585585
PACKAGE_BUGREPORT='netblue30@protonmail.com'
586586
PACKAGE_URL='https://firejail.wordpress.com'
587587

@@ -1298,7 +1298,7 @@ if test "$ac_init_help" = "long"; then
12981298
# Omit some internal or obsolete options to make the list less imposing.
12991299
# This message is too long to be a string in the A/UX 3.1 sh.
13001300
cat <<_ACEOF
1301-
\`configure' configures firejail 0.9.69 to adapt to many kinds of systems.
1301+
\`configure' configures firejail 0.9.70 to adapt to many kinds of systems.
13021302
13031303
Usage: $0 [OPTION]... [VAR=VALUE]...
13041304
@@ -1360,7 +1360,7 @@ fi
13601360

13611361
if test -n "$ac_init_help"; then
13621362
case $ac_init_help in
1363-
short | recursive ) echo "Configuration of firejail 0.9.69:";;
1363+
short | recursive ) echo "Configuration of firejail 0.9.70:";;
13641364
esac
13651365
cat <<\_ACEOF
13661366
@@ -1484,7 +1484,7 @@ fi
14841484
test -n "$ac_init_help" && exit $ac_status
14851485
if $ac_init_version; then
14861486
cat <<\_ACEOF
1487-
firejail configure 0.9.69
1487+
firejail configure 0.9.70
14881488
generated by GNU Autoconf 2.69
14891489
14901490
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1740,7 +1740,7 @@ cat >config.log <<_ACEOF
17401740
This file contains any messages produced by compilers while
17411741
running configure, to aid debugging if configure makes a mistake.
17421742
1743-
It was created by firejail $as_me 0.9.69, which was
1743+
It was created by firejail $as_me 0.9.70, which was
17441744
generated by GNU Autoconf 2.69. Invocation command line was
17451745
17461746
$ $0 $@
@@ -4631,7 +4631,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
46314631
# report actual input values of CONFIG_FILES etc. instead of their
46324632
# values after options handling.
46334633
ac_log="
4634-
This file was extended by firejail $as_me 0.9.69, which was
4634+
This file was extended by firejail $as_me 0.9.70, which was
46354635
generated by GNU Autoconf 2.69. Invocation command line was
46364636
46374637
CONFIG_FILES = $CONFIG_FILES
@@ -4685,7 +4685,7 @@ _ACEOF
46854685
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
46864686
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
46874687
ac_cs_version="\\
4688-
firejail config.status 0.9.69
4688+
firejail config.status 0.9.70
46894689
configured by $0, generated by GNU Autoconf 2.69,
46904690
with options \\"\$ac_cs_config\\"
46914691

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#
1313

1414
AC_PREREQ([2.68])
15-
AC_INIT([firejail], [0.9.69], [netblue30@protonmail.com], [],
15+
AC_INIT([firejail], [0.9.70], [netblue30@protonmail.com], [],
1616
[https://firejail.wordpress.com])
1717

1818
AC_CONFIG_SRCDIR([src/firejail/main.c])

0 commit comments

Comments
 (0)