diff -Nru flatpak-1.0.7/common/flatpak-run.c flatpak-1.0.8/common/flatpak-run.c --- flatpak-1.0.7/common/flatpak-run.c 2019-02-11 12:42:20.000000000 +0000 +++ flatpak-1.0.8/common/flatpak-run.c 2019-03-27 09:12:16.000000000 +0000 @@ -2147,7 +2147,7 @@ {SCMP_SYS (clone), &SCMP_A0 (SCMP_CMP_MASKED_EQ, CLONE_NEWUSER, CLONE_NEWUSER)}, /* Don't allow faking input to the controlling tty (CVE-2017-5226) */ - {SCMP_SYS (ioctl), &SCMP_A1 (SCMP_CMP_EQ, (int) TIOCSTI)}, + {SCMP_SYS (ioctl), &SCMP_A1 (SCMP_CMP_MASKED_EQ, 0xFFFFFFFFu, (int) TIOCSTI)}, }; struct diff -Nru flatpak-1.0.7/common/flatpak-version-macros.h flatpak-1.0.8/common/flatpak-version-macros.h --- flatpak-1.0.7/common/flatpak-version-macros.h 2019-02-11 12:42:29.000000000 +0000 +++ flatpak-1.0.8/common/flatpak-version-macros.h 2019-03-27 09:14:21.000000000 +0000 @@ -44,7 +44,7 @@ * * The micro version. */ -#define FLATPAK_MICRO_VERSION (7) +#define FLATPAK_MICRO_VERSION (8) /** * FLATPAK_CHECK_VERSION: diff -Nru flatpak-1.0.7/configure flatpak-1.0.8/configure --- flatpak-1.0.7/configure 2019-02-11 12:42:26.000000000 +0000 +++ flatpak-1.0.8/configure 2019-03-27 09:14:19.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Flatpak 1.0.7. +# Generated by GNU Autoconf 2.69 for Flatpak 1.0.8. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='Flatpak' PACKAGE_TARNAME='flatpak' -PACKAGE_VERSION='1.0.7' -PACKAGE_STRING='Flatpak 1.0.7' +PACKAGE_VERSION='1.0.8' +PACKAGE_STRING='Flatpak 1.0.8' PACKAGE_BUGREPORT='https://github.com/flatpak/flatpak/issues' PACKAGE_URL='http://flatpak.org/' @@ -1512,7 +1512,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Flatpak 1.0.7 to adapt to many kinds of systems. +\`configure' configures Flatpak 1.0.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1582,7 +1582,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Flatpak 1.0.7:";; + short | recursive ) echo "Configuration of Flatpak 1.0.8:";; esac cat <<\_ACEOF @@ -1811,7 +1811,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Flatpak configure 1.0.7 +Flatpak configure 1.0.8 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2226,7 +2226,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Flatpak $as_me 1.0.7, which was +It was created by Flatpak $as_me 1.0.8, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -13266,7 +13266,7 @@ # Define the identity of the package. PACKAGE='flatpak' - VERSION='1.0.7' + VERSION='1.0.8' # Some tools Automake needs. @@ -18746,10 +18746,10 @@ FLATPAK_MAJOR_VERSION=1 FLATPAK_MINOR_VERSION=0 -FLATPAK_MICRO_VERSION=7 +FLATPAK_MICRO_VERSION=8 FLATPAK_EXTRA_VERSION= FLATPAK_INTERFACE_AGE=0 -FLATPAK_VERSION=1.0.7 +FLATPAK_VERSION=1.0.8 @@ -18786,7 +18786,7 @@ -LT_VERSION_INFO="10007:0:10007" +LT_VERSION_INFO="10008:0:10008" LT_CURRENT_MINUS_AGE=0 @@ -19403,7 +19403,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Flatpak $as_me 1.0.7, which was +This file was extended by Flatpak $as_me 1.0.8, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19470,7 +19470,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Flatpak config.status 1.0.7 +Flatpak config.status 1.0.8 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru flatpak-1.0.7/configure.ac flatpak-1.0.8/configure.ac --- flatpak-1.0.7/configure.ac 2019-02-11 12:42:20.000000000 +0000 +++ flatpak-1.0.8/configure.ac 2019-03-27 09:12:29.000000000 +0000 @@ -15,7 +15,7 @@ m4_define([flatpak_major_version], [1]) m4_define([flatpak_minor_version], [0]) -m4_define([flatpak_micro_version], [7]) +m4_define([flatpak_micro_version], [8]) m4_define([flatpak_extra_version], []) m4_define([flatpak_interface_age], [0]) m4_define([flatpak_binary_age], diff -Nru flatpak-1.0.7/debian/changelog flatpak-1.0.8/debian/changelog --- flatpak-1.0.7/debian/changelog 2019-02-13 21:24:42.000000000 +0000 +++ flatpak-1.0.8/debian/changelog 2019-03-27 21:21:48.000000000 +0000 @@ -1,3 +1,14 @@ +flatpak (1.0.8-0ubuntu0.18.04.1) bionic-security; urgency=medium + + * Update to 1.0.8 (LP: #1821811) + * New upstream release + - SECURITY UPDATE: seccomp: Reject all ioctls that the kernel will + interpret as TIOCSTI, including those where the high 32 bits in + a 64-bit word are nonzero. + - CVE-2019-10063 + + -- Andrew Hayzen Wed, 27 Mar 2019 21:21:48 +0000 + flatpak (1.0.7-0ubuntu0.18.04.1) bionic-security; urgency=medium * Update to 1.0.7 (LP: #1815528) diff -Nru flatpak-1.0.7/doc/reference/html/flatpak.devhelp2 flatpak-1.0.8/doc/reference/html/flatpak.devhelp2 --- flatpak-1.0.7/doc/reference/html/flatpak.devhelp2 2019-02-11 12:42:41.000000000 +0000 +++ flatpak-1.0.8/doc/reference/html/flatpak.devhelp2 2019-03-27 09:14:25.000000000 +0000 @@ -180,6 +180,10 @@ + + + + diff -Nru flatpak-1.0.7/doc/reference/html/FlatpakInstalledRef.html flatpak-1.0.8/doc/reference/html/FlatpakInstalledRef.html --- flatpak-1.0.7/doc/reference/html/FlatpakInstalledRef.html 2019-02-11 12:42:41.000000000 +0000 +++ flatpak-1.0.8/doc/reference/html/FlatpakInstalledRef.html 2019-03-27 09:14:25.000000000 +0000 @@ -122,6 +122,30 @@ gchar * +appdata-license +Read / Write / Construct Only + + + +gchar * +appdata-name +Read / Write / Construct Only + + + +gchar * +appdata-summary +Read / Write / Construct Only + + + +gchar * +appdata-version +Read / Write / Construct Only + + + +gchar * deploy-dir Read / Write @@ -465,6 +489,38 @@

Property Details

+

The “appdata-license” property

+
  “appdata-license”          gchar *
+

The license from the appdata.

+

Flags: Read / Write / Construct Only

+

Default value: NULL

+
+
+
+

The “appdata-name” property

+
  “appdata-name”             gchar *
+

The localized name field from the appdata.

+

Flags: Read / Write / Construct Only

+

Default value: NULL

+
+
+
+

The “appdata-summary” property

+
  “appdata-summary”          gchar *
+

The localized summary field from the appdata.

+

Flags: Read / Write / Construct Only

+

Default value: NULL

+
+
+
+

The “appdata-version” property

+
  “appdata-version”          gchar *
+

The default version field from the appdata.

+

Flags: Read / Write / Construct Only

+

Default value: NULL

+
+
+

The “deploy-dir” property

  “deploy-dir”               gchar *

Where the application is installed.

diff -Nru flatpak-1.0.7/doc/reference/html/flatpak-Version-information.html flatpak-1.0.8/doc/reference/html/flatpak-Version-information.html --- flatpak-1.0.7/doc/reference/html/flatpak-Version-information.html 2019-02-11 12:42:41.000000000 +0000 +++ flatpak-1.0.8/doc/reference/html/flatpak-Version-information.html 2019-03-27 09:14:25.000000000 +0000 @@ -128,7 +128,7 @@

FLATPAK_MICRO_VERSION

-
#define FLATPAK_MICRO_VERSION (7)
+
#define FLATPAK_MICRO_VERSION (8)
 

The micro version.

diff -Nru flatpak-1.0.7/doc/reference/html/full-api-index.html flatpak-1.0.8/doc/reference/html/full-api-index.html --- flatpak-1.0.7/doc/reference/html/full-api-index.html 2019-02-11 12:42:41.000000000 +0000 +++ flatpak-1.0.8/doc/reference/html/full-api-index.html 2019-03-27 09:14:25.000000000 +0000 @@ -308,6 +308,22 @@
+FlatpakInstalledRef:appdata-license, object property in FlatpakInstalledRef +
+
+
+FlatpakInstalledRef:appdata-name, object property in FlatpakInstalledRef +
+
+
+FlatpakInstalledRef:appdata-summary, object property in FlatpakInstalledRef +
+
+
+FlatpakInstalledRef:appdata-version, object property in FlatpakInstalledRef +
+
+
FlatpakInstalledRef:deploy-dir, object property in FlatpakInstalledRef
diff -Nru flatpak-1.0.7/doc/reference/html/index.html flatpak-1.0.8/doc/reference/html/index.html --- flatpak-1.0.7/doc/reference/html/index.html 2019-02-11 12:42:41.000000000 +0000 +++ flatpak-1.0.8/doc/reference/html/index.html 2019-03-27 09:14:25.000000000 +0000 @@ -15,7 +15,7 @@

- For flatpak 1.0.7 + For flatpak 1.0.8

diff -Nru flatpak-1.0.7/NEWS flatpak-1.0.8/NEWS --- flatpak-1.0.7/NEWS 2019-02-11 12:42:20.000000000 +0000 +++ flatpak-1.0.8/NEWS 2019-03-27 09:13:42.000000000 +0000 @@ -1,6 +1,19 @@ +Changes in 1.0.8 +================ + +This release fixes CVE-2019-10063. + +It has been discovered that the previous fix for CVE-2017-5226, which uses +seccomp to prevent sandboxed apps from using the (dangerous) TIOCSTI ioctl +was only incomplete on 64bit arches. This is now fixed. + + * seccomp: Only compare the low 32bit of the TIOCSTI ioctl args. + Changes in 1.0.7 ================ +This release fixes CVE-2019-8308. + The CVE-2019-5736 runc vulnerability is about using /proc/self/exe to modify the host side binary from the sandbox. This mostly does not affect flatpak since the flatpak sandbox is not run with root permissions. Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/cs.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/cs.gmo differ diff -Nru flatpak-1.0.7/po/cs.po flatpak-1.0.8/po/cs.po --- flatpak-1.0.7/po/cs.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/cs.po 2019-03-27 09:14:25.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-12-13 22:42+0100\n" "Last-Translator: Daniel Rusek \n" "Language-Team: Czech \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/de.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/de.gmo differ diff -Nru flatpak-1.0.7/po/de.po flatpak-1.0.8/po/de.po --- flatpak-1.0.7/po/de.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/de.po 2019-03-27 09:14:25.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-11-03 20:24+0100\n" "Last-Translator: Christian Kirbach \n" "Language-Team: German \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/es.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/es.gmo differ diff -Nru flatpak-1.0.7/po/es.po flatpak-1.0.8/po/es.po --- flatpak-1.0.7/po/es.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/es.po 2019-03-27 09:14:25.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-09-12 17:20+0200\n" "Last-Translator: Aitor González Fernández \n" "Language-Team: Spanish \n" diff -Nru flatpak-1.0.7/po/flatpak.pot flatpak-1.0.8/po/flatpak.pot --- flatpak-1.0.7/po/flatpak.pot 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/flatpak.pot 2019-03-27 09:14:25.000000000 +0000 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: flatpak 1.0.7\n" +"Project-Id-Version: flatpak 1.0.8\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/gl.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/gl.gmo differ diff -Nru flatpak-1.0.7/po/gl.po flatpak-1.0.8/po/gl.po --- flatpak-1.0.7/po/gl.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/gl.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-09-26 17:32+0200\n" "Last-Translator: Fran Dieguez \n" "Language-Team: Galician \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/hu.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/hu.gmo differ diff -Nru flatpak-1.0.7/po/hu.po flatpak-1.0.8/po/hu.po --- flatpak-1.0.7/po/hu.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/hu.po 2019-03-27 09:14:26.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-03-10 00:00+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/id.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/id.gmo differ diff -Nru flatpak-1.0.7/po/id.po flatpak-1.0.8/po/id.po --- flatpak-1.0.7/po/id.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/id.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-10-01 13:07+0700\n" "Last-Translator: Kukuh Syafaat \n" "Language-Team: Indonesian \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/pl.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/pl.gmo differ diff -Nru flatpak-1.0.7/po/pl.po flatpak-1.0.8/po/pl.po --- flatpak-1.0.7/po/pl.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/pl.po 2019-03-27 09:14:26.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: flatpak\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-10-28 17:27+0100\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/pt_BR.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/pt_BR.gmo differ diff -Nru flatpak-1.0.7/po/pt_BR.po flatpak-1.0.8/po/pt_BR.po --- flatpak-1.0.7/po/pt_BR.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/pt_BR.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-09-02 21:56-0200\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Brazilian Portuguese \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/ru.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/ru.gmo differ diff -Nru flatpak-1.0.7/po/ru.po flatpak-1.0.8/po/ru.po --- flatpak-1.0.7/po/ru.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/ru.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-02-10 11:59+0300\n" "Last-Translator: Roman Kharin \n" "Language-Team: romiq.kh@gmail.com\n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/sk.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/sk.gmo differ diff -Nru flatpak-1.0.7/po/sk.po flatpak-1.0.8/po/sk.po --- flatpak-1.0.7/po/sk.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/sk.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-01-23 18:19+0100\n" "Last-Translator: Dušan Kazik \n" "Language-Team: Slovak \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/sv.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/sv.gmo differ diff -Nru flatpak-1.0.7/po/sv.po flatpak-1.0.8/po/sv.po --- flatpak-1.0.7/po/sv.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/sv.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-12-01 03:20+0100\n" "Last-Translator: Josef Andersson \n" "Language-Team: Swedish \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/tr.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/tr.gmo differ diff -Nru flatpak-1.0.7/po/tr.po flatpak-1.0.8/po/tr.po --- flatpak-1.0.7/po/tr.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/tr.po 2019-03-27 09:14:26.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2017-05-20 08:19+0300\n" "Last-Translator: Muhammet Kara \n" "Language-Team: Türkçe \n" Binary files /tmp/tmp2ptKIb/LkVfG7WxVY/flatpak-1.0.7/po/uk.gmo and /tmp/tmp2ptKIb/_uHIYYNFZQ/flatpak-1.0.8/po/uk.gmo differ diff -Nru flatpak-1.0.7/po/uk.po flatpak-1.0.8/po/uk.po --- flatpak-1.0.7/po/uk.po 2019-02-11 12:42:42.000000000 +0000 +++ flatpak-1.0.8/po/uk.po 2019-03-27 09:14:26.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: flatpak master\n" "Report-Msgid-Bugs-To: https://github.com/flatpak/flatpak/issues\n" -"POT-Creation-Date: 2019-02-11 13:42+0100\n" +"POT-Creation-Date: 2019-03-27 10:14+0100\n" "PO-Revision-Date: 2018-07-01 15:32+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff -Nru flatpak-1.0.7/tests/package_version.txt flatpak-1.0.8/tests/package_version.txt --- flatpak-1.0.7/tests/package_version.txt 2019-02-11 12:42:31.000000000 +0000 +++ flatpak-1.0.8/tests/package_version.txt 2019-03-27 09:14:22.000000000 +0000 @@ -1 +1 @@ -1.0.7 +1.0.8