github.com/tompreston/snapd@v0.0.0-20210817193607-954edfcb9611/packaging/fedora/snapd.spec (about)

     1  # With Fedora, nothing is bundled. For everything else, bundling is used.
     2  # To use bundled stuff, use "--with vendorized" on rpmbuild
     3  %if 0%{?fedora}
     4  %bcond_with vendorized
     5  %else
     6  %bcond_without vendorized
     7  %endif
     8  
     9  # With Amazon Linux 2+, we're going to provide the /snap symlink by default,
    10  # since classic snaps currently require it... :(
    11  %if 0%{?amzn} >= 2
    12  %bcond_without snap_symlink
    13  %else
    14  %bcond_with snap_symlink
    15  %endif
    16  
    17  # A switch to allow building the package with support for testkeys which
    18  # are used for the spread test suite of snapd.
    19  %bcond_with testkeys
    20  
    21  %global with_devel 1
    22  %global with_debug 1
    23  %global with_check 0
    24  %global with_unit_test 0
    25  %global with_test_keys 0
    26  %global with_selinux 1
    27  
    28  # For the moment, we don't support all golang arches...
    29  %global with_goarches 0
    30  
    31  # Set if multilib is enabled for supported arches
    32  %ifarch x86_64 aarch64 %{power64} s390x
    33  %global with_multilib 1
    34  %endif
    35  
    36  %if ! %{with vendorized}
    37  %global with_bundled 0
    38  %else
    39  %global with_bundled 1
    40  %endif
    41  
    42  %if ! %{with testkeys}
    43  %global with_test_keys 0
    44  %else
    45  %global with_test_keys 1
    46  %endif
    47  
    48  %if 0%{?with_debug}
    49  %global _dwz_low_mem_die_limit 0
    50  %else
    51  %global debug_package   %{nil}
    52  %endif
    53  
    54  %global provider        github
    55  %global provider_tld    com
    56  %global project         snapcore
    57  %global repo            snapd
    58  # https://github.com/snapcore/snapd
    59  %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
    60  %global import_path     %{provider_prefix}
    61  
    62  %global snappy_svcs      snapd.service snapd.socket snapd.autoimport.service snapd.seeded.service
    63  %global snappy_user_svcs snapd.session-agent.service snapd.session-agent.socket
    64  
    65  # Until we have a way to add more extldflags to gobuild macro...
    66  # Always use external linking when building static binaries.
    67  %if 0%{?fedora} || 0%{?rhel} >= 8
    68  %define gobuild_static(o:) go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -linkmode external -extldflags '%__global_ldflags -static'" -a -v -x %{?**};
    69  %endif
    70  %if 0%{?rhel} == 7
    71  # no pass PIE flags due to https://bugzilla.redhat.com/show_bug.cgi?id=1634486
    72  %define gobuild_static(o:) go build -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -linkmode external -extldflags '%__global_ldflags -static'" -a -v -x %{?**};
    73  %endif
    74  
    75  # These macros are missing BUILDTAGS in RHEL 8, see RHBZ#1825138
    76  %if 0%{?rhel} == 8
    77  %define gobuild(o:) go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -linkmode external -extldflags '%__global_ldflags'" -a -v -x %{?**};
    78  %endif
    79  
    80  # These macros are not defined in RHEL 7
    81  %if 0%{?rhel} == 7
    82  %define gobuild(o:) go build -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -linkmode external -extldflags '%__global_ldflags'" -a -v -x %{?**};
    83  %define gotest() go test -compiler gc -ldflags "${LDFLAGS:-}" %{?**};
    84  %endif
    85  
    86  # Compat path macros
    87  %{!?_environmentdir: %global _environmentdir %{_prefix}/lib/environment.d}
    88  %{!?_systemdgeneratordir: %global _systemdgeneratordir %{_prefix}/lib/systemd/system-generators}
    89  %{!?_systemd_system_env_generator_dir: %global _systemd_system_env_generator_dir %{_prefix}/lib/systemd/system-environment-generators}
    90  
    91  # Fedora selinux-policy includes 'map' permission on a 'file' class. However,
    92  # Amazon Linux 2 does not have the updated policy containing the fix for
    93  # https://bugzilla.redhat.com/show_bug.cgi?id=1574383.
    94  # For now disable SELinux on Amazon Linux 2 until it's fixed.
    95  %if 0%{?amzn2} == 1
    96  %global with_selinux 0
    97  %endif
    98  
    99  Name:           snapd
   100  Version:        2.51.5
   101  Release:        0%{?dist}
   102  Summary:        A transactional software package manager
   103  License:        GPLv3
   104  URL:            https://%{provider_prefix}
   105  Source0:        https://%{provider_prefix}/releases/download/%{version}/%{name}_%{version}.no-vendor.tar.xz
   106  Source1:        https://%{provider_prefix}/releases/download/%{version}/%{name}_%{version}.only-vendor.tar.xz
   107  
   108  %if 0%{?with_goarches}
   109  # e.g. el6 has ppc64 arch without gcc-go, so EA tag is required
   110  ExclusiveArch:  %{?go_arches:%{go_arches}}%{!?go_arches:%{ix86} x86_64 %{arm}}
   111  %else
   112  # Verified arches from snapd upstream
   113  ExclusiveArch:  %{ix86} x86_64 %{arm} aarch64 ppc64le s390x
   114  %endif
   115  
   116  # If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
   117  BuildRequires: make
   118  BuildRequires:  %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang >= 1.9}
   119  BuildRequires:  systemd
   120  %{?systemd_requires}
   121  
   122  Requires:       snap-confine%{?_isa} = %{version}-%{release}
   123  Requires:       squashfs-tools
   124  
   125  %if 0%{?rhel} && 0%{?rhel} < 8
   126  # Rich dependencies not available, always pull in squashfuse
   127  # snapd will use squashfs.ko instead of squashfuse if it's on the system
   128  # NOTE: Amazon Linux 2 does not have squashfuse, squashfs.ko is part of the kernel package
   129  %if ! 0%{?amzn2}
   130  Requires:       squashfuse
   131  Requires:       fuse
   132  %endif
   133  %else
   134  # snapd will use squashfuse in the event that squashfs.ko isn't available (cloud instances, containers, etc.)
   135  Requires:       ((squashfuse and fuse) or kmod(squashfs.ko))
   136  %endif
   137  
   138  # bash-completion owns /usr/share/bash-completion/completions
   139  Requires:       bash-completion
   140  
   141  %if 0%{?with_selinux}
   142  # Force the SELinux module to be installed
   143  Requires:       %{name}-selinux = %{version}-%{release}
   144  %endif
   145  
   146  %if 0%{?fedora} && 0%{?fedora} < 30
   147  # snapd-login-service is no more
   148  # Note: Remove when F29 is EOL
   149  Obsoletes:      %{name}-login-service < 1.33
   150  Provides:       %{name}-login-service = 1.33
   151  Provides:       %{name}-login-service%{?_isa} = 1.33
   152  %endif
   153  
   154  %if ! 0%{?with_bundled}
   155  BuildRequires: golang(github.com/boltdb/bolt)
   156  BuildRequires: golang(github.com/coreos/go-systemd/activation)
   157  BuildRequires: golang(github.com/godbus/dbus)
   158  BuildRequires: golang(github.com/godbus/dbus/introspect)
   159  BuildRequires: golang(github.com/gorilla/mux)
   160  BuildRequires: golang(github.com/jessevdk/go-flags)
   161  BuildRequires: golang(github.com/juju/ratelimit)
   162  BuildRequires: golang(github.com/kr/pretty)
   163  BuildRequires: golang(github.com/kr/text)
   164  BuildRequires: golang(github.com/mvo5/goconfigparser)
   165  BuildRequires: golang(github.com/seccomp/libseccomp-golang)
   166  BuildRequires: golang(github.com/snapcore/go-gettext)
   167  BuildRequires: golang(golang.org/x/crypto/openpgp/armor)
   168  BuildRequires: golang(golang.org/x/crypto/openpgp/packet)
   169  BuildRequires: golang(golang.org/x/crypto/sha3)
   170  BuildRequires: golang(golang.org/x/crypto/ssh/terminal)
   171  BuildRequires: golang(golang.org/x/xerrors)
   172  BuildRequires: golang(golang.org/x/xerrors/internal)
   173  BuildRequires: golang(gopkg.in/check.v1)
   174  BuildRequires: golang(gopkg.in/macaroon.v1)
   175  BuildRequires: golang(gopkg.in/mgo.v2/bson)
   176  BuildRequires: golang(gopkg.in/retry.v1)
   177  BuildRequires: golang(gopkg.in/tomb.v2)
   178  BuildRequires: golang(gopkg.in/yaml.v2)
   179  %endif
   180  
   181  %description
   182  Snappy is a modern, cross-distribution, transactional package manager
   183  designed for working with self-contained, immutable packages.
   184  
   185  %package -n snap-confine
   186  Summary:        Confinement system for snap applications
   187  License:        GPLv3
   188  BuildRequires:  autoconf
   189  BuildRequires:  automake
   190  BuildRequires:  libtool
   191  BuildRequires:  gcc
   192  BuildRequires:  gettext
   193  BuildRequires:  gnupg
   194  BuildRequires:  pkgconfig(glib-2.0)
   195  BuildRequires:  pkgconfig(libcap)
   196  BuildRequires:  pkgconfig(libseccomp)
   197  %if 0%{?with_selinux}
   198  BuildRequires:  pkgconfig(libselinux)
   199  %endif
   200  BuildRequires:  pkgconfig(libudev)
   201  BuildRequires:  pkgconfig(systemd)
   202  BuildRequires:  pkgconfig(udev)
   203  BuildRequires:  xfsprogs-devel
   204  BuildRequires:  glibc-static
   205  %if ! 0%{?rhel}
   206  BuildRequires:  libseccomp-static
   207  %endif
   208  BuildRequires:  valgrind
   209  BuildRequires:  %{_bindir}/rst2man
   210  %if 0%{?fedora}
   211  # ShellCheck in EPEL is too old...
   212  BuildRequires:  %{_bindir}/shellcheck
   213  %endif
   214  
   215  # Ensures older version from split packaging is replaced
   216  Obsoletes:      snap-confine < 2.19
   217  
   218  %description -n snap-confine
   219  This package is used internally by snapd to apply confinement to
   220  the started snap applications.
   221  
   222  %if 0%{?with_selinux}
   223  %package selinux
   224  Summary:        SELinux module for snapd
   225  License:        GPLv2+
   226  BuildArch:      noarch
   227  BuildRequires:  selinux-policy, selinux-policy-devel
   228  Requires(post): selinux-policy-base >= %{_selinux_policy_version}
   229  Requires(post): policycoreutils
   230  %if 0%{?rhel} == 7
   231  Requires(post): policycoreutils-python
   232  %else
   233  Requires(post): policycoreutils-python-utils
   234  %endif
   235  Requires(pre):  libselinux-utils
   236  Requires(post): libselinux-utils
   237  
   238  %description selinux
   239  This package provides the SELinux policy module to ensure snapd
   240  runs properly under an environment with SELinux enabled.
   241  %endif
   242  
   243  %if 0%{?with_devel}
   244  %package devel
   245  Summary:       Development files for %{name}
   246  BuildArch:     noarch
   247  
   248  %if 0%{?with_check} && ! 0%{?with_bundled}
   249  %endif
   250  
   251  %if ! 0%{?with_bundled}
   252  Requires:      golang(github.com/boltdb/bolt)
   253  Requires:      golang(github.com/coreos/go-systemd/activation)
   254  Requires:      golang(github.com/godbus/dbus)
   255  Requires:      golang(github.com/godbus/dbus/introspect)
   256  Requires:      golang(github.com/gorilla/mux)
   257  Requires:      golang(github.com/jessevdk/go-flags)
   258  Requires:      golang(github.com/juju/ratelimit)
   259  Requires:      golang(github.com/kr/pretty)
   260  Requires:      golang(github.com/kr/text)
   261  Requires:      golang(github.com/mvo5/goconfigparser)
   262  Requires:      golang(github.com/seccomp/libseccomp-golang)
   263  Requires:      golang(github.com/snapcore/go-gettext)
   264  Requires:      golang(golang.org/x/crypto/openpgp/armor)
   265  Requires:      golang(golang.org/x/crypto/openpgp/packet)
   266  Requires:      golang(golang.org/x/crypto/sha3)
   267  Requires:      golang(golang.org/x/crypto/ssh/terminal)
   268  Requires:      golang(golang.org/x/xerrors)
   269  Requires:      golang(golang.org/x/xerrors/internal)
   270  Requires:      golang(gopkg.in/check.v1)
   271  Requires:      golang(gopkg.in/macaroon.v1)
   272  Requires:      golang(gopkg.in/mgo.v2/bson)
   273  Requires:      golang(gopkg.in/retry.v1)
   274  Requires:      golang(gopkg.in/tomb.v2)
   275  Requires:      golang(gopkg.in/yaml.v2)
   276  %else
   277  # These Provides are unversioned because the sources in
   278  # the bundled tarball are unversioned (they go by git commit)
   279  # *sigh*... I hate golang...
   280  Provides:      bundled(golang(github.com/snapcore/bolt))
   281  Provides:      bundled(golang(github.com/coreos/go-systemd/activation))
   282  Provides:      bundled(golang(github.com/godbus/dbus))
   283  Provides:      bundled(golang(github.com/godbus/dbus/introspect))
   284  Provides:      bundled(golang(github.com/gorilla/mux))
   285  Provides:      bundled(golang(github.com/jessevdk/go-flags))
   286  Provides:      bundled(golang(github.com/juju/ratelimit))
   287  Provides:      bundled(golang(github.com/kr/pretty))
   288  Provides:      bundled(golang(github.com/kr/text))
   289  Provides:      bundled(golang(github.com/mvo5/goconfigparser))
   290  Provides:      bundled(golang(github.com/mvo5/libseccomp-golang))
   291  Provides:      bundled(golang(github.com/snapcore/go-gettext))
   292  Provides:      bundled(golang(golang.org/x/crypto/openpgp/armor))
   293  Provides:      bundled(golang(golang.org/x/crypto/openpgp/packet))
   294  Provides:      bundled(golang(golang.org/x/crypto/sha3))
   295  Provides:      bundled(golang(golang.org/x/crypto/ssh/terminal))
   296  Provides:      bundled(golang(golang.org/x/xerrors))
   297  Provides:      bundled(golang(golang.org/x/xerrors/internal))
   298  Provides:      bundled(golang(gopkg.in/check.v1))
   299  Provides:      bundled(golang(gopkg.in/macaroon.v1))
   300  Provides:      bundled(golang(gopkg.in/mgo.v2/bson))
   301  Provides:      bundled(golang(gopkg.in/retry.v1))
   302  Provides:      bundled(golang(gopkg.in/tomb.v2))
   303  Provides:      bundled(golang(gopkg.in/yaml.v2))
   304  %endif
   305  
   306  # Generated by gofed
   307  Provides:      golang(%{import_path}/advisor) = %{version}-%{release}
   308  Provides:      golang(%{import_path}/arch) = %{version}-%{release}
   309  Provides:      golang(%{import_path}/asserts) = %{version}-%{release}
   310  Provides:      golang(%{import_path}/asserts/assertstest) = %{version}-%{release}
   311  Provides:      golang(%{import_path}/asserts/internal) = %{version}-%{release}
   312  Provides:      golang(%{import_path}/asserts/signtool) = %{version}-%{release}
   313  Provides:      golang(%{import_path}/asserts/snapasserts) = %{version}-%{release}
   314  Provides:      golang(%{import_path}/asserts/sysdb) = %{version}-%{release}
   315  Provides:      golang(%{import_path}/asserts/systestkeys) = %{version}-%{release}
   316  Provides:      golang(%{import_path}/boot) = %{version}-%{release}
   317  Provides:      golang(%{import_path}/boot/boottest) = %{version}-%{release}
   318  Provides:      golang(%{import_path}/bootloader) = %{version}-%{release}
   319  Provides:      golang(%{import_path}/bootloader/androidbootenv) = %{version}-%{release}
   320  Provides:      golang(%{import_path}/bootloader/assets) = %{version}-%{release}
   321  Provides:      golang(%{import_path}/bootloader/assets/genasset) = %{version}-%{release}
   322  Provides:      golang(%{import_path}/bootloader/bootloadertest) = %{version}-%{release}
   323  Provides:      golang(%{import_path}/bootloader/efi) = %{version}-%{release}
   324  Provides:      golang(%{import_path}/bootloader/grubenv) = %{version}-%{release}
   325  Provides:      golang(%{import_path}/bootloader/lkenv) = %{version}-%{release}
   326  Provides:      golang(%{import_path}/bootloader/ubootenv) = %{version}-%{release}
   327  Provides:      golang(%{import_path}/client) = %{version}-%{release}
   328  Provides:      golang(%{import_path}/client/clientutil) = %{version}-%{release}
   329  Provides:      golang(%{import_path}/cmd/snap) = %{version}-%{release}
   330  Provides:      golang(%{import_path}/cmd/snap-bootstrap) = %{version}-%{release}
   331  Provides:      golang(%{import_path}/cmd/snap-bootstrap/triggerwatch) = %{version}-%{release}
   332  Provides:      golang(%{import_path}/cmd/snap-exec) = %{version}-%{release}
   333  Provides:      golang(%{import_path}/cmd/snap-failure) = %{version}-%{release}
   334  Provides:      golang(%{import_path}/cmd/snap-preseed) = %{version}-%{release}
   335  Provides:      golang(%{import_path}/cmd/snap-recovery-chooser) = %{version}-%{release}
   336  Provides:      golang(%{import_path}/cmd/snap-repair) = %{version}-%{release}
   337  Provides:      golang(%{import_path}/cmd/snap-seccomp) = %{version}-%{release}
   338  Provides:      golang(%{import_path}/cmd/snap-seccomp/syscalls) = %{version}-%{release}
   339  Provides:      golang(%{import_path}/cmd/snap-update-ns) = %{version}-%{release}
   340  Provides:      golang(%{import_path}/cmd/snapctl) = %{version}-%{release}
   341  Provides:      golang(%{import_path}/cmd/snapd) = %{version}-%{release}
   342  Provides:      golang(%{import_path}/cmd/snaplock) = %{version}-%{release}
   343  Provides:      golang(%{import_path}/cmd/snaplock/runinhibit) = %{version}-%{release}
   344  Provides:      golang(%{import_path}/daemon) = %{version}-%{release}
   345  Provides:      golang(%{import_path}/dbusutil) = %{version}-%{release}
   346  Provides:      golang(%{import_path}/dbusutil/dbustest) = %{version}-%{release}
   347  Provides:      golang(%{import_path}/desktop/notification) = %{version}-%{release}
   348  Provides:      golang(%{import_path}/desktop/notification/notificationtest) = %{version}-%{release}
   349  Provides:      golang(%{import_path}/dirs) = %{version}-%{release}
   350  Provides:      golang(%{import_path}/docs) = %{version}-%{release}
   351  Provides:      golang(%{import_path}/errtracker) = %{version}-%{release}
   352  Provides:      golang(%{import_path}/features) = %{version}-%{release}
   353  Provides:      golang(%{import_path}/gadget) = %{version}-%{release}
   354  Provides:      golang(%{import_path}/gadget/edition) = %{version}-%{release}
   355  Provides:      golang(%{import_path}/gadget/install) = %{version}-%{release}
   356  Provides:      golang(%{import_path}/gadget/internal) = %{version}-%{release}
   357  Provides:      golang(%{import_path}/gadget/quantity) = %{version}-%{release}
   358  Provides:      golang(%{import_path}/httputil) = %{version}-%{release}
   359  Provides:      golang(%{import_path}/i18n) = %{version}-%{release}
   360  Provides:      golang(%{import_path}/i18n/xgettext-go) = %{version}-%{release}
   361  Provides:      golang(%{import_path}/image) = %{version}-%{release}
   362  Provides:      golang(%{import_path}/interfaces) = %{version}-%{release}
   363  Provides:      golang(%{import_path}/interfaces/apparmor) = %{version}-%{release}
   364  Provides:      golang(%{import_path}/interfaces/backends) = %{version}-%{release}
   365  Provides:      golang(%{import_path}/interfaces/builtin) = %{version}-%{release}
   366  Provides:      golang(%{import_path}/interfaces/dbus) = %{version}-%{release}
   367  Provides:      golang(%{import_path}/interfaces/hotplug) = %{version}-%{release}
   368  Provides:      golang(%{import_path}/interfaces/ifacetest) = %{version}-%{release}
   369  Provides:      golang(%{import_path}/interfaces/kmod) = %{version}-%{release}
   370  Provides:      golang(%{import_path}/interfaces/mount) = %{version}-%{release}
   371  Provides:      golang(%{import_path}/interfaces/policy) = %{version}-%{release}
   372  Provides:      golang(%{import_path}/interfaces/seccomp) = %{version}-%{release}
   373  Provides:      golang(%{import_path}/interfaces/systemd) = %{version}-%{release}
   374  Provides:      golang(%{import_path}/interfaces/udev) = %{version}-%{release}
   375  Provides:      golang(%{import_path}/interfaces/utils) = %{version}-%{release}
   376  Provides:      golang(%{import_path}/jsonutil) = %{version}-%{release}
   377  Provides:      golang(%{import_path}/jsonutil/safejson) = %{version}-%{release}
   378  Provides:      golang(%{import_path}/kernel) = %{version}-%{release}
   379  Provides:      golang(%{import_path}/logger) = %{version}-%{release}
   380  Provides:      golang(%{import_path}/metautil) = %{version}-%{release}
   381  Provides:      golang(%{import_path}/netutil) = %{version}-%{release}
   382  Provides:      golang(%{import_path}/osutil) = %{version}-%{release}
   383  Provides:      golang(%{import_path}/osutil/disks) = %{version}-%{release}
   384  Provides:      golang(%{import_path}/osutil/mount) = %{version}-%{release}
   385  Provides:      golang(%{import_path}/osutil/squashfs) = %{version}-%{release}
   386  Provides:      golang(%{import_path}/osutil/strace) = %{version}-%{release}
   387  Provides:      golang(%{import_path}/osutil/sys) = %{version}-%{release}
   388  Provides:      golang(%{import_path}/osutil/udev/crawler) = %{version}-%{release}
   389  Provides:      golang(%{import_path}/osutil/udev/netlink) = %{version}-%{release}
   390  Provides:      golang(%{import_path}/overlord) = %{version}-%{release}
   391  Provides:      golang(%{import_path}/overlord/assertstate) = %{version}-%{release}
   392  Provides:      golang(%{import_path}/overlord/assertstate/assertstatetest) = %{version}-%{release}
   393  Provides:      golang(%{import_path}/overlord/auth) = %{version}-%{release}
   394  Provides:      golang(%{import_path}/overlord/cmdstate) = %{version}-%{release}
   395  Provides:      golang(%{import_path}/overlord/configstate) = %{version}-%{release}
   396  Provides:      golang(%{import_path}/overlord/configstate/config) = %{version}-%{release}
   397  Provides:      golang(%{import_path}/overlord/configstate/configcore) = %{version}-%{release}
   398  Provides:      golang(%{import_path}/overlord/configstate/proxyconf) = %{version}-%{release}
   399  Provides:      golang(%{import_path}/overlord/configstate/settings) = %{version}-%{release}
   400  Provides:      golang(%{import_path}/overlord/devicestate) = %{version}-%{release}
   401  Provides:      golang(%{import_path}/overlord/devicestate/devicestatetest) = %{version}-%{release}
   402  Provides:      golang(%{import_path}/overlord/devicestate/fde) = %{version}-%{release}
   403  Provides:      golang(%{import_path}/overlord/devicestate/internal) = %{version}-%{release}
   404  Provides:      golang(%{import_path}/overlord/healthstate) = %{version}-%{release}
   405  Provides:      golang(%{import_path}/overlord/hookstate) = %{version}-%{release}
   406  Provides:      golang(%{import_path}/overlord/hookstate/ctlcmd) = %{version}-%{release}
   407  Provides:      golang(%{import_path}/overlord/hookstate/hooktest) = %{version}-%{release}
   408  Provides:      golang(%{import_path}/overlord/ifacestate) = %{version}-%{release}
   409  Provides:      golang(%{import_path}/overlord/ifacestate/ifacerepo) = %{version}-%{release}
   410  Provides:      golang(%{import_path}/overlord/ifacestate/udevmonitor) = %{version}-%{release}
   411  Provides:      golang(%{import_path}/overlord/patch) = %{version}-%{release}
   412  Provides:      golang(%{import_path}/overlord/servicestate) = %{version}-%{release}
   413  Provides:      golang(%{import_path}/overlord/snapshotstate) = %{version}-%{release}
   414  Provides:      golang(%{import_path}/overlord/snapshotstate/backend) = %{version}-%{release}
   415  Provides:      golang(%{import_path}/overlord/snapstate) = %{version}-%{release}
   416  Provides:      golang(%{import_path}/overlord/snapstate/backend) = %{version}-%{release}
   417  Provides:      golang(%{import_path}/overlord/snapstate/policy) = %{version}-%{release}
   418  Provides:      golang(%{import_path}/overlord/snapstate/snapstatetest) = %{version}-%{release}
   419  Provides:      golang(%{import_path}/overlord/standby) = %{version}-%{release}
   420  Provides:      golang(%{import_path}/overlord/state) = %{version}-%{release}
   421  Provides:      golang(%{import_path}/overlord/storecontext) = %{version}-%{release}
   422  Provides:      golang(%{import_path}/polkit) = %{version}-%{release}
   423  Provides:      golang(%{import_path}/progress) = %{version}-%{release}
   424  Provides:      golang(%{import_path}/progress/progresstest) = %{version}-%{release}
   425  Provides:      golang(%{import_path}/randutil) = %{version}-%{release}
   426  Provides:      golang(%{import_path}/release) = %{version}-%{release}
   427  Provides:      golang(%{import_path}/sandbox) = %{version}-%{release}
   428  Provides:      golang(%{import_path}/sandbox/apparmor) = %{version}-%{release}
   429  Provides:      golang(%{import_path}/sandbox/cgroup) = %{version}-%{release}
   430  Provides:      golang(%{import_path}/sandbox/seccomp) = %{version}-%{release}
   431  Provides:      golang(%{import_path}/sandbox/selinux) = %{version}-%{release}
   432  Provides:      golang(%{import_path}/sanity) = %{version}-%{release}
   433  Provides:      golang(%{import_path}/secboot) = %{version}-%{release}
   434  Provides:      golang(%{import_path}/seed) = %{version}-%{release}
   435  Provides:      golang(%{import_path}/seed/internal) = %{version}-%{release}
   436  Provides:      golang(%{import_path}/seed/seedtest) = %{version}-%{release}
   437  Provides:      golang(%{import_path}/seed/seedwriter) = %{version}-%{release}
   438  Provides:      golang(%{import_path}/snap) = %{version}-%{release}
   439  Provides:      golang(%{import_path}/snap/channel) = %{version}-%{release}
   440  Provides:      golang(%{import_path}/snap/internal) = %{version}-%{release}
   441  Provides:      golang(%{import_path}/snap/naming) = %{version}-%{release}
   442  Provides:      golang(%{import_path}/snap/pack) = %{version}-%{release}
   443  Provides:      golang(%{import_path}/snap/snapdir) = %{version}-%{release}
   444  Provides:      golang(%{import_path}/snap/snapenv) = %{version}-%{release}
   445  Provides:      golang(%{import_path}/snap/snapfile) = %{version}-%{release}
   446  Provides:      golang(%{import_path}/snap/snaptest) = %{version}-%{release}
   447  Provides:      golang(%{import_path}/snap/squashfs) = %{version}-%{release}
   448  Provides:      golang(%{import_path}/snapdenv) = %{version}-%{release}
   449  Provides:      golang(%{import_path}/snapdtool) = %{version}-%{release}
   450  Provides:      golang(%{import_path}/spdx) = %{version}-%{release}
   451  Provides:      golang(%{import_path}/store) = %{version}-%{release}
   452  Provides:      golang(%{import_path}/store/storetest) = %{version}-%{release}
   453  Provides:      golang(%{import_path}/strutil) = %{version}-%{release}
   454  Provides:      golang(%{import_path}/strutil/chrorder) = %{version}-%{release}
   455  Provides:      golang(%{import_path}/strutil/quantity) = %{version}-%{release}
   456  Provides:      golang(%{import_path}/strutil/shlex) = %{version}-%{release}
   457  Provides:      golang(%{import_path}/sysconfig) = %{version}-%{release}
   458  Provides:      golang(%{import_path}/systemd) = %{version}-%{release}
   459  Provides:      golang(%{import_path}/testutil) = %{version}-%{release}
   460  Provides:      golang(%{import_path}/timeout) = %{version}-%{release}
   461  Provides:      golang(%{import_path}/timeutil) = %{version}-%{release}
   462  Provides:      golang(%{import_path}/timings) = %{version}-%{release}
   463  Provides:      golang(%{import_path}/usersession/agent) = %{version}-%{release}
   464  Provides:      golang(%{import_path}/usersession/autostart) = %{version}-%{release}
   465  Provides:      golang(%{import_path}/usersession/client) = %{version}-%{release}
   466  Provides:      golang(%{import_path}/usersession/userd) = %{version}-%{release}
   467  Provides:      golang(%{import_path}/usersession/userd/ui) = %{version}-%{release}
   468  Provides:      golang(%{import_path}/usersession/xdgopenproxy) = %{version}-%{release}
   469  Provides:      golang(%{import_path}/wrappers) = %{version}-%{release}
   470  Provides:      golang(%{import_path}/x11) = %{version}-%{release}
   471  
   472  %description devel
   473  This package contains library source intended for
   474  building other packages which use import path with
   475  %{import_path} prefix.
   476  %endif
   477  
   478  %if 0%{?with_unit_test} && 0%{?with_devel}
   479  %package unit-test-devel
   480  Summary:         Unit tests for %{name} package
   481  
   482  %if 0%{?with_check}
   483  #Here comes all BuildRequires: PACKAGE the unit tests
   484  #in %%check section need for running
   485  %endif
   486  
   487  # test subpackage tests code from devel subpackage
   488  Requires:        %{name}-devel = %{version}-%{release}
   489  
   490  %description unit-test-devel
   491  This package contains unit tests for project
   492  providing packages with %{import_path} prefix.
   493  %endif
   494  
   495  %prep
   496  %if ! 0%{?with_bundled}
   497  %setup -q
   498  # Ensure there's no bundled stuff accidentally leaking in...
   499  rm -rf vendor/*
   500  %else
   501  # Extract each tarball properly
   502  %setup -q -D -b 1
   503  %endif
   504  # Apply patches
   505  %autopatch -p1
   506  
   507  
   508  %build
   509  # Generate version files
   510  ./mkversion.sh "%{version}-%{release}"
   511  
   512  # We don't want/need squashfuse in the rpm, as it's available in Fedora and EPEL
   513  sed -e 's:_ "github.com/snapcore/squashfuse"::g' -i systemd/systemd.go
   514  
   515  # Build snapd
   516  mkdir -p src/github.com/snapcore
   517  ln -s ../../../ src/github.com/snapcore/snapd
   518  
   519  %if ! 0%{?with_bundled}
   520  export GOPATH=$(pwd):%{gopath}
   521  %else
   522  export GOPATH=$(pwd):$(pwd)/Godeps/_workspace:%{gopath}
   523  %endif
   524  export GO111MODULE=off
   525  
   526  # see https://github.com/gofed/go-macros/blob/master/rpm/macros.d/macros.go-compilers-golang
   527  BUILDTAGS=
   528  %if 0%{?with_test_keys}
   529  BUILDTAGS="withtestkeys nosecboot"
   530  %else
   531  BUILDTAGS="nosecboot"
   532  %endif
   533  
   534  %if ! 0%{?with_bundled}
   535  # We don't need mvo5 fork for seccomp, as we have seccomp 2.3.x
   536  sed -e "s:github.com/mvo5/libseccomp-golang:github.com/seccomp/libseccomp-golang:g" -i cmd/snap-seccomp/*.go
   537  # We don't need the snapcore fork for bolt - it is just a fix on ppc
   538  sed -e "s:github.com/snapcore/bolt:github.com/boltdb/bolt:g" -i advisor/*.go errtracker/*.go
   539  %endif
   540  
   541  # We have to build snapd first to prevent the build from
   542  # building various things from the tree without additional
   543  # set tags.
   544  %gobuild -o bin/snapd $GOFLAGS %{import_path}/cmd/snapd
   545  BUILDTAGS="${BUILDTAGS} nomanagers"
   546  %gobuild -o bin/snap $GOFLAGS %{import_path}/cmd/snap
   547  %gobuild -o bin/snap-failure $GOFLAGS %{import_path}/cmd/snap-failure
   548  
   549  # To ensure things work correctly with base snaps,
   550  # snap-exec, snap-update-ns, and snapctl need to be built statically
   551  (
   552  %if 0%{?rhel} >= 8
   553      # since 1.12.1, the go-toolset module is built with FIPS compliance that
   554      # defaults to using libcrypto.so which gets loaded at runtime via dlopen(),
   555      # disable that functionality for statically built binaries
   556      BUILDTAGS="${BUILDTAGS} no_openssl"
   557  %endif
   558      %gobuild_static -o bin/snap-exec $GOFLAGS %{import_path}/cmd/snap-exec
   559      %gobuild_static -o bin/snap-update-ns $GOFLAGS %{import_path}/cmd/snap-update-ns
   560      %gobuild_static -o bin/snapctl $GOFLAGS %{import_path}/cmd/snapctl
   561  )
   562  
   563  %if 0%{?rhel}
   564  # There's no static link library for libseccomp in RHEL/CentOS...
   565  sed -e "s/-Bstatic -lseccomp/-Bstatic/g" -i cmd/snap-seccomp/*.go
   566  %endif
   567  %gobuild -o bin/snap-seccomp $GOFLAGS %{import_path}/cmd/snap-seccomp
   568  
   569  %if 0%{?with_selinux}
   570  (
   571  %if 0%{?rhel} == 7
   572      M4PARAM='-D distro_rhel7'
   573  %endif
   574      # Build SELinux module
   575      cd ./data/selinux
   576      # pass M4PARAM in env instead of as an override, so that make can still
   577      # manipulate it freely, for more details see:
   578      # https://www.gnu.org/software/make/manual/html_node/Override-Directive.html
   579      M4PARAM="$M4PARAM" make SHARE="%{_datadir}" TARGETS="snappy"
   580  )
   581  %endif
   582  
   583  # Build snap-confine
   584  pushd ./cmd
   585  autoreconf --force --install --verbose
   586  # FIXME: add --enable-caps-over-setuid as soon as possible (setuid discouraged!)
   587  %configure \
   588      --disable-apparmor \
   589  %if 0%{?with_selinux}
   590      --enable-selinux \
   591  %endif
   592      --libexecdir=%{_libexecdir}/snapd/ \
   593      --enable-nvidia-biarch \
   594      %{?with_multilib:--with-32bit-libdir=%{_prefix}/lib} \
   595      --with-snap-mount-dir=%{_sharedstatedir}/snapd/snap \
   596      --enable-merged-usr
   597  
   598  %make_build
   599  popd
   600  
   601  # Build systemd units, dbus services, and env files
   602  pushd ./data
   603  make BINDIR="%{_bindir}" LIBEXECDIR="%{_libexecdir}" \
   604       SYSTEMDSYSTEMUNITDIR="%{_unitdir}" \
   605       SNAP_MOUNT_DIR="%{_sharedstatedir}/snapd/snap" \
   606       SNAPD_ENVIRONMENT_FILE="%{_sysconfdir}/sysconfig/snapd"
   607  popd
   608  
   609  %install
   610  install -d -p %{buildroot}%{_bindir}
   611  install -d -p %{buildroot}%{_libexecdir}/snapd
   612  install -d -p %{buildroot}%{_mandir}/man8
   613  install -d -p %{buildroot}%{_environmentdir}
   614  install -d -p %{buildroot}%{_systemdgeneratordir}
   615  install -d -p %{buildroot}%{_systemd_system_env_generator_dir}
   616  install -d -p %{buildroot}%{_unitdir}
   617  install -d -p %{buildroot}%{_userunitdir}
   618  install -d -p %{buildroot}%{_sysconfdir}/profile.d
   619  install -d -p %{buildroot}%{_sysconfdir}/sysconfig
   620  install -d -p %{buildroot}%{_sharedstatedir}/snapd/assertions
   621  install -d -p %{buildroot}%{_sharedstatedir}/snapd/cookie
   622  install -d -p %{buildroot}%{_sharedstatedir}/snapd/dbus-1/services
   623  install -d -p %{buildroot}%{_sharedstatedir}/snapd/dbus-1/system-services
   624  install -d -p %{buildroot}%{_sharedstatedir}/snapd/desktop/applications
   625  install -d -p %{buildroot}%{_sharedstatedir}/snapd/device
   626  install -d -p %{buildroot}%{_sharedstatedir}/snapd/hostfs
   627  install -d -p %{buildroot}%{_sharedstatedir}/snapd/inhibit
   628  install -d -p %{buildroot}%{_sharedstatedir}/snapd/lib/gl
   629  install -d -p %{buildroot}%{_sharedstatedir}/snapd/lib/gl32
   630  install -d -p %{buildroot}%{_sharedstatedir}/snapd/lib/glvnd
   631  install -d -p %{buildroot}%{_sharedstatedir}/snapd/lib/vulkan
   632  install -d -p %{buildroot}%{_sharedstatedir}/snapd/mount
   633  install -d -p %{buildroot}%{_sharedstatedir}/snapd/seccomp/bpf
   634  install -d -p %{buildroot}%{_sharedstatedir}/snapd/snaps
   635  install -d -p %{buildroot}%{_sharedstatedir}/snapd/snap/bin
   636  install -d -p %{buildroot}%{_localstatedir}/snap
   637  install -d -p %{buildroot}%{_localstatedir}/cache/snapd
   638  install -d -p %{buildroot}%{_datadir}/polkit-1/actions
   639  %if 0%{?with_selinux}
   640  install -d -p %{buildroot}%{_datadir}/selinux/devel/include/contrib
   641  install -d -p %{buildroot}%{_datadir}/selinux/packages
   642  %endif
   643  
   644  # Install snap and snapd
   645  install -p -m 0755 bin/snap %{buildroot}%{_bindir}
   646  install -p -m 0755 bin/snap-exec %{buildroot}%{_libexecdir}/snapd
   647  install -p -m 0755 bin/snap-failure %{buildroot}%{_libexecdir}/snapd
   648  install -p -m 0755 bin/snapd %{buildroot}%{_libexecdir}/snapd
   649  install -p -m 0755 bin/snap-update-ns %{buildroot}%{_libexecdir}/snapd
   650  install -p -m 0755 bin/snap-seccomp %{buildroot}%{_libexecdir}/snapd
   651  # Ensure /usr/bin/snapctl is a symlink to /usr/libexec/snapd/snapctl
   652  install -p -m 0755 bin/snapctl %{buildroot}%{_libexecdir}/snapd/snapctl
   653  ln -sf %{_libexecdir}/snapd/snapctl %{buildroot}%{_bindir}/snapctl
   654  
   655  %if 0%{?with_selinux}
   656  # Install SELinux module
   657  install -p -m 0644 data/selinux/snappy.if %{buildroot}%{_datadir}/selinux/devel/include/contrib
   658  install -p -m 0644 data/selinux/snappy.pp.bz2 %{buildroot}%{_datadir}/selinux/packages
   659  %endif
   660  
   661  # Install snap(8) man page
   662  bin/snap help --man > %{buildroot}%{_mandir}/man8/snap.8
   663  
   664  # Install the "info" data file with snapd version
   665  install -m 644 -D data/info %{buildroot}%{_libexecdir}/snapd/info
   666  
   667  # Install bash completion for "snap"
   668  install -m 644 -D data/completion/bash/snap %{buildroot}%{_datadir}/bash-completion/completions/snap
   669  install -m 644 -D data/completion/bash/complete.sh %{buildroot}%{_libexecdir}/snapd
   670  install -m 644 -D data/completion/bash/etelpmoc.sh %{buildroot}%{_libexecdir}/snapd
   671  # Install zsh completion for "snap"
   672  install -d -p %{buildroot}%{_datadir}/zsh/site-functions
   673  install -m 644 -D data/completion/zsh/_snap %{buildroot}%{_datadir}/zsh/site-functions/_snap
   674  
   675  # Install snap-confine
   676  pushd ./cmd
   677  %make_install
   678  # Undo the 0111 permissions, they are restored in the files section
   679  chmod 0755 %{buildroot}%{_sharedstatedir}/snapd/void
   680  # We don't use AppArmor
   681  rm -rfv %{buildroot}%{_sysconfdir}/apparmor.d
   682  # ubuntu-core-launcher is dead
   683  rm -fv %{buildroot}%{_bindir}/ubuntu-core-launcher
   684  popd
   685  
   686  # Install all systemd and dbus units, and env files
   687  pushd ./data
   688  %make_install BINDIR="%{_bindir}" LIBEXECDIR="%{_libexecdir}" \
   689                SYSTEMDSYSTEMUNITDIR="%{_unitdir}" SYSTEMDUSERUNITDIR="%{_userunitdir}" \
   690                SNAP_MOUNT_DIR="%{_sharedstatedir}/snapd/snap" \
   691                SNAPD_ENVIRONMENT_FILE="%{_sysconfdir}/sysconfig/snapd"
   692  popd
   693  
   694  %if 0%{?rhel} == 7
   695  # Install kernel tweaks
   696  # See: https://access.redhat.com/articles/3128691
   697  install -m 644 -D data/sysctl/rhel7-snap.conf %{buildroot}%{_sysctldir}/99-snap.conf
   698  %endif
   699  
   700  # Remove snappy core specific units
   701  rm -fv %{buildroot}%{_unitdir}/snapd.system-shutdown.service
   702  rm -fv %{buildroot}%{_unitdir}/snapd.snap-repair.*
   703  rm -fv %{buildroot}%{_unitdir}/snapd.core-fixup.*
   704  rm -fv %{buildroot}%{_unitdir}/snapd.recovery-chooser-trigger.service
   705  
   706  # Remove snappy core specific scripts and binaries
   707  rm %{buildroot}%{_libexecdir}/snapd/snapd.core-fixup.sh
   708  rm %{buildroot}%{_libexecdir}/snapd/system-shutdown
   709  
   710  # Remove snapd apparmor service
   711  rm -f %{buildroot}%{_unitdir}/snapd.apparmor.service
   712  rm -f %{buildroot}%{_libexecdir}/snapd/snapd-apparmor
   713  
   714  # Install Polkit configuration
   715  install -m 644 -D data/polkit/io.snapcraft.snapd.policy %{buildroot}%{_datadir}/polkit-1/actions
   716  
   717  # Disable re-exec by default
   718  echo 'SNAP_REEXEC=0' > %{buildroot}%{_sysconfdir}/sysconfig/snapd
   719  
   720  # Create state.json and the README file to be ghosted
   721  touch %{buildroot}%{_sharedstatedir}/snapd/state.json
   722  touch %{buildroot}%{_sharedstatedir}/snapd/snap/README
   723  
   724  # When enabled, create a symlink for /snap to point to /var/lib/snapd/snap
   725  %if %{with snap_symlink}
   726  ln -sr %{buildroot}%{_sharedstatedir}/snapd/snap %{buildroot}/snap
   727  %endif
   728  
   729  # source codes for building projects
   730  %if 0%{?with_devel}
   731  install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
   732  echo "%%dir %%{gopath}/src/%%{import_path}/." >> devel.file-list
   733  # find all *.go but no *_test.go files and generate devel.file-list
   734  for file in $(find . -iname "*.go" -o -iname "*.s" \! -iname "*_test.go") ; do
   735      echo "%%dir %%{gopath}/src/%%{import_path}/$(dirname $file)" >> devel.file-list
   736      install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file)
   737      cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
   738      echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list
   739  done
   740  %endif
   741  
   742  # testing files for this project
   743  %if 0%{?with_unit_test} && 0%{?with_devel}
   744  install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
   745  # find all *_test.go files and generate unit-test.file-list
   746  for file in $(find . -iname "*_test.go"); do
   747      echo "%%dir %%{gopath}/src/%%{import_path}/$(dirname $file)" >> devel.file-list
   748      install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file)
   749      cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
   750      echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test-devel.file-list
   751  done
   752  
   753  # Install additional testdata
   754  install -d %{buildroot}/%{gopath}/src/%{import_path}/cmd/snap/test-data/
   755  cp -pav cmd/snap/test-data/* %{buildroot}/%{gopath}/src/%{import_path}/cmd/snap/test-data/
   756  echo "%%{gopath}/src/%%{import_path}/cmd/snap/test-data" >> unit-test-devel.file-list
   757  %endif
   758  
   759  %if 0%{?with_devel}
   760  sort -u -o devel.file-list devel.file-list
   761  %endif
   762  
   763  %check
   764  for binary in snap-exec snap-update-ns snapctl; do
   765      ldd bin/$binary 2>&1 | grep 'not a dynamic executable'
   766  done
   767  
   768  # snapd tests
   769  %if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
   770  %if ! 0%{?with_bundled}
   771  export GOPATH=%{buildroot}/%{gopath}:%{gopath}
   772  %else
   773  export GOPATH=%{buildroot}/%{gopath}:$(pwd)/Godeps/_workspace:%{gopath}
   774  %endif
   775  export GO111MODULE=off
   776  %gotest %{import_path}/...
   777  %endif
   778  
   779  # snap-confine tests (these always run!)
   780  pushd ./cmd
   781  make check
   782  popd
   783  
   784  %files
   785  #define license tag if not already defined
   786  %{!?_licensedir:%global license %doc}
   787  %license COPYING
   788  %doc README.md docs/*
   789  %{_bindir}/snap
   790  %{_bindir}/snapctl
   791  %{_environmentdir}/990-snapd.conf
   792  %if 0%{?rhel} == 7
   793  %{_sysctldir}/99-snap.conf
   794  %endif
   795  %dir %{_libexecdir}/snapd
   796  %{_libexecdir}/snapd/snapctl
   797  %{_libexecdir}/snapd/snapd
   798  %{_libexecdir}/snapd/snap-exec
   799  %{_libexecdir}/snapd/snap-failure
   800  %{_libexecdir}/snapd/info
   801  %{_libexecdir}/snapd/snap-mgmt
   802  %if 0%{?with_selinux}
   803  %{_libexecdir}/snapd/snap-mgmt-selinux
   804  %endif
   805  %{_mandir}/man8/snap.8*
   806  %{_datadir}/applications/snap-handle-link.desktop
   807  %{_datadir}/bash-completion/completions/snap
   808  %{_libexecdir}/snapd/complete.sh
   809  %{_libexecdir}/snapd/etelpmoc.sh
   810  %{_datadir}/zsh/site-functions/_snap
   811  %{_libexecdir}/snapd/snapd.run-from-snap
   812  %{_sysconfdir}/profile.d/snapd.sh
   813  %{_mandir}/man8/snapd-env-generator.8*
   814  %{_systemd_system_env_generator_dir}/snapd-env-generator
   815  %{_unitdir}/snapd.socket
   816  %{_unitdir}/snapd.service
   817  %{_unitdir}/snapd.autoimport.service
   818  %{_unitdir}/snapd.failure.service
   819  %{_unitdir}/snapd.seeded.service
   820  %{_userunitdir}/snapd.session-agent.service
   821  %{_userunitdir}/snapd.session-agent.socket
   822  %{_datadir}/dbus-1/services/io.snapcraft.Launcher.service
   823  %{_datadir}/dbus-1/services/io.snapcraft.SessionAgent.service
   824  %{_datadir}/dbus-1/services/io.snapcraft.Settings.service
   825  %{_datadir}/dbus-1/session.d/snapd.session-services.conf
   826  %{_datadir}/dbus-1/system.d/snapd.system-services.conf
   827  %{_datadir}/polkit-1/actions/io.snapcraft.snapd.policy
   828  %{_datadir}/applications/io.snapcraft.SessionAgent.desktop
   829  %{_sysconfdir}/xdg/autostart/snap-userd-autostart.desktop
   830  %config(noreplace) %{_sysconfdir}/sysconfig/snapd
   831  %dir %{_sharedstatedir}/snapd
   832  %dir %{_sharedstatedir}/snapd/assertions
   833  %dir %{_sharedstatedir}/snapd/cookie
   834  %dir %{_sharedstatedir}/snapd/dbus-1
   835  %dir %{_sharedstatedir}/snapd/dbus-1/services
   836  %dir %{_sharedstatedir}/snapd/dbus-1/system-services
   837  %dir %{_sharedstatedir}/snapd/desktop
   838  %dir %{_sharedstatedir}/snapd/desktop/applications
   839  %dir %{_sharedstatedir}/snapd/device
   840  %dir %{_sharedstatedir}/snapd/hostfs
   841  %dir %{_sharedstatedir}/snapd/inhibit
   842  %dir %{_sharedstatedir}/snapd/lib
   843  %dir %{_sharedstatedir}/snapd/lib/gl
   844  %dir %{_sharedstatedir}/snapd/lib/gl32
   845  %dir %{_sharedstatedir}/snapd/lib/glvnd
   846  %dir %{_sharedstatedir}/snapd/lib/vulkan
   847  %dir %{_sharedstatedir}/snapd/mount
   848  %dir %{_sharedstatedir}/snapd/seccomp
   849  %dir %{_sharedstatedir}/snapd/seccomp/bpf
   850  %dir %{_sharedstatedir}/snapd/snaps
   851  %dir %{_sharedstatedir}/snapd/snap
   852  %ghost %dir %{_sharedstatedir}/snapd/snap/bin
   853  %dir %{_localstatedir}/cache/snapd
   854  %dir %{_localstatedir}/snap
   855  %ghost %{_sharedstatedir}/snapd/state.json
   856  %ghost %{_sharedstatedir}/snapd/snap/README
   857  %if %{with snap_symlink}
   858  /snap
   859  %endif
   860  # this is typically owned by zsh, but we do not want to explicitly require zsh
   861  %dir %{_datadir}/zsh
   862  %dir %{_datadir}/zsh/site-functions
   863  
   864  %files -n snap-confine
   865  %doc cmd/snap-confine/PORTING
   866  %license COPYING
   867  %dir %{_libexecdir}/snapd
   868  # For now, we can't use caps
   869  # FIXME: Switch to "%%attr(0755,root,root) %%caps(cap_sys_admin=pe)" asap!
   870  %attr(4755,root,root) %{_libexecdir}/snapd/snap-confine
   871  %{_libexecdir}/snapd/snap-device-helper
   872  %{_libexecdir}/snapd/snap-discard-ns
   873  %{_libexecdir}/snapd/snap-gdb-shim
   874  %{_libexecdir}/snapd/snap-gdbserver-shim
   875  %{_libexecdir}/snapd/snap-seccomp
   876  %{_libexecdir}/snapd/snap-update-ns
   877  %{_mandir}/man8/snap-confine.8*
   878  %{_mandir}/man8/snap-discard-ns.8*
   879  %{_systemdgeneratordir}/snapd-generator
   880  %attr(0111,root,root) %{_sharedstatedir}/snapd/void
   881  
   882  %if 0%{?with_selinux}
   883  %files selinux
   884  %license data/selinux/COPYING
   885  %doc data/selinux/README.md
   886  %{_datadir}/selinux/packages/snappy.pp.bz2
   887  %{_datadir}/selinux/devel/include/contrib/snappy.if
   888  %endif
   889  
   890  %if 0%{?with_devel}
   891  %files devel -f devel.file-list
   892  %license COPYING
   893  %doc README.md
   894  %dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
   895  %endif
   896  
   897  %if 0%{?with_unit_test} && 0%{?with_devel}
   898  %files unit-test-devel -f unit-test-devel.file-list
   899  %license COPYING
   900  %doc README.md
   901  %endif
   902  
   903  %post
   904  %if 0%{?rhel} == 7
   905  %sysctl_apply 99-snap.conf
   906  %endif
   907  %systemd_post %{snappy_svcs}
   908  %systemd_user_post %{snappy_user_svcs}
   909  # If install, test if snapd socket and timer are enabled.
   910  # If enabled, then attempt to start them. This will silently fail
   911  # in chroots or other environments where services aren't expected
   912  # to be started.
   913  if [ $1 -eq 1 ] ; then
   914     if systemctl -q is-enabled snapd.socket > /dev/null 2>&1 ; then
   915        systemctl start snapd.socket > /dev/null 2>&1 || :
   916     fi
   917  fi
   918  
   919  %preun
   920  %systemd_preun %{snappy_svcs}
   921  %systemd_user_preun %{snappy_user_svcs}
   922  
   923  # Remove all Snappy content if snapd is being fully uninstalled
   924  if [ $1 -eq 0 ]; then
   925     %{_libexecdir}/snapd/snap-mgmt --purge || :
   926  fi
   927  
   928  %postun
   929  %systemd_postun_with_restart %{snappy_svcs}
   930  %systemd_user_postun_with_restart %{snappy_user_svcs}
   931  
   932  %if 0%{?with_selinux}
   933  %triggerun -- snapd < 2.39
   934  # TODO: the trigger relies on a very specific snapd version that introduced SELinux
   935  # mount context, figure out how to update the trigger condition to run when needed
   936  
   937  # Trigger on uninstall, with one version of the package being pre 2.38 see
   938  # https://rpm-packaging-guide.github.io/#triggers-and-scriptlets for details
   939  # when triggers are run
   940  if [ "$1" -eq 2 -a "$2" -eq 1 ]; then
   941     # Upgrade from pre 2.38 version
   942     %{_libexecdir}/snapd/snap-mgmt-selinux --patch-selinux-mount-context=system_u:object_r:snappy_snap_t:s0 || :
   943  
   944     # snapd might have created fontconfig cache directory earlier, but with
   945     # incorrect context due to bugs in the policy, make sure it gets the right one
   946     # on upgrade when the new policy was introduced
   947     if [ -d "%{_localstatedir}/cache/fontconfig" ]; then
   948        restorecon -R %{_localstatedir}/cache/fontconfig || :
   949     fi
   950  elif [ "$1" -eq 1 -a "$2" -eq 2 ]; then
   951     # Downgrade to a pre 2.38 version
   952     %{_libexecdir}/snapd/snap-mgmt-selinux --remove-selinux-mount-context=system_u:object_r:snappy_snap_t:s0 || :
   953  fi
   954  
   955  %pre selinux
   956  %selinux_relabel_pre
   957  
   958  %post selinux
   959  %selinux_modules_install %{_datadir}/selinux/packages/snappy.pp.bz2
   960  %selinux_relabel_post
   961  
   962  %posttrans selinux
   963  %selinux_relabel_post
   964  
   965  %postun selinux
   966  %selinux_modules_uninstall snappy
   967  if [ $1 -eq 0 ]; then
   968      %selinux_relabel_post
   969  fi
   970  %endif
   971  
   972  
   973  %changelog
   974  * Mon Aug 16 2021 Ian Johnson <ian.johnson@canonical.com>
   975  - New upstream release 2.51.5
   976   - snap/squashfs: handle squashfs-tools 4.5+
   977   - tests/core20-install-device-file-install-via-hook-hack: adjust
   978     test for 2.51
   979   - o/devicestate/handlers_install.go: add workaround to create dirs
   980     for install
   981   - tests: fix linter warning
   982   - tests: update other spread tests for new behaviour
   983   - tests: ack assertions by default, add --noack option
   984   - release-tools/changelog.py: also fix opensuse changelog date
   985     format
   986   - release-tools/changelog.py: fix typo in function name
   987   - release-tools/changelog.py: fix fedora date format
   988   - release-tools/changelog.py: handle case where we don't have a TZ
   989   - release-tools/changelog.py: fix line length check
   990   - release-tools/changelog.py: specify the LP bug for the release as
   991     an arg too
   992   - interface/modem-manager: add support for MBIM/QMI proxy
   993     clients
   994   - .github/workflows/test.yaml: use snapcraft 4.x to build the snapd
   995     snap
   996  
   997  * Mon Aug 09 2021 Ian Johnson <ian.johnson@canonical.com>
   998  - New upstream release 2.51.4
   999   - {device,snap}state: skip kernel extraction in seeding
  1000   - vendor: move to snapshot-4c814e1 branch and set fixed KDF options
  1001   - tests/interfaces/tee: fix HasLen check for udev snippets
  1002   - interfaces/tee: add support for Qualcomm qseecom device node
  1003   - gadget: check for system-save with multi volumes if encrypting
  1004     correctly
  1005   - gadget: drive-by: drop unnecessary/supported passthrough in test
  1006     gadget.yaml
  1007  
  1008  * Wed Jul 14 2021 Ian Johnson <ian.johnson@canonical.com>
  1009  - New upstream release 2.51.3
  1010   - interfaces/builtin: add sd-control interface
  1011   - store: set ResponseHeaderTimeout on the default transport
  1012  
  1013  * Wed Jul 07 2021 Michael Vogt <michael.vogt@ubuntu.com>
  1014  - New upstream release 2.51.2
  1015   - snapstate: remove temporary snap file for local revisions early
  1016   - interface: allows reading sd cards internal info from block-
  1017     devices interface
  1018   - o/ifacestate: do not visit same halt tasks in waitChainSearch to
  1019     avoid slow convergence (or unlikely cycles)
  1020   - corecfg: allow using `# snapd-edit: no` header to disable pi-
  1021     config
  1022   - configcore: ignore system.pi-config.* setting on measured kernels
  1023   - many: pass device/model info to configcore via sysconfig.Device
  1024     interface
  1025   - o/configstate/configcore: support snap set system swap.size=...
  1026   - store: make the log with download size a debug one
  1027   - interfaces/opengl: add support for Imagination PowerVR
  1028  
  1029  * Tue Jun 15 2021 Michael Vogt <michael.vogt@ubuntu.com>
  1030  - New upstream release 2.51.1
  1031   - interfaces: add netlink-driver interface
  1032   - interfaces: builtin: add dm-crypt interface to support external
  1033     storage encryption
  1034   - interfaces/dsp: fix typo in udev rule
  1035   - overlord/snapstate: lock the mutex before returning from stop
  1036     snap services undo
  1037   - interfaces: opengl: change path for Xilinx zocl driver
  1038   - interfaces/dsp: add /dev/cavalry into dsp interface
  1039   - packaging/fedora/snapd.spec: correct date format in changelog
  1040  
  1041  * Thu May 27 2021 Ian Johnson <ian.johnson@canonical.com>
  1042  - New upstream release 2.51
  1043   - cmd/snap: stacktraces debug endpoint
  1044   - secboot: deactivate volume again when model checker fails
  1045   - store: extra log message, a few minor cleanups
  1046   - packaging/debian-sid: update systemd patch
  1047   - snapstate: adjust update-gadget-assets user visible message
  1048   - tests/nested/core/core20-create-recovery: verify that recovery
  1049     system can be created at runtime
  1050   - gadget: support creating vfat partitions during bootstrap
  1051   - daemon/api_quotas.go: support updating quotas with ensure action
  1052   - daemon: tighten access to a couple of POST endpoints that should
  1053     be really be root-only
  1054   - seed/seedtest, overlord/devicestate: move seed validation helper
  1055     to seedtest
  1056   - overlord/hookstate/ctlcmd: remove unneeded parameter
  1057   - snap/quota: add CurrentMemoryUsage for current memory usage of a
  1058     quota group
  1059   - systemd: add CurrentMemoryUsage to get current memory usage for a
  1060     unit
  1061   - o/snapstate: introduce minimalInstallInfo interface
  1062   - o/hookstate: print pending info (ready, inhibited or none)
  1063   - osutil: a helper to find out the total amount of memory in the
  1064     system
  1065   - overlord, overlord/devicestate: allow for reloading modeenv in
  1066     devicemgr when testing
  1067   - daemon: refine access testing
  1068   - spread: disable unattended-upgrades on debian
  1069   - tests/lib/reset: make nc exit after a while when connection is
  1070     idle
  1071   - daemon: replace access control flags on commands with access
  1072     checkers
  1073   - release-tools/changelog.py: refactor regexp + file reading/writing
  1074   - packaging/debian-sid: update locale patch for the latest master
  1075   - overlord/devicestate: tasks for creating recovery systems at
  1076     runtime
  1077   - release-tools/changelog.py: implement script to update all the
  1078     changelog files
  1079   - tests: change machine type used for nested testsPrices:
  1080   - cmd/snap: include locale when linting description being lower case
  1081   - o/servicestate: add RemoveSnapFromQuota
  1082   - interfaces/serial-port: add Qualcomm serial port devices to
  1083     allowed list
  1084   - packaging: merge 2.50.1 changelog back
  1085   - interfaces/builtin: introduce raw-input interface
  1086   - tests: remove tests.cleanup prepare from nested test
  1087   - cmd/snap-update-ns: fix linter errors
  1088   - asserts: fix errors reported by linter
  1089   - o/hookstate/ctlcmd: allow system-mode for non-root
  1090   - overlord/devicestate: comment why explicit system mode check is
  1091     needed in ensuring tried recovery systems (#10275)
  1092   - overlord/devicesate: observe snap writes when creating recovery
  1093     systems
  1094   - packaging/ubuntu-16.04/changelog: add placeholder for 2.50.1
  1095   - tests: moving to tests directories snaps built locally - part 1
  1096   - seed/seedwriter: fail early when system seed directory exists
  1097   - o/snapstate: autorefresh phase1 for refresh-control
  1098   - c/snap: more precise message for ErrorKindSystemRestart op !=
  1099     reboot
  1100   - tests: simplify the tests.cleanup tool
  1101   - boot: helpers for manipulating current and good recovery systems
  1102     list
  1103   - o/hookstate, o/snapstate: print revision, version, channel with
  1104     snapctl --pending
  1105   - overlord:  unit test tweaks, use well known snap IDs, setup snap
  1106     declarations for most common snaps
  1107   - tests/nested/manual: add test for install-device + snapctl reboot
  1108   - o/servicestate: restart slices + services on modifications
  1109   - tests: update mount-ns test to support changes in the distro
  1110   - interfaces: fix linter issues
  1111   - overlord: mock logger in managers unit tests
  1112   - tests: adding support for fedora-34
  1113   - tests: adding support for debian 10 on gce
  1114   - boot: reseal given keys when the respective boot chain has changed
  1115   - secboot: switch encryption key size to 32 byte (thanks to Chris)
  1116   - interfaces/dbus: allow claiming 'well-known' D-Bus names with a
  1117     wildcard suffix
  1118   - spread: bump delta reference version
  1119   - interfaces: builtin: update permitted paths to be compatible with
  1120     UC20
  1121   - overlord: fix errors reported by linter
  1122   - tests: remove old fedora systems from tests
  1123   - tests: update spread url
  1124   - interfaces/camera: allow devices in /sys/devices/platform/**/usb*
  1125   - interfaces/udisks2: Allow access to the login manager via dbus
  1126   - cmd/snap: exit normally if "snap changes" has no changes
  1127     (LP #1823974)
  1128   - tests: more fixes for spread suite on openSUSE
  1129   - tests: fix tests expecting cgroup v1/hybrid on openSUSE Tumbleweed
  1130   - daemon: fix linter errors
  1131   - spread: add Fedora 34, leave a TODO about dropping Fedora 32
  1132   - interfaces: fix linter errors
  1133   - tests: use op.paths tools instead of dirs.sh helper - part 2
  1134   - client: Fix linter errors
  1135   - cmd/snap: Fix errors reported by linter
  1136   - cmd/snap-repair: fix linter issues
  1137   - cmd/snap-bootstrap: Fix linter errors
  1138   - tests: update permission denied message for test-snapd-event on
  1139     ubuntu 2104
  1140   - cmd/snap: small tweaks based on previous reviews
  1141   - snap/snaptest: helper that mocks both the squashfs file and a snap
  1142     directory
  1143   - overlord/devicestate: tweak comment about creating recovery
  1144     systems, formatting tweaks
  1145   - overlord/devicestate: move devicemgr base suite helpers closer to
  1146     test suite struct
  1147   - overlord/devicestate: keep track of tried recovery system
  1148   - seed/seedwriter: clarify in the diagram when SetInfo is called
  1149   - overlord/devicestate: add helper for creating recovery systems at
  1150     runtime
  1151   - snap-seccomp: update syscalls.go list
  1152   - boot,image: support image.Customizations.BootFlags
  1153   - overlord: support snapctl --halt|--poweroff in gadget install-
  1154     device
  1155   - features,servicestate: add experimental.quota-groups flag
  1156   - o/servicestate: address comments from previous PR
  1157   - tests: basic spread test for snap quota commands
  1158   - tests: moving the snaps which are not locally built to the store
  1159     directory
  1160   - image,c/snap: implement prepare-image --customize
  1161   - daemon: implement REST API for quota groups (create / list / get)
  1162   - cmd/snap, client: snap quotas command
  1163   - o/devicestate,o/hookstate/ctlcmd: introduce SystemModeInfo methods
  1164     and snapctl system-mode
  1165   - o/servicestate/quota_control.go: introduce (very) basic group
  1166     manipulation methods
  1167   - cmd/snap, client: snap remove-quota command
  1168   - wrappers, quota: implement quota groups slice generation
  1169   - snap/quotas: followups from previous PR
  1170   - cmd/snap: introduce 'snap quota' command
  1171   - o/configstate/configcore/picfg.go: use ubuntu-seed config.txt in
  1172     uc20 run mode
  1173   - o/servicestate: test has internal ordering issues, consider both
  1174     cases
  1175   - o/servicestate/quotas: add functions for getting and setting
  1176     quotas in state
  1177   - tests: new buckets for snapd-spread project on gce
  1178   - spread.yaml: update the gce project to start using snapd-spread
  1179   - quota: new package for managing resource groups
  1180   - many: bind and check keys against models when using FDE hooks v2
  1181   - many: move responsibilities down seboot -> kernel/fde and boot ->
  1182     secboot
  1183   - packaging: add placeholder changelog
  1184   - o/configstate/configcore/vitality: fix RequireMountedSnapdSnap
  1185     bug
  1186   - overlord: properly mock usr-lib-snapd tests to mimic an Ubuntu
  1187     Core system
  1188   - many: hide EncryptionKey size and refactors for fde hook v2 next
  1189     steps
  1190   - tests: adding debug info for create user tests
  1191   - o/hookstate: add "refresh" command to snapctl (hidden, not
  1192     complete yet)
  1193   - systemd: wait for zfs mounts (LP #1922293)
  1194   - testutil: support referencing files in FileEquals checker
  1195   - many: refactor to kernel/fde and allow `fde-setup initial-setup`
  1196     to return json
  1197   - o/snapstate: store refresh-candidates in the state
  1198   - o/snapstate: helper for creating gate-auto-refresh hooks
  1199   - bootloader/bootloadertest: provide interface implementation as
  1200     mixins, provide a mock for recovery-aware-trusted-asses bootloader
  1201   - tests/lib/nested: do not compress images, return early when
  1202     restored from pristine image
  1203   - boot: split out a helper for making recovery system bootable
  1204   - tests: update os.query check to match new bullseye codename used
  1205     on sid images
  1206   - o/snapstate: helper for getting snaps affected by refresh, define
  1207     new hook
  1208   - wrappers: support in EnsureSnapServices a callback to observe
  1209     changes (#10176)
  1210   - gadget: multi line support in gadget's cmdline file
  1211   - daemon: test that requesting restart from (early) Ensure works
  1212   - tests: use op.paths tools instead of dirs.sh helper - part 1
  1213   - tests: add new command to snaps-state to get current core, kernel
  1214     and gadget
  1215   - boot, gadget: move opening the snap container into the gadget
  1216     helper
  1217   - tests, overlord: extend unit tests, extend spread tests to cover
  1218     full command line support
  1219   - interfaces/builtin: introduce dsp interface
  1220   - boot, bootloader, bootloader/assets: support for full command line
  1221     override from gadget
  1222   - overlord/devicestate, overlord/snapstate: add task for updating
  1223     kernel command lines from gadget
  1224   - o/snapstate: remove unused DeviceCtx argument of
  1225     ensureInstallPreconditions
  1226   - tests/lib/nested: proper status return for tpm/secure boot checks
  1227   - cmd/snap, boot: add snapd_full_cmdline_args to dumped boot vars
  1228   - wrappers/services.go: refactor helper lambda function to separate
  1229     function
  1230   - boot/flags.go: add HostUbuntuDataForMode
  1231   - boot: handle updating of components that contribute to kernel
  1232     command line
  1233   - tests: add 20.04 to systems for nested/core
  1234   - daemon: add new accessChecker implementations
  1235   - boot, overlord/devicestate: consider gadget command lines when
  1236     updating boot config
  1237   - tests: fix prepare-image-grub-core18 for arm devices
  1238   - tests: fix gadget-kernel-refs-update-pc test on arm and when
  1239     $TRUST_TEST_KEY is false
  1240   - tests: enable help test for all the systems
  1241   - boot: set extra command line arguments when preparing run mode
  1242   - boot: load bits of kernel command line from gadget snaps
  1243   - tests: update layout for tests - part 2
  1244   - tests: update layout for tests - part 1
  1245   - tests: remove the snap profiler from the test suite
  1246   - boot: drop gadget snap yaml which is already defined elsewhere in
  1247     the tests
  1248   - boot: set extra kernel command line arguments when making a
  1249     recovery system bootable
  1250   - boot: pass gadget path to command line helpers, load gadget from
  1251     seed
  1252   - tests: new os.paths tool
  1253   - daemon: make ucrednetGet() return a *ucrednet structure
  1254   - boot: derive boot variables for kernel command lines
  1255   - cmd/snap-bootstrap/initramfs-mounts: fix boot-flags location from
  1256     initramfs
  1257  
  1258  * Wed May 19 2021 Ian Johnson <ian.johnson@canonical.com>
  1259  - New upstream release 2.50.1
  1260   - interfaces: update permitted /lib/.. paths to be compatible with 
  1261     UC20
  1262   - interfaces: builtin: update permitted paths to be compatible with
  1263     UC20
  1264   - interfaces/greengrass-support: delete white spaces at the end of
  1265     lines
  1266   - snap-seccomp: update syscalls.go list
  1267   - many: backport kernel command line for 2.50
  1268   - interfaces/dbus: allow claiming 'well-known' D-Bus names with a
  1269     wildcard suffix
  1270   - interfaces/camera: allow devices in /sys/devices/platform/**/usb*
  1271   - interfaces/builtin: introduce dsp interface
  1272  
  1273  * Sat Apr 24 2021 Michael Vogt <mvo@ubuntu.com>
  1274  - New upstream release 2.50
  1275   - overlord: properly mock usr-lib-snapd tests to mimic an Ubuntu
  1276     Core system
  1277   - o/configstate/configcore/vitality: fix RequireMountedSnapdSnap bug
  1278   - o/servicestate/servicemgr.go: add ensure loop for snap service
  1279     units
  1280   - wrappers/services.go: introduce EnsureSnapServices()
  1281   - snapstate: add "kernel-assets" to featureSet
  1282   - systemd: wait for zfs mounts
  1283   - overlord: make servicestate responsible to compute
  1284     SnapServiceOptions
  1285   - boot,tests: move where we write boot-flags one level up
  1286   - o/configstate: don't pass --root=/ when
  1287     masking/unmasking/enabling/disabling services
  1288   - cmd/snap-bootstrap/initramfs-mounts: write active boot-flags to
  1289     /run
  1290   - gadget: be more flexible with kernel content resolving
  1291   - boot, cmd/snap: include extra cmdline args in debug boot-vars
  1292     output
  1293   - boot: support read/writing boot-flags from userspace/initramfs
  1294   - interfaces/pwm: add PWM interface
  1295   - tests/lib/prepare-restore.sh: clean out snapd changes and snaps
  1296     before purging
  1297   - systemd: enrich UnitStatus returned by systemd.Status() with
  1298     Installed flag
  1299   - tests: updated restore phase of spread tests - part 1
  1300   - gadget: add support for kernel command line provided by the gadget
  1301   - tests: Using GO111MODULE: "off" in spread.yaml
  1302   - features: add gate-auto-refresh-hook feature flag
  1303   - spread: ignore linux kernel upgrade in early stages for arch
  1304     preparation
  1305   - tests: use snaps-state commands and remove them from the snaps
  1306     helper
  1307   - o/configstate: fix panic with a sequence of config unset ops over
  1308     same path
  1309   - api: provide meaningful error message on connect/disconnect for
  1310     non-installed snap
  1311   - interfaces/u2f-devices: add HyperFIDO Pro
  1312   - tests: add simple sanity check for systemctl show
  1313     --property=UnitFileState for unknown service
  1314   - tests: use tests.session tool on interfaces-desktop-document-
  1315     portal test
  1316   - wrappers: install D-Bus service activation files for snapd session
  1317     tools on core
  1318   - many: add x-gvfs-hide option to mount units
  1319   - interfaces/builtin/gpio_test.go: actually test the generated gpio
  1320     apparmor
  1321   - spread: tentative workaround for arch failure caused by libc
  1322     upgrade and cgroups v2
  1323   - tests: add spread test for snap validate against store assertions
  1324   - tests: remove snaps which are not used in any test
  1325   - ci: set the accept-existing-contributors parameter for the cla-
  1326     check action
  1327   - daemon: introduce apiBaseSuite.(json|sync|async|error)Req (and
  1328     some apiBaseSuite cosmetics)
  1329   - o/devicestate/devicemgr: register install-device hook, run if
  1330     present in install
  1331   - o/configstate/configcore: simple refactors in preparation for new
  1332     function
  1333   - tests: unifying the core20 nested suite with the core nested suite
  1334   - tests: uboot-unpacked-assets updated to reflect the real path used
  1335     to find the kernel
  1336   - daemon: switch api_test.go to daemon_test and various other
  1337     cleanups
  1338   - o/configstate/configcore/picfg.go: add hdmi_cvt support
  1339   - interfaces/apparmor: followup cleanups, comments and tweaks
  1340   - boot: cmd/snap-bootstrap: handle a candidate recovery system v2
  1341   - overlord/snapstate: skip catalog refresh when snappy testing is
  1342     enabled
  1343   - overlord/snapstate, overlord/ifacestate: move late security
  1344     profile removal to ifacestate
  1345   - snap-seccomp: fix seccomp test on ppc64el
  1346   - interfaces, interfaces/apparmor, overlord/snapstate: late removal
  1347     of snap-confine apparmor profiles
  1348   - cmd/snap-bootstrap/initramfs-mounts: move time forward using
  1349     assertion times
  1350   - tests: reset the system while preparing the test suite
  1351   - tests: fix snap-advise-command check for 429
  1352   - gadget: policy for gadget/kernel refreshes
  1353   - o/configstate: deal with no longer valid refresh.timer=managed
  1354   - interfaces/udisks2: allow locking /run/mount/utab for udisks 2.8.4
  1355   - cla-check: Use has-signed-canonical-cla GitHub Action
  1356   - tests: validation sets spread test
  1357   - tests: simplify the reset.sh logic by removing not needed command
  1358   - overlord/snapstate: make sure that snapd current symlink is not
  1359     removed during refresh
  1360   - tests/core/fsck-on-boot: unmount /run/mnt/snapd directly on uc20
  1361   - tests/lib/fde-setup-hook: also verify that fde-reveal-key key data
  1362     is base64
  1363   - o/devicestate: split off ensuring next boot goes to run mode into
  1364     new task
  1365   - tests: fix cgroup-tracking test
  1366   - boot: export helper for clearing tried system state, add tests
  1367   - cmd/snap: use less aggressive client timeouts in unit tests
  1368   - daemon: fix signing key validity timestamp in unit tests
  1369   - o/{device,hook}state: encode fde-setup-request key as base64
  1370     string
  1371   - packaging: drop dh-systemd from build-depends on ubuntu-16.04+
  1372   - cmd/snap/pack: unhide the compression option
  1373   - boot: extend set try recovery system unit tests
  1374   - cmd/snap-bootstrap: refactor handling of ubuntu-save, do not use
  1375     secboot's implicit fallback
  1376   - o/configstate/configcore: add hdmi_timings to pi-config
  1377   - snapstate: reduce reRefreshRetryTimeout to 1/2 second
  1378   - interfaces/tee: add TEE/OPTEE interface
  1379   - o/snapstate: update validation sets assertions with auto-refresh
  1380   - vendor: update go-tpm2/secboot to latest version
  1381   - seed: ReadSystemEssentialAndBetterEarliestTime
  1382   - tests: replace while commands with the retry tool
  1383   - interfaces/builtin: update unit tests to use proper distro's
  1384     libexecdir
  1385   - tests: run the reset.sh helper and check test invariants while the
  1386     test is restored
  1387   - daemon: switch preexisting daemon_test tests to apiBaseSuite and
  1388     .req
  1389   - boot, o/devicestate: split makeBootable20 into two parts
  1390   - interfaces/docker-support: add autobind unix rules to docker-
  1391     support
  1392   - interfaces/apparmor: allow reading
  1393     /proc/sys/kernel/random/entropy_avail
  1394   - tests: use retry tool instead a loops
  1395   - tests/main/uc20-create-partitions: fix tests cleanup
  1396   - asserts: mode where Database only assumes cur time >= earliest
  1397     time
  1398   - daemon: validation sets/api tests cleanup
  1399   - tests: improve tests self documentation for nested test suite
  1400   - api: local assertion fallback when it's not in the store
  1401   - api: validation sets monitor mode
  1402   - tests: use fs-state tool in interfaces tests
  1403   - daemon:  move out /v2/login|logout and errToResponse tests from
  1404     api_test.go
  1405   - boot: helper for inspecting the outcome of a recovery system try
  1406   - o/configstate, o/snapshotstate: fix handling of nil snap config on
  1407     snapshot restore
  1408   - tests: update documentation and checks for interfaces tests
  1409   - snap-seccomp: add new `close_range` syscall
  1410   - boot: revert #10009
  1411   - gadget: remove `device-tree{,-origin}` from gadget tests
  1412   - boot: simplify systems test setup
  1413   - image: write resolved-content from snap prepare-image
  1414   - boot: reseal the run key for all recovery systems, but recovery
  1415     keys only for the good ones
  1416   - interfaces/builtin/network-setup-{control,observe}: allow using
  1417     netplan directly
  1418   - tests: improve sections prepare and restore - part 1
  1419   - tests: update details on task.yaml files
  1420   - tests: revert os.query usage in spread.yaml
  1421   - boot: export bootAssetsMap as AssetsMap
  1422   - tests/lib/prepare: fix repacking of the UC20 kernel snap for with
  1423     ubuntu-core-initramfs 40
  1424   - client: protect against reading too much data from stdin
  1425   - tests: improve tests documentation - part 2
  1426   - boot: helper for setting up a try recover system
  1427   - tests: improve tests documentation - part 1
  1428   - tests/unit/go: use tests.session wrapper for running tests as a
  1429     user
  1430   - tests: improvements for snap-seccomp-syscalls
  1431   - gadget: simplify filterUpdate (thanks to Maciej)
  1432   - tests/lib/prepare.sh: use /etc/group and friends from the core20
  1433     snap
  1434   - tests: fix tumbleweed spread tests part 2
  1435   - tests: use new commands of os.query tool on tests
  1436   - o/snapshotstate: create snapshots directory on import
  1437   - tests/main/lxd/prep-snapd-in-lxd.sh: dump contents of sources.list
  1438   - packaging: drop 99-snapd.conf via dpkg-maintscript-helper
  1439   - osutil: add SetTime() w/ 32-bit and 64-bit implementations
  1440   - interfaces/wayland: rm Xwayland Xauth file access from wayland
  1441     slot
  1442   - packaging/ubuntu-16.04/rules: turn modules off explicitly
  1443   - gadget,devicestate: perform kernel asset update for $kernel: style
  1444     refs
  1445   - cmd/recovery: small fix for `snap recovery` tab output
  1446   - bootloader/lkenv: add recovery systems related variables
  1447   - tests: fix new tumbleweed image
  1448   - boot: fix typo, should be systems
  1449   - o/devicestate: test that users.create.automatic is configured
  1450     early
  1451   - asserts: use Fetcher in AddSequenceToUpdate
  1452   - daemon,o/c/configcore: introduce users.create.automatic
  1453   - client, o/servicestate: expose enabled state of user daemons
  1454   - boot: helper for checking and marking tried recovery system status
  1455     from initramfs
  1456   - asserts: pool changes for validation-sets (#9930)
  1457   - daemon: move the last api_foo_test.go to daemon_test
  1458   - asserts: include the assertion timestamp in error message when
  1459     outside of signing key validity range
  1460   - ovelord/snapshotstate: keep a few of the last line tar prints
  1461     before failing
  1462   - gadget/many: rm, delay sector size + structure size checks to
  1463     runtime
  1464   - cmd/snap-bootstrap/triggerwatch: fix returning wrong errors
  1465   - interfaces: add allegro-vcu and media-control interfaces
  1466   - interfaces: opengl: add Xilinx zocl bits
  1467   - mkversion: check that version from changelog is set before
  1468     overriding the output version
  1469   - many: fix new ineffassign warnings
  1470   - .github/workflows/labeler.yaml: try work-around to not sync
  1471     labels
  1472   - cmd/snap, boot: add debug set-boot-vars
  1473   - interfaces: allow reading the Xauthority file KDE Plasma writes
  1474     for Wayland sessions
  1475   - tests/main/snap-repair: test running repair assertion w/ fakestore
  1476   - tests: disable lxd tests for 21.04 until the lxd images are
  1477     published for the system
  1478   - tests/regression/lp-1910456: cleanup the /snap symlink when done
  1479   - daemon: move single snap querying and ops to api_snaps.go
  1480   - tests: fix for preseed and dbus tests on 21.04
  1481   - overlord/snapshotstate: include the last message printed by tar in
  1482     the error
  1483   - interfaces/system-observe: Allow reading /proc/zoneinfo
  1484   - interfaces: remove apparmor downgrade feature
  1485   - snap: fix unit tests on Go 1.16
  1486   - spread: disable Go modules support in environment
  1487   - tests: use new path to find kernel.img in uc20 for arm devices
  1488   - tests: find files before using cat command when checking broadcom-
  1489     asic-control interface
  1490   - boot: introduce good recovery systems, provide compatibility
  1491     handling
  1492   - overlord: add manager gadget refresh test
  1493   - tests/lib/fakestore: support repair assertions too
  1494   - github: temporarily disable action labeler due to issues with
  1495     labels being removed
  1496   - o/devicestate,many: introduce DeviceManager.preloadGadget for
  1497     EarlyConfig
  1498   - tests: enable ubuntu 21.04 for spread tests
  1499   - snap: provide a useful error message if gdbserver is not installed
  1500   - data/selinux: allow system dbus to watch /var/lib/snapd/dbus-1
  1501   - tests/lib/prepare.sh: split reflash.sh into two parts
  1502   - packaging/opensuse: sync with openSUSE packaging
  1503   - packaging: disable Go modules in snapd.mk
  1504   - snap: add deprecation noticed to "snap run --gdb"
  1505   - daemon: add API for checking and installing available theme snaps
  1506   - tests: using labeler action to add automatically a label to run
  1507     nested tests
  1508   - gadget: improve error handling around resolving content sources
  1509   - asserts: repeat the authority cross-check in CheckSignature as
  1510     well
  1511   - interfaces/seccomp/template.go: allow copy_file_range
  1512   - o/snapstate/check_snap.go: add support for many subversions in
  1513     assumes snapdX..
  1514   - daemon: move postSnap and inst.dispatch tests to api_snaps_test.go
  1515   - wrappers: use proper paths for mocked mount units in tests
  1516   - snap: rename gdbserver option to `snap run --gdbserver`
  1517   - store: support validation sets with fetch-assertions action
  1518   - snap-confine.apparmor.in: support tmp and log dirs on Yocto/Poky
  1519   - packaging/fedora: sync with downstream packaging in Fedora
  1520   - many: add Delegate=true to generated systemd units for special
  1521     interfaces (master)
  1522   - boot: use a common helper for mocking boot assets in cache
  1523   - api: validate snaps against validation set assert from the store
  1524   - wrappers: don't generate an [Install] section for timer or dbus
  1525     activated services
  1526   - tests/nested/core20/boot-config-update: skip when snapd was not
  1527     built with test features
  1528   - o/configstate,o/devicestate: introduce devicestate.EarlyConfig
  1529     implemented by configstate.EarlyConfig
  1530   - cmd/snap-bootstrap/initramfs-mounts: fix typo in func name
  1531   - interfaces/builtin: mock distribution in fontconfig cache unit
  1532     tests
  1533   - tests/lib/prepare.sh: add another console= to the reflash magic
  1534     grub entry
  1535   - overlord/servicestate: expose dbus activators of a service
  1536   - desktop/notification: test against a real session bus and
  1537     notification server implementation
  1538   - cmd/snap-bootstrap/initramfs-mounts: write realistic modeenv for
  1539     recover+install
  1540   - HACKING.md: explain how to run UC20 spread tests with QEMU
  1541   - asserts: introduce AtSequence
  1542   - overlord/devicestate: task for updating boot configs, spread test
  1543   - gadget: fix documentation/typos
  1544   - gadget: cleanup MountedFilesystem{Writer,Updater}
  1545   - gadget: use ResolvedSource in MountedFilesystemWriter
  1546   - snap/info.go: add doc-comment for SortServices
  1547   - interfaces: add an optional mount-host-font-cache plug attribute
  1548     to the desktop interface
  1549   - osutil: skip TestReadBuildGo inside sbuild
  1550   - o/hookstate/ctlcmd: add optional --pid and --apparmor-label
  1551     arguments to "snapctl is-connected"
  1552   - data/env/snapd: use quoting in case PATH contains spaces
  1553   - boot: do not observe successful boot assets if not in run mode
  1554   - tests: fix umount for snapd snap on fsck-on-boot testumount:
  1555     /run/mnt/ubuntu-seed/systems/*/snaps/snapd_*.snap: no mount
  1556   - misc: little tweaks
  1557   - snap/info.go: ignore unknown daemons in SortSnapServices
  1558   - devicestate: keep log from install-mode on installed system
  1559   - seed: add LoadEssentialMeta to seed16 and allow all of its
  1560     implementations to be called multiple times
  1561   - cmd/snap-preseed: initialize snap.SanitizePlugsSlots for gadget in
  1562     seeds
  1563   - tests/core/uc20-recovery: move recover mode helpers to generic
  1564     testslib script
  1565   - interfaces/fwupd: allow any distros to access fw files via fwupd
  1566   - store: method for fetching validation set assertion
  1567   - store: switch to v2/assertions api
  1568   - gadget: add new ResolvedContent and populate from LayoutVolume()
  1569   - spread: use full format when listing processes
  1570   - osutil/many: make all test pkgs osutil_test instead of "osutil"
  1571   - tests/unit/go: drop unused environment variables, skip coverage
  1572   - OpenGL interface: Support more Tegra libs
  1573   - gadget,overlord: pass kernelRoot to install.Run()
  1574   - tests: run unit tests in Focal instead of Xenial
  1575   - interfaces/browser-support: allow sched_setaffinity with browser-
  1576     sandbox: true
  1577   - daemon: move query /snaps/<name> tests to api_snaps_test.go
  1578   - cmd/snap-repair/runner.go: add SNAP_SYSTEM_MODE to env of repair
  1579     runner
  1580   - systemd/systemd.go: support journald JSON messages with arrays for
  1581     values
  1582   - cmd: make string/error code more robust against errno leaking
  1583   - github, run-checks: do not collect coverage data on subsequent
  1584     test runs
  1585   - boot: boot config update & reseal
  1586   - o/snapshotstate: handle conflicts between snapshot forget, export
  1587     and import
  1588   - osutil/stat.go: add RegularFileExists
  1589   - cmd/snapd-generator: don't create mount overrides for snap-try
  1590     snaps inside lxc
  1591   - gadget/gadget.go: rename ubuntu-* to system-* in doc-comment
  1592   - tests: use 6 spread workers for centos8
  1593   - bootloader/assets: support injecting bootloader assets in testing
  1594     builds of snapd
  1595   - gadget: enable multi-volume uc20 gadgets in
  1596     LaidOutSystemVolumeFromGadget; rename too
  1597   - overlord/devicestate, sysconfig: do nothing when cloud-init is not
  1598     present
  1599   - cmd/snap-repair: filter repair assertions based on bases + modes
  1600   - snap-confine: make host /etc/ssl available for snaps on classic
  1601  
  1602  * Fri Mar 26 2021 Michael Vogt <mvo@ubuntu.com>
  1603  - New upstream release 2.49.2
  1604   - interfaces/tee: add TEE/OPTEE interface
  1605   - o/configstate/configcore: add hdmi_timings to pi-config
  1606   - interfaces/udisks2: allow locking /run/mount/utab for udisks 2.8.4
  1607   - snap-seccomp: fix seccomp test on ppc64el
  1608   - interfaces{,/apparmor}, overlord/snapstate:
  1609     late removal of snap-confine apparmor profiles
  1610   - overlord/snapstate, wrappers: add dependency on usr-lib-
  1611     snapd.mount for services on core with snapd snap
  1612   - o/configstate: deal with no longer valid refresh.timer=managed
  1613   - overlord/snapstate: make sure that snapd current symlink is not
  1614     removed during refresh
  1615   - packaging: drop dh-systemd from build-depends on ubuntu-16.04+
  1616   - o/{device,hook}state: encode fde-setup-request key as base64
  1617   - snapstate: reduce reRefreshRetryTimeout to 1/2 second
  1618   - tests/main/uc20-create-partitions: fix tests cleanup
  1619   - o/configstate, o/snapshotstate: fix handling of nil snap config on
  1620     snapshot restore
  1621   - snap-seccomp: add new `close_range` syscall
  1622  
  1623  * Mon Mar 08 2021 Michael Vogt <mvo@ubuntu.com>
  1624  - New upstream release 2.49.1
  1625   - tests: turn modules off explicitly in spread go unti test
  1626   - o/snapshotstate: create snapshots directory on import
  1627   - cmd/snap-bootstrap/triggerwatch: fix returning wrong errors
  1628   - interfaces: add allegro-vcu and media-control interfaces
  1629   - interfaces: opengl: add Xilinx zocl bits
  1630   - many: fix new ineffassign warnings
  1631   - interfaces/seccomp/template.go: allow copy_file_range
  1632   - interfaces: allow reading the Xauthority file KDE Plasma writes
  1633     for Wayland sessions
  1634   - data/selinux: allow system dbus to watch
  1635     /var/lib/snapd/dbus-1
  1636   - Remove apparmor downgrade feature
  1637   - Support tmp and log dirs on Yocto/Poky
  1638  
  1639  * Wed Feb 10 2021 Michael Vogt <mvo@ubuntu.com>
  1640  - New upstream release 2.49
  1641   - many: add Delegate=true to generated systemd units for special
  1642     interfaces
  1643   - cmd/snap-bootstrap: rename ModeenvFromModel to
  1644     EphemeralModeenvForModel
  1645   - cmd/snap-bootstrap/initramfs-mounts: write realistic modeenv for
  1646     recover+install
  1647   - osutil: skip TestReadBuildGo inside sbuild
  1648   - tests: fix umount for snapd snap on fsck-on-boot test
  1649   - snap/info_test.go: add unit test cases for bug
  1650   - tests/main/services-after-before: add regression spread test
  1651   - snap/info.go: ignore unknown daemons in SortSnapServices
  1652   - cmd/snap-preseed: initialize snap.SanitizePlugsSlots for gadget in
  1653     seeds
  1654   - OpenGL interface: Support more Tegra libs
  1655   - interfaces/browser-support: allow sched_setaffinity with browser-
  1656     sandbox: true
  1657   - cmd: make string/error code more robust against errno leaking
  1658   - o/snapshotstate: handle conflicts between snapshot forget, export
  1659     and import
  1660   - cmd/snapd-generator: don't create mount overrides for snap-try
  1661     snaps inside lxc
  1662   - tests: update test pkg for fedora and centos
  1663   - gadget: pass sector size in to mkfs family of functions, use to
  1664     select block sz
  1665   - o/snapshotstate: fix returning of snap names when duplicated
  1666     snapshot is detected
  1667   - tests/main/snap-network-errors: skip flushing dns cache on
  1668     centos-7
  1669   - interfaces/builtin: Allow DBus property access on
  1670     org.freedesktop.Notifications
  1671   - cgroup-support.c: fix link to CGROUP DELEGATION
  1672   - osutil: update go-udev package
  1673   - packaging: fix arch-indep build on debian-sid
  1674   - {,sec}boot: pass "key-name" to the FDE hooks
  1675   - asserts: sort by revision with Sort interface
  1676   - gadget: add gadget.ResolveContentPaths()
  1677   - cmd/snap-repair: save base snap and mode in device info; other
  1678     misc cleanups
  1679   - tests: cleanup the run-checks script
  1680   - asserts: snapasserts method to validate installed snaps against
  1681     validation sets
  1682   - tests: normalize test tools - part 1
  1683   - snapshotstate: detect duplicated snapshot imports
  1684   - interfaces/builtin: fix unit test expecting snap-device-helper at
  1685     /usr/lib/snapd
  1686   - tests: apply workaround done for snap-advise-command to apt-hooks
  1687     test
  1688   - tests: skip main part of snap-advise test if 429 error is
  1689     encountered
  1690   - many: clarify gadget role-usage consistency checks for UC16/18 vs
  1691     UC20
  1692   - sandbox/cgroup, tess/main: fix unit tests on v2 system, disable
  1693     broken tests on sid
  1694   - interfaces/builtin: more drive by fixes, import ordering, removing
  1695     dead code
  1696   - tests: skip interfaces-openvswitch spread test on debian sid
  1697   - interfaces/apparmor: drive by comment fix
  1698   - cmd/libsnap-confine-private/cleanup-funcs-test.c: rm g_autofree
  1699     usage
  1700   - cmd/libsnap-confine-private: make unit tests execute happily in a
  1701     container
  1702   - interfaces, wrappers: misc comment fixes, etc.
  1703   - asserts/repair.go: add "bases" and "modes" support to the repair
  1704     assertion
  1705   - interfaces/opengl: allow RPi MMAL video decoding
  1706   - snap: skip help output tests for go-flags v1.4.0
  1707   - gadget: add validation for "$kernel:ref" style content
  1708   - packaging/deb, tests/main/lxd-postrm-purge: fix purge inside
  1709     containers
  1710   - spdx: update to SPDX license list version: 3.11 2020-11-25
  1711   - tests: improve hotplug test setup on classic
  1712   - tests: update check to verify is the current system is arm
  1713   - tests: use os-query tool to check debian, trusty and tumbleweed
  1714   - daemon: start moving implementation to api_snaps.go
  1715   - tests/main/snap-validate-basic: disable test on Fedora due to go-
  1716     flags panics
  1717   - tests: fix library path used for tests.pkgs
  1718   - tests/main/cohorts: replace yq with a Python snippet
  1719   - run-checks: update to match new argument syntax of ineffassign
  1720   - tests: use apiBaseSuite for snapshots tests, fix import endpoint
  1721     path
  1722   - many: separate consistency/content validation into
  1723     gadget.Validate|Content
  1724   - o/{device,snap}state: enable devmode snaps with dangerous model
  1725     assertions
  1726     secboot: add test for when systemd-run does not honor
  1727     RuntimeMaxSec
  1728   - secboot: add workaround for snapcore/core-initrd issue #13
  1729   - devicestate: log checkEncryption errors via logger.Noticef
  1730   - o/daemon: validation sets api and basic spread test
  1731   - gadget: move BuildPartitionList to install and make it unexported
  1732   - tests: add nested spread end-to-end test for fde-hooks
  1733   - devicestate: implement checkFDEFeatures()
  1734   - boot: tweak resealing with fde-setup hooks
  1735   - tests: add os query commands for subsystems and architectures
  1736   - o/snapshotstate: don't set auto flag in the snapshot file
  1737   - tests: use os.query tool instead of comparing the system var
  1738   - testutil: use the original environment when calling shellcheck
  1739   - sysconfig/cloudinit.go: add "manual_cache_clean: true" to cloud-
  1740     init restrict file
  1741   - gadget,o/devicestate,tests: drop EffectiveFilesystemLabel and
  1742     instead set the implicit labels when loading the yaml
  1743   - secboot: add new LockSealedKeys() that uses either TPM/fde-reveal-
  1744     key
  1745   - gadget/quantity: introduce Offset, start using it for offset
  1746     related fields in the gadget
  1747   - gadget: use "sealed-keys" to determine what method to use for
  1748     reseal
  1749   - tests/main/fake-netplan-apply: disable test on xenial for now
  1750   - daemon: start splitting snaps op tests out of api_test.go
  1751   - testutil: make DBusTest use a custom bus configuration file
  1752   - tests: replace pkgdb.sh (library) with tests.pkgs (program)
  1753   - gadget: prepare gadget kernel refs (0/N)
  1754   - interfaces/builtin/docker-support: allow /run/containerd/s/...
  1755   - cmd/snap-preseed: reset run inhibit locks on --reset.
  1756   - boot: add sealKeyToModeenvUsingFdeSetupHook()
  1757   - daemon: reorg snap.go and split out sections and icons support
  1758     from api.go
  1759   - sandbox/seccomp: use snap-seccomp's stdout for getting version
  1760     info
  1761   - daemon: split find support to its own api_*.go files and move some
  1762     helpers
  1763   - tests: move snapstate config defaults tests to a separate file.
  1764   - bootloader/{lk,lkenv}: followups from #9695
  1765   - daemon: actually move APIBaseSuite to daemon_test.apiBaseSuite
  1766   - gadget,o/devicestate: set implicit values for schema and role
  1767     directly instead of relying on Effective* accessors
  1768   - daemon: split aliases support to its own api_*.go files
  1769   - gadget: start separating rule/convention validation from basic
  1770     soundness
  1771   - cmd/snap-update-ns: add better unit test for overname sorting
  1772   - secboot: use `fde-reveal-key` if available to unseal key
  1773   - tests: fix lp-1899664 test when snapd_x1 is not installed in the
  1774     system
  1775   - tests: fix the scenario when the "$SRC".orig file does not exist
  1776   - cmd/snap-update-ns: fix sorting of overname mount entries wrt
  1777     other entries
  1778   - devicestate: add runFDESetupHook() helper
  1779   - bootloader/lk: add support for UC20 lk bootloader with V2 lkenv
  1780     structs
  1781   - daemon: split unsupported buy implementation to its own api_*.go
  1782     files
  1783   - tests: download timeout spread test
  1784   - gadget,o/devicestate: hybrid 18->20 ready volume setups should be
  1785     valid
  1786   - o/devicestate: save model with serial in the device save db
  1787   - bootloader: add check for prepare-image time and more tests
  1788     validating options
  1789   - interfaces/builtin/log_observe.go: allow controlling apparmor
  1790     audit levels
  1791   - hookstate: refactor around EphemeralRunHook
  1792   - cmd/snap: implement 'snap validate' command
  1793   - secboot,devicestate: add scaffoling for "fde-reveal-key" support
  1794   - boot: observe successful command line update, provide a default
  1795   - tests: New queries for the os tools
  1796   - bootloader/lkenv: specify backup file as arg to NewEnv(), use ""
  1797     as path+"bak"
  1798   - osutil/disks: add FindMatchingPartitionUUIDWithPartLabel to Disk
  1799     iface
  1800   - daemon: split out snapctl support and snap configuration support
  1801     to their own api_*.go files
  1802   - snapshotstate: improve handling of multiple errors
  1803   - tests: sign new nested-18|20* models to allow for generic serials
  1804   - bootloader: remove installableBootloader interface and methods
  1805   - seed: cleanup/drop some no longer valid TODOS, clarify some other
  1806     points
  1807   - boot: set kernel command line in modeenv during install
  1808   - many: rename disks.FindMatching... to FindMatching...WithFsLabel
  1809     and err type
  1810   - cmd/snap: suppress a case of spurious stdout logging from tests
  1811   - hookstate: add new HookManager.EphemeralRunHook()
  1812   - daemon: move some more api tests from daemon to daemon_test
  1813   - daemon: split apps and logs endpoints to api_apps.go and tests
  1814   - interfaces/utf: Add Ledger to U2F devices
  1815   - seed/seedwriter: consider modes when checking for deps
  1816     availability
  1817   - o/devicestate,daemon: fix reboot system action to not require a
  1818     system label
  1819   - cmd/snap-repair,store: increase initial retry time intervals,
  1820     stalling TODOs
  1821   - daemon: split interfacesCmd to api_interfaces.go
  1822   - github: run nested suite when commit is pushed to release branch
  1823   - client: reduce again the /v2/system-info timeout
  1824   - tests: reset fakestore unit status
  1825   - update-pot: fix typo in plural keyword spec
  1826   - tests: remove workarounds that add "ubuntu-save" if missing
  1827   - tests: add unit test for auto-refresh with validate-snap failure
  1828   - osutil: add helper for getting the kernel command line
  1829   - tests/main/uc20-create-partitions: verify ubuntu-save encryption
  1830     keys, tweak not MATCH
  1831   - boot: add kernel command lines to the modeenv file
  1832   - spread: bump delta ref, tweak repacking to make smaller delta
  1833     archives
  1834   - bootloader/lkenv: add v2 struct + support using it
  1835   - snapshotstate: add cleanup of abandonded snapshot imports
  1836   - tests: fix uc20-create-parition-* tests for updated gadget
  1837   - daemon: split out /v2/interfaces tests to api_interfaces_test.go
  1838   - hookstate: implement snapctl fde-setup-{request,result}
  1839   - wrappers, o/devicestate: remove EnableSnapServices
  1840   - tests: enable nested on 20.10
  1841   - daemon: simplify test helpers Get|PostReq into Req
  1842   - daemon: move general api to api_general*.go
  1843   - devicestate: make checkEncryption fde-setup hook aware
  1844   - client/snapctl, store: fix typos
  1845   - tests/main/lxd/prep-snapd-in-lxd.sh: wait for valid apt files
  1846     before doing apt ops
  1847   - cmd/snap-bootstrap: update model cross-check considerations
  1848   - client,snapctl: add naive support for "stdin"
  1849   - many: add new "install-mode: disable" option
  1850   - osutil/disks: allow building on mac os
  1851   - data/selinux: update the policy to allow operations on non-tmpfs
  1852     /tmp
  1853   - boot: add helper for generating candidate kernel lines for
  1854     recovery system
  1855   - wrappers: generate D-Bus service activation files
  1856   - bootloader/many: rm ConfigFile, add Present for indicating
  1857     presence of bloader
  1858   - osutil/disks: allow mocking DiskFromDeviceName
  1859   - daemon: start cleaning up api tests
  1860   - packaging/arch: sync with AUR packaging
  1861   - bootloader: indicate when boot config was updated
  1862   - tests: Fix snap-debug-bootvars test to make it work on arm devices
  1863     and core18
  1864   - tests/nested/manual/core20-save: verify handling of ubuntu-save
  1865     with different system variants
  1866   - snap: use the boot-base for kernel hooks
  1867   - devicestate: support "storage-safety" defaults during install
  1868   - bootloader/lkenv: mv v1 to separate file,
  1869     include/lk/snappy_boot_v1.h: little fixups
  1870   - interfaces/fpga: add fpga interface
  1871   - store: download timeout
  1872   - vendor: update secboot repo to avoid including secboot.test binary
  1873   - osutil: add KernelCommandLineKeyValue
  1874   - gadget/gadget.go: allow system-recovery-{image,select} as roles in
  1875     gadget.yaml
  1876   - devicestate: implement boot.HasFDESetupHook
  1877   - osutil/disks: add DiskFromName to get a disk using a udev name
  1878   - usersession/agent: have session agent connect to the D-Bus session
  1879     bus
  1880   - o/servicestate: preserve order of services on snap restart
  1881   - o/servicestate: unlock state before calling wrappers in
  1882     doServiceControl
  1883   - spread: disable unattended-upgrades on ubuntu
  1884   - tests: testing new fedora 33 image
  1885   - tests: fix fsck on boot on arm devices
  1886   - tests: skip boot state test on arm devices
  1887   - tests: updated the systems to run prepare-image-grub test
  1888   - interfaces/raw_usb: allow read access to /proc/tty/drivers
  1889   - tests: unmount /boot/efi in fsck-on-boot test
  1890   - strutil/shlex,osutil/udev/netlink: minimally import go-check
  1891   - tests: fix basic20 test on arm devices
  1892   - seed: make a shared seed system label validation helper
  1893   - tests/many: enable some uc20 tests, delete old unneeded tests or
  1894     TODOs
  1895   - boot/makebootable.go: set snapd_recovery_mode=install at image-
  1896     build time
  1897   - tests: migrate test from boot.sh helper to boot-state tool
  1898   - asserts: implement "storage-safety" in uc20 model assertion
  1899   - bootloader: use ForGadget when installing boot config
  1900   - spread: UC20 no longer needs 2GB of mem
  1901   - cmd/snap-confine: implement snap-device-helper internally
  1902   - bootloader/grub: replace old reference to Managed...Blr... with
  1903     Trusted...Blr...
  1904   - cmd/snap-bootstrap: add readme for snap-bootstrap + real state
  1905     diagram
  1906   - interfaces: fix greengrass attr namingThe flavor attribute names
  1907     are now as follows:
  1908   - tests/lib/nested: poke the API to get the snap revisions
  1909   - tests: compare options of mount units created by snapd and snapd-
  1910     generator
  1911   - o/snapstate,servicestate: use service-control task for service
  1912     actions
  1913   - sandbox: track applications unconditionally
  1914   - interfaces/greengrass-support: add additional "process" flavor for
  1915     1.11 update
  1916   - cmd/snap-bootstrap, secboot, tests: misc cleanups, add spread test
  1917  
  1918  * Thu Dec 15 2020 Michael Vogt <mvo@ubuntu.com>
  1919  - New upstream release 2.48.2
  1920   - tests: sign new nested-18|20* models to allow for generic serials
  1921   - secboot: add extra paranoia when waiting for that fde-reveal-key
  1922   - tests: backport netplan workarounds from #9785
  1923   - secboot: add workaround for snapcore/core-initrd issue #13
  1924   - devicestate: log checkEncryption errors via logger.Noticef
  1925   - tests: add nested spread end-to-end test for fde-hooks
  1926   - devicestate: implement checkFDEFeatures()
  1927   - boot: tweak resealing with fde-setup hooks
  1928   - sysconfig/cloudinit.go: add "manual_cache_clean: true" to cloud-
  1929     init restrict file
  1930   - secboot: add new LockSealedKeys() that uses either TPM or
  1931     fde-reveal-key
  1932   - gadget: use "sealed-keys" to determine what method to use for
  1933     reseal
  1934   - boot: add sealKeyToModeenvUsingFdeSetupHook()
  1935   - secboot: use `fde-reveal-key` if available to unseal key
  1936   - cmd/snap-update-ns: fix sorting of overname mount entries wrt
  1937     other entries
  1938   - o/devicestate: save model with serial in the device save db
  1939   - devicestate: add runFDESetupHook() helper
  1940   - secboot,devicestate: add scaffoling for "fde-reveal-key" support
  1941   - hookstate: add new HookManager.EphemeralRunHook()
  1942   - update-pot: fix typo in plural keyword spec
  1943   - store,cmd/snap-repair: increase initial expontential time
  1944     intervals
  1945   - o/devicestate,daemon: fix reboot system action to not require a
  1946     system label
  1947   - github: run nested suite when commit is pushed to release branch
  1948   - tests: reset fakestore unit status
  1949   - tests: fix uc20-create-parition-* tests for updated gadget
  1950   - hookstate: implement snapctl fde-setup-{request,result}
  1951   - devicestate: make checkEncryption fde-setup hook aware
  1952   - client,snapctl: add naive support for "stdin"
  1953   - devicestate: support "storage-safety" defaults during install
  1954   - snap: use the boot-base for kernel hooks
  1955   - vendor: update secboot repo to avoid including secboot.test binary
  1956  
  1957  * Thu Dec 03 2020 Michael Vogt <mvo@ubuntu.com>
  1958  - New upstream release 2.48.1
  1959   - gadget: disable ubuntu-boot role validation check
  1960  
  1961  * Thu Nov 19 2020 Michael Vogt <mvo@ubuntu.com>
  1962  - New upstream release 2.48
  1963   - osutil: add KernelCommandLineKeyValue
  1964   - devicestate: implement boot.HasFDESetupHook
  1965   - boot/makebootable.go: set snapd_recovery_mode=install at image-
  1966     build time
  1967   - bootloader: use ForGadget when installing boot config
  1968   - interfaces/raw_usb: allow read access to /proc/tty/drivers
  1969   - boot: add scaffolding for "fde-setup" hook support for sealing
  1970   - tests: fix basic20 test on arm devices
  1971   - seed: make a shared seed system label validation helper
  1972   - snap: add new "fde-setup" hooktype
  1973   - cmd/snap-bootstrap, secboot, tests: misc cleanups, add spread test
  1974   - secboot,cmd/snap-bootstrap: fix degraded mode cases with better
  1975     device handling
  1976   - boot,dirs,c/snap-bootstrap: avoid InstallHost* at the cost of some
  1977     messiness
  1978   - tests/nested/manual/refresh-revert-fundamentals: temporarily
  1979     disable secure boot
  1980   - snap-bootstrap,secboot: call BlockPCRProtectionPolicies in all
  1981     boot modes
  1982   - many: address degraded recover mode feedback, cleanups
  1983   - tests: Use systemd-run on tests part2
  1984   - tests: set the opensuse tumbleweed system as manual in spread.yaml
  1985   - secboot: call BlockPCRProtectionPolicies even if the TPM is
  1986     disabled
  1987   - vendor: update to current secboot
  1988   - cmd/snap-bootstrap,o/devicestate: use a secret to pair data and
  1989     save
  1990   - spread.yaml: increase number of workers on 20.10
  1991   - snap: add new `snap recovery --show-keys` option
  1992   - tests: minor test tweaks suggested in the review of 9607
  1993   - snapd-generator: set standard snapfuse options when generating
  1994     units for containers
  1995   - tests: enable lxd test on ubuntu-core-20 and 16.04-32
  1996   - interfaces: share /tmp/.X11-unix/ from host or provider
  1997   - tests: enable main lxd test on 20.10
  1998   - cmd/s-b/initramfs-mounts: refactor recover mode to implement
  1999     degraded mode
  2000   - gadget/install: add progress logging
  2001   - packaging: keep secboot/encrypt_dummy.go in debian
  2002   - interfaces/udev: use distro specific path to snap-device-helper
  2003   - o/devistate: fix chaining of tasks related to regular snaps when
  2004     preseeding
  2005   - gadget, overlord/devicestate: validate that system supports
  2006     encrypted data before install
  2007   - interfaces/fwupd: enforce the confined fwupd to align Ubuntu Core
  2008     ESP layout
  2009   - many: add /v2/system-recovery-keys API and client
  2010   - secboot, many: return UnlockMethod from Unlock* methods for future
  2011     usage
  2012   - many: mv keys to ubuntu-boot, move model file, rename keyring
  2013     prefix for secboot
  2014   - tests: using systemd-run instead of manually create a systemd unit
  2015     - part 1
  2016   - secboot, cmd/snap-bootstrap: enable or disable activation with
  2017     recovery key
  2018   - secboot: refactor Unlock...IfEncrypted to take keyfile + check
  2019     disks first
  2020   - secboot: add LockTPMSealedKeys() to lock access to keys
  2021     independently
  2022   - gadget: correct sfdisk arguments
  2023   - bootloader/assets/grub: adjust fwsetup menuentry label
  2024   - tests: new boot state tool
  2025   - spread: use the official image for Ubuntu 20.10, no longer an
  2026     unstable system
  2027   - tests/lib/nested: enable snapd logging to console for core18
  2028   - osutil/disks: re-implement partition searching for disk w/ non-
  2029     adjacent parts
  2030   - tests: using the nested-state tool in nested tests
  2031   - many: seal a fallback object to the recovery boot chain
  2032   - gadget, gadget/install: move helpers to install package, refactor
  2033     unit tests
  2034   - dirs: add "gentoo" to altDirDistros
  2035   - update-pot: include file locations in translation template, and
  2036     extract strings from desktop files
  2037   - gadget/many: drop usage of gpt attr 59 for indicating creation of
  2038     partitions
  2039   - gadget/quantity: tweak test name
  2040   - snap: fix failing unittest for quantity.FormatDuration()
  2041   - gadget/quantity: introduce a new package that captures quantities
  2042   - o/devicestate,a/sysdb: make a backup of the device serial to save
  2043   - tests: fix rare interaction of tests.session and specific tests
  2044   - features: enable classic-preserves-xdg-runtime-dir
  2045   - tests/nested/core20/save: check the bind mount and size bump
  2046   - o/devicetate,dirs: keep device keys in ubuntu-save/save for UC20
  2047   - tests: rename hasHooks to hasInterfaceHooks in the ifacestate
  2048     tests
  2049   - o/devicestate: unit test tweaks
  2050   - boot: store the TPM{PolicyAuthKey,LockoutAuth}File in ubuntu-save
  2051   - testutil, cmd/snap/version: fix misc little errors
  2052   - overlord/devicestate: bind mount ubuntu-save under
  2053     /var/lib/snapd/save on startup
  2054   - gadget/internal: tune ext4 setting for smaller filesystems
  2055   - tests/nested/core20/save: a test that verifies ubuntu-save is
  2056     present and set up
  2057   - tests: update google sru backend to support groovy
  2058   - o/ifacestate: handle interface hooks when preseeding
  2059   - tests: re-enable the apt hooks test
  2060   - interfaces,snap: use correct type: {os,snapd} for test data
  2061   - secboot: set metadata and keyslots sizes when formatting LUKS2
  2062     volumes
  2063   - tests: improve uc20-create-partitions-reinstall test
  2064   - client, daemon, cmd/snap: cleanups from #9489 + more unit tests
  2065   - cmd/snap-bootstrap: mount ubuntu-save during boot if present
  2066   - secboot: fix doc comment on helper for unlocking volume with key
  2067   - tests: add spread test for refreshing from an old snapd and core18
  2068   - o/snapstate: generate snapd snap wrappers again after restart on
  2069     refresh
  2070   - secboot: version bump, unlock volume with key
  2071   - tests/snap-advise-command: re-enable test
  2072   - cmd/snap, snapmgr, tests: cleanups after #9418
  2073   - interfaces: deny connected x11 plugs access to ICE
  2074   - daemon,client: write and read a maintenance.json file for when
  2075     snapd is shut down
  2076   - many: update to secboot v1 (part 1)
  2077   - osutil/disks/mockdisk: panic if same mountpoint shows up again
  2078     with diff opts
  2079   - tests/nested/core20/gadget,kernel-reseal: add sanity checks to the
  2080     reseal tests
  2081   - many: implement snap routine console-conf-start for synchronizing
  2082     auto-refreshes
  2083   - dirs, boot: add ubuntu-save directories and related locations
  2084   - usersession: fix typo in test name
  2085   - overlord/snapstate: refactor ihibitRefresh
  2086   - overlord/snapstate: stop warning about inhibited refreshes
  2087   - cmd/snap: do not hardcode snapshot age value
  2088   - overlord,usersession: initial notifications of pending refreshes
  2089   - tests: add a unit test for UpdateMany where a single snap fails
  2090   - o/snapstate/catalogrefresh.go: don't refresh catalog in install
  2091     mode uc20
  2092   - tests: also check snapst.Current in undo-unlink tests
  2093   - tests: new nested tool
  2094   - o/snapstate: implement undo handler for unlink-snap
  2095   - tests: clean systems.sh helper and migrate last set of tests
  2096   - tests: moving the lib section from systems.sh helper to os.query
  2097     tool
  2098   - tests/uc20-create-partitions: don't check for grub.cfg
  2099   - packaging: make sure that static binaries are indeed static, fix
  2100     openSUSE
  2101   - many: have install return encryption keys for data and save,
  2102     improve tests
  2103   - overlord: add link participant for linkage transitions
  2104   - tests: lxd smoke test
  2105   - tests: add tests for fsck; cmd/s-b/initramfs-mounts: fsck ubuntu-
  2106     seed too
  2107   - tests: moving main suite from systems.sh to os.query tool
  2108   - tests: moving the core test suite from systems.sh to os.query tool
  2109   - cmd/snap-confine: mask host's apparmor config
  2110   - o/snapstate: move setting updated SnapState after error paths
  2111   - tests: add value to INSTANCE_KEY/regular
  2112   - spread, tests: tweaks for openSUSE
  2113   - cmd/snap-confine: update path to snap-device-helper in AppArmor
  2114     profile
  2115   - tests: new os.query tool
  2116   - overlord/snapshotstate/backend: specify tar format for snapshots
  2117   - tests/nested/manual/minimal-smoke: use 384MB of RAM for nested
  2118     UC20
  2119   - client,daemon,snap: auto-import does not error on managed devices
  2120   - interfaces: PTP hardware clock interface
  2121   - tests: use tests.backup tool
  2122   - many: verify that unit tests work with nosecboot tag and without
  2123     secboot package
  2124   - wrappers: do not error out on read-only /etc/dbus-1/session.d
  2125     filesystem on core18
  2126   - snapshots: import of a snapshot set
  2127   - tests: more output for sbuild test
  2128   - o/snapstate: re-order remove tasks for individual snap revisions
  2129     to remove current last
  2130   - boot: skip some unit tests when running as root
  2131   - o/assertstate: introduce
  2132     ValidationTrackingKey/ValidationSetTracking and basic methods
  2133   - many: allow ignoring running apps for specific request
  2134   - tests: allow the searching test to fail under load
  2135   - overlord/snapstate: inhibit startup while unlinked
  2136   - seed/seedwriter/writer.go: check DevModeConfinement for dangerous
  2137     features
  2138   - tests/main/sudo-env: snap bin is available on Fedora
  2139   - boot, overlord/devicestate: list trusted and managed assets
  2140     upfront
  2141   - gadget, gadget/install: support for ubuntu-save, create one during
  2142     install if needed
  2143   - spread-shellcheck: temporary workaround for deadlock, drop
  2144     unnecessary test
  2145   - snap: support different exit-code in the snap command
  2146   - logger: use strutil.KernelCommandLineSplit in
  2147     debugEnabledOnKernelCmdline
  2148   - logger: fix snapd.debug=1 parsing
  2149   - overlord: increase refresh postpone limit to 14 days
  2150   - spread-shellcheck: use single thread pool executor
  2151   - gadget/install,secboot: add debug messages
  2152   - spread-shellcheck: speed up spread-shellcheck even more
  2153   - spread-shellcheck: process paths from arguments in parallel
  2154   - tests: tweak error from tests.cleanup
  2155   - spread: remove workaround for openSUSE go issue
  2156   - o/configstate: create /etc/sysctl.d when applying early config
  2157     defaults
  2158   - tests: new tests.backup tool
  2159   - tests: add tests.cleanup pop sub-command
  2160   - tests: migration of the main suite to snaps-state tool part 6
  2161   - tests: fix journal-state test
  2162   - cmd/snap-bootstrap/initramfs-mounts: split off new helper for misc
  2163     recover files
  2164   - cmd/snap-bootstrap/initramfs-mounts: also copy /etc/machine-id for
  2165     same IP addr
  2166   - packaging/{ubuntu,debian}: add liblzo2-dev as a dependency for
  2167     building snapd
  2168   - boot, gadget, bootloader: observer preserves managed bootloader
  2169     configs
  2170   - tests/nested/manual: add uc20 grade signed cloud-init test
  2171   - o/snapstate/autorefresh.go: eliminate race when launching
  2172     autorefresh
  2173   - daemon,snapshotstate: do not return "size" from Import()
  2174   - daemon: limit reading from snapshot import to Content-Length
  2175   - many: set/expect Content-Length header when importing snapshots
  2176   - github: switch from ::set-env command to environment file
  2177   - tests: migration of the main suite to snaps-state tool part 5
  2178   - client: cleanup the Client.raw* and Client.do* method families
  2179   - tests: moving main suite to snaps-state tool part 4
  2180   - client,daemon,snap: use constant for snapshot content-type
  2181   - many: fix typos and repeated "the"
  2182   - secboot: fix tpm connection leak when it's not enabled
  2183   - many: scaffolding for snapshots import API
  2184   - run-checks: run spread-shellcheck too
  2185   - interfaces: update network-manager interface to allow
  2186     ObjectManager access from unconfined clients
  2187   - tests: move core and regression suites to snaps-state tool
  2188   - tests: moving interfaces tests to snaps-state tool
  2189   - gadget: preserve files when indicated by content change observer
  2190   - tests: moving smoke test suite and some tests from main suite to
  2191     snaps-state tool
  2192   - o/snapshotstate: pass set id to backend.Open, update tests
  2193   - asserts/snapasserts: introduce ValidationSets
  2194   - o/snapshotstate: improve allocation of new set IDs
  2195   - boot: look at the gadget for run mode bootloader when making the
  2196     system bootable
  2197   - cmd/snap: allow snap help vs --all to diverge purposefully
  2198   - usersession/userd: separate bus name ownership from defining
  2199     interfaces
  2200   - o/snapshotstate: set snapshot set id from its filename
  2201   - o/snapstate: move remove-related tests to snapstate_remove_test.go
  2202   - desktop/notification: switch ExpireTimeout to time.Duration
  2203   - desktop/notification: add unit tests
  2204   - snap: snap help output refresh
  2205   - tests/nested/manual/preseed: include a system-usernames snap when
  2206     preseeding
  2207   - tests: fix sudo-env test
  2208   - tests: fix nested core20 shellcheck bug
  2209   - tests/lib: move to new directory when restoring PWD, cleanup
  2210     unpacked unpacked snap directories
  2211   - desktop/notification: add bindings for FDO notifications
  2212   - dbustest: fix stale comment references
  2213   - many: move ManagedAssetsBootloader into TrustedAssetsBootloader,
  2214     drop former
  2215   - snap-repair: add uc20 support
  2216   - tests: print all the serial logs for the nested test
  2217   - o/snapstate/check_snap_test.go: mock osutil.Find{U,G}id to avoid
  2218     bug in test
  2219   - cmd/snap/auto-import: stop importing system user assertions from
  2220     initramfs mnts
  2221   - osutil/group.go: treat all non-nil errs from user.Lookup{Group,}
  2222     as Unknown*
  2223   - asserts: deserialize grouping only once in Pool.AddBatch if needed
  2224   - gadget: allow content observer to have opinions about a change
  2225   - tests: new snaps-state command - part1
  2226   - o/assertstate: support refreshing any number of snap-declarations
  2227   - boot: use test helpers
  2228   - tests/core/snap-debug-bootvars: also check snap_mode
  2229   - many/apparmor: adjust rules for reading profile/ execing new
  2230     profiles for new kernel
  2231   - tests/core/snap-debug-bootvars: spread test for snap debug boot-
  2232     vars
  2233   - tests/lib/nested.sh: more little tweaks
  2234   - tests/nested/manual/grade-signed-above-testkeys-boot: enable kvm
  2235   - cmd/s-b/initramfs-mounts: use ConfigureTargetSystem for install,
  2236     recover modes
  2237   - overlord: explicitly set refresh-app-awareness in tests
  2238   - kernel: remove "edition" from kernel.yaml and add "update"
  2239   - spread: drop vendor from the packed project archive
  2240   - boot: fix debug bootloader variables dump on UC20 systems
  2241   - wrappers, systemd: allow empty root dir and conditionally do not
  2242     pass --root to systemctl
  2243   - tests/nested/manual: add test for grades above signed booting with
  2244     testkeys
  2245   - tests/nested: misc robustness fixes
  2246   - o/assertstate,asserts: use bulk refresh to refresh snap-
  2247     declarations
  2248   - tests/lib/prepare.sh: stop patching the uc20 initrd since it has
  2249     been updated now
  2250   - tests/nested/manual/refresh-revert-fundamentals: re-enable test
  2251   - update-pot: ignore .go files inside .git when running xgettext-go
  2252   - tests: disable part of the lxd test completely on 16.04.
  2253   - o/snapshotstate: tweak comment regarding snapshot filename
  2254   - o/snapstate: improve snapshot iteration
  2255   - bootloader: lk cleanups
  2256   - tests: update to support nested kvm without reboots on UC20
  2257   - tests/nested/manual/preseed: disable system-key check for 20.04
  2258     image
  2259   - spread.yaml: add ubuntu-20.10-64 to qemu
  2260   - store: handle v2 error when fetching assertions
  2261   - gadget: resolve device mapper devices for fallback device lookup
  2262   - tests/nested/cloud-init-many: simplify tests and unify
  2263     helpers/seed inputs
  2264   - tests: copy /usr/lib/snapd/info to correct directory
  2265   - check-pr-title.py * : allow "*" in the first part of the title
  2266   - many: typos and small test tweak
  2267   - tests/main/lxd: disable cgroup combination for 16.04 that is
  2268     failing a lot
  2269   - tests: make nested signing helpers less confusing
  2270   - tests: misc nested changes
  2271   - tests/nested/manual/refresh-revert-fundamentals: disable
  2272     temporarily
  2273   - tests/lib/cla_check: default to Python 3, tweaks, formatting
  2274   - tests/lib/cl_check.py: use python3 compatible code
  2275  
  2276  * Thu Oct 08 2020 Michael Vogt <mvo@ubuntu.com>
  2277  - New upstream release 2.47.1
  2278   - o/configstate: create /etc/sysctl.d when applying early config
  2279     defaults
  2280   - cmd/snap-bootstrap/initramfs-mounts: also copy /etc/machine-id for
  2281     same IP addr
  2282   - packaging/{ubuntu,debian}: add liblzo2-dev as a dependency for
  2283     building snapd
  2284   - cmd/snap: allow snap help vs --all to diverge purposefully
  2285   - snap: snap help output refresh
  2286  
  2287  * Tue Sep 29 2020 Michael Vogt <mvo@ubuntu.com>
  2288  - New upstream release 2.47
  2289   - tests: fix nested core20 shellcheck bug
  2290   - many/apparmor: adjust rule for reading apparmor profile for new
  2291     kernel
  2292   - snap-repair: add uc20 support
  2293   - cmd/snap/auto-import: stop importing system user assertions from
  2294     initramfs mnts
  2295   - cmd/s-b/initramfs-mounts: use ConfigureTargetSystem for install,
  2296     recover modes
  2297   - gadget: resolve device mapper devices for fallback device lookup
  2298   - secboot: add boot manager profile to pcr protection profile
  2299   - sysconfig,o/devicestate: mv DisableNoCloud to
  2300     DisableAfterLocalDatasourcesRun
  2301   - tests: make gadget-reseal more robust
  2302   - tests: skip nested images pre-configuration by default
  2303   - tests: fix for basic20 test running on external backend and rpi
  2304   - tests: improve kernel reseal test
  2305   - boot: adjust comments, naming, log success around reseal
  2306   - tests/nested, fakestore: changes necessary to run nested uc20
  2307     signed/secured tests
  2308   - tests: add nested core20 gadget reseal test
  2309   - boot/modeenv: track unknown keys in Read and put back into modeenv
  2310     during Write
  2311   - interfaces/process-control: add sched_setattr to seccomp
  2312   - boot: with unasserted kernels reseal if there's a hint modeenv
  2313     changed
  2314   - client: bump the default request timeout to 120s
  2315   - configcore: do not error in console-conf.disable for install mode
  2316   - boot: streamline bootstate20.go reseal and tests changes
  2317   - boot: reseal when changing kernel
  2318   - cmd/snap/model: specify grade in the model command output
  2319   - tests: simplify
  2320     repack_snapd_snap_with_deb_content_and_run_mode_first_boot_tweaks
  2321   - test: improve logging in nested tests
  2322   - nested: add support to telnet to serial port in nested VM
  2323   - secboot: use the snapcore/secboot native recovery key type
  2324   - tests/lib/nested.sh: use more focused cloud-init config for uc20
  2325   - tests/lib/nested.sh: wait for the tpm socket to exist
  2326   - spread.yaml, tests/nested: misc changes
  2327   - tests: add more checks to disk space awareness spread test
  2328   - tests: disk space awareness spread test
  2329   - boot: make MockUC20Device use a model and MockDevice more
  2330     realistic
  2331   - boot,many: reseal only when meaningful and necessary
  2332   - tests/nested/core20/kernel-failover: add test for failed refresh
  2333     of uc20 kernel
  2334   - tests: fix nested to work with qemu and kvm
  2335   - boot: reseal when updating boot assets
  2336   - tests: fix snap-routime-portal-info test
  2337   - boot: verify boot chain file in seal and reseal tests
  2338   - tests: use full path to test-snapd-refresh.version binary
  2339   - boot: store boot chains during install, helper for checking
  2340     whether reseal is needed
  2341   - boot: add call to reseal an existing key
  2342   - boot: consider boot chains with unrevisioned kernels incomparable
  2343   - overlord: assorted typos and miscellaneous changes
  2344   - boot: group SealKeyModelParams by model, improve testing
  2345   - secboot: adjust parameters to buildPCRProtectionProfile
  2346   - strutil: add SortedListsUniqueMergefrom the doc comment:
  2347   - snap/naming: upgrade TODO to TODO:UC20
  2348   - secboot: add call to reseal an existing key
  2349   - boot: in seal.go adjust error message and function names
  2350   - o/snapstate: check available disk space in RemoveMany
  2351   - boot: build bootchains data for sealing
  2352   - tests: remove "set -e" from function only shell libs
  2353   - o/snapstate: disk space check on UpdateMany
  2354   - o/snapstate: disk space check with snap update
  2355   - snap: implement new `snap reboot` command
  2356   - boot: do not reorder boot assets when generating predictable boot
  2357     chains and other small tweaks
  2358   - tests: some fixes and improvements for nested execution
  2359   - tests/core/uc20-recovery: fix check for at least specific calls to
  2360     mock-shutdown
  2361   - boot: be consistent using bootloader.Role* consts instead of
  2362     strings
  2363   - boot: helper for generating secboot load chains from a given boot
  2364     asset sequence
  2365   - boot: tweak boot chains to support a list of kernel command lines,
  2366     keep track of model and kernel boot file
  2367   - boot,secboot: switch to expose and use snapcore/secboot load event
  2368     trees
  2369   - tests: use `nested_exec` in core{20,}-early-config test
  2370   - devicestate: enable cloud-init on uc20 for grade signed and
  2371     secured
  2372   - boot: add "rootdir" to baseBootenvSuite and use in tests
  2373   - tests/lib/cla_check.py: don't allow users.noreply.github.com
  2374     commits to pass CLA
  2375   - boot: represent boot chains, helpers for marshalling and
  2376     equivalence checks
  2377   - boot: mark successful with boot assets
  2378   - client, api: handle insufficient space error
  2379   - o/snapstate: disk space check with single snap install
  2380   - configcore: "service.console-conf.disable" is gadget defaults only
  2381   - packaging/opensuse: fix for /usr/libexec on TW, do not hardcode
  2382     AppArmor profile path
  2383   - tests: skip udp protocol in nfs-support test on ubuntu-20.10
  2384   - packaging/debian-sid: tweak code preparing _build tree
  2385   - many: move seal code from gadget/install to boot
  2386   - tests: remove workaround for cups on ubuntu-20.10
  2387   - client: implement RebootToSystem
  2388   - many: seed.Model panics now if called before LoadAssertions
  2389   - daemon: add /v2/systems "reboot" action API
  2390   - github: run tests also on push to release branches
  2391   - interfaces/bluez: let slot access audio streams
  2392   - seed,c/snap-bootstrap: simplify snap-bootstrap seed reading with
  2393     new seed.ReadSystemEssential
  2394   - interfaces: allow snap-update-ns to read /proc/cmdline
  2395   - tests: new organization for nested tests
  2396   - o/snapstate, features: add feature flags for disk space awareness
  2397   - tests: workaround for cups issue on 20.10 where default printer is
  2398     not configured.
  2399   - interfaces: update cups-control and add cups for providing snaps
  2400   - boot: keep track of the original asset when observing updates
  2401   - tests: simplify and fix tests for disk space checks on snap remove
  2402   - sysconfig/cloudinit.go: add AllowCloudInit and use GadgetDir for
  2403     cloud.conf
  2404   - tests/main: mv core specific tests to core suite
  2405   - tests/lib/nested.sh: reset the TPM when we create the uc20 vm
  2406   - devicestate: rename "mockLogger" to "logbuf"
  2407   - many: introduce ContentChange for tracking gadget content in
  2408     observers
  2409   - many: fix partion vs partition typo
  2410   - bootloader: retrieve boot chains from bootloader
  2411   - devicestate: add tests around logging in RequestSystemAction
  2412   - boot: handle canceled update
  2413   - bootloader: tweak doc comments (thanks Samuele)
  2414   - seed/seedwriter: test local asserted snaps with UC20 grade signed
  2415   - sysconfig/cloudinit.go: add DisableNoCloud to
  2416     CloudInitRestrictOptions
  2417   - many: use BootFile type in load sequences
  2418   - boot,bootloader: clarifications after the changes to introduce
  2419     bootloader.Options.Role
  2420   - boot,bootloader,gadget: apply new bootloader.Options.Role
  2421   - o/snapstate, features: add feature flag for disk space check on
  2422     remove
  2423   - testutil: add checkers for symbolic link target
  2424   - many: refactor tpm seal parameter setting
  2425   - boot/bootstate20: reboot to rollback to previous kernel
  2426   - boot: add unit test helpers
  2427   - boot: observe update & rollback of trusted assets
  2428   - interfaces/utf: Add MIRKey to u2f devices
  2429   - o/devicestate/devicestate_cloudinit_test.go: test cleanup for uc20
  2430     cloud-init tests
  2431   - many: check that users of BaseTest don't forget to consume
  2432     cleanups
  2433   - tests/nested/core20/tpm: verify trusted boot assets tracking
  2434   - github: run macOS job with Go 1.14
  2435   - many: misc doc-comment changes and typo fixes
  2436   - o/snapstate: disk space check with InstallMany
  2437   - many: cloud-init cleanups from previous PR's
  2438   - tests: running tests on opensuse leap 15.2
  2439   - run-checks: check for dirty build tree too
  2440   - vendor: run ./get-deps.sh to update the secboot hash
  2441   - tests: update listing test for "-dirty" versions
  2442   - overlord/devicestate: do not release the state lock when updating
  2443     gadget assets
  2444   - secboot: read kernel efi image from snap file
  2445   - snap: add size to the random access file return interface
  2446   - daemon: correctly parse Content-Type HTTP header.
  2447   - tests: account for apt-get on core18
  2448   - cmd/snap-bootstrap/initramfs-mounts: compute string outside of
  2449     loop
  2450   - mkversion.sh: simple hack to include dirty in version if the tree
  2451     is dirty
  2452   - cgroup,snap: track hooks on system bus only
  2453   - interfaces/systemd: compare dereferenced Service
  2454   - run-checks: only check files in git for misspelling
  2455   - osutil: add a package doc comment (via doc.go)
  2456   - boot: complain about reused asset name during initial install
  2457   - snapstate: installSize helper that calculates total size of snaps
  2458     and their prerequisites
  2459   - snapshots: export of snapshots
  2460   - boot/initramfs_test.go: reset boot vars on the bootloader for each
  2461     iteration
  2462  
  2463  * Fri Sep 04 2020 Michael Vogt <mvo@ubuntu.com>
  2464  - New upstream release 2.46.1
  2465   - interfaces: allow snap-update-ns to read
  2466     /proc/cmdline
  2467   - github: run macOS job with Go 1.14
  2468   - o/snapstate, features: add feature flag for disk space check on
  2469     remove
  2470   - tests: account for apt-get on core18
  2471   - mkversion.sh: include dirty in version if the tree
  2472     is dirty
  2473   - interfaces/systemd: compare dereferenced Service
  2474   - vendor.json: update mysterious secboot SHA again
  2475  
  2476  * Tue Aug 25 2020 Michael Vogt <mvo@ubuntu.com>
  2477  - New upstream release 2.46
  2478   - logger: add support for setting snapd.debug=1 on kernel cmdline
  2479   - o/snapstate: check disk space before creating automatic snapshot
  2480     on remove
  2481   - boot, o/devicestate: observe existing recovery bootloader trusted
  2482     boot assets
  2483   - many: use transient scope for tracking apps and hooks
  2484   - features: add HiddenSnapFolder feature flag
  2485   - tests/lib/nested.sh: fix partition typo, unmount the image on uc20
  2486     too
  2487   - runinhibit: open the lock file in read-only mode in IsLocked
  2488   - cmd/s-b/initramfs-mounts: make recover -> run mode transition
  2489     automatic
  2490   - tests: update spread test for unknown plug/slot with snapctl is-
  2491     connected
  2492   - osutil: add OpenExistingLockForReading
  2493   - kernel: add kernel.Validate()
  2494   - interfaces: add vcio interface
  2495   - interfaces/{docker,kubernetes}-support: load overlay and support
  2496     systemd cgroup driver
  2497   - tests/lib/nested.sh: use more robust code for finding what loop
  2498     dev we mounted
  2499   - cmd/snap-update-ns: detach all bind-mounted file
  2500   - snap/snapenv: set SNAP_REAL_HOME
  2501   - packaging: umount /snap on purge in containers
  2502   - interfaces: misc policy updates xlvi
  2503   - secboot,cmd/snap-bootstrap: cross-check partitions before
  2504     unlocking, mounting
  2505   - boot: copy boot assets cache to new root
  2506   - gadget,kernel: add new kernel.{Info,Asset} struct and helpers
  2507   - o/hookstate/ctlcmd: make is-connected check whether the plug or
  2508     slot exists
  2509   - tests: find -ignore_readdir_race when scanning cgroups
  2510   - interfaces/many: deny arbitrary desktop files and misc from
  2511     /usr/share
  2512   - tests: use "set -ex" in prep-snapd-in-lxd.sh
  2513   - tests: re-enable udisks test on debian-sid
  2514   - cmd/snapd-generator: use PATH fallback if PATH is not set
  2515   - tests: disable udisks2 test on arch linux
  2516   - github: use latest/stable go, not latest/edge
  2517   - tests: remove support for ubuntu 19.10 from spread tests
  2518   - tests: fix lxd test wrongly tracking 'latest'
  2519   - secboot: document exported functions
  2520   - cmd: compile snap gdbserver shim correctly
  2521   - many: correctly calculate the desktop file prefix everywhere
  2522   - interfaces: add kernel-crypto-api interface
  2523   - corecfg: add "system.timezone" setting to the system settings
  2524   - cmd/snapd-generator: generate drop-in to use fuse in container
  2525   - cmd/snap-bootstrap/initramfs-mounts: tweak names, add comments
  2526     from previous PR
  2527   - interfaces/many: miscellaneous updates for strict microk8s
  2528   - secboot,cmd/snap-bootstrap: don't import boot package from secboot
  2529   - cmd/snap-bootstrap/initramfs-mounts: call systemd-mount instead of
  2530     the-tool
  2531   - tests: work around broken update of systemd-networkd
  2532   - tests/main/install-fontconfig-cache-gen: enhance test by
  2533     verifying, add fonts to test
  2534   - o/devicestate: wrap asset update observer error
  2535   - boot: refactor such that bootStateUpdate20 mainly carries Modeenv
  2536   - mkversion.sh: disallow changelog versions that have git in it, if
  2537     we also have git version
  2538   - interfaces/many: miscellaneous updates for strict microk8s
  2539   - snap: fix repeated "cannot list recovery system" and add test
  2540   - boot: track trusted assets during initial install, assets cache
  2541   - vendor: update secboot to fix key data validation
  2542   - tests: unmount FUSE file-systems from XDG runtime dir
  2543   - overlord/devicestate: workaround non-nil interface with nil struct
  2544   - sandbox/cgroup: remove temporary workaround for multiple cgroup
  2545     writers
  2546   - sandbox/cgroup: detect dangling v2 cgroup
  2547   - bootloader: add helper for creating a bootloader based on gadget
  2548   - tests: support different images on nested execution
  2549   - many: reorg cmd/snapinfo.go into snap and new client/clientutil
  2550   - packaging/arch: use external linker when building statically
  2551   - tests: cope with ghost cgroupv2
  2552   - tests: fix issues related to restarting systemd-logind.service
  2553   - boot, o/devicestate: TrustedAssetUpdateObserver stubs, hook up to
  2554     gadget updates
  2555   - vendor: update github.com/kr/pretty to fix diffs of values with
  2556     pointer cycles
  2557   - boot: move bootloaderKernelState20 impls to separate file
  2558   - .github/workflows: move snap building to test.yaml as separate
  2559     cached job
  2560   - tests/nested/manual/minimal-smoke: run core smoke tests in a VM
  2561     meeting minimal requirements
  2562   - osutil: add CommitAs to atomic file
  2563   - gadget: introduce content update observer
  2564   - bootloader: introduce TrustedAssetsBootloader, implement for grub
  2565   - o/snapshotstate: helpers for calculating disk space needed for an
  2566     automatic snapshot
  2567   - gadget/install: retrieve command lines from bootloader
  2568   - boot/bootstate20: unify commit method impls, rm
  2569     bootState20MarkSuccessful
  2570   - tests: add system information and image information when debug
  2571     info is displayed
  2572   - tests/main/cgroup-tracking: try to collect some information about
  2573     cgroups
  2574   - boot: introduce current_boot_assets and
  2575     current_recovery_boot_assets to modeenv
  2576   - tests: fix for timing issues on journal-state test
  2577   - many: remove usage and creation of hijacked pid cgroup
  2578   - tests: port regression-home-snap-root-owned to tests.session
  2579   - tests: run as hightest via tests.session
  2580   - github: run CLA checks on self-hosted workers
  2581   - github: remove Ubuntu 19.10 from actions workflow
  2582   - tests: remove End-Of-Life opensuse/fedora releases
  2583   - tests: remove End-Of-Life releases from spread.yaml
  2584   - tests: fix debug section of appstream-id test
  2585   - interfaces: check !b.preseed earlier
  2586   - tests: work around bug in systemd/debian
  2587   - boot: add deepEqual, Copy helpers for Modeenv to simplify
  2588     bootstate20 refactor
  2589   - cmd: add new "snap recovery" command
  2590   - interfaces/systemd: use emulation mode when preseeding
  2591   - interfaces/kmod: don't load kernel modules in kmod backend when
  2592     preseeding
  2593   - interfaces/udev: do not reload udevadm rules when preseeding
  2594   - cmd/snap-preseed: use snapd from the deb if newer than from seeds
  2595   - boot: fancy marshaller for modeenv values
  2596   - gadget, osutil: use atomic file copy, adjust tests
  2597   - overlord: use new tracking cgroup for refresh app awareness
  2598   - github: do not skip gofmt with Go 1.9/1.10
  2599   - many: introduce content write observer, install mode glue, initial
  2600     seal stubs
  2601   - daemon,many: switch to use client.ErrorKind and drop the local
  2602     errorKind...
  2603   - tests: new parameters for nested execution
  2604   - client: move all error kinds into errors.go and add doc strings
  2605   - cmd/snap: display the error in snap debug seeding if seeding is in
  2606     error
  2607   - cmd/snap/debug/seeding: use unicode for proper yaml
  2608   - tests/cmd/snap-bootstrap/initramfs-mounts: add test case for empty
  2609     recovery_mode
  2610   - osutil/disks: add mock disk and tests for happy path of mock disks
  2611   - tests: refresh/revert snapd in uc20
  2612   - osutil/disks: use a dedicated error to indicate a fs label wasn't
  2613     found
  2614   - interfaces/system-key: in WriteSystemKey during tests, don't call
  2615     ParserFeatures
  2616   - boot: add current recovery systems to modeenv
  2617   - bootloader: extend managed assets bootloader interface to compose
  2618     a candidate command line
  2619   - interfaces: make the unmarshal test match more the comment
  2620   - daemon/api: use pointers to time.Time for debug seeding aspect
  2621   - o/ifacestate: update security profiles in connect undo handler
  2622   - interfaces: add uinput interface
  2623   - cmd/snap-bootstrap/initramfs-mounts: add doSystemdMount + unit
  2624     tests
  2625   - o/devicestate: save seeding/preseeding times for use with debug
  2626     seeding api
  2627   - cmd/snap/debug: add "snap debug seeding" command for preseeding
  2628     debugging
  2629   - tests/main/selinux-clean: workaround SELinux denials triggered by
  2630     linger setup on Centos8
  2631   - bootloader: compose command line with mode and extra arguments
  2632   - cmd/snap, daemon: detect and bail purge on multi-snap
  2633   - o/ifacestate: fix bug in snapsWithSecurityProfiles
  2634   - interfaces/builtin/multipass: replace U+00A0 no-break space with
  2635     simple space
  2636   - bootloader/assets: generate bootloader assets from files
  2637   - many/tests/preseed: reset the preseeded images before preseeding
  2638     them
  2639   - tests: drop accidental accents from e
  2640   - secboot: improve key sealing tests
  2641   - tests: replace _wait_for_file_change with retry
  2642   - tests: new fs-state which replaces the files.sh helper
  2643   - sysconfig/cloudinit_test.go: add test for initramfs case, rm "/"
  2644     from path
  2645   - cmd/snap: track started apps and hooks
  2646   - tests/main/interfaces-pulseaudio: disable start limit checking for
  2647     pulseaudio service
  2648   - api: seeding debug api
  2649   - .github/workflows/snap-build.yaml: build the snapd snap via GH
  2650     Actions too
  2651   - tests: moving journalctl.sh to a new journal-state tool
  2652   - tests/nested/manual: add spread tests for cloud-init vuln
  2653   - bootloader/assets: helpers for registering per-edition snippets,
  2654     register snippets for grub
  2655   - data,packaging,wrappers: extend D-Bus service activation search
  2656     path
  2657   - spread: add opensuse 15.2 and tumbleweed for qemu
  2658   - overlord,o/devicestate: restrict cloud-init on Ubuntu Core
  2659   - sysconfig/cloudinit: add RestrictCloudInit
  2660   - cmd/snap-preseed: check that target path exists and is a directory
  2661     on --reset
  2662   - tests: check for pids correctly
  2663   - gadget,gadget/install: refactor partition table update
  2664   - sysconfig/cloudinit: add CloudInitStatus func + CloudInitState
  2665     type
  2666   - interface/fwupd: add more policies for making fwupd upstream
  2667     strict
  2668   - tests: new to-one-line tool which replaces the strings.sh helper
  2669   - interfaces: new helpers to get and compare system key, for use
  2670     with seeding debug api
  2671   - osutil, many: add helper for checking whether the process is a go
  2672     test binary
  2673   - cmd/snap-seccomp/syscalls: add faccessat2
  2674   - tests: adjust xdg-open after launcher changes
  2675   - tests: new core config helper
  2676   - usersession/userd: do not modify XDG_DATA_DIRS when calling xdg-
  2677     open
  2678   - cmd/snap-preseed: handle relative chroot path
  2679   - snapshotstate: move sizer to osutil.Sizer()
  2680   - tests/cmd/snap-bootstrap/initramfs-mounts: rm duplicated env ref
  2681     kernel tests
  2682   - gadget/install,secboot: use snapcore/secboot luks2 api
  2683   - boot/initramfs_test.go: add Commentf to more Assert()'s
  2684   - tests/lib: account for changes in arch package file name extension
  2685   - bootloader/bootloadertest: fix comment typo
  2686   - bootloader: add helper for getting recovery system environment
  2687     variables
  2688   - tests: preinstall shellcheck and run tests on focal
  2689   - strutil: add a helper for parsing kernel command line
  2690   - osutil: add CheckFreeSpace helper
  2691   - secboot: update tpm connection error handling
  2692   - packaging, cmd/snap-mgmt, tests: remove modules files on purge
  2693   - tests: add tests.cleanup helper
  2694   - packaging: add "ca-certificates" to build-depends
  2695   - tests: more checks in core20 early config spread test
  2696   - tests: fix some snapstate tests to use pointers for
  2697     snapmgrTestSuite
  2698   - boot: better naming of helpers for obtaining kernel command line
  2699   - many: use more specific check for unit test mocking
  2700   - systemd/escape: fix issues with "" and "\t" handling
  2701   - asserts: small improvements and corrections for sequence-forming
  2702     assertions' support
  2703   - boot, bootloader: query kernel command line of run mod and
  2704     recovery mode systems
  2705   - snap/validate.go: disallow snap layouts with new top-level
  2706     directories
  2707   - tests: allow to add a new label to run nested tests as part of PR
  2708     validation
  2709   - tests/core/gadget-update-pc: port to UC20
  2710   - tests: improve nested tests flexibility
  2711   - asserts: integer headers: disallow prefix zeros and make parsing
  2712     more uniform
  2713   - asserts: implement Database.FindSequence
  2714   - asserts: introduce SequenceMemberAfter in the asserts backstores
  2715   - spread.yaml: remove tests/lib/tools from PATH
  2716   - overlord: refuse to install snaps whose activatable D-Bus services
  2717     conflict with installed snaps
  2718   - tests: shorten lxd-state undo-mount-changes
  2719   - snap-confine: don't die if a device from sysfs path cannot be
  2720     found by udev
  2721   - tests: fix argument handling of apt-state
  2722   - tests: rename lxd-tool to lxd-state
  2723   - tests: rename user-tool to user-state, fix --help
  2724   - interfaces: add gconf interface
  2725   - sandbox/cgroup: avoid parsing security tags twice
  2726   - tests: rename version-tool to version-compare
  2727   - cmd/snap-update-ns: handle anomalies better
  2728   - tests: fix call to apt.Package.mark_install(auto_inst=True)
  2729   - tests: rename mountinfo-tool to mountinfo.query
  2730   - tests: rename memory-tool to memory-observe-do
  2731   - tests: rename invariant-tool to tests.invariant
  2732   - tests: rename apt-tool to apt-state
  2733   - many: managed boot config during run mode setup
  2734   - asserts: introduce the concept of sequence-forming assertion types
  2735   - tests: tweak comments/output in uc20-recovery test
  2736   - tests/lib/pkgdb: do not use quiet when purging debs
  2737   - interfaces/apparmor: allow snap-specific /run/lock
  2738   - interfaces: add system-source-code for access to /usr/src
  2739   - sandbox/cgroup: extend SnapNameFromPid with tracking cgroup data
  2740   - gadget/install: move udev trigger to gadget/install
  2741   - many: make nested spread tests more reliable
  2742   - tests/core/uc20-recovery: apply hack to get gopath in recover mode
  2743     w/ external backend
  2744   - tests: enable tests on uc20 which now work with the real model
  2745     assertion
  2746   - tests: enable system-snap-refresh test on uc20
  2747   - gadget, bootloader: preserve managed boot assets during gadget
  2748     updates
  2749   - tests: fix leaked dbus-daemon in selinux-clean
  2750   - tests: add servicestate.Control tests
  2751   - tests: fix "restart.service"
  2752   - wrappers: helper for enabling services - extract and move enabling
  2753     of services into a helper
  2754   - tests: new test to validate refresh and revert of kernel and
  2755     gadget on uc20
  2756   - tests/lib/prepare-restore: collect debug info when prepare purge
  2757     fails
  2758   - bootloader: allow managed bootloader to update its boot config
  2759   - tests: Remove unity test from nightly test suite
  2760   - o/devicestate: set mark-seeded to done in the task itself
  2761   - tests: add spread test for disconnect undo caused by failing
  2762     disconnect hook
  2763   - sandbox/cgroup: allow discovering PIDs of given snap
  2764   - osutil/disks: support IsDecryptedDevice for mountpoints which are
  2765     dm devices
  2766   - osutil: detect autofs mounted in /home
  2767   - spread.yaml: allow amazon-linux-2-64 qemu with
  2768     ec2-user/ec2-user
  2769   - usersession: support additional zoom URL schemes
  2770   - overlord: mock timings.DurationThreshold in TestNewWithGoodState
  2771   - sandbox/cgroup: add tracking helpers
  2772   - tests: detect stray dbus-daemon
  2773   - overlord: refuse to install snaps providing user daemons on Ubuntu
  2774     14.04
  2775   - many: move encryption and installer from snap-boostrap to gadget
  2776   - o/ifacestate: fix connect undo handler
  2777   - interfaces: optimize rules of multiple connected iio/i2c/spi plugs
  2778   - bootloader: introduce managed bootloader, implement for grub
  2779   - tests: fix incorrect check in smoke/remove test
  2780   - asserts,seed: split handling of essential/not essential model
  2781     snaps
  2782   - gadget: fix typo in mounted filesystem updater
  2783   - gadget: do only one mount point lookup in mounted fs updater
  2784   - tests/core/snap-auto-mount: try to make the test more robust
  2785   - tests: adding ubuntu-20.04 to google-sru backend
  2786   - o/servicestate: add updateSnapstateServices helper
  2787   - bootloader: pull recovery grub config from internal assets
  2788   - tests/lib/tools: apply linger workaround when needed
  2789   - overlord/snapstate: graceful handling of denied "managed" refresh
  2790     schedule
  2791   - snapstate: fix autorefresh from classic->strict
  2792   - overlord/configstate: add system.kernel.printk.console-loglevel
  2793     option
  2794   - tests: fix assertion disk handling for nested UC systems
  2795   - snapstate: use testutil.HostScaledTimeout() in snapstate tests
  2796   - tests: extra worker for google-nested backend to avoid timeout
  2797     error on uc20
  2798   - snapdtool: helper to check whether the current binary is reexeced
  2799     from a snap
  2800   - tests: mock servicestate in api tests to avoid systemctl checks
  2801   - many: rename back snap.Info.GetType to Type
  2802   - tests/lib/cla_check: expect explicit commit range
  2803   - osutil/disks: refactor diskFromMountPointImpl a bit
  2804   - o/snapstate: service-control task handler
  2805   - osutil: add disks pkg for associating mountpoints with
  2806     disks/partitions
  2807   - gadget,cmd/snap-bootstrap: move partitioning to gadget
  2808   - seed: fix LoadEssentialMeta when gadget is not loaded
  2809   - cmd/snap: Debian does not allow $SNAP_MOUNT_DIR/bin in sudo
  2810     secure_path
  2811   - asserts: introduce new assertion validation-set
  2812   - asserts,daemon: add support for "serials" field in system-user
  2813     assertion
  2814   - data/sudo: drop a failed sudo secure_path workaround
  2815   - gadget: mv encodeLabel to osutil/disks.EncodeHexBlkIDFormat
  2816   - boot, snap-bootstrap: move initramfs-mounts logic to boot pkg
  2817   - spread.yaml: update secure boot attribute name
  2818   - interfaces/block_devices: add NVMe subsystem devices, support
  2819     multipath paths
  2820   - tests: use the "jq" snap from the edge channel
  2821   - tests: simplify the tpm test by removing the test-snapd-mokutil
  2822     snap
  2823   - boot/bootstate16.go: clean snap_try_* vars when not in Trying
  2824     status too
  2825   - tests/main/sudo-env: check snap path under sudo
  2826   - tests/main/lxd: add test for snaps inside nested lxd containers
  2827     not working
  2828   - asserts/internal: expand errors about invalid serialized grouping
  2829     labels
  2830   - usersession/userd: add msteams url support
  2831   - tests/lib/prepare.sh: adjust comment about sgdisk
  2832   - tests: fix how gadget pc is detected when the snap does not exist
  2833     and ls fails
  2834   - tests: move a few more tests to snapstate_update_test.go
  2835   - tests/main: add spread test for running svc from install hook
  2836   - tests/lib/prepare: increase the size of the uc16/uc18 partitions
  2837   - tests/special-home-can-run-classic-snaps: re-enable
  2838   - workflow: test PR title as part of the static checks again
  2839   - tests/main/xdg-open-compat: backup and restore original xdg-open
  2840   - tests: move update-related tests to snapstate_update_test.go
  2841   - cmd,many: move Version and bits related to snapd tools to
  2842     snapdtool, merge cmdutil
  2843   - tests/prepare-restore.sh: reset-failed systemd-journald before
  2844     restarting
  2845   - interfaces: misc small interface updates
  2846   - spread: use find rather than recursive ls, skip mounted snaps
  2847   - tests/lib/prepare-restore.sh: if we failed to purge snapd deb, ls
  2848     /var/lib/snapd
  2849   - tests: enable snap-auto-mount test on core20
  2850   - cmd/snap: do not show $PATH warning when executing under sudo on a
  2851     known distro
  2852   - asserts/internal: add some iteration benchmarks
  2853   - sandbox/cgroup: improve pid parsing code
  2854   - snap: add new `snap run --experimental-gdbserver` option
  2855   - asserts/internal: limit Grouping size switching to a bitset
  2856     representationWe don't always use the bit-set representation
  2857     because:
  2858   - snap: add an activates-on property to apps for D-Bus activation
  2859   - dirs: delete unused Cloud var, fix typo
  2860   - sysconfig/cloudinit: make callers of DisableCloudInit use
  2861     WritableDefaultsDir
  2862   - tests: fix classic ubuntu core transition auth
  2863   - tests: fail in setup_reflash_magic() if there is snapd state left
  2864   - tests: port interfaces-many-core-provided to tests.session
  2865   - tests: wait after creating partitions with sfdisk
  2866   - bootloader: introduce bootloarder assets, import grub.cfg with an
  2867     edition marker
  2868   - riscv64: bump timeouts
  2869   - gadget: drop dead code, hide exports that are not used externally
  2870   - tests: port 2 uc20 part1
  2871   - tests: fix bug waiting for snap command to be ready
  2872   - tests: move try-related tests to snapstate_try_test.go
  2873   - tests: add debug for 20.04 prepare failure
  2874   - travis.yml: removed, all our checks run in GH actions now
  2875   - tests: clean up up the use of configcoreSuite in the configcore
  2876     tests
  2877   - sandbox/cgroup: remove redundant pathOfProcPidCgroup
  2878   - sandbox/cgroup: add tests for ParsePids
  2879   - tests: fix the basic20 test for uc20 on external backend
  2880   - tests: use configcoreSuite in journalSuite and remove some
  2881     duplicated code
  2882   - tests: move a few more tests to snapstate_install_test
  2883   - tests: assorted small patches
  2884   - dbusutil/dbustest: separate license from package
  2885   - interfaces/builtin/time-control: allow POSIX clock API
  2886   - usersession/userd: add "slack" to the white list of URL schemes
  2887     handled by xdg-open
  2888   - tests: check that host settings like hostname are settable on core
  2889   - tests: port xdg-settings test to tests.session
  2890   - tests: port snap-handle-link test to tests.session
  2891   - arch: add riscv64
  2892   - tests: core20 early defaults spread test
  2893   - tests: move install tests from snapstate_test.go to
  2894     snapstate_install_test.go
  2895   - github: port macOS sanity checks from travis
  2896   - data/selinux: allow checking /var/cache/app-info
  2897   - o/devicestate: core20 early config from gadget defaults
  2898   - tests: autoremove after removing lxd in preseed-lxd test
  2899   - secboot,cmd/snap-bootstrap: add tpm sealing support to secboot
  2900   - sandbox/cgroup: move FreezerCgroupDir from dirs.go
  2901   - tests: update the file used to detect the boot path on uc20
  2902   - spread.yaml: show /var/lib/snapd in debug
  2903   - cmd/snap-bootstrap/initramfs-mounts: also copy systemd clock +
  2904     netplan files
  2905   - snap/naming: add helpers to parse app and hook security tags
  2906   - tests: modernize retry tool
  2907   - tests: fix and trim debug section in xdg-open-portal
  2908   - tests: modernize and use snapd.tool
  2909   - vendor: update to latest github.com/snapcore/bolt for riscv64
  2910   - cmd/snap-confine: add support for libc6-lse
  2911   - interfaces: miscellaneous policy updates xlv
  2912   - interfaces/system-packages-doc: fix typo in variable names
  2913   - tests: port interfaces-calendar-service to tests.session
  2914   - tests: install/run the lzo test snap too
  2915   - snap: (small) refactor of `snap download` code for
  2916     testing/extending
  2917   - data: fix shellcheck warnings in snapd.sh.in
  2918   - packaging: disable buildmode=pie for riscv64
  2919   - tests: install test-snapd-rsync snap from edge channel
  2920   - tests: modernize tests.session and port everything using it
  2921   - tests: add ubuntu 20.10 to spread tests
  2922   - cmd/snap/remove: mention snap restore/automatic snapshots
  2923   - dbusutil: move all D-Bus helpers and D-Bus test helpers
  2924   - wrappers: pass 'disable' flag to StopServices wrapper
  2925   - osutil: enable riscv64 build
  2926   - snap/naming: add ParseSecurityTag and friends
  2927   - tests: port document-portal-activation to session-tool
  2928   - bootloader: rename test helpers to reflect we are mocking EFI boot
  2929     locations
  2930   - tests: disable test of nfs v3 with udp proto on debian-sid
  2931   - tests: plan to improve the naming and uniformity of utilities
  2932   - tests: move *-tool tests to their own suite
  2933   - snap-bootstrap: remove sealed key file on reinstall
  2934   - bootloader/ubootenv: don't panic with an empty uboot env
  2935   - systemd: rename actualFsTypeAndMountOptions to
  2936     hostFsTypeAndMountOptions
  2937   - daemon: fix filtering of service-control changes for snap.app
  2938   - tests: spread test for preseeding in lxd container
  2939   - tests: fix broken snapd.session agent.socket
  2940   - wrappers: add RestartServices function and ReloadOrRestart to
  2941     systemd
  2942   - o/cmdstate: handle ignore flag on exec-command tasks
  2943   - gadget: make ext4 filesystems with or without metadata checksum
  2944   - tests: update statx test to run on all LTS releases
  2945   - configcore: show better error when disabling services
  2946   - interfaces: add hugepages-control
  2947   - interfaces-ssh-keys: Support reading /etc/ssh/ssh_config.d/
  2948   - tests: run ubuntu-20.04-* tests on all ubuntu-2* releases
  2949   - tests: skip interfaces-openvswitch for centos 8 in nightly suite
  2950   - tests: reload systemd --user for root, if present
  2951   - tests: reload systemd after editing /etc/fstab
  2952   - tests: add missing dependencies needed for sbuild test on debian
  2953   - tests: reload systemd after removing pulseaudio
  2954   - image, tests: core18 early config.
  2955   - interfaces: add system-packages-doc interface
  2956   - cmd/snap-preseed, systemd: fix handling of fuse.squashfuse when
  2957     preseeding
  2958   - interfaces/fwupd: allow bind mount to /boot on core
  2959   - tests: improve oom-vitality tests
  2960   - tests: add fedora 32 to spread.yaml
  2961   - config: apply vitality-hint immediately when the config changes
  2962   - tests: port snap-routine-portal-info to session-tool
  2963   - configcore: add "service.console-conf.disable" config option
  2964   - tests: port xdg-open to session-tool
  2965   - tests: port xdg-open-compat to session-tool
  2966   - tests: port interfaces-desktop-* to session-tool
  2967   - spread.yaml: apply yaml formatter/linter
  2968   - tests: port interfaces-wayland to session-tool
  2969   - o/devicestate: refactor current system handling
  2970   - snap-mgmt: perform cleanup of user services
  2971   - snap/snapfile,squashfs: followups from 8729
  2972   - boot, many: require mode in modeenv
  2973   - data/selinux: update policy to allow forked processes to call
  2974     getpw*()
  2975   - tests: log stderr from dbus-monitor
  2976   - packaging: build cmd/snap and cmd/snap-bootstrap with nomanagers
  2977     tag
  2978   - snap/squashfs: also symlink snap Install with uc20 seed snap dir
  2979     layout
  2980   - interfaces/builtin/desktop: do not mount fonts cache on distros
  2981     with quirks
  2982   - data/selinux: allow snapd to remove/create the its socket
  2983   - testutil/exec.go: set PATH after running shellcheck
  2984   - tests: silence stderr from dbus-monitor
  2985   - snap,many: mv Open to snapfile pkg to support add'l options to
  2986     Container methods
  2987   - devicestate, sysconfig: revert support for cloud.cfg.d/ in the
  2988     gadget
  2989   - github: remove workaround for bug 133 in actions/cache
  2990   - tests: remove dbus.sh
  2991   - cmd/snap-preseed: improve mountpoint checks of the preseeded
  2992     chroot
  2993   - spread.yaml: add ps aux to debug section
  2994   - github: run all spread systems in a single go with cached results
  2995   - test: session-tool cli tweaks
  2996   - asserts: rest of the Pool API
  2997   - tests: port interfaces-network-status-classic to session-tool
  2998   - packaging: remove obsolete 16.10,17.04 symlinks
  2999   - tests: setup portals before starting user session
  3000   - o/devicestate: typo fix
  3001   - interfaces/serial-port: add NXP SC16IS7xx (ttySCX) to allowed
  3002     devices
  3003   - cmd/snap/model: support store, system-user-authority keys in
  3004     --verbose
  3005   - o/devicestate: raise conflict when requesting system action while
  3006     seeding
  3007   - tests: detect signs of crashed snap-confine
  3008   - tests: sign kernel and gadget to run nested tests using current
  3009     snapd code
  3010   - tests: remove gnome-online-accounts we install
  3011   - tests: fix the issue where all the tests were executed on secboot
  3012     system
  3013   - tests: port interfaces-accounts-service to session-tool
  3014   - interfaces/network-control: bring /var/lib/dhcp from host
  3015   - image,cmd/snap,tests: add support for store-wide cohort keys
  3016   - configcore: add nomanagers buildtag for conditional build
  3017   - tests: port interfaces-password-manager-service to session-tool
  3018   - o/devicestate: cleanup system actions supported by recover mode
  3019   - snap-bootstrap: remove create-partitions and update tests
  3020   - tests: fix nested tests
  3021   - packaging/arch: update PKGBUILD to match one in AUR
  3022   - tests: port interfaces-location-control to session-tool
  3023   - tests: port interfaces-contacts-service to session-tool
  3024   - state: log task errors in the journal too
  3025   - o/devicestate: change how current system is reported for different
  3026     modes
  3027   - devicestate: do not report "ErrNoState" for seeded up
  3028   - tests: add a note about broken test sequence
  3029   - tests: port interfaces-autopilot-introspection to session-tool
  3030   - tests: port interfaces-dbus to session-tool
  3031   - packaging: update sid packaging to match 16.04+
  3032   - tests: enable degraded test on uc20
  3033   - c/snaplock/runinhibit: add run inhibition operations
  3034   - tests: detect and report root-owned files in /home
  3035   - tests: reload root's systemd --user after snapd tests
  3036   - tests: test registration with serial-authority: [generic]
  3037   - cmd/snap-bootstrap/initramfs-mounts: copy auth.json and macaroon-
  3038     key in recover
  3039   - tests/mount-ns: stop binfmt_misc mount unit
  3040   - cmd/snap-bootstrap/initramfs-mounts: use booted kernel partition
  3041     uuid if available
  3042   - daemon, tests: indicate system mode, test switching to recovery
  3043     and back to run
  3044   - interfaces/desktop: silence more /var/lib/snapd/desktop/icons
  3045     denials
  3046   - tests/mount-ns: update to reflect new UEFI boot mode
  3047   - usersession,tests: clean ups for userd/settings.go and move
  3048     xdgopenproxy under usersession
  3049   - tests: disable mount-ns test
  3050   - tests: test user belongs to systemd-journald, on core20
  3051   - tests: run core/snap-set-core-config on uc20 too
  3052   - tests: remove generated session-agent units
  3053   - sysconfig: use new _writable_defaults dir to create cloud config
  3054   - cmd/snap-bootstrap/initramfs-mounts: cosmetic changes in prep for
  3055     future work
  3056   - asserts: make clearer that with label we mean a serialized label
  3057   - cmd/snap-bootstrap: tweak recovery trigger log messages
  3058   - asserts: introduce PoolTo
  3059   - userd: allow setting default-url-scheme-handler
  3060   - secboot: append uuid to ubuntu-data when decrypting
  3061   - o/configcore: pass extra options to FileSystemOnlyApply
  3062   - tests: add dbus-user-session to bionic and reorder package names
  3063   - boot, bootloader: adjust comments, expand tests
  3064   - tests: improve debugging of user session agent tests
  3065   - packaging: add the inhibit directory
  3066   - many: add core.resiliance.vitality-hint config setting
  3067   - tests: test adjustments and fixes for recently published images
  3068   - cmd/snap: coldplug auto-import assertions from all removable
  3069     devices
  3070   - secboot,cmd/snap-bootstrap: move initramfs-mounts tpm access to
  3071     secboot
  3072   - tests: not fail when boot dir cannot be determined
  3073   - tests: new directory used to store the cloud images on gce
  3074   - tests: inject snapd from edge into seeds of the image in manual
  3075     preseed test
  3076   - usersession/agent,wrappers: fix races between Shutdown and Serve
  3077   - tests: add dependency needed for next upgrade of bionic
  3078   - tests: new test user is used for external backend
  3079   - cmd/snap: fix the order of positional parameters in help output
  3080   - tests: don't create root-owned things in ~test
  3081   - tests/lib/prepare.sh: delete patching of the initrd
  3082   - cmd/snap-bootstrap/initramfs-mounts: add sudoers to dirs to copy
  3083     as well
  3084   - progress: tweak multibyte label unit test data
  3085   - o/devicestate,cmd/snap-bootstrap: seal to recover mode cmdline
  3086   - gadget: fix fallback device lookup for 'mbr' type structures
  3087   - configcore: only reload journald if systemd is new enough
  3088   - cmd/snap-boostrap, boot: use /run/mnt/data instead of ubuntu-data
  3089   - wrappers: allow user mode systemd daemons
  3090   - progress: fix progress bar with multibyte duration units
  3091   - tests: fix raciness in pulseaudio test
  3092   - asserts/internal: introduce Grouping and Groupings
  3093   - tests: remove user.sh
  3094   - tests: pair of follow-ups from earlier reviews
  3095   - overlord/snapstate: warn of refresh/postpone events
  3096   - configcore,tests: use daemon-reexec to apply watchdog config
  3097   - c/snap-bootstrap: check mount states via initramfsMountStates
  3098   - store: implement DownloadAssertions
  3099   - tests: run smoke test with different bases
  3100   - tests: port user-mounts test to session-tool
  3101   - store: handle error-list in fetch-assertions results
  3102   - tests: port interfaces-audio-playback-record to session-tool
  3103   - data/completion: add `snap` command completion for zsh
  3104   - tests/degraded: ignore failure in systemd-vconsole-setup.service
  3105   - image: stub implementation of image.Prepare for darwin
  3106   - tests: session-tool --restore -u stops user-$UID.slice
  3107   - o/ifacestate/handlers.go: fix typo
  3108   - tests: port pulseaudio test to session-tool
  3109   - tests: port user-session-env to session-tool
  3110   - tests: work around journald bug in core16
  3111   - tests: add debug to core-persistent-journal test
  3112   - tests: port selinux-clean to session-tool
  3113   - tests: port portals test to session-tool, fix portal tests on sid
  3114   - tests: adding option --no-install-recommends option also when
  3115     install all the deps
  3116   - tests: add session-tool --has-systemd-and-dbus
  3117   - packaging/debian-sid: add gcc-multilib to build deps
  3118   - osutil: expand FileLock to support shared locks and more
  3119   - packaging: stop depending on python-docutils
  3120   - store,asserts,many: support the new action fetch-assertions
  3121   - tests: port snap-session-agent-* to session-tool
  3122   - packaging/fedora: disable FIPS compliant crypto for static
  3123     binaries
  3124   - tests: fix for preseeding failures
  3125  
  3126  * Tue Jul 28 2020 Samuele Pedroni <pedronis@lucediurna.net>
  3127  - New upstream release, LP: #1875071
  3128    - o/ifacestate: fix bug in snapsWithSecurityProfiles
  3129    - tests/main/selinux-clean: workaround SELinux denials triggered by
  3130      linger setup on Centos8
  3131  
  3132  * Mon Jul 27 2020 Zygmunt Krynicki <me@zygoon.pl>
  3133  - New upstream release, LP: #1875071
  3134    - many: backport _writable_defaults dir changes
  3135    - tests: fix incorrect check in smoke/remove test
  3136    - cmd/snap-bootstrap,seed: backport of uc20 PRs
  3137    - tests: avoid exit when nested type var is not defined
  3138    - cmd/snap-preseed: backport fixes
  3139    - interfaces: optimize rules of multiple connected iio/i2c/spi plugs
  3140    - many: cherry-picks for 2.45, gh-action, test fixes
  3141    - tests/lib: account for changes in arch package file name extension
  3142    - postrm, snap-mgmt: cleanup modules and other cherry-picks
  3143    - snap-confine: don't die if a device from sysfs path cannot be
  3144      found by udev
  3145    - data/selinux: update policy to allow forked processes to call
  3146      getpw*()
  3147    - tests/main/interfaces-time-control: exercise setting time via date
  3148    - interfaces/builtin/time-control: allow POSIX clock API
  3149    - usersession/userd: add "slack" to the white list of URL schemes
  3150      handled by xdg-open
  3151  
  3152  * Fri Jul 10 2020 Michael Vogt <mvo@ubuntu.com>
  3153  - New upstream release 2.45.2
  3154   - SECURITY UPDATE: sandbox escape vulnerability on snapctl xdg-open
  3155     implementation
  3156     - usersession/userd/launcher.go: remove XDG_DATA_DIRS environment
  3157       variable modification when calling the system xdg-open. Patch
  3158       thanks to James Henstridge
  3159     - packaging/ubuntu-16.04/snapd.postinst: ensure "snap userd" is
  3160       restarted. Patch thanks to Michael Vogt
  3161     - CVE-2020-11934
  3162   - SECURITY UPDATE: arbitrary code execution vulnerability on core
  3163     devices with access to physical removable media
  3164     - devicestate: Disable/restrict cloud-init after seeding.
  3165     - CVE-2020-11933
  3166  
  3167  * Fri Jun 05 2020 Michael Vogt <mvo@ubuntu.com>
  3168  - New upstream release 2.45.1
  3169   - data/selinux: allow checking /var/cache/app-info
  3170   - cmd/snap-confine: add support for libc6-lse
  3171   - interfaces: miscellaneous policy updates xlv
  3172   - snap-bootstrap: remove sealed key file on reinstall
  3173   - interfaces-ssh-keys: Support reading /etc/ssh/ssh_config.d/
  3174   - gadget: make ext4 filesystems with or without metadata checksum
  3175   - interfaces/fwupd: allow bind mount to /boot on core
  3176   - tests: cherry-pick test fixes from master
  3177   - snap/squashfs: also symlink snap Install with uc20 seed snap dir
  3178     layout
  3179   - interfaces/serial-port: add NXP SC16IS7xx (ttySCX) to allowed
  3180     devices
  3181   - snap,many: mv Open to snapfile pkg to support add'l options to
  3182     Container methods
  3183   - interfaces/builtin/desktop: do not mount fonts cache on distros
  3184     with quirks
  3185   - devicestate, sysconfig: revert support for cloud.cfg.d/ in the
  3186     gadget
  3187   - data/completion, packaging: cherry-pick zsh completion
  3188   - state: log task errors in the journal too
  3189   - devicestate: do not report "ErrNoState" for seeded up
  3190   - interfaces/desktop: silence more /var/lib/snapd/desktop/icons
  3191     denials
  3192   - packaging/fedora: disable FIPS compliant crypto for static
  3193     binaries
  3194   - packaging: stop depending on python-docutils
  3195  
  3196  * Tue May 12 2020 Michael Vogt <mvo@ubuntu.com>
  3197  - New upstream release 2.45
  3198   - o/devicestate: support doing system action reboots from recover
  3199     mode
  3200   - vendor: update to latest secboot
  3201   - tests: not fail when boot dir cannot be determined
  3202   - configcore: only reload journald if systemd is new enough
  3203   - cmd/snap-bootstrap/initramfs-mounts: append uuid to ubuntu-data
  3204     when decrypting
  3205   - tests/lib/prepare.sh: delete patching of the initrd
  3206   - cmd/snap: coldplug auto-import assertions from all removable
  3207     devices
  3208   - cmd/snap: fix the order of positional parameters in help output
  3209   - c/snap-bootstrap: port mount state mocking to the new style on
  3210     master
  3211   - cmd/snap-bootstrap/initramfs-mounts: add sudoers to dirs to copy
  3212     as well
  3213   - o/devicestate,cmd/snap-bootstrap: seal to recover mode cmdline,
  3214     unlock in recover mode initramfs
  3215   - progress: tweak multibyte label unit test data
  3216   - gadget: fix fallback device lookup for 'mbr' type structures
  3217   - progress: fix progress bar with multibyte duration units
  3218   - many: use /run/mnt/data over /run/mnt/ubuntu-data for uc20
  3219   - many: put the sealed keys in a directory on seed for tidiness
  3220   - cmd/snap-bootstrap: measure epoch and model before unlocking
  3221     encrypted data
  3222   - o/configstate: core config handler for persistent journal
  3223   - bootloader/uboot: use secondary ubootenv file boot.sel for uc20
  3224   - packaging: add "$TAGS" to dh_auto_test for debian packaging
  3225   - tests: ensure $cache_dir is actually available
  3226   - secboot,cmd/snap-bootstrap: add model to pcr protection profile
  3227   - devicestate: do not use snap-boostrap in devicestate to install
  3228   - tests: fix a typo in nested.sh helper
  3229   - devicestate: add support for cloud.cfg.d config from the gadget
  3230   - cmd/snap-bootstrap: cleanups, naming tweaks
  3231   - testutil: add NewDBusTestConn
  3232   - snap-bootstrap: lock access to sealed keys
  3233   - overlord/devicestate: preserve the current model inside ubuntu-
  3234     boot
  3235   - interfaces/apparmor: use differently templated policy for non-core
  3236     bases
  3237   - seccomp: add get_tls, io_pg* and *time64/*64 variants for existing
  3238     syscalls
  3239   - cmd/snap-bootstrap/initramfs-mounts: mount ubuntu-seed first,
  3240     other misc changes
  3241   - o/snapstate: tweak "waiting for restart" message
  3242   - boot: store model model and grade information in modeenv
  3243   - interfaces/firewall-control: allow -legacy and -nft for core20
  3244   - boot: enable makeBootable20RunMode for EnvRefExtractedKernel
  3245     bootloaders
  3246   - boot/bootstate20: add EnvRefExtractedKernelBootloader bootstate20
  3247     implementation
  3248   - daemon: fix error message from `snap remove-user foo` on classic
  3249   - overlord: have a variant of Mock that can take a state.State
  3250   - tests: 16.04 and 18.04 now have mediating pulseaudio (again)
  3251   - seed: clearer errors for missing essential snapd or core snap
  3252   - cmd/snap-bootstrap/initramfs-mounts: support
  3253     EnvRefExtractedKernelBootloader's
  3254   - gadget, cmd/snap-bootstrap: MBR schema support
  3255   - image: improve/adjust DownloadSnap doc comment
  3256   - asserts: introduce ModelGrade.Code
  3257   - tests: ignore user-12345 slice and service
  3258   - image,seed/seedwriter: support redirect channel aka default
  3259     tracks
  3260   - bootloader: use binary.Read/Write
  3261   - tests: uc20 nested suite part II
  3262   - tests/boot: refactor to make it easier for new
  3263     bootloaderKernelState20 impl
  3264   - interfaces/openvswitch: support use of ovs-appctl
  3265   - snap-bootstrap: copy auth data from real ubuntu-data in recovery
  3266     mode
  3267   - snap-bootstrap: seal and unseal encryption key using tpm
  3268   - tests: disable special-home-can-run-classic-snaps due to jenkins
  3269     repo issue
  3270   - packaging: fix build on Centos8 to support BUILDTAGS
  3271   - boot/bootstate20: small changes to bootloaderKernelState20
  3272   - cmd/snap: Implement a "snap routine file-access" command
  3273   - spread.yaml: switch back to latest/candidate for lxd snap
  3274   - boot/bootstate20: re-factor kernel methods to use new interface
  3275     for state
  3276   - spread.yaml,tests/many: use global env var for lxd channel
  3277   - boot/bootstate20: fix bug in try-kernel cleanup
  3278   - config: add system.store-certs.[a-zA-Z0-9] support
  3279   - secboot: key sealing also depends on secure boot enabled
  3280   - httputil: fix client timeout retry tests
  3281   - cmd/snap-update-ns: handle EBUSY when unlinking files
  3282   - cmd/snap/debug/boot-vars: add opts for setting dir and/or uc20
  3283     vars
  3284   - secboot: add tpm support helpers
  3285   - tests/lib/assertions/developer1-pi-uc20.model: use 20/edge for
  3286     kernel and gadget
  3287   - cmd/snap-bootstrap: switch to a 64-byte key for unlocking
  3288   - tests: preserve size for centos images on spread.yaml
  3289   - github: partition the github action workflows
  3290   - run-checks: use consistent "Checking ..." style messages
  3291   - bootloader: add efi pkg for reading efi variables
  3292   - data/systemd: do not run snapd.system-shutdown if finalrd is
  3293     available
  3294   - overlord: update tests to work with latest go
  3295   - cmd/snap: do not hide debug boot-vars on core
  3296   - cmd/snap-bootstrap: no error when not input devices are found
  3297   - snap-bootstrap: fix partition numbering in create-partitions
  3298   - httputil/client_test.go: add two TLS version tests
  3299   - tests: ignore user@12345.service hierarchy
  3300   - bootloader, gadget, cmd/snap-bootstrap: misc cosmetic things
  3301   - tests: rewrite timeserver-control test
  3302   - tests: fix racy pulseaudio tests
  3303   - many: fix loading apparmor profiles on Ubuntu 20.04 with ZFS
  3304   - tests: update snap-preseed --reset logic to accommodate for 2.44
  3305     change
  3306   - cmd/snap: don't wait for system key when stopping
  3307   - sandbox/cgroup: avoid making arrays we don't use
  3308   - osutil: mock proc/self/mountinfo properly everywhere
  3309   - selinux: export MockIsEnforcing; systemd: use in tests
  3310   - tests: add 32 bit machine to GH actions
  3311   - tests/session-tool: kill cron session, if any
  3312   - asserts: it should be possible to omit many snap-ids if allowed,
  3313     fix
  3314   - boot: cleanup more things, simplify code
  3315   - github: skip spread jobs when corresponding label is set
  3316   - dirs: don't depend on osutil anymore, mv apparmor vars to apparmor
  3317     pkg
  3318   - tests/session-tool: add session-tool --dump
  3319   - github: allow cached debian downloads to restore
  3320   - tests/session-tool: session ordering is non-deterministic
  3321   - tests: enable unit tests on debian-sid again
  3322   - github: move spread to self-hosted workers
  3323   - secboot: import secboot on ubuntu, provide dummy on !ubuntu
  3324   - overlord/devicestate: support for recover and run modes
  3325   - snap/naming: add validator for snap security tag
  3326   - interfaces: add case for rootWritableOverlay + NFS
  3327   - tests/main/uc20-create-partitions: tweaks, renames, switch to
  3328     20.04
  3329   - github: port CLA check to Github Actions
  3330   - interfaces/many: miscellaneous policy updates xliv
  3331   - configcore,tests: fix setting watchdog options on UC18/20
  3332   - tests/session-tool: collect information about services on startup
  3333   - tests/main/uc20-snap-recovery: unbreak, rename to uc20-create-
  3334     partitions
  3335   - state: add state.CopyState() helper
  3336   - tests/session-tool: stop anacron.service in prepare
  3337   - interfaces: don't use the owner modifier for files shared via
  3338     document portal
  3339   - systemd: move the doc comments to the interface so they are
  3340     visible
  3341   - cmd/snap-recovery-chooser: tweaks
  3342   - interfaces/docker-support: add overlayfs file access
  3343   - packaging: use debian/not-installed to ignore snap-preseed
  3344   - travis.yml: disable unit tests on travis
  3345   - store: start splitting store.go and store_test.go into subtopic
  3346     files
  3347   - tests/session-tool: stop cron/anacron from meddling
  3348   - github: disable fail-fast as spread cannot be interrupted
  3349   - github: move static checks and spread over
  3350   - tests: skip "/etc/machine-id" in "writablepaths" test
  3351   - snap-bootstrap: store encrypted partition recovery key
  3352   - httputil: increase testRetryStrategy max timelimit to 5s
  3353   - tests/session-tool: kill leaking closing session
  3354   - interfaces: allow raw access to USB printers
  3355   - tests/session-tool: reset failed session-tool units
  3356   - httputil: increase httpclient timeout in
  3357     TestRetryRequestTimeoutHandling
  3358   - usersession: extend timerange in TestExitOnIdle
  3359   - client: increase timeout in client tests to 100ms
  3360   - many: disentagle release and snapdenv from sandbox/*
  3361   - boot: simplify modeenv mocking to always write a modeenv
  3362   - snap-bootstrap: expand data partition on install
  3363   - o/configstate: add backlight option for core config
  3364   - cmd/snap-recovery-chooser: add recovery chooser
  3365   - features: enable robust mount ns updates
  3366   - snap: improve TestWaitRecovers test
  3367   - sandbox/cgroup: add ProcessPathInTrackingCgroup
  3368   - interfaces/policy: fix comment in recent new test
  3369   - tests: make session tool way more robust
  3370   - interfaces/seccomp: allow passing an address to setgroups
  3371   - o/configcore: introduce core config handlers (3/N)
  3372   - interfaces: updates to login-session-observe, network-manager and
  3373     modem-manager interfaces
  3374   - interfaces/policy/policy_test.go: add more tests'allow-
  3375     installation: false' and we grant based on interface attributes
  3376   - packaging: detect/disable broken seed in the postinst
  3377   - cmd/snap-confine/mount-support-nvidia.c: add libnvoptix as nvidia
  3378     library
  3379   - tests: remove google-tpm backend from spread.yaml
  3380   - tests: install dependencies with apt using --no-install-recommends
  3381   - usersession/userd: add zoommtg url support
  3382   - snap-bootstrap: fix disk layout sanity check
  3383   - snap: add `snap debug state --is-seeded` helper
  3384   - devicestate: generate warning if seeding fails
  3385   - config, features: move and rename config.GetFeatureFlag helper to
  3386     features.Flag
  3387   - boot, overlord/devicestate, daemon:  implement requesting boot
  3388     into a given recovery system
  3389   - xdgopenproxy: forward requests to the desktop portal
  3390   - many: support immediate reboot
  3391   - store: search v2 tweaks
  3392   - tests: fix cross build tests when installing dependencies
  3393   - daemon: make POST /v2/systems/<label> root only
  3394   - tests/lib/prepare.sh: use only initrd from the kernel snap
  3395   - cmd/snap,seed: validate full seeds (UC 16/18)
  3396   - tests/main/user-session-env: stop the user session before deleting
  3397     the test-zsh user
  3398   - overlord/devicestate, daemon: record the seed current system was
  3399     installed from
  3400   - gadget: SystemDefaults helper function to convert system defaults
  3401     config into a flattened map suitable for FilesystemOnlyApply.
  3402   - many: comment or avoid cryptic snap-ids in tests
  3403   - tests: add LXD_CHANNEL environment
  3404   - store: support for search API v2
  3405   - .github: register a problem matcher to detect spread failures
  3406   - seed: add Info() method for seed.Snap
  3407   - github: always run the "Discard spread workers" step, even if the
  3408     job fails
  3409   - github: offload self-hosted workers
  3410   - cmd/snap: the model command needs just a client, no waitMixin
  3411   - github: combine tests into one workflow
  3412   - github: fix order of go get caches
  3413   - tests: adding more workers for ubuntu 20.04
  3414   - boot,overlord: rename operating mode to system mode
  3415   - config: add new Transaction.GetPristine{,Maybe}() function
  3416   - o/devicestate: rename readMaybe* to maybeRead*
  3417   - github: cache Debian dependencies for unit tests
  3418   - wrappers: respect pre-seeding in error path
  3419   - seed: validate UC20 seed system label
  3420   - client, daemon, overlord/devicestate: request system action API
  3421     and stubs
  3422   - asserts,o/devicestate: support model specified alternative serial-
  3423     authority
  3424   - many: introduce naming.WellKnownSnapID
  3425   - o/configcore: FilesystemOnlyApply method for early configuration
  3426     of core (1/N)
  3427   - github: run C unit tests
  3428   - github: run spread tests on PRs only
  3429   - interfaces/docker-support: make containerd abstract socket more
  3430     generic
  3431   - tests: cleanup security-private-tmp properly
  3432   - overlord/devicestate,boot: do not hold to the originally read
  3433     modeenv
  3434   - dirs: rm RunMnt; boot: add vars for early boot env layout;
  3435     sysconfig: take targetdir arg
  3436   - cmd/snap-bootstrap/initramfs-mounts/tests: use dirs.RunMnt over
  3437     s.runMnt
  3438   - tests: add regression test for MAAS refresh bug
  3439   - errtracker: add missing mocks
  3440   - github: apt-get update before installing build-deps
  3441   - github: don't fail-fast
  3442   - github: run spread via github actions
  3443   - boot,many: add modeenv.WriteTo, make Write take no args
  3444   - wrappers: fix timer schedules that are days only
  3445   - tests/main/snap-seccomp-syscalls: install gperf
  3446   - github: always checkout to snapcore/snapd
  3447   - github: add prototype workflow running unit tests
  3448   - many: improve comments, naming, a possible TODO
  3449   - client: use Assert when checking for error
  3450   - tests: ensure sockets target is ready in session agent spread
  3451     tests
  3452   - osutil: do not leave processes behind after the test run
  3453   - tests: update proxy-no-core to match latest CDN changes
  3454   - devicestate,sysconfig: support "cloud.cfg.d" in uc20 for grade:
  3455     dangerous
  3456   - cmd/snap-failure,tests: try to make snap-failure more robust
  3457   - many: fix packages having mistakenly their copyright as doc
  3458   - many: enumerate system seeds, return them on the /v2/systems API
  3459     endpoint
  3460   - randutil: don't consume kernel entropy at init, just mix more info
  3461     to try to avoid fleet collisions
  3462   - snap-bootstrap: add creationSupported predicate for partition
  3463     types
  3464   - tests: umount partitions which are not umounted after remount
  3465     gadget
  3466   - snap: run gofmt -s
  3467   - many: improve environment handling, fixing duplicate entries
  3468   - boot_test: add many boot robustness tests for UC20 kernel
  3469     MarkBootSuccessul and SetNextBoot
  3470   - overlord: remove unneeded overlord.MockPruneInterval() mocks
  3471   - interfaces/greengrass-support: fix typo
  3472   - overlord,timings,daemon: separate timings from overlord/state
  3473   - tests: enable nested on core20 and test current branch
  3474   - snap-bootstrap: remove created partitions on reinstall
  3475   - boot: apply Go 1.10 formatting
  3476   - apparmor: use rw for uuidd request to default and remove from
  3477     elsewhere
  3478   - packaging: add README.source for debian
  3479   - tests: cleanup various uc20 boot tests from previous PR
  3480   - devicestate: disable cloud-init by default on uc20
  3481   - run-checks: tweak formatting checks
  3482   - packaging,tests: ensure debian-sid builds without vendor/
  3483   - travis.yml: run unit tests with go/master as well* travis.yml: run
  3484     unit tests with go/master as well
  3485   - seed: make Brand() part of the Seed interface
  3486   - cmd/snap-update-ns: ignore EROFS from rmdir/unlink
  3487   - daemon: do a forceful server shutdown if we hit a deadline
  3488   - tests/many: don't use StartLimitInterval anymore, unify snapd-
  3489     failover variants, build snapd snap for UC16 tests
  3490   - snap-seccomp: robustness improvements
  3491   - run-tests: disable -v for go test to avoid spaming the logs
  3492   - snap: whitelist lzo as support compression for snap pack
  3493   - snap: tweak comment in Install() for overlayfs detection
  3494   - many: introduce snapdenv.Preseeding instead of release.PreseedMode
  3495   - client, daemon, overlord/devicestate: structures and stubs for
  3496     systems API
  3497   - o/devicestate: delay the creation of mark-seeded task until
  3498     asserts are loaded
  3499   - data/selinux, tests/main/selinux: cleanup tmpfs operations in the
  3500     policy, updates
  3501   - interfaces/greengrass-support: add new 1.9 access
  3502   - snap: do not hardlink on overlayfs
  3503   - boot,image: ARM kernel extract prepare image
  3504   - interfaces: make gpio robust against not-existing gpios in /sys
  3505   - cmd/snap-preseed: handle --reset flag
  3506   - many: introduce snapdenv to present common snapd env options
  3507   - interfaces/kubernetes-support: allow autobind to journald socket
  3508   - snap-seccomp: allow mprotect() to unblock the tests
  3509   - tests/lib/reset: workaround unicode dot in systemctl output
  3510   - interfaces/udisks2: also allow Introspection on
  3511     /org/freedesktop/UDisks/**
  3512   - snap: introduce Container.RandomAccessFile
  3513   - o/ifacestate, api: implementation of snap disconnect --forget
  3514   - cmd/snap: make the portal-info command search for the network-
  3515     status interface
  3516   - interfaces: work around apparmor_parser slowness affecting uio
  3517   - tests: fix/improve failing spread tests
  3518   - many: clean separation of bootenv mocking vs mock bootloader kinds
  3519   - tests: mock prune ticker in overlord tests to reduce wait times
  3520   - travis: disable arm64 again
  3521   - httputil: add support for extra snapd certs
  3522   - travis.yml: run unit tests on arm64 as well
  3523   - many: fix a pair of ineffectual assignments
  3524   - tests: add uc20 kernel snap upgrade managers test, fix
  3525     bootloadertest bugs
  3526   - o/snapstate: set base in SnapSetup on snap revert
  3527   - interfaces/{docker,kubernetes}-support: updates for lastest k8s
  3528   - cmd/snap-exec: add test case for LP bug 1860369
  3529   - interfaces: make the network-status interface implicit on
  3530     classic
  3531   - interfaces: power control interfaceIt is documented in the
  3532     kernel
  3533   - interfaces: miscellaneous policy updates
  3534   - cmd/snap: add a "snap routine portal-info" command
  3535   - usersession/userd: add "apt" to the white list of URL schemes
  3536     handled by xdg-open
  3537   - interfaces/desktop: allow access to system prompter interface
  3538   - devicestate: allow encryption regardless of grade
  3539   - tests: run ipv6 network-retry test too
  3540   - tests: test that after "remove-user" the system is unmanaged
  3541   - snap-confine: unconditionally add /dev/net/tun to the device
  3542     cgroup
  3543   - snapcraft.yaml: use sudo -E and remove workaround
  3544   - interfaces/audio_playback: Fix pulseaudio config access
  3545   - ovelord/snapstate: update only system wide fonts cache
  3546   - wrappers: import /etc/environment in all services
  3547   - interfaces/u2f: Add Titan USB-C key
  3548   - overlord, taskrunner: exit on task/ensure error when preseeding
  3549   - tests: add session-tool, a su / sudo replacement
  3550   - wrappers: add mount unit dependency for snapd services on core
  3551     devices
  3552   - tests: just remove user when the system is not managed on create-
  3553     user-2 test
  3554   - snap-preseed: support for preseeding of snapd and core18
  3555   - boot: misc UC20 changes
  3556   - tests: adding arch-linux execution
  3557   - packaging: revert "work around review-tools and snap-confine"
  3558   - netlink: fix panic on arm64 with the new rawsockstop codewith a
  3559     nil Timeval panics
  3560   - spread, data/selinux: add CentOS 8, update policy
  3561   - tests: updating checks to new test account for snapd-test snaps
  3562   - spread.yaml: mv opensuse 15.1 to unstable
  3563   - cmd/snap-bootstrap,seed: verify only in-play snaps
  3564   - tests: use ipv4 in retry-network to unblock failing master
  3565   - data/systemd: improve the description
  3566   - client: add "Resume" to DownloadOptions and new test
  3567   - tests: enable snapd-failover on uc20
  3568   - tests: add more debug output to the snapd-failure handling
  3569   - o/devicestate: unset recovery_system when done seeding
  3570  
  3571  * Fri Apr 10 2020 Michael Vogt <mvo@ubuntu.com>
  3572  - New upstream release 2.44.3
  3573   - tests: fix racy pulseaudio tests
  3574   - many: fix loading apparmor profiles on Ubuntu 20.04 with ZFS
  3575   - tests: update snap-preseed --reset logic
  3576   - tests: backport partition fixes
  3577   - cmd/snap: don't wait for system key when stopping
  3578   - interfaces/many: miscellaneous policy updates xliv
  3579   - tests/main/uc20-snap-recovery: use 20.04 system
  3580   - tests: skip "/etc/machine-id" in "writablepaths
  3581   - interfaces/docker-support: add overlays file access
  3582  
  3583  * Thu Apr 2 2020 Michael Vogt <mvo@ubuntu.com>
  3584  - New upstream release 2.44.2
  3585   - packaging: detect/disable broken seeds in the postinst
  3586   - cmd/snap,seed: validate full seeds (UC 16/18)
  3587   - snap: add `snap debug state --is-seeded` helper
  3588   - devicestate: generate warning if seeding fails
  3589   - store: support for search API v2
  3590   - cmd/snap-seccomp/syscalls: update the list of known syscalls
  3591   - snap/cmd: the model command needs just a client, no waitMixin
  3592   - tests: cleanup security-private-tmp properly
  3593   - wrappers: fix timer schedules that are days only
  3594   - tests: update proxy-no-core to match latest CDN changes
  3595   - cmd/snap-failure,tests: make snap-failure more robust
  3596   - tests, many: don't use StartLimitInterval anymore, unify snapd-
  3597     failover variants, build snapd snap for UC16 tests
  3598  
  3599  * Sat Mar 21 2020 Michael Vogt <mvo@ubuntu.com>
  3600  - New upstream release 2.44.1
  3601   - randutil: switch back to setting up seed with lower entropy data
  3602   - interfaces/greengrass-support: fix typo
  3603   - packaging,tests: ensure debian-sid builds without vendor/
  3604   - travis.yml: run unit tests with go/master as well
  3605   - cmd/snap-update-ns: ignore EROFS from rmdir/unlink
  3606  
  3607  * Tue Mar 17 2020 Michael Vogt <mvo@ubuntu.com>
  3608  - New upstream release 2.44
  3609   - daemon: do a forceful serer shutdown if we hit a deadline
  3610   - snap: whitelist lzo as support compression for snap pack
  3611   - data/selinux: update policy to allow more ops
  3612   - interfaces/greengrass-support: add new 1.9 access
  3613   - snap: do not hardlink on overlayfs
  3614   - cmd/snap-preseed: handle --reset flag
  3615   - interfaces/kubernetes-support: allow autobind to journald socket
  3616   - snap-seccomp: allow mprotect() to unblock the tests
  3617   - tests/lib/reset: workaround unicode dot in systemctl output
  3618   - interfaces: work around apparmor_parser slowness affecting uio
  3619   - interfaces/udisks2: also allow Introspection on
  3620     /org/freedesktop/UDisks2/**
  3621   - tests: mock prune ticker in overlord tests to reduce wait times
  3622   - interfaces/{docker,kubernetes}-support: updates for lastest k8s
  3623   - interfaces: miscellaneous policy updates
  3624   - interfaces/audio_playback: Fix pulseaudio config access
  3625   - overlord: disable Test..AbortShortlyAfterStartOfOperation for 2.44
  3626   - ovelord/snapstate: update only system wide fonts cache
  3627   - wrappers: import /etc/environment in all services
  3628   - interfaces/u2f: Add Titan USB-C key
  3629   - overlord, taskrunner: exit on task/ensure error when preseeding
  3630   - overlord/snapstate/backend: update snapd services contents in unit
  3631     tests
  3632   - wrappers: add mount unit dependency for snapd services on core
  3633     devices
  3634   - Revert "tests: remove /tmp/snap.* left over by other tests"
  3635   - Revert "packaging: work around review-tools and snap-confine"
  3636   - netlink: fix panic on arm64 with the new rawsockstop code
  3637   - spread, data/selinux: add CentOS 8, update policy
  3638   - spread.yaml: mv opensuse tumbleweed to unstable too
  3639   - spread.yaml: mv opensuse 15.1 to unstable
  3640   - tests: use ipv4 in retry-network to unblock failing master
  3641   - data/systemd: improve the description
  3642   - tests/lib/prepare.sh: simplify, combine code paths
  3643   - tests/main/user-session-env: add test verifying environment
  3644     variables inside the user session
  3645   - spread.yaml: make qemu ubuntu-core-20-64 use ubuntu-20.04-64
  3646   - run-checks: SKIP_GMFMT really skips formatting checks
  3647   - tests: enable more tests for UC20/UC18
  3648   - tests: remove tmp dir for snap not-test-snapd-sh on security-
  3649     private-tmp test
  3650   - seed,cmd/snap-bootstrap: introduce seed.Snap.EssentialType,
  3651     simplify bootstrap code
  3652   - snapstate: do not restart in undoLinkSnap unless on first install
  3653   - cmd/snap-bootstrap: subcommand to detect UC chooser trigger
  3654   - cmd/snap-bootstrap/initramfs-mounts: mount the snapd snap in run-
  3655     mode too
  3656   - cmd/libsnap, tests: fix C unit tests failing as non-root
  3657   - cmd/snap-bootstrap: verify kernel snap is in modeenv before
  3658     mounting it
  3659   - tests: adding amazon linux to google backend
  3660   - cmd/snap-failure/snapd: rm snapd.socket, reset snapd.socket failed
  3661     status
  3662   - client: add support for "ResumeToken", "HeaderPeek" to download
  3663   - build: enable type: snapd
  3664   - tests: rm -rf /tmp/snap.* in restore
  3665   - cmd/snap-confine: deny snap-confine to load nss libs
  3666   - snapcraft.yaml: add comments, rename snapd part to snapd-deb
  3667   - boot: write current_kernels in bootstate20, makebootable
  3668   - packaging: work around review-tools and snap-confine
  3669   - tests: skipping interfaces-openvswitch on centos due to package is
  3670     not available
  3671   - packaging,snap-confine: stop being setgid root
  3672   - cmd/snap-confine: bring /var/lib/dhcp from host, if present
  3673   - store: rely on CommandFromSystemSnap to find xdelta3
  3674   - tests: bump sleep time of the new overlord tests
  3675   - cmd/snap-preseed: snapd version check for the target
  3676   - netlink: fix/support stopping goroutines reading netlink raw
  3677     sockets
  3678   - tests: reset PS1 before possibly interactive dash
  3679   - overlord, state: don't abort changes if spawn time before
  3680     StartOfOperationTime (2/2)
  3681   - snapcraft.yaml: add python3-apt, tzdata as build-deps for the
  3682     snapd snap
  3683   - tests: ask tar to speak English
  3684   - tests: using google storage when downloading ubuntu cloud images
  3685     from gce
  3686   - Coverity produces false positives for code like this:
  3687   - many: maybe restart & security backend options
  3688   - o/standby: add SNAPD_STANDBY_WAIT to control standby in
  3689     development
  3690   - snap: use the actual staging snap-id for snapd
  3691   - cmd/snap-bootstrap: create a new parser instance
  3692   - snapcraft.yaml: use build-base and adopt-info, rm builddeb
  3693     plugin
  3694   - tests: set StartLimitInterval in snapd failover test
  3695   - tests: disable archlinux system
  3696   - tests: add preseed test for classic
  3697   - many, tests: integrate all preseed bits and add spread tests
  3698   - daemon: support resuming downloads
  3699   - tests: use Filename() instead of filepath.Base(sn.MountFile())
  3700   - tests/core: add swapfiles test
  3701   - interfaces/cpu-control: allow to control cpufreq tunables
  3702   - interfaces: use commonInteface for desktopInterface
  3703   - interfaces/{desktop-legacy,unity7}: adjust for new ibus socket
  3704     location
  3705   - snap/info: add Filename
  3706   - bootloader: make uboot a RecoveryAwareBootloader
  3707   - gadget: skip update when mounted filesystem content is identical
  3708   - systemd: improve is-active check for 'failed' services
  3709   - boot: add current_kernels to modeenv
  3710   - o/devicestate: StartOfOperationTime helper for Prune (1/2)
  3711   - tests: detect LXD launching i386 containers
  3712   - tests: move main/ubuntu-core-* tests to core/ suite
  3713   - tests: remove snapd in ubuntu-core-snapd
  3714   - boot: enable base snap updates in bootstate20
  3715   - tests: Fix core revert channel after 2.43 has been released to
  3716     stable
  3717   - data/selinux: unify tabs/spaces
  3718   - o/ifacestate: move ResolveDisconnect to ifacestate
  3719   - spread: move centos to stable systems
  3720   - interfaces/opengl: allow datagrams to nvidia-driver
  3721   - httputil: add NoNetwork(err) helper, spread test and use in serial
  3722     acquire
  3723   - store: detect if server does not support http range headers
  3724   - test/lib/user: add helper lib for doing things for and as a user
  3725   - overlord/snapstate, wrappers: undo of snapd on core
  3726   - tests/main/interfaces-pulseaudio: use custom pulseaudio script,
  3727     set kill timeout
  3728   - store: add support for resume in DownloadStream
  3729   - cmd/snap: implement 'snap remove-user'
  3730   - overlord/devicestate: fix preseed unit tests on systems not using
  3731     /snap
  3732   - tests/main/static: ldd in glibc 2.31 logs to stderr now
  3733   - run-checks, travis: allow skipping spread jobs by adding a label
  3734   - tests: add new backend which includes images with tpm support
  3735   - boot: use constants for boot status values
  3736   - tests: add "core" suite for UC specific tests
  3737   - tests/lib/prepare: use a local copy of uc20 initramfs skeleton
  3738   - tests: retry mounting the udisk2 device due to timing issue
  3739   - usersession/client: add a client library for the user session
  3740     agent
  3741   - o/devicestate: Handle preseed mode in the firstboot mode (core16
  3742     only for now).
  3743   - boot: add TryBase and BaseStatus to modeenv; use in snap-bootstrap
  3744   - cmd/snap-confine: detect base transitions on core16
  3745   - boot: don't use "kernel" from the modeenv anymore
  3746   - interfaces: add uio interface
  3747   - tests: repack the initramfs + kernel snap for UC20 spread tests
  3748   - interfaces/greengrass-support: add /dev/null ->
  3749     /proc/latency_stats mount
  3750   - httputil: remove workaround for redirect handling in go1.7
  3751   - httputil: remove go1.6 transport workaround
  3752   - snap: add `snap pack --compression=<comp>` options
  3753   - tests/lib/prepare: fix hardcoded loopback device names for UC
  3754     images
  3755   - timeutil: add a unit test case for trivial schedule
  3756   - randutil,o/snapstate,-mkauthors.sh: follow ups to randutil
  3757     introduction
  3758   - dirs: variable with distros using alternate snap mount
  3759   - many,randutil: centralize and streamline our random value
  3760     generation
  3761   - tests/lib/prepare-restore: Revert "Continue on errors updating or
  3762     installing dependencies"
  3763   - daemon: Allow clients to call /v2/logout via Polkit
  3764   - dirs: manjaro-arm is like manjaro
  3765   - data, packaging: Add sudoers snippet to allow snaps to be run with
  3766     sudo
  3767   - daemon, store: better expose single action errors
  3768   - tests: switch mount-ns test to differential data set
  3769   - snapstate: refactor things to add the re-refresh task last
  3770   - daemon: drop support for the DELETE method
  3771   - client: move to /v2/users; implement RemoveUser
  3772   - boot: enable UC20 kernel extraction and bootState20 handling
  3773   - interfaces/policy: enforce plug-names/slot-names constraints
  3774   - asserts: parse plug-names/slot-names constraints
  3775   - daemon: make users result more consistent
  3776   - cmd/snap-confine,tests: support x.y.z nvidia version
  3777   - dirs: fixlet for XdgRuntimeDirGlob
  3778   - boot: add bootloader options to coreKernel
  3779   - o/auth,daemon: do not remove unknown user
  3780   - tests: tweak and enable tests on ubuntu 20.04
  3781   - daemon: implement user removal
  3782   - cmd/snap-confine: allow snap-confine to link to libpcre2
  3783   - interfaces/builtin: Allow NotificationReplied signal on
  3784     org.freedesktop.Notifications
  3785   - overlord/auth: add RemoveUserByName
  3786   - client: move user-related things to their own files
  3787   - boot: tweak kernel cmdline helper docstring
  3788   - osutil: implement deluser
  3789   - gadget: skip update when raw structure content is unchanged
  3790   - boot, cmd/snap, cmd/snap-bootstrap: move run mode and system label
  3791     detection to boot
  3792   - tests: fix revisions leaking from snapd-refresh test
  3793   - daemon: refactor create-user to a user action & hide behind a flag
  3794   - osutil/tests: check there are no leftover symlinks with
  3795     AtomicSymlink
  3796   - grub: support atomically renaming kernel symlinks
  3797   - osutil: add helpers for creating symlinks and renaming in an
  3798     atomic manner
  3799   - tests: add marker tag for core 20 test failure
  3800   - tests: fix gadget-update-pc test leaking snaps
  3801   - tests: remove revision leaking from ubuntu-core-refresh
  3802   - tests: remove revision leaking from remodel-kernel
  3803   - tests: disable system-usernames test on core20
  3804   - travis, tests, run-checks: skip nakedret
  3805   - tests: run `uc20-snap-recovery-encrypt` test on 20.04-64 as well
  3806   - tests: update mount-ns test tables
  3807   - snap: disable auto-import in uc20 install-mode
  3808   - tests: add a command-chain service test
  3809   - tests: use test-snapd-upower instead of upower
  3810   - data/selinux: workaround incorrect fonts cache labeling on RHEL7
  3811   - spread.yaml: fix ubuntu 19.10 and 20.04 names
  3812   - debian: check embedded keys for snap-{bootstrap,preseed} too
  3813   - interfaces/apparmor: fix doc-comments, unnecessary code
  3814   - o/ifacestate,o/devicestatate: merge gadget-connect logic into
  3815     auto-connect
  3816   - bootloader: add ExtractedRunKernelImageBootloader interface,
  3817     implement in grub
  3818   - tests: add spread test for hook permissions
  3819   - cmd/snap-bootstrap: check device size before boostrapping and
  3820     produce a meaningful error
  3821   - cmd/snap: add ability to register "snap routine" commands
  3822   - tests: add a test demonstrating that snaps can't access the
  3823     session agent socket
  3824   - api: don't return connections referring to non-existing
  3825     plugs/slots
  3826   - interfaces: refactor path() from raw-volume into utils with
  3827     comments for old
  3828   - gitignore: ignore snap files
  3829   - tests: skip interfaces-network-manager on arm devices
  3830   - o/devicestate: do not create perfTimings if not needed inside
  3831     ensureSeed/Operational
  3832   - tests: add ubuntu 20.04 to the tests execution and remove
  3833     tumbleweed from unstable
  3834   - usersession: add systemd user instance service control to user
  3835     session agent
  3836   - cmd/snap: print full channel in 'snap list', 'snap info'
  3837   - tests: remove execution of ubuntu 19.04 from google backend
  3838   - cmd/snap-boostrap: add mocking for fakeroot
  3839   - tests/core18/snapd-failover: collect more debug info
  3840   - many: run black formatter on all python files
  3841   - overlord: increase settle timeout for slow machines
  3842   - httputil: use shorter timeout in TestRetryRequestTimeoutHandling
  3843   - store, o/snapstate: send default-tracks header, use
  3844     RedirectChannel
  3845   - overlord/standby: fix possible deadlock in standby test
  3846   - cmd/snap-discard-ns: fix pattern for .info files
  3847   - boot: add HasModeenv to Device
  3848   - devicestate: do not allow remodel between core20 models
  3849   - bootloader,snap: misc tweaks
  3850   - store, overlord/snapstate, etc: SnapAction now returns a []…Result
  3851   - snap-bootstrap: create encrypted partition
  3852   - snap: remove "host" output from `snap version`
  3853   - tests: use snap remove --purge flag in most of the spread tests
  3854   - data/selinux, test/main/selinux-clean: update the test to cover
  3855     more scenarios
  3856   - many: drop NameAndRevision, use snap.PlaceInfo instead
  3857   - boot: split MakeBootable tests into their own file
  3858   - travis-ci: add go import path
  3859   - boot: split MakeBootable implementations into their own file
  3860   - tests: enable a lot of the tests of main on uc20
  3861   - packaging, tests: stop services in prerm
  3862   - tests: enable regression suite on core20
  3863   - overlord/snapstate: improve snapd snap backend link unit tests
  3864   - boot: implement SetNextBoot in terms of bootState.setNext
  3865   - wrappers: write and undo snapd services on core
  3866   - boot,o/devicestate: refactor MarkBootSuccessful over bootState
  3867   - snap-bootstrap: mount the correct snapd snap to /run/mnt/snapd
  3868   - snap-bootstrap: refactor partition creation
  3869   - tests: use new snapd.spread-tests-run-mode-tweaks.service unit
  3870   - tests: add core20 tests
  3871   - boot,o/snapstate: SetNextBoot/LinkSnap return whether to reboot,
  3872     use the information
  3873   - tests/main/snap-sign: add test for non-stdin signing
  3874   - snap-bootstrap: trigger udev after filesystem creation
  3875   - boot,overlord: introduce internal abstraction bootState and use it
  3876     for InUse/GetCurrentBoot
  3877   - overlord/snapstate: tracks are now sticky
  3878   - cmd: sign: add filename param
  3879   - tests: remove "test-snapd-tools" in smoke/sandbox on restore
  3880   - cmd/snap, daemon: stop over-normalising channels
  3881   - tests: fix classic-ubuntu-core-transition-two-cores after refactor
  3882     of MATCH -v
  3883   - packaging: ship var/lib/snapd/desktop/applications in the pkg
  3884   - spread: drop copr repo with F30 build dependencies
  3885   - tests: use test-snapd-sh snap instead of test-snapd-tools - Part 3
  3886   - tests: fix partition creation test
  3887   - tests: unify/rename services-related spread tests to start with
  3888     services- prefix
  3889   - test: extract code that modifies "writable" for test prep
  3890   - systemd: handle preseed mode
  3891   - snap-bootstrap: read only stdout when parsing the sfdisk json
  3892   - interfaces/browser-support: add more product/vendor paths
  3893   - boot: write compat UC16 bootvars in makeBootable20RunMode
  3894   - devicestate: avoid adding mockModel to deviceMgrInstallModeSuite
  3895   - devicestate: request reboot after successful doSetupRunSystem()
  3896   - snapd.core-fixup.sh: do not run on UC20 at all
  3897   - tests: unmount automounted snap-bootstrap devices
  3898   - devicestate: run boot.MakeBootable in doSetupRunSystem
  3899   - boot: copy kernel/base to data partition in makeBootable20RunMode
  3900   - tests: also check nested lxd container
  3901   - run-checks: complain about MATCH -v
  3902   - boot: always return the trivial boot participant in ephemeral mode
  3903   - o/devicestate,o/snapstate: move the gadget.yaml checkdrive-by: use
  3904     gadget.ReadInfoFromSnapFile in checkGadgetRemodelCompatible
  3905   - snap-bootstrap: append new partitions
  3906   - snap-bootstrap: mount filesystems after creation
  3907   - snapstate: do not try to detect rollback in ephemeral modes
  3908   - snap-bootstrap: trigger udev for new partitions
  3909   - cmd/snap-bootstrap: xxx todos about kernel cross-checks
  3910   - tests: avoid mask rsyslog service in case is not enabled on the
  3911     system
  3912   - tests: fix use of MATCH -v
  3913   - cmd/snap-preseed: update help strings
  3914   - cmd/snap-bootstrap: actually parse snapd_recovery_system label
  3915   - bootstrap: reduce runmode mounts from 5 to 2 steps.
  3916   - lkenv.go: adjust for new location of include file
  3917   - snap: improve squashfs.ReadFile() error
  3918   - systemd: fix uc20 shutdown
  3919   - boot: write modeenv when creating the run mode
  3920   - boot,image: add skeleton boot.makeBootable20RunMode
  3921   - cmd/snap-preseed: add snap-preseed executable
  3922   - overlord,boot: follow ups to #7889 and #7899
  3923   - interfaces/wayland: Add access to Xwayland's shm files
  3924   - o/hookstate/ctlcmd: fix command name in snapctl -h
  3925   - daemon,snap: remove screenshot deprecation notice
  3926   - overlord,o/snapstate: make sure we never leave config behind
  3927   - many: pass consistently boot.Device state to boot methods
  3928   - run-checks: check multiline string blocks in
  3929     restore/prepare/execute sections of spread tests
  3930   - intrefaces: login-session-control - added missing dbus commands
  3931   - tests/main/parallel-install-remove-after: parallel installs should
  3932     not break removal
  3933   - overlord/snapstate: tweak assumes error hint
  3934   - overlord: replace DeviceContext.OldModel with GroundContext
  3935   - devicestate: use httputil.ShouldRetryError() in
  3936     prepareSerialRequest
  3937   - tests: replace "test-snapd-base-bare" with real "bare" base snap
  3938   - many: pass a Model to the gadget info reading functions
  3939   - snapstate: relax gadget constraints in ConfigDefaults Et al.
  3940   - devicestate: only run ensureBootOk() in "run" mode
  3941   - tests/many: quiet lxc launching, file pushing
  3942   - tests: disable apt-hooks test until it can be properly fixed
  3943   - tests: 16.04 and 18.04 now have mediating pulseaudio
  3944  
  3945  * Wed Feb 12 2020 Michael Vogt <mvo@ubuntu.com>
  3946  - New upstream release 2.43.3
  3947   - interfaces/opengl: allow datagrams to nvidia-driver
  3948   - httputil: add NoNetwork(err) helper, spread test and use
  3949     in serial acquire
  3950   - interfaces: add uio interface
  3951   - interfaces/greengrass-support: 'aws-iot-greengrass' snap fails to
  3952     start due to apparmor deny on mounting of "/proc/latency_stats".
  3953   - data, packaging: Add sudoers snippet to allow snaps to be run with
  3954     sudo
  3955  
  3956  * Tue Jan 28 2020 Michael Vogt <mvo@ubuntu.com>
  3957  - New upstream release 2.43.2
  3958   - cmd/snap-confine: Revert #7421 (unmount /writable from snap view)
  3959   - overlord/snapstate: fix for re-refresh bug
  3960   - tests, run-checks, many: fix nakedret issues
  3961   - data/selinux: workaround incorrect fonts cache labeling on RHEL7
  3962   - tests: use test-snapd-upower instead of upower
  3963   - overlord: increase overall settle timeout for slow arm boards
  3964  
  3965  * Tue Jan 14 2020 Michael Vogt <mvo@ubuntu.com>
  3966  - New upstream release 2.43.1
  3967   - devicestate: use httputil.ShouldRetryError() in prepareSerialRequest
  3968   - overlord/standby: fix possible deadlock in standby test
  3969   - cmd/snap-discard-ns: fix pattern for .info files
  3970   - overlord,o/snapstate: make sure we never leave config behind
  3971   - data/selinux: update policy to cover more cases
  3972   - snap: remove "host" output from `snap version`
  3973  
  3974  * Thu Jan 09 2020 Michael Vogt <mvo@ubuntu.com>
  3975  - New upstream release 2.43
  3976   - snap: default to "--direct" in `snap known`
  3977   - packaging: ship var/lib/snapd/desktop/applications in the
  3978     pkg
  3979   - tests: cherry-pick fixes for  snap-set-core-config/ubuntu-core-
  3980     config-defaults-once
  3981   - tests: use test-snapd-sh snap instead of test-snapd-tools
  3982   - tests: rename "test-snapd-sh" in smoke test to test-snapd-sandbox
  3983   - tests: fix partition creation test
  3984   - packaging: fix incorrect changelog entry
  3985   - Revert "tests: 16.04 and 18.04 now have mediating pulseaudio"
  3986   - tests: 16.04 and 18.04 now have mediating pulseaudio
  3987   - interfaces: include hooks in plug/slot apparmor label
  3988   - interfaces: add raw-volume interface for access to partitions
  3989   - image: set recovery system label when creating the image
  3990   - cmd/snapd-generator: fix unit name for non /snap mount locations
  3991   - boot,bootloader: setup the snap recovery system bootenv
  3992   - seed: support ModeSnaps(mode) for mode != "run"
  3993   - seed: fix seed location of local but asserted snaps
  3994   - doc: HACKING.md change autopkgtest-trusty-amd64.img name
  3995   - interfaces/seccomp: parallelize seccomp backend setup
  3996   - cmd/snap-bootstrap: mount ubuntu-data tmpfs, in one go with kernel
  3997     & base
  3998   - interfaces: add audio-playback/record and pulseaudio spread tests
  3999   - apparmor: allow 'r'
  4000     /sys/kernel/mm/transparent_hugepage/hpage_pmd_size
  4001   - cmd/snap-mgmt, packaging/postrm: stop and remove socket units when
  4002     purging
  4003   - tests: use test-snapd-sh snap instead of test-snapd-tools
  4004   - snap-confine: raise egid before calling setup_private_mount()
  4005   - tests: fix fwupd version regular expression
  4006   - snap-bootstrap: parse seed if either kernel or base are not
  4007     mounted
  4008   - tests: check for SELinux denials in interfaces-kvm spread test
  4009   - tests: run snap-set-core-config on all core devices
  4010   - selinux: update policy to allow modifications related to kmod
  4011     backend
  4012   - o/hookstate/ctlcmd: snapctl is-connected command
  4013   - devicestate: add missing test for failing task setup-run-system
  4014   - gadget: add missing test for duplicate detection of roles
  4015   - tests/cmd/snapctl: unset SNAP_CONTEXT for the suite
  4016   - snap/pack, cmd_pack: 'snap pack --check-skeleton' checks
  4017     interfaces
  4018   - gitignore: ignore visual studio code directory
  4019   - snap-bootstrap: implement "run" mode in snap-bootstrap initramfs-
  4020     mounts
  4021   - interfaces/apparmor: handle pre-seeding mode
  4022   - devicestate: implement creating partitions in "install" mode
  4023   - seed: support extra snaps on top of Core 20 dangerous models
  4024   - tests: cache snaps also for ubuntu core and add new snaps to cache
  4025   - snap-bootstrap: support auto-detect device in create-partitions
  4026   - tests: fix partitioning test debug message
  4027   - tests: prevent partitioning test errors
  4028   - cmd/snap-bootstrap: stub out snap.SanitizePlugsSlots for real
  4029   - gadget: extract and export new DiskFromPartition() helper
  4030   - snap-bootstrap: force partition table operations
  4031   - HACKING.md: add nvidia options to configure example
  4032   - tests: move the watchdog timeout to 2s to make the tests work in
  4033     rpi
  4034   - tests: demand silence from check_journalctl_log
  4035   - tests: fix the channels checks done on nested tests
  4036   - tests: reduce the complexity of the test-snapd-sh snap
  4037   - snap/squashfs, osutil: verify files/dirs can be accessed by
  4038     mksquashfs when building a snap
  4039   - boot: add boot.Modeenv.Kernel support
  4040   - devicestate: ensure system installation
  4041   - tests: apply change on permissions to serial port on hotplug test
  4042   - cmd/snap-update-ns: adjust debugging output for usability
  4043   - devicestate: add reading of modeenv to uc20 firstboot code
  4044   - tests/lib/prepare: drop workarounds for rpmbuild rewriting /bin/sh
  4045   - cmd/snap-bootstrap: write /var/lib/snapd/modeenv to the right
  4046     place
  4047   - boot: add boot.Modeenv.Base support
  4048   - overlord/snapstate: install task edges
  4049   - cmd/snap-bootstrap: some small naming and code org tweaks
  4050   - snap-bootstrap: remove SNAPPY_TESTING check, we use it for real
  4051     now
  4052   - interfaces: remove leftover reservedForOS
  4053   - snap-bootstrap: write /run/mnt/ubuntu-data/var/lib/snapd/modeenv
  4054   - osutil/mount: optimize flagOptSearch some more
  4055   - devicestate: read modeenv early and store in devicestate
  4056   - interfaces: add login-session-observe for who, {fail,last}log and
  4057     loginctl
  4058   - tests: add Ubuntu Eoan to google-sru backend
  4059   - osutil/mount: de-duplicate code to use a list
  4060   - interfaces: remove reservedForOS from commonInterface
  4061   - interfaces/browser-support: allow reading status of huge pages
  4062   - interfaces: update system-backup tests to not check for sanitize
  4063     errors related to os
  4064   - interfaces: add system-backup interface
  4065   - osutil/mount: add {Unm,M}outFlagsToOpts helpers
  4066   - snap-bootstrap: make cmdline parsing robust
  4067   - overlord/patch: normalize tracking channel in state
  4068   - boot: add boot.Modeenv that can read/write the UC20 modeenv files
  4069   - bootloader: add new bootloader.InstallBootConfig()
  4070   - many: share single implementation to list needed default-providers
  4071   - snap-bootstrap: implement "snap-bootstrap initramfs-mounts"
  4072   - seccomp: allow chown 'snap_daemon:root' and 'root:snap_daemon'
  4073   - osutil: handle "rw" mount flag in ParseMountEntry
  4074   - overlord/ifacestate: report bad plug/slots with warnings on snap
  4075     install
  4076   - po: sync translations from launchpad
  4077   - tests: cleanup most test snaps icons, they were anyway in the
  4078     wrong place
  4079   - seed: fix confusing pre snapd dates in tests
  4080   - many: make ValidateBasesAndProviders signature simpler/canonical
  4081   - snap-bootstrap: set expected filesystem labels
  4082   - testutil, many: make MockCommand() create prefix of absolute paths
  4083   - tests: improve TestDoPrereqRetryWhenBaseInFlight to fix occasional
  4084     flakiness.
  4085   - seed: proper support for optional snaps for Core 20 models
  4086   - many: test various kinds of overriding for the snapd snap in Core
  4087     20
  4088   - cmd/snap-failure: passthrough snapd logs, add informational
  4089     logging
  4090   - cmd/snap-failure: fallback to snapd from core, extend tests
  4091   - configcore: fix missing error propagation
  4092   - devicestate: rename ensureSeedYaml -> ensureSeeded
  4093   - tests: adding fedora 31
  4094   - tests: restart the snapd service in the snapd-failover test
  4095   - seed: Core 20 seeds channel overrides support for grade dangerous
  4096   - cmd: fix the get command help message
  4097   - tests: enable degraded test on arch linux after latest image
  4098     updates
  4099   - overlord/snapstate: don't re-enable and start disabled services on
  4100     refresh, etc.
  4101   - seed: support in Core 20 seeds local unasserted snaps for model
  4102     snaps
  4103   - snap-bootstrap: add go-flags cmdline parsing and tests
  4104   - gadget: skip fakeroot if not needed
  4105   - overlord/state: panic in MarkEdge() if task is nil
  4106   - spread: fix typo in spread suite
  4107   - overlord: mock device serial in gadget remodel unit tests
  4108   - tests: fix spread shellcheck and degraded tests to unbreak master
  4109   - spread, tests: openSUSE Tumbleweed to unstable systems, update
  4110     system-usernames on Amazon Linux 2
  4111   - snap: extract printInstallHint in cmd_download.go
  4112   - cmd: fix a pair of typos
  4113   - release: preseed mode flag
  4114   - cmd/snap-confine: tracking processes with classic confinement
  4115   - overlord/ifacestate: remove automatic connections if plug/slot
  4116     missing
  4117   - o/ifacestate,interfaces,interfaces/policy: slots-per-plug: *
  4118   - tests/lib/state: snapshot and restore /var/snap during the tests
  4119   - overlord: add base->base remodel undo tests and fixes
  4120   - seed: test and improve Core 20 seed handling errors
  4121   - asserts: add "snapd" type to valid types in the model assertion
  4122   - snap-bootstrap: check gadget versus disk partitions
  4123   - devicestate: add support for gadget->gadget remodel
  4124   - snap/snapenv: preserve XDG_RUNTIME_DIR for classic confinement
  4125   - daemon: parse and reject invalid channels in snap ops
  4126   - overlord: add kernel remodel undo tests and fix undo
  4127   - cmd/snap: support (but warn) using deprecated multi-slash channel
  4128   - overlord: refactor mgrsSuite and extract kernelSuite
  4129   - tests/docker-smoke: add minimal docker smoke test
  4130   - interfaces: extend the fwupd slot to be implicit on classic
  4131   - cmd/snap: make 'snap list' shorten latest/$RISK to $RISK
  4132   - tests: fix for journalctl which is failing to restart
  4133   - cmd/snap,image: initial support for Core 20 in prepare-image with
  4134     test
  4135   - cmd/snap-confine: add support for parallel instances of classic
  4136     snaps, global mount ns initialization
  4137   - overlord: add kernel rollback across reboots manager test and
  4138     fixes
  4139   - o/devicestate: the basics of Core 20 firstboot support with test
  4140   - asserts: support and parsing for slots-per-plug/plugs-per-slotSee
  4141     https://forum.snapcraft.io/t/plug-slot-declaration-rules-greedy-
  4142     plugs/12438
  4143   - parts/plugins: don't xz-compress a deb we're going to discard
  4144   - cmd/snap: make completion skip hidden commands (unless overridden)
  4145   - many: load/consume Core 20 seeds (aka recovery systems)
  4146   - tests: add netplan test on ubuntu core
  4147   - seed/internal: doc comment fix and drop handled TODOs
  4148   - o/ifacestate: unify code into
  4149     autoConnectChecker.addAutoConnectionsneed to change to support
  4150     slots-per-plugs: *
  4151   - many: changes to testing in preparation of Core 20 seed consuming
  4152     code
  4153   - snapstate,devicestate: make OldModel() available in DeviceContext
  4154   - tests: opensuse tumbleweed has similar issue than arch linux with
  4155     snap --strace
  4156   - client,daemon: pass sha3-384 in /v2/download to the client
  4157   - builtin/browser_support.go: allow monitoring process memory
  4158     utilization (used by chromium)
  4159   - overlord/ifacestate: use SetupMany in setupSecurityByBackend
  4160   - tests: add 14.04 canonical-livepatch test
  4161   - snap: make `snap known --remote` use snapd if available
  4162   - seed: share auxInfo20 and makeSystemSnap via internal
  4163   - spread: disable secondary compression for deltas
  4164   - interfaces/content: workaround for renamed target
  4165   - tests/lib/gendevmodel: helper tool for generating developer model
  4166     assertions
  4167   - tests: tweak wording in mount-ns test
  4168   - tests: don't depend on GNU time
  4169   - o/snapstate, etc: SnapState.Channel -> TrackingChannel, and a
  4170     setter
  4171   - seed/seedwriter: support writing Core 20 seeds (aka recovery
  4172     systems)
  4173   - snap-recovery: rename to "snap-bootstrap"
  4174   - managers: add remodel undo test for new required snaps case
  4175   - client: add xerrors and wrap errors coming from "client"
  4176   - tests: verify host is not affected by mount-ns tests
  4177   - tests: configure the journald service for core systems
  4178   - cmd/snap, store: include snapcraft.io page URL in snap info output
  4179   - cmd/cmdutil: version helper
  4180   - spread: enable bboozzoo/snapd-devel-deps COPR repo for getting
  4181     golang-x-xerrors
  4182   - interfaces: simplify AddUpdateNS and emit
  4183   - interfaces/policy: expand cstrs/cstrs1 to
  4184     altConstraints/constraints
  4185   - overlord/devicestate: check snap handler for gadget remodel
  4186     compatibility
  4187   - snap-recovery: deploy gadget content when creating partitions
  4188   - gadget: skip structures with MBR role during remodel
  4189   - tests: do not use lsblk in uc20-snap-recovery test
  4190   - overlord/snapstate: add LastActiveDisabledServices,
  4191     missingDisabledServices
  4192   - overlord/devicestate: refactor and split into per-functionality
  4193     files, drop dead code
  4194   - tests: update mount-ns after addition of /etc/systemd/user
  4195   - interfaces/pulseaudio: adjust to manually connect by default
  4196   - interfaces/u2f-devices: add OnlyKey to devices list
  4197   - interfaces: emit update-ns snippets to function
  4198   - interfaces/net-setup-{observe,control}: add Info D-Bus method
  4199     accesses
  4200   - tests: moving ubuntu-19.10-64 from google-unstable to google
  4201     backend
  4202   - gadget: rename existing and add new helpers for checking
  4203     filesystem/partition presence
  4204   - gadget, overlord/devicestate: add support for customized update
  4205     policy, add remodel policy
  4206   - snap-recovery: create filesystems as defined in the gadget
  4207   - tests: ignore directories for go modules
  4208   - policy: implement CanRemove policy for the snapd type
  4209   - overlord/snapstate: skip catalog refresh if unseeded
  4210   - strutil: add OrderedSet
  4211   - snap-recovery: add minimal binary so that we can use spread on it
  4212   - gadget, snap/pack: perform extended validation of gadget metadata
  4213     and contents
  4214   - timeutil: fix schedules with ambiguous nth weekday spans
  4215   - interfaces/many: allow k8s/systemd-run to mount volume subPaths
  4216     plus cleanups
  4217   - client: add KnownOptions to Know() and support remote assertions
  4218   - tests: check the apparmor_parser when the file exists on snap-
  4219     confine test
  4220   - gadget: helper for volume compatibility checks
  4221   - tests: update snap logs to match for multiple lines for "running"
  4222   - overlord: add checks for bootvars in
  4223     TestRemodelSwitchToDifferentKernel
  4224   - snap-install: add ext4,vfat creation support
  4225   - snap-recovery: remove "usedPartitions" from sfdisk.Create()
  4226   - image,seed: hide Seed16/Snap16, use seed.Open in image_test.go
  4227   - cmd/snap: Sort tasks in snap debug timings output by lanes and
  4228     ready-time.
  4229   - snap-confine.apparmor.in: harden pivot_root until we have full
  4230     mediation
  4231   - gadget: refactor ensureVolumeConsistency
  4232   - gadget: add a public helper for parsing gadget metadata
  4233   - many: address issues related to explicit/implicit channels for
  4234     image building
  4235   - overlord/many: switch order of check snap parameters
  4236   - cmd/snap-confine: remove leftover condition from capability world
  4237   - overlord: set fake serial in TestRemodelSwitchToDifferentKernel
  4238   - overlord/many: extend check snap callback to take snap container
  4239   - recovery-tool: add sfdisk wrapper
  4240   - tests: launch the lxd images following the pattern
  4241     ubuntu:${VERSION_ID}
  4242   - sandbox/cgroup: move freeze/thaw code
  4243   - gadget: accept system-seed role and ubuntu-data label
  4244   - test/lib/names.sh: make backslash escaping explicit
  4245   - spread: generate delta when using google backend
  4246   - cmd/snap-confine: remove loads of dead code
  4247   - boot,dirs,image: various refinements in the prepare-image code
  4248     switched to seedwriter
  4249   - spread: include mounts list in task debug output
  4250   - .gitignore: pair of trivial changes
  4251   - image,seed/seedwriter: switch image to use seedwriter.Writer
  4252   - asserts: introduce explicit support for grade for Core 20 models
  4253   - usersession: drive by fixes for things flagged by unused or
  4254     gosimple
  4255   - spread.yaml: exclude vendor dir
  4256   - sandbox/cgroup, overlord/snapstate: move helper for listing pids
  4257     in group to the cgroup package
  4258   - sandbox/cgroup: refactor process cgroup helper to support v2 and
  4259     named hierarchies
  4260   - snap-repair: error if run as non-root
  4261   - snap: when running `snap repair` without arguments, show hint
  4262   - interfaces: add cgroup-version to system-key
  4263   - snap-repair: add missing check in TestRepairBasicRun
  4264   - tests: use `snap model` instead of `snap known model` in tests
  4265   - daemon: make /v2/download take snapRevisionOptions
  4266   - snap-repair: add additional comment about trust in runner.Verify()
  4267   - client: add support to use the new "download" API
  4268   - interfaces: bump system-key version (and keep on bumping)
  4269   - interfaces/mount: account for cgroup version when reporting
  4270     supported features
  4271   - tests: change regex to validate access to cdn during snap
  4272     download
  4273   - daemon: change /v2/download API to take "snap-name" as input
  4274   - release: make forced dev mode look at cgroupv2 support
  4275   - seed/seedwriter: support for extra snaps
  4276   - wrappers/services.go: add disabled svc list arg to AddSnapServices
  4277   - overlord/snapstate: add SetTaskSnapSetup helper + unit tests
  4278   - cmd/libsnap: use cgroup.procs instead of tasks
  4279   - tests: fix snapd-failover test for core18 tests on boards
  4280   - overlord/snapstate/policy, etc: introduce policy, move canRemove
  4281     to it
  4282   - seed/seedwriter: cleanups and small left over todos* drive-by: use
  4283     testutil.FilePresent consistently
  4284   - cmd/snap: update 'snap find' help because it's no longer narrow
  4285   - seed/seedwriter,snap/naming: support classic models
  4286   - cmd/snap-confine: unmount /writable from snap view
  4287   - spread.yaml: exclude automake cacheThe error message is looks like
  4288     this:dpkg-source: info: local changes detected, the modified files
  4289     are:
  4290   - interfaces/openvswitch: allow access to other openvswitch sockets
  4291   - cmd/model: don't show model with display-name inline w/ opts
  4292   - daemon: add a 'prune' debug action
  4293   - client: add doTimeout to http.Client{Timeout}
  4294   - interfaces/seccomp: query apparmor sandbox helper rather than
  4295     aggregate info
  4296   - sandbox/cgroup: avoid dependency on dirs
  4297   - seed/seedwriter,snap: support local snaps
  4298   - overlord/snapstate: fix undo on firstboot seeding.
  4299   - usersession: track connections to session agent for exit on idle
  4300     and peer credential checks
  4301   - tests: fix ubuntu-core-device-reg test for arm devices on core18
  4302   - sandbox/seccomp: move the remaining sandbox bits to a
  4303     corresponding sandbox package
  4304   - osutil: generalize SyncDir with FileState interface
  4305   - daemon, client, cmd/snap: include architecture in 'snap version'
  4306   - daemon: allow /v2/assertions/{assertType} to query store
  4307   - gadget: do not fail the update when old gadget snap is missing
  4308     bare content
  4309   - sandbox/selinux: move SELinux related bits from 'release' to
  4310     'sandbox/selinux'
  4311   - tests: add unit test for gadget defaults with a multiline string
  4312   - overlord/snapstate: have more context in the errors about
  4313     prerequisites
  4314   - httputil: set user agent for CONNECT
  4315   - seed/seedwriter: resolve channels using channel.Resolve* for snaps
  4316   - run-checks: allow overriding gofmt binary, show gofmt diff
  4317   - asserts,seed/seedwriter: follow snap type sorting in the model
  4318     assertion snap listings
  4319   - daemon: return "snapname_rev.snap" style when using /v2/download
  4320   - tests: when the backend is external skip the loop waiting for snap
  4321     version
  4322   - many: move AppArmor probing code under sandbox/apparmor
  4323   - cmd: add `snap debug boot-vars` that dumps the current bootvars
  4324   - tests: skip the ubuntu-core-upgrade on arm devices on core18
  4325   - seed/seedwriter: implement WriteMeta and tree16 corresponding code
  4326   - interfaces/docker-support,kubernetes-support: misc updates for
  4327     strict k8s
  4328   - tests: restart the journald service while preparing the test
  4329   - tests/cmd/debug_state: make the test output TZ independent
  4330   - interfaces/kubernetes-support: allow use of /run/flannel
  4331   - seed/seedwriter: start of Writer and internal policy16/tree16
  4332   - sandbox/cgroup, usersession/userd: move cgroup related helper to a
  4333     dedicated package
  4334   - tests: move "centos-7" to unstable systems
  4335   - snapstate: add missing tests for checkGadgetOrKernel
  4336   - docs: Update README.md
  4337   - snapcraft: set license to GPL-3.0
  4338   - interfaces/wayland: allow a confined server running in a user
  4339     session to work with Qt, GTK3 & SDL2 clients
  4340   - selinux: move the package under sandbox/selinux
  4341   - interfaces/udev: account for cgroup version when reporting
  4342     supported features
  4343   - store, ..., client: add a "website" field
  4344   - sanity: sanity check cgroup probing
  4345   - snapstate: increase settleTimeout in
  4346     TestRemodelSwitchToDifferentKernel
  4347   - packaging: remove obsolete usr.lib.snapd.snap-confine in postinst
  4348   - data/selinux: allow snapd/snap to do statfs() on the cgroup
  4349     mountpoint
  4350   - usersession/userd: make sure to export DBus interfaces before
  4351     requesting a name
  4352   - data/selinux: allow snapd to issue sigkill to journalctl
  4353   - docs: Add Code of Conduct
  4354   - store: download propagates options to delta download
  4355   - tests/main/listing: account for dots in ~pre suffix
  4356  
  4357  * Fri Dec 06 2019 Michael Vogt <mvo@ubuntu.com>
  4358  - New upstream release 2.42.5
  4359   - snap-confine: revert, with comment, explicit unix deny for nested
  4360     lxd
  4361   - Disable mount-ns test on 16.04. It is too flaky currently.
  4362  
  4363  * Thu Nov 28 2019 Michael Vogt <mvo@ubuntu.com>
  4364  - New upstream release 2.42.4
  4365   - overlord/snapstate: make sure configuration defaults are applied
  4366     only once
  4367  
  4368  * Wed Nov 27 2019 Michael Vogt <mvo@ubuntu.com>
  4369  - New upstream release 2.42.3
  4370   - overlord/snapstate: pick up system defaults when seeding the snapd
  4371     snap
  4372   - cmd/snap-update-ns: fix overlapping, nested writable mimic
  4373     handling
  4374   - interfaces: misc updates for u2f-devices, browser-support,
  4375     hardware-observe, et al
  4376   - tests: reset failing "fwupd-refresh.service" if needed
  4377   - tests/main/gadget-update-pc: use a program to modify gadget yaml
  4378   - snap-confine: suppress noisy classic snap file_inherit denials
  4379  
  4380  * Wed Nov 20 2019 Michael Vogt <mvo@ubuntu.com>
  4381  - New upstream release 2.42.2
  4382   - interfaces/lxd-support: Fix on core18
  4383   - tests/main/system-usernames: Amazon Linux 2 comes with libseccomp
  4384     2.4.1 now
  4385   - snap-seccomp: add missing clock_getres_time64
  4386   - cmd/snap-seccomp/syscalls: update the list of known
  4387     syscalls
  4388   - sandbox/seccomp: accept build ID generated by Go toolchain
  4389   - interfaces: allow access to ovs bridge sockets
  4390  
  4391  * Wed Oct 30 2019 Michael Vogt <mvo@ubuntu.com>
  4392  - New upstream release 2.42.1
  4393   - interfaces: de-duplicate emitted update-ns profiles
  4394   - packaging: tweak handling of usr.lib.snapd.snap-confine
  4395   - interfaces: allow introspecting network-manager on core
  4396   - tests/main/interfaces-contacts-service: disable on openSUSE
  4397     Tumbleweed
  4398   - tests/lib/lxd-snapfuse: restore mount changes introduced by LXD
  4399   - snap: fix default-provider in seed validation
  4400   - tests: update system-usernames test now that opensuse-15.1 works
  4401   - overlord: set fake sertial in TestRemodelSwitchToDifferentKernel
  4402   - gadget: rename "boot{select,img}" -> system-boot-{select,image}
  4403   - tests: listing test, make accepted snapd/core versions consistent
  4404  
  4405  * Tue Oct 01 2019 Michael Vogt <mvo@ubuntu.com>
  4406  - New upstream release 2.42
  4407   - tests: disable {contacts,calendar}-service tests on debian-sid
  4408   - tests/main/snap-run: disable strace test cases on Arch
  4409   - cmd/system-shutdown: include correct prototype for die
  4410   - snap/naming: add test for hook name connect-plug-i2c
  4411   - cmd/snap-confine: allow digits in hook names
  4412   - gadget: do not fail the update when old gadget snap is missing
  4413     bare content
  4414   - tests: disable {contacts,calendar}-service tests on Arch Linux
  4415   - tests: move "centos-7" to unstable systems
  4416   - interfaces/docker-support,kubernetes-support: misc updates for
  4417     strict k8s
  4418   - packaging: remove obsolete usr.lib.snapd.snap-confine in
  4419     postinst
  4420   - tests: add test that ensures our snapfuse binary actually works
  4421   - packaging: use snapfuse_ll to speed up snapfuse performance
  4422   - usersession/userd: make sure to export DBus interfaces before
  4423     requesting a name
  4424   - data/selinux: allow snapd to issue sigkill to journalctl
  4425   - store: download propagates options to delta download
  4426   - wrappers: allow snaps to install icon theme icons
  4427   - debug: state-inspect debugging utility
  4428   - sandbox/cgroup: introduce cgroup wrappers package
  4429   - snap-confine: fix return value checks for udev functions
  4430   - cmd/model: output tweaks, add'l tests
  4431   - wrappers/services: add ServicesEnableState + unit tests
  4432   - tests: fix newline and wrong test name pointed out in previous PRs
  4433   - tests: extend mount-ns test to handle mimics
  4434   - run-checks, tests/main/go: allow gofmt checks to be skipped on
  4435     19.10
  4436   - tests/main/interfaces-{calendar,contacts}-service: disable on
  4437     19.10
  4438   - tests: part3 making tests work on ubuntu-core-18
  4439   - tests: fix interfaces-timeserver-control on 19.10
  4440   - overlord/snapstate: config revision code cleanup and extra tests
  4441   - devicestate: allow remodel to different kernels
  4442   - overlord,daemon: adjust startup timeout via EXTEND_TIMEOUT_USEC
  4443     using an estimate
  4444   - tests/main/many: increase kill-timeout to 5m
  4445   - interfaces/kubernetes-support: allow systemd-run to ptrace read
  4446     unconfined
  4447   - snapstate: auto transition on experimental.snapd-snap=true
  4448   - tests: retry checking until the written file on desktop-portal-
  4449     filechooser
  4450   - tests: unit test for a refresh failing on configure hook
  4451   - tests: remove mount_id and parent_id from mount-ns test data
  4452   - tests: move classic-ubuntu-core-transition* to nightly
  4453   - tests/mountinfo-tool: proper formatting of opt_fields
  4454   - overlord/configstate: special-case "null" in transaction Changes()
  4455   - snap-confine: fallback gracefully on a cgroup v2 only system
  4456   - tests: debian sid now ships new seccomp, adjust tests
  4457   - tests: explicitly restore after using LXD
  4458   - snapstate: make progress reporting less granular
  4459   - bootloader: little kernel support
  4460   - fixme: rename ubuntu*architectures to dpkg*architectures
  4461   - tests: run dbus-launch inside a systemd unit
  4462   - channel: introduce Resolve and ResolveLocked
  4463   - tests: run failing tests on ubuntu eoan due to is now set as
  4464     unstable
  4465   - systemd: detach rather than unmount .mount units
  4466   - cmd/snap-confine: add unit tests for sc_invocation, cleanup memory
  4467     leaks in tests
  4468   - boot,dirs,image: introduce boot.MakeBootable, use it in image
  4469     instead of ad hoc code
  4470   - cmd/snap-update-ns: clarify sharing comment
  4471   - tests/overlord/snapstate: refactor for cleaner test failures
  4472   - cmd/snap-update-ns: don't propagate detaching changes
  4473   - interfaces: allow reading mutter Xauthority file
  4474   - cmd/snap-confine: fix /snap duplication in legacy mode
  4475   - tests: fix mountinfo-tool filtering when used with rewriting
  4476   - seed,image,o/devicestate: extract seed loading to seed/seed16.go
  4477   - many: pass the rootdir and options to bootloader.Find
  4478   - tests: part5 making tests work on ubuntu-core-18
  4479   - cmd/snap-confine: keep track of snap instance name and the snap
  4480     name
  4481   - cmd: unify die() across C programs
  4482   - tests: add functions to make an abstraction for the snaps
  4483   - packaging/fedora, tests/lib/prepare-restore: helper tool for
  4484     packing sources for RPM
  4485   - cmd/snap: improve help and error msg for snapshot commands
  4486   - hookstate/ctlcmd: fix snapctl set help message
  4487   - cmd/snap: don't append / to snap name just because a dir exists
  4488   - tests: support fastly-global.cdn.snapcraft.io url on proxy-no-core
  4489     test
  4490   - tests: add --quiet switch to retry-tool
  4491   - tests: add unstable stage for travis execution
  4492   - tests: disable interfaces-timeserver-control on 19.10
  4493   - tests: don't guess in is_classic_confinement_supported
  4494   - boot, etc: simplify BootParticipant (etc) usage
  4495   - tests: verify retry-tool not retrying missing commands
  4496   - tests: rewrite "retry" command as retry-tool
  4497   - tests: move debug section after restore
  4498   - cmd/libsnap-confine-private, cmd/s-c: use constants for
  4499     snap/instance name lengths
  4500   - tests: measure behavior of the device cgroup
  4501   - boot, bootloader, o/devicestate: boot env manip goes in boot
  4502   - tests: enabling ubuntu 19.10-64 on spread.yaml
  4503   - tests: fix ephemeral mount table in left over by prepare
  4504   - tests: add version-tool for comparing versions
  4505   - cmd/libsnap: make feature flag enum 1<<N style
  4506   - many: refactor boot/boottest and move to bootloader/bootloadertest
  4507   - tests/cross/go-build: use go list rather than shell trickery
  4508   - HACKING.md: clarify where "make fmt" is needed
  4509   - osutil: make flock test more robust
  4510   - features, overlord: make parallel-installs exported, export flags
  4511     on startup
  4512   - overlord/devicestate:  support the device service returning a
  4513     stream of assertions
  4514   - many: add snap model command, add /v2/model, /v2/model/serial REST
  4515     APIs
  4516   - debian: set GOCACHE dir during build to fix FTBFS on eoan
  4517   - boot, etc.: refactor boot to have a lookup with different imps
  4518   - many: add the start of Core 20 extensions support to the model
  4519     assertion
  4520   - overlord/snapstate: revert track-risk behavior change and
  4521     validation on install
  4522   - cmd/snap,image,seed:  move image.ValidateSeed to
  4523     seed.ValidateFromYaml
  4524   - image,o/devicestate,seed: oops, make sure to clear seedtest
  4525     helpers
  4526   - tests/main/snap-info: update check.py for test-snapd-tools 2.0
  4527   - tests: moving tests to nightly suite
  4528   - overlord/devicestate,seed:  small step, introduce
  4529     seed.LoadAssertions and use it from firstboot
  4530   - snapstate: add comment to checkVersion vs strutil.VersionCompare
  4531   - tests: add unit tests for cmd_whoami
  4532   - tests: add debug section to interfaces-contacts-service
  4533   - many: introduce package seed and seedtest
  4534   - interfaces/bluez: enable communication between bluetoothd and
  4535     meshd via dbus
  4536   - cmd/snap: fix snap switch message
  4537   - overlord/snapstate: check channel names on install
  4538   - tests: check snap_daemon user and group on system-usernames-
  4539     illegal test are not created
  4540   - cmd/snap-confine: fix group and permission of .info files
  4541   - gadget: do not error on gadget refreshes with multiple volumes
  4542   - snap: use deterministic paths to find the built deb
  4543   - tests: just build snapd commands on go-build test
  4544   - tests: re-enable mount-ns test on classic
  4545   - tests: rename fuse_support to fuse-support
  4546   - tests: move restore-project-each code to existing function
  4547   - tests: simplify interfaces-account-control test
  4548   - i18n, vendor, packaging: drop github.com/ojii/gettext.go, use
  4549     github.com/snapcore/go-gettext
  4550   - tests: always say 'restore: |'
  4551   - tests: new test to check the output after refreshing/reverting
  4552     core
  4553   - snapstate: validate all system-usernames before creating them
  4554   - tests: fix system version check on listing test for external
  4555     backend
  4556   - tests: add check for snap_daemon user/group
  4557   - tests: don't look for lxcfs in mountinfo
  4558   - tests: adding support for arm devices on ubuntu-core-device-reg
  4559     test
  4560   - snap: explicitly forbid trying to parallel install from seed
  4561   - tests: remove trailing spaces from shell scripts
  4562   - tests: remove locally installed revisions of core
  4563   - tests: fix removal of snaps on ubuntu-core
  4564   - interfaces: support Tegra display drivers
  4565   - tests: move interfaces-contacts-service to /tmp
  4566   - interfaces/network-manager: allow using
  4567     org.freedesktop.DBus.ObjectManager
  4568   - tests: restore dpkg selections after upgrade-from-2.15 test
  4569   - tests: pass --remove to userdel on core
  4570   - snap/naming: simplify SnapSet somewhat
  4571   - devicestate/firstboot: check for missing bases early
  4572   - httputil: rework protocol error detection
  4573   - tests: unmount fuse connections only if not initially mounted
  4574   - snap: prevent duplicated snap name and snap files when parsing
  4575     seed.yaml
  4576   - tests: re-implement user tool in python
  4577   - image: improve/tweak some warning/error messages
  4578   - cmd/libsnap-confine-private: add checks for parallel instances
  4579     feature flag
  4580   - tests: wait_for_service shows status after actual first minute
  4581   - sanity: report proper errror when fuse is needed but not available
  4582   - snap/naming: introduce SnapRef, Snap, and SnapSet
  4583   - image: support prepare-image --classic for snapd snap only
  4584     imagesConsequently:
  4585   - tests/main/mount-ns: account for clone_children in cpuset cgroup
  4586     on 18.04
  4587   - many:  merging asserts.Batch Precheck with CommitTo and other
  4588     clarifications
  4589   - devicestate: add missing test for remodeling possibly removing
  4590     required flag
  4591   - tests: use user-tool to remove test user in the non-home test
  4592   - overlord/configstate: sort patch keys to have deterministic order
  4593     with snap set
  4594   - many: generalize assertstate.Batch to asserts.Batch, have
  4595     assertstate.AddBatch
  4596   - gadget, overlord/devicestate: rename Position/Layout
  4597   - store, image, cmd: make 'snap download' leave partials
  4598   - httputil: improve http2 PROTOCOL_ERROR detection
  4599   - tests: add new "user-tool" helper and use in system-user tests
  4600   - tests: clean up after NFS tests
  4601   - ifacestate: optimize auto-connect by setting profiles once after
  4602     all connects
  4603   - hookstate/ctlcmd: snapctl unset command
  4604   - tests: allow test user XDG_RUNTIME_DIR to phase out
  4605   - tests: cleanup "snap_daemon" user in system-usernames-install-
  4606     twice
  4607   - cmd/snap-mgmt: set +x on startup
  4608   - interfaces/wayland,x11: allow reading an Xwayland Xauth file
  4609   - many: move channel parsing to snap/channel
  4610   - check-pr-title.py: allow {} in pr prefix
  4611   - tests: spam test logs less while waiting for systemd unit to stop
  4612   - tests: remove redundant activation check for snapd.socket
  4613     snapd.service
  4614   - tests: trivial snapctl test cleanup
  4615   - tests: ubuntu 18.10 removed from the google-sru backend on the
  4616     spread.yaml
  4617   - tests: add new cases into arch_test
  4618   - tests: clean user and group for test system-usernames-install-
  4619     twice
  4620   - interfaces: k8s worker node updates
  4621   - asserts: move Model to its own model.go
  4622   - tests: unmount binfmt_misc on cleanup
  4623   - tests: restore nsdelegate clobbered by LXD
  4624   - cmd/snap: fix snap unset help string
  4625   - tests: unmount fusectl after testing
  4626   - cmd/snap: fix remote snap info for parallel installed snaps
  4627  
  4628  * Fri Aug 30 2019 Michael Vogt <mvo@ubuntu.com>
  4629  - New upstream release 2.41
  4630   - overlord/snapstate: revert track-risk behavior
  4631   - tests: fix snap info test
  4632   - httputil: rework protocol error detection
  4633   - gadget: do not error on gadget refreshes with multiple volumes
  4634   - i18n, vendor, packaging: drop github.com/ojii/gettext.go, use
  4635     github.com/snapcore/go-gettext
  4636   - snapstate: validate all system-usernames before creating them
  4637   - mkversion.sh: fix version from git checkouts
  4638   - interfaces/network-{control,manager}: allow 'k' on
  4639     /run/resolvconf/**
  4640   - interfaces/wayland,x11: allow reading an Xwayland Xauth file
  4641   - interfaces: k8s worker node updates
  4642   - debian: re-enable systemd environment generator
  4643   - many: create system-usernames user/group if both don't exist
  4644   - packaging: fix symlink for snapd.session-agent.socket
  4645   - tests: change cgroups so that LXD doesn't have to
  4646   - interfaces/network-setup-control: allow dbus netplan apply
  4647     messages
  4648   - tests: add /var/cache/snapd to the snapd state to prevent error on
  4649     the store
  4650   - tests: add test for services disabled during refresh hook
  4651   - many: simpler access to snap-seccomp version-info
  4652   - snap: cleanup some tests, clarify some errorsThis is a follow up
  4653     from work on system usernames:
  4654   - osutil: add osutil.Find{Uid,Gid}
  4655   - tests: use a different archive based on the spread backend on go-
  4656     build test
  4657   - cmd/snap-update-ns: fix pair of bugs affecting refresh of snap
  4658     with layouts
  4659   - overlord/devicestate: detect clashing concurrent (ongoing, just
  4660     finished) remodels or changes
  4661   - interfaces/docker-support: declare controls-device-cgroup
  4662   - packaging: fix removal of old apparmor profile
  4663   - store: use track/risk for "channel" name when parsing store
  4664     details
  4665   - many: allow 'system-usernames' with libseccomp > 2.4 and golang-
  4666     seccomp > 0.9.0
  4667   - overlord/devicestate, tests: use gadget.Update() proper, spread
  4668     test
  4669   - overlord/configstate/configcore: allow setting start_x=1 to enable
  4670     CSI camera on RPi
  4671   - interfaces: remove BeforePrepareSlot from commonInterface
  4672   - many: support system-usernames for 'snap_daemon' user
  4673   - overlord/devicestate,o/snapstate: queue service commands before
  4674     mark-seeded and other final tasks
  4675   - interfaces/mount: discard mount ns on backend Remove
  4676   - packaging/fedora: build on RHEL8
  4677   - overlord/devicestate: support seeding a classic system with the
  4678     snapd snap and no core
  4679   - interfaces: fix test failure in gpio_control_test
  4680   - interfaces, policy: remove sanitize helpers and use minimal policy
  4681     check
  4682   - packaging: use %systemd_user_* macros to enable session agent
  4683     socket according to presets
  4684   - snapstate, store: handle 429s on catalog refresh a little bit
  4685     better
  4686   - tests: part4 making tests work on ubuntu-core-18
  4687   - many: drop snap.ReadGadgetInfo wrapper
  4688   - xdgopenproxy: update test API to match upstream
  4689   - tests: show why sbuild failed
  4690   - data/selinux: allow mandb_t to search /var/lib/snapd
  4691   - tests: be less verbose when checking service status
  4692   - tests: set sbuild test as manual
  4693   - overlord: DeviceCtx must find the remodel context for a remodel
  4694     change
  4695   - tests: use snap info --verbose to check for base
  4696   - sanity: unmount squashfs with --lazy
  4697   - overlord/snapstate: keep current track if only risk is specified
  4698   - interfaces/firewall-control: support nft routing expressions and
  4699     device groups
  4700   - gadget: support for writing symlinks
  4701   - tests: mountinfo-tool fail if there are no matches
  4702   - tests: sync journal log before start the test
  4703   - cmd/snap, data/completion: improve completion for 'snap debug'
  4704   - httputil: retry for http2 PROTOCOL_ERROR
  4705   - Errata commit: pulseaudio still auto-connects on classic
  4706   - interfaces/misc: updates for k8s 1.15 (and greengrass test)
  4707   - tests: set GOTRACEBACK=1 when running tests
  4708   - cmd/libsnap: don't leak memory in sc_die_on_error
  4709   - tests: improve how the system is restored when the upgrade-
  4710     from-2.15 test fails
  4711   - interfaces/bluetooth-control: add udev rules for BT_chrdev devices
  4712   - interfaces: add audio-playback/audio-record and make pulseaudio
  4713     manually connect
  4714   - tests: split the sbuild test in 2 depending on the type of build
  4715   - interfaces: add an interface granting access to AppStream metadata
  4716   - gadget: ensure filesystem labels are unique
  4717   - usersession/agent: use background context when stopping the agent
  4718   - HACKING.md: update spread section, other updates
  4719   - data/selinux: allow snap-confine to read entries on nsfs
  4720   - tests: respect SPREAD_DEBUG_EACH on the main suite
  4721   - packaging/debian-sid: set GOCACHE to a known writable location
  4722   - interfaces: add gpio-control interface
  4723   - cmd/snap: use showDone helper with 'snap switch'
  4724   - gadget: effective structure role fallback, extra tests
  4725   - many: fix unit tests getting stuck
  4726   - tests: remove installed snap on restore
  4727   - daemon: do not modify test data in user suite
  4728   - data/selinux: allow read on sysfs
  4729   - packaging/debian: don't md5sum absent files
  4730   - tests: remove test-snapd-curl
  4731   - tests: remove test-snapd-snapctl-core18 in restore
  4732   - tests: remove installed snap in the restore section
  4733   - tests: remove installed test snap
  4734   - tests: correctly escape mount unit path
  4735   - cmd/Makefile.am: support building with the go snap
  4736   - tests: work around classic snap affecting the host
  4737   - tests: fix typo "current"
  4738   - overlord/assertstate: add Batch.Precheck to check for the full
  4739     validity of the batch before Commit
  4740   - tests: restore cpuset clone_children clobbered by lxd
  4741   - usersession: move userd package to usersession/userd
  4742   - tests: reformat and fix markdown in snapd-state.md
  4743   - gadget: select the right updater for given structure
  4744   - tests: show stderr only if it exists
  4745   - sessionagent: add a REST interface with socket activation
  4746   - tests: remove locally installed core in more tests
  4747   - tests: remove local revision of core
  4748   - packaging/debian-sid: use correct apparmor Depends for Debian
  4749   - packaging/debian-sid: merge debian upload changes back into master
  4750   - cmd/snap-repair: make sure the goroutine doesn't stick around on
  4751     timeout
  4752   - packaging/fedora: github.com/cheggaaa/pb is no longer used
  4753   - configstate/config: fix crash in purgeNulls
  4754   - boot, o/snapst, o/devicest: limit knowledge of boot vars to boot
  4755   - client,cmd/snap: stop depending on status/status-code in the JSON
  4756     responses in client
  4757   - tests: unmount leftover /run/netns
  4758   - tests: switch mount-ns test to manual
  4759   - overlord,daemon,cmd/snapd:  move expensive startup to dedicated
  4760     StartUp methods
  4761   - osutil: add EnsureTreeState helper
  4762   - tests: measure properties of various  mount namespaces
  4763   - tests: part2 making tests work on ubuntu-core-18
  4764   - interfaces/policy: minimal policy check for replacing
  4765     sanitizeReservedFor helpers (1/2)
  4766   - interfaces: add an interface that grants access to the PackageKit
  4767     service
  4768   - overlord/devicestate: update gadget update handlers and mocks
  4769   - tests: add mountinfo-tool --ref-x1000
  4770   - tests: remove lxd / lxcfs if pre-installed
  4771   - tests: removing support for ubuntu cosmic on spread test suite
  4772   - tests: don't leak /run/netns mount
  4773   - image: clean up the validateSuite
  4774   - bootloader: remove "Dir()" from Bootloader interface
  4775   - many: retry to reboot if snapd gets restarted before expected
  4776     reboot
  4777   - overlord: implement re-registration remodeling
  4778   - cmd: revert PR#6933 (tweak of GOMAXPROCS)
  4779   - cmd/snap: add snap unset command
  4780   - many: add Client-User-Agent to "SnapAction" install API call
  4781   - tests: first part making tests run on ubuntu-core-18
  4782   - hookstate/ctlcmd: support hidden commands in snapctl
  4783   - many: replace snapd snap name checks with type checks (3/4)
  4784   - overlord: mostly stop needing Kernel/CoreInfo, make GadgetInfo
  4785     consider a DeviceContext
  4786   - snapctl: handle unsetting of config options with "!"
  4787   - tests: move core migration snaps to tests/lib/snaps dir
  4788   - cmd/snap: handle unsetting of config options with "!"
  4789   - cmd/snap, etc: add health to 'snap list' and 'snap info'
  4790   - gadget: use struct field names when intializing data in mounted
  4791     updater unit tests
  4792   - cmd/snap-confine: bring /lib/firmware from the host
  4793   - snap: set snapd snap type (1/4)
  4794   - snap: add checks in validate-seed for missing base/default-
  4795     provider
  4796   - daemon: replace shutdownServer with net/http's native shutdown
  4797     support
  4798   - interfaces/builtin: add exec "/bin/runc" to docker-support
  4799   - gadget: mounted filesystem updater
  4800   - overlord/patch: simplify conditions for re-applying sublevel
  4801     patches for level 6
  4802   - seccomp/compiler: adjust test case names and comment for later
  4803     changes
  4804   - tests: fix error doing snap pack running failover test
  4805   - tests: don't preserve size= when rewriting mount tables
  4806   - tests: allow reordering of rewrite operations
  4807   - gadget: main update routine
  4808   - overlord/config: normalize nulls to support config unsetting
  4809     semantics
  4810   - snap-userd-autostart: don't list as a startup application on the
  4811     GUI
  4812   - tests: renumber snap revisions as seen via writable
  4813   - tests: change allocation for mount options
  4814   - tests: re-enable ns-re-associate test
  4815   - tests: mountinfo-tool allow many --refs
  4816   - overlord/devicestate: implement reregRemodelContext with the
  4817     essential re-registration logic
  4818   - tests: replace various numeric mount options
  4819   - gadget: filesystem image writer
  4820   - tests: add more unit tests for mountinfo-tool
  4821   - tests: introduce mountinfo-tool --ref feature
  4822   - tests: refactor mountinfo-tool rewrite state
  4823   - tests: allow renumbering mount namespace identifiers
  4824   - snap: refactor and explain layout blacklisting
  4825   - tests: renumber snap revisions as seen via hostfs
  4826   - daemon, interfaces, travis: workaround build ID with Go 1.9, use
  4827     1.9 for travis tests
  4828   - cmd/libsnap: add sc_error_init_{simple,api_misuse}
  4829   - gadget: make raw updater handle shifted structures
  4830   - tests/lib/nested: create WORK_DIR before accessing it
  4831   - cmd/libsnap: rename SC_LIBSNAP_ERROR to SC_LIBSNAP_DOMAIN
  4832   - cmd,tests: forcibly discard mount namespace when bases change
  4833   - many: introduce healthstate, run check-health
  4834     post-(install/refresh/try/revert)
  4835   - interfaces/optical-drive: add scsi-generic type 4 and 5 support
  4836   - cmd/snap-confine: exit from helper when parent dies
  4837  
  4838  * Fri Jul 12 2019 Michael Vogt <mvo@ubuntu.com>
  4839  - New upstream release 2.40
  4840   - overlord/patch: simplify conditions for re-applying sublevel
  4841     patches for level 6
  4842   - cmd,tests: forcibly discard mount namespace when bases change
  4843   - cmd/snap-confine: handle device cgroup before pivot
  4844   - cmd/snap-apparmor-service: quit if there are no profiles
  4845   - cmd/snap, image: add --target-directory and --basename to 'snap
  4846     download'
  4847   - interfaces: add jack1 implicit classic interface
  4848   - interfaces: miscellaneous policy updates
  4849   - daemon: classic confinement is not supported on core
  4850   - interfaces: bluetooth-control: add mtk BT device node
  4851   - cmd/snap-seccomp: initial support for negative arguments with
  4852     uid/gid caching
  4853   - snap-confine: move seccomp load after permanent privilege drop
  4854   - tests: new profiler snap used to track cpu and memory for snapd
  4855     and snap commands
  4856   - debian: make maintainer scripts do nothing on powerpc
  4857   - gadget: mounted filesystem writer
  4858   - cmd/snap: use padded checkers for snapshot output
  4859   - bootloader: switch to bootloader_test style testing
  4860   - gadget: add a wrapper for generating partitioned images with
  4861     sfdisk
  4862   - tests/main/snap-seccomp-syscalls: add description
  4863   - tests: continue executing on errors either updating the repo db or
  4864     installing dependencies
  4865   - cmd/snap-seccomp/syscalls: add io_uring syscalls
  4866   - systemd: add InstanceMode enumeration to control which systemd
  4867     instance to control
  4868   - netutil: extract socket activation helpers from daemon package.
  4869   - interfaces: spi: update regex rules to accept spi nodes like
  4870     spidev12345.0
  4871   - gadget: fallback device lookup
  4872   - many: add strutil.ElliptLeft, use it for shortening cohorts
  4873   - wrappers: allow sockets under $XDG_RUNTIME_DIR
  4874   - gadget: add wrapper for creating and populating filesystems
  4875   - gadget: add writer for offset-write
  4876   - gadget: support relative symlinks in device lookup
  4877   - snap, snapstate: additional validation of base field
  4878   - many: fix some races and missing locking, make sure UDevMonitor is
  4879     stopped
  4880   - boot: move ExtractKernelAssets
  4881   - daemon, snap: screenshots _only_ shows the deprecation notice,
  4882     from 2.39
  4883   - osutil: add a workaround for overlayfs apparmor as it is used on
  4884     Manjaro
  4885   - snap: introduce GetType() function for snap.Info
  4886   - tests: update systems to be used for during sru validation
  4887   - daemon: increase `shutdownTimeout` to 25s to deal with slow
  4888     HW
  4889   - interfaces/network-manager: move deny ptrace to the connected slot
  4890   - interfaces: allow locking of pppd files
  4891   - cmd/snap-exec: fix snap completion for classic snaps with non
  4892     /usr/lib/snapd libexecdir
  4893   - daemon: expose pprof endpoints
  4894   - travis: disable snap pack on OSX
  4895   - client, cmd/snap: expose the new cohort options for snap ops
  4896   - overlord/snapstate: tweak switch summaries
  4897   - tests: reuse the image created initially for nested tests
  4898     execution
  4899   - tests/lib/nested: tweak assert disk prepare step
  4900   - daemon, overlord/snapstate: support leave-cohort
  4901   - tests/main/appstream-id: collect debug info
  4902   - store,daemon: add client-user-agent support to store.SnapInfo
  4903   - tests: add check for invalid PR titles in the static checks
  4904   - tests: add snap-tool for easier access to internal tools
  4905   - daemon: unexport file{Response,Stream}
  4906   - devicestate: make TestUpdateGadgetOnClassicErrorsOut less racy
  4907   - tests: fix test desktop-portal-filechooser
  4908   - tests: sort commands from DumpCommands in the dumpDbHook
  4909   - cmd/snap: add unit test for "advise-snap --dump-db".
  4910   - bootloader: remove extra mock bootloader implementation
  4911   - daemon: tweak for "add api endpoint for download" PR
  4912   - packaging: fix reproducible build error
  4913   - tests: synchronize journal logs before check logs
  4914   - tests: fix snap service watchdog test
  4915   - tests: use more readable test directory names
  4916   - tests/regression/lp-1805485: update test description
  4917   - overlord: make changes conflict with remodel
  4918   - tests: make sure the snapshot unit test uses a snapshot time
  4919     relative to Now()
  4920   - tests: revert "tests: stop catalog-update/apt-hooks test for now"
  4921   - tests: mountinfo-tool --one prints matches on failure
  4922   - data/selinux: fix policy for snaps with bases and classic snaps
  4923   - debian: fix building on eoan by tweaking golang build-deps
  4924   - packaging/debian-sid: update required golang version to 1.10
  4925   - httputil: handle "no such host" error explicitly and do not retry
  4926     it
  4927   - overlord/snapstate, & fallout: give Install a *RevisionOptions
  4928   - cmd/snap: don't run install on 'snap --help install'
  4929   - gadget: raw/bare structure writer and updater
  4930   - daemon, client, cmd/snap: show cohort key in snap info --verbose
  4931   - overlord/snapstate: add update-gadget task when needed, block
  4932     other changes
  4933   - image: turn a missing default content provider into an error
  4934   - overlord/devicestate: update-gadget-assets task handler with
  4935     stubbed gadget callbacks
  4936   - interface: builtin: avahi-observe/control: update label for
  4937     implicit slot
  4938   - tests/lib/nested: fix multi argument copy_remote
  4939   - tests/lib/nested: have mkfs.ext4 use a rootdir instead of mounting
  4940     an image
  4941   - packaging: fix permissions powerpc docs dir
  4942   - overlord: mock store to avoid net requests
  4943   - debian: rework how we run autopkgtests
  4944   - interface: builtin: avahi-observe/control: allow slots
  4945     implementation also by app snap on classic system
  4946   - interfaces: builtin: utils: add helper function to identify system
  4947     slots
  4948   - interfaces: add missing adjtimex to time-control
  4949   - overlord/snapstate, snap: support base = "none"
  4950   - daemon, overlord/snapstate: give RevisionOptions a CohortKey
  4951   - data/selinux: permit init_t to remount snappy_snap_t
  4952   - cmd/snap: test for a friendly error on 'okay' without 'warnings'
  4953   - cmd/snap: support snap debug timings --startup=.. and measure
  4954     loadState time
  4955   - advise-snap: add --dump-db which dumps the command database
  4956   - interfaces/docker-support: support overlayfs on ubuntu core
  4957   - cmd/okay: Remove err message when warning file not exist
  4958   - devicestate: disallow removal of snaps used in booting early
  4959   - packaging: fix build-depends on powerpc
  4960   - tests: run spread tests on opensuse leap 15.1
  4961   - strutil/shlex: fix ineffassign
  4962   - cmd/snapd: ensure GOMAXPROCS is at least 2
  4963   - cmd/snap-update-ns: detach unused mount points
  4964   - gadget: record gadget root directory used during positioning
  4965   - tests: force removal to prevent restore fails when directory
  4966     doesn't exist on lp-1801955 test
  4967   - overlord: implement store switch remodeling
  4968   - tests: stop using ! for naive negation in shell scripts
  4969   - snap,store,daemon,client: send new "Snap-Client-User-Agent" header
  4970     in Search()
  4971   - osutil: now that we require golang-1.10, use user.LookupGroup()
  4972   - spread.yaml,tests: change MATCH and REBOOT to cmds
  4973   - packaging/fedora: force external linker to ensure static linking
  4974     and -extldflags use
  4975   - timings: tweak the conditional for ensure timings
  4976   - timings: always store ensure timings as long as they have an
  4977     associated change
  4978   - cmd/snap: tweak the output of snap debug timings --ensure=...
  4979   - overlord/devicestate: introduce remodel kinds and
  4980     contextsregistrationContext:
  4981   - snaptest: add helper for mocking snap with contents
  4982   - snapstate: allow removal of non-model kernels
  4983   - tests: change strace parameters on snap-run test to avoid the test
  4984     gets stuck
  4985   - gadget: keep track of the index where structure content was
  4986     defined
  4987   - cmd/snap-update-ns: rename leftover ctx to upCtx
  4988   - tests: add "not" command
  4989   - spread.yaml: use "snap connections" in debug
  4990   - tests: fix how strings are matched on auto-refresh-retry test
  4991   - spread-shellcheck: add support for variants and environment
  4992   - gadget: helper for shifting structure start position
  4993   - cmd/snap-update-ns: add several TODO comments
  4994   - cmd/snap-update-ns: rename ctx to upCtx
  4995   - spread.yaml: make HOST: usage shellcheck-clean
  4996   - overlord/snapstate, daemon: snapstate.Switch now takes a
  4997     RevisionOption
  4998   - tests: add mountinfo-tool
  4999   - many: make snapstate.Update take *RevisionOptions instead of chan,
  5000     rev
  5001   - tests/unit/spread-shellcheck: temporary workaround for SC2251
  5002   - daemon: refactor user ops to api_users
  5003   - cmd/snap, tests: refactor info to unify handling of 'direct' snaps
  5004   - cmd/snap-confine: combine sc_make_slave_mount_ns into caller
  5005   - cmd/snap-update-ns: use "none" for propagation changes
  5006   - cmd/snap-confine: don't pass MS_SLAVE along with MS_BIND
  5007   - cmd/snap, api, snapstate: implement "snap remove --purge"
  5008   - tests: new hotplug test executed on ubuntu core
  5009   - tests: running tests on fedora 30
  5010   - gadget: offset-write: fix validation, calculate absolute position
  5011   - data/selinux: allow snap-confine to do search on snappy_var_t
  5012     directories
  5013   - daemon, o/snapstate, store: support for installing from cohorts
  5014   - cmd/snap-confine: do not mount over non files/directories
  5015   - tests: validates snapd from ppa
  5016   - overlord/configstate: don't panic on invalid configuration
  5017   - gadget: improve device lookup, add helper for mount point lookup
  5018   - cmd/snap-update-ns: add tests for executeMountProfileUpdate
  5019   - overlord/hookstate: don't run handler unless hooksup.Always
  5020   - cmd/snap-update-ns: allow changing mount propagation
  5021   - systemd: workaround systemctl show quirks on older systemd
  5022     versions
  5023   - cmd/snap: allow option descriptions to start with the command
  5024   - many: introduce a gadget helper for locating device matching given
  5025     structure
  5026   - cmd/snap-update-ns: fix golint complaints about variable names
  5027   - cmd/snap: unit tests for debug timings
  5028   - testutil: support sharing-related mount flags
  5029   - packaging/fedora: Merge changes from Fedora Dist-Git and drop EOL
  5030     Fedora releases
  5031   - cmd/snap: support for --ensure argument for snap debug timings
  5032   - cmd,sandbox: tweak seccomp version info handling
  5033   - gadget: record sector size in positioned volume
  5034   - tests: make create-user test support managed devices
  5035   - packaging: build empty package on powerpc
  5036   - overlord/snapstate: perform hard refresh check
  5037   - gadget: add volume level update checks
  5038   - cmd/snap: mangle descriptions that have indent > terminal width
  5039   - cmd/snap-update-ns: rename applyFstab to executeMountProfileUpdate
  5040   - cmd/snap-confine: unshare per-user mount ns once
  5041   - tests: retry govendor sync
  5042   - tests: avoid removing snaps which are cached to speed up the
  5043     prepare on boards
  5044   - tests: fix how the base snap are deleted when there are multiple
  5045     to deleted on reset
  5046   - cmd/snap-update-ns: merge apply functions
  5047   - many: introduce assertstest.SigningAccounts and AddMany test
  5048     helpers
  5049   - interfaces: special-case "snapd" in sanitizeSlotReservedForOS*
  5050     helpers
  5051   - cmd/snap-update-ns: make apply{User,System}Fstab identical
  5052   - gadget: introduce checkers for sanitizing structure updates
  5053   - cmd/snap-update-ns: move apply{Profile,{User,System}Fstab} to same
  5054     file
  5055   - overlord/devicestate: introduce registrationContext
  5056   - cmd/snap-update-ns: add no-op load/save current user profile logic
  5057   - devicestate: set "new-model" on the remodel change
  5058   - devicestate: use deviceCtx in checkGadgetOrKernel
  5059   - many: use a fake assertion model in the device contexts for tests
  5060   - gadget: fix handling of positioning constrains for structures of
  5061     MBR role
  5062   - snap-confine: improve error when running on a not /home homedir
  5063   - devicestate: make Remodel() return a state.Change
  5064   - many: make which store to use contextualThis reworks
  5065     snapstate.Store instead of relying solely on DeviceContext,
  5066     because:
  5067   - tests: enable tests on centos 7 again
  5068   - interfaces: add login-session-control interface
  5069   - tests: extra debug for snapshot-basic test
  5070   - overlord,overlord/devicestate: do without GadgetInfo/KernelInfo in
  5071     devicestate
  5072   - gadget: more validation checks for legacy MBR structure type &
  5073     role
  5074   - osutil: fix TestReadBuildGo test in sbuild
  5075   - data: update XDG_DATA_DIRS via the systemd environment.d mechanism
  5076     too
  5077   - many: do without device state/assertions accessors based on state
  5078     only outside of devicestate/tests
  5079   - interfaces/dbus: fix unit tests when default snap mount dir is not
  5080     /snap
  5081   - tests: add security-seccomp to verify seccomp with arg filtering
  5082   - snapshotstate: disable automatic snapshots on core for now
  5083   - snapstate: auto-install snapd when needed
  5084   - overlord/ifacestate: update static attributes of "content"
  5085     interface
  5086   - interfaces: add support for the snapd snap in the dbus backend*
  5087   - overlord/snapstate: tweak autorefresh logic if network is not
  5088     available
  5089   - snapcraft: also include ld.so.conf from libc in the snapcraft.yml
  5090   - snapcraft.yaml: fix links ld-linux-x86-64.so.2/ld64.so.2
  5091   - overlord: pass a DeviceContext to the checkSnap implementations
  5092   - daemon: add RootOnly flag to commands
  5093   - many:  make access to the device model assertion etc contextual
  5094     via a DeviceCtx hook/DeviceContext interface
  5095   - snapcraft.yaml: include libc6 in snapd
  5096   - tests: reduce snapcraft leftovers from PROJECT_PATH,  temp disable
  5097     centos
  5098   - overlord: make the store context composably backed by separate
  5099     backends for device asserts/info etc.
  5100   - snapstate: revert "overlord/snapstate: remove PlugsOnly"
  5101   - osutil,cmdutil: move CommandFromCore and make it use the snapd
  5102     snap (if available)
  5103   - travis: bump Go version to 1.10.x
  5104   - cmd/snap-update-ns: remove instanceName argument from applyProfile
  5105   - gadget: embed volume in positioned volume, rename fields
  5106   - osutil: use go build-id when no gnu build-id is available
  5107   - snap-seccomp: add 4th field to version-info for golang-seccomp
  5108     features
  5109   - cmd/snap-update-ns: merge computeAndSaveSystemChanges into
  5110     applySystemFstab
  5111   - cmd/snap, client, daemon, store: create-cohort
  5112   - tests: give more time until nc returns on appstream test
  5113   - tests: run spread tests on ubuntu 19.04
  5114   - gadget: layout, smaller fixes
  5115   - overlord: update static attrs when reloading connections
  5116   - daemon: verify snap instructions for multi-snap requests
  5117   - overlord/corecfg: make expiration of automatic snapshots
  5118     configurable (4/4)
  5119   - cmd/snap-update-ns: pass MountProfileUpdate to
  5120     apply{System,User}Fstab
  5121   - snap: fix interface bindings on implicit hooks
  5122   - tests: improve how snaps are cached
  5123   - cmd/snap-update-ns: formatting tweaks
  5124   - data/selinux: policy tweaks
  5125   - cmd/snap-update-ns: move locking to the common layer
  5126   - overlord: use private YAML inside several tests
  5127   - cmd/snap, store, image: support for cohorts in "snap download"
  5128   - overlord/snapstate: add timings to critical task handlers and the
  5129     backend
  5130   - cmd: add `snap debug validate-seed <path>` cmd
  5131   - state: add possible error return to TaskSet.Edge()
  5132   - snap-seccomp: use username regex as defined in osutil/user.go
  5133   - osutil: make IsValidUsername public and fix regex
  5134   - store: serialize the acquisition of device sessions
  5135   - interfaces/builtin/desktop: fonconfig v6/v7 cache handling on
  5136     Fedora
  5137   - many: move Device/SetDevice to devicestate, start of making them
  5138     pluggable in storecontext
  5139   - overlord/snapstate: remove PlugsOnly
  5140   - interfaces/apparmor: allow running /usr/bin/od
  5141   - spread: add qemu:fedora-29-64
  5142   - tests: make test parallel-install-interfaces work for boards with
  5143     pre-installed snaps
  5144   - interfaces/builtin/intel_mei: fix /dev/mei* AppArmor pattern
  5145   - spread.yaml: add qemu:centos-7-64
  5146   - overlord/devicestate: extra measurements related to
  5147     populateStateFromSeed
  5148   - cmd/snap-update-ns: move Assumption to {System,User}ProfileUpdate
  5149   - cmd/libsnap: remove fringe error function
  5150   - gadget: add validation of cross structure overlap and offset
  5151     writes
  5152   - cmd/snap-update-ns: refactor of profile application (3/N)
  5153   - data/selinux: tweak the policy for runuser and s-c, interpret
  5154     audit entries
  5155   - tests: fix spaces issue in the base snaps names to remove during
  5156     reset phase
  5157   - tests: wait for man db cache is updated before after install snapd
  5158     on Fedora
  5159   - tests: extend timeout of sbuild test
  5160  
  5161  * Fri Jun 21 2019 Michael Vogt <mvo@ubuntu.com>
  5162  - New upstream release 2.39.3
  5163    - daemon: increase `shutdownTimeout` to 25s to deal with slow HW
  5164    - spread: run tests against openSUSE 15.1
  5165    - data/selinux: fix policy for snaps with bases and classic snaps
  5166  
  5167  * Wed Jun 05 2019 Michael Vogt <mvo@ubuntu.com>
  5168  - New upstream release 2.39.2
  5169   - debian: rework how we run autopkgtests
  5170   - interfaces/docker-support: add overlayfs accesses for ubuntu core
  5171   - data/selinux: permit init_t to remount snappy_snap_t
  5172   - strutil/shlex: fix ineffassign
  5173   - packaging: fix build-depends on powerpc
  5174  
  5175  * Wed May 29 2019 Michael Vogt <mvo@ubuntu.com>
  5176  - New upstream release 2.39.1
  5177   - spread: enable Fedora 30
  5178   - cmd/snap-confine, data/selinux: cherry pick Fedora 30 fixes
  5179   - tests/unit/spread-shellcheck: temporary workaround for SC2251
  5180   - packaging: build empty package on powerpc
  5181   - interfaces: special-case "snapd" in sanitizeSlotReservedForOS*
  5182     helper
  5183   - cmd/snap: mangle descriptions that have indent > terminal width
  5184   - cmd/snap-confine: unshare per-user mount ns once
  5185   - tests: avoid adding spaces to the base snaps names
  5186   - systemd: workaround systemctl show quirks on older systemd
  5187     versions
  5188  
  5189  * Mon May 06 2019 Neal Gompa <ngompa13@gmail.com> - 2.39-1
  5190  - Release 2.39 to Fedora (RH#1699087)
  5191  - Enable basic SELinux integration
  5192  - Fix changelog entry to fix build for EPEL 7
  5193  - Exclude bash and POSIX sh shebangs from mangling (LP:1824158)
  5194  - Drop some old pre Fedora 28 logic
  5195  
  5196  * Fri May 03 2019 Michael Vogt <mvo@ubuntu.com>
  5197  - New upstream release 2.39
  5198   - overlord/ifacestate: update static attributes of "content"
  5199     interface
  5200   - data/selinux: tweak the policy for runuser and s-c, interpret
  5201     audit entries
  5202   - snapshotstate: disable automatic snapshots on core for now
  5203   - overlord/corecfg: make expiration of automatic snapshots
  5204     configurable
  5205   - snapstate: auto-install snapd when needed
  5206   - interfaces: add support for the snapd snap in the dbus backend
  5207   - overlord/snapstate: tweak autorefresh logic if network is not
  5208     available
  5209   - interfaces/apparmor: allow running /usr/bin/od
  5210   - osutil,cmdutil: move CommandFromCore and make it use the snapd
  5211     snap (if available)
  5212   - daemon: also verify snap instructions for multi-snap requests
  5213   - data/selinux: allow snap-confine to mount on top of bin
  5214   - data/selinux: auto transition /var/snap to snappy_var_t
  5215   - cmd: add `snap debug validate-seed <path>` cmd
  5216   - interfaces/builtin/desktop: fonconfig v6/v7 cache handling on
  5217     Fedora
  5218   - interfaces/builtin/intel_mei: fix /dev/mei* AppArmor pattern
  5219   - tests: make snap-connections test work on boards with snaps pre-
  5220     installed
  5221   - tests: check for /snap/core16/current in core16-provided-by-core
  5222   - tests: run livepatch test on 18.04 as well
  5223   - devicestate: deal correctly with the "required" flag on Remodel
  5224   - snapstate,state: add TaskSet.AddAllWithEdges() and use in doUpdate
  5225   - snapstate: add new NoReRefresh flag and use in Remodel()
  5226   - many: allow core as a fallback for core16
  5227   - snapcraft: build static fontconfig in the snapd snap
  5228   - cmd/snap-confine: remove unused sc_open_snap_{update,discard}_ns
  5229   - data/selinux: allow snapd to execute runuser under snappy_t
  5230   - spread, tests: do not leave mislabeled files in restorecon test,
  5231     attempt to catch similar files
  5232   - interfaces: cleanup internal tool lookup in system-key
  5233   - many: move auth.AuthContext to store.DeviceAndAuthContext, the
  5234     implemention to a separate storecontext packageThis:
  5235   - overlord/devicestate: measurements around ensure and related tasks
  5236   - cmd: tweak internal tool lookup to accept more possible locations
  5237   - overlord/snapstate,snapshotstate: create snapshot on snap removal
  5238   - tests: run smoke tests on (almost) pristine systems
  5239   - tests: system disable ssh for config defaults in gadget
  5240   - cmd/debug: integrate new task timings with "snap debug timings"
  5241   - tests/upgrade/basic, packaging/fedoar: restore SELinux context of
  5242     /var/cache/fontconfig, patch pre-2.39 mount units
  5243   - image: simplify prefer local logic  and fixes
  5244   - tests/main/selinux-lxd: make sure LXD from snaps works cleanly
  5245     with enforcing SELinux
  5246   - tests: deny ioctl - TIOCSTI with garbage in high bits
  5247   - overlord: factor out mocking of device service and gadget w.
  5248     prepare-device for registration tests
  5249   - data/selinux, tests/main/selinux-clean: fine tune the policy, make
  5250     sure that no denials are raised
  5251   - cmd/libsnap,osutil: fix parsing of mountinfo
  5252   - ubuntu: disable -buildmode=pie on armhf to fix memory issue
  5253   - overlord/snapstate: inhibit refresh for up to a week
  5254   - cmd/snap-confine: prevent cwd restore permission bypass
  5255   - overlord/ifacestate: introduce HotplugKey type use short key in
  5256     change summaries
  5257   - many: make Remodel() download everything first before installing
  5258   - tests: fixes discovered debugging refresh-app-awareness
  5259   - overlord/snapstate: track time of postponed refreshes
  5260   - snap-confine: set rootfs_dir in sc_invocation struct
  5261   - tests: run create-user on core devices
  5262   - boot: add flag file "meta/force-kernel-extraction"
  5263   - tests: add regression test for systemctl race fix
  5264   - overlord/snapshotstate: helpers for snapshot expirations
  5265   - overlord,tests: perform soft refresh check in doInstall
  5266   - tests: enable tests that write /etc/{hostname,timezone} on core18
  5267   - overlord/ifacestate: implement String() method of
  5268     HotplugDeviceInfo for better logs/messages
  5269   - cmd/snap-confine: move ubuntu-core fallback checks
  5270   - testutil: fix MockCmd for shellcheck 0.5
  5271   - snap, gadget: move gadget read/validation into separate package,
  5272     tweak naming
  5273   - tests: split travis spread execution in 2 jobs for ubuntu and non
  5274     ubuntu systems
  5275   - testutil: make mocked command work with shellcheck from snaps
  5276   - packaging/fedora, tests/upgrade/basic: patch existing mount units
  5277     with SELinux context on upgrade
  5278   - metautil, snap: extract yaml value normalization to a helper
  5279     package
  5280   - tests: use apt via eatmydata
  5281   - dirs,overlord/snapstate: add Soft and Hard refresh checks
  5282   - cmd/snap-confine: allow using tools from snapd snap
  5283   - cmd,interfaces: replace local helpers with cmd.InternalToolPath
  5284   - tweak: fix "make hack" on Fedora
  5285   - snap: add validation of gadget.yaml
  5286   - cmd/snap-update-ns: refactor of profile application
  5287   - cmd/snap,client,daemon,store: layout and sanity tweaks for
  5288     find/search options
  5289   - tests: add workaround for missing cache reset on older snapd
  5290   - interfaces: deal with the snapd snap correctly for apparmor 2.13
  5291   - release-tools: add debian-package-builder
  5292   - tests: enable opensuse 15 and add force-resolution installing
  5293     packages
  5294   - timings: AddTag helper
  5295   - testutil: run mocked commands through shellcheck
  5296   - overlord/snapshotstate: support auto flag
  5297   - client, daemon, store: search by common-id
  5298   - tests: all the systems for google backend with 6 workers
  5299   - interfaces: hotplug nested vm test, updated serial-port interface
  5300     for hotplug.
  5301   - sanity: use proper SELinux context when mounting squashfs
  5302   - cmd/libsnap: neuter variables in cleanup functions
  5303   - interfaces/adb-support: account for hubs on sysfs path
  5304   - interfaces/seccomp: regenerate changed profiles only
  5305   - snap: reject layouts to /lib/{firmware,modules}
  5306   - cmd/snap-confine, packaging: support SELinux
  5307   - selinux, systemd: support mount contexts for snap images
  5308   - interfaces/builtin/opengl: allow access to Tegra X1
  5309   - cmd/snap: make 'snap warnings' output yamlish
  5310   - tests: add check to detect a broken snap on reset
  5311   - interfaces: add one-plus devices to adb-support
  5312   - cmd: prevent umask from breaking snap-run chain
  5313   - tests/lib/pkgdb: allow downgrade when installing packages in
  5314     openSUSE
  5315   - cmd/snap-confine: use fixed private tmp directory
  5316   - snap: tweak parsing errors of gadget updates
  5317   - overlord/ifacemgr: basic measurements
  5318   - spread: refresh metadata on openSUSE
  5319   - cmd/snap-confine: pass sc_invocation instead of numerous args
  5320     around
  5321   - snap/gadget: introduce volume update info
  5322   - partition,bootloader: rename 'partition' package to 'bootloader'
  5323   - interfaces/builtin: add dev/pts/ptmx access to docker_support
  5324   - tests: restore sbuild test
  5325   - strutil: make SplitUnit public, allow negative numbers
  5326   - overlord/snapstate,: retry less for auto-stuff
  5327   - interfaces/builtin: add add exec "/" to docker-support
  5328   - cmd/snap: fix regression of snap saved command
  5329   - cmd/libsnap: rename C enum for feature flag
  5330   - cmd: typedef mountinfo structures
  5331   - tests/main/remodel: clean up before reverting the state
  5332   - cmd/snap-confine: umount scratch dir using UMOUNT_NOFOLLOW
  5333   - timings: add new helpers, Measurer interface and DurationThreshold
  5334   - cmd/snap-seccomp: version-info subcommand
  5335   - errortracker: fix panic in Report if db cannot be opened
  5336   - sandbox/seccomp: a helper package wrapping calls to snap-seccomp
  5337   - many: add /v2/model API, `snap remodel` CLI and spread test
  5338   - tests: enable opensuse tumbleweed back
  5339   - overlord/snapstate, store: set a header when auto-refreshing
  5340   - data/selinux, tests: refactor SELinux policy, add minimal tests
  5341   - spread: restore SELinux context when we mess with system files
  5342   - daemon/api: filter connections with hotplug-gone=true
  5343   - daemon: support returning assertion information as JSON with the
  5344     "json" query parameter
  5345   - cmd/snap: hide 'interfaces' command, show deprecation notice
  5346   - timings: base API for recording timings in state
  5347   - cmd/snap-confine: drop unused dependency on libseccomp
  5348   - interfaces/apparmor: factor out test boilerplate
  5349   - daemon: extract assertions api endpoint implementation into
  5350     api_asserts.go
  5351   - spread.yaml: bump delta reference
  5352   - cmd/snap-confine: track per-app and per-hook processes
  5353   - cmd/snap-confine: make sc_args helpers const-correct
  5354   - daemon: move a function that was between an other struct and its
  5355     methods
  5356   - overlord/snapstate: fix restoring of "old-current" revision config
  5357     in undoLinkSnap
  5358   - cmd/snap, client, daemon, ifacestate: show a leading attribute of
  5359     a connection
  5360   - cmd/snap-confine: call sc_should_use_normal_mode once
  5361   - cmd/snap-confine: populate enter_non_classic_execution_environment
  5362   - daemon: allow downloading snaps blobs via .../file
  5363   - cmd/snap-confine: introduce sc_invocation
  5364   - devicestate: add initial Remodel support
  5365   - snap: remove obsolete license-* fields in the yaml
  5366   - cmd/libsnap: add cgroup-pids-support module
  5367   - overlord/snapstate/backend: make LinkSnap clean up more
  5368   - snapstate: only keep 2 snaps on classic
  5369   - ctlcmd/tests: tests tweaks (followup to #6322)
  5370  
  5371  * Tue Apr 23 2019 Robert-André Mauchin <zebob.m@gmail.com> - 2.38-3
  5372  - Rebuilt for fix in golang-github-seccomp-libseccomp-golang
  5373  
  5374  * Fri Apr 05 2019 Neal Gompa <ngompa13@gmail.com> - 2.38-2
  5375  - Readd snapd-login-service Provides for gnome-software for F29 and older
  5376  
  5377  * Thu Mar 21 2019 Neal Gompa <ngompa13@gmail.com> - 2.38-1
  5378  - Release 2.38 to Fedora (RH#1691296)
  5379  - Switch to officially released main source tarball
  5380  - Drop obsolete snapd-login-service Provides
  5381  
  5382  * Thu Mar 21 2019 Michael Vogt <mvo@ubuntu.com>
  5383  - New upstream release 2.38
  5384   - overlord/snapstate,: retry less for auto-stuff
  5385   - cmd/snap: fix regression of snap saved command
  5386   - interfaces/builtin: add dev/pts/ptmx access to docker_support
  5387   - overlord/snapstate, store: set a header when auto-refreshing
  5388   - interfaces/builtin: add add exec "/" to docker-support
  5389   - cmd/snap, client, daemon, ifacestate: show a leading attribute of
  5390     a connection
  5391   - interface: avahi-observe: Fixing socket permissions on 4.15
  5392     kernels
  5393   - tests: check that apt works before using it
  5394   - apparmor: support AppArmor 2.13
  5395   - snapstate: restart into the snapd snap on classic
  5396   - overlord/snapstate: during refresh, re-refresh on epoch bump
  5397   - cmd, daemon: split out the common bits of mapLocal and mapRemote
  5398   - cmd/snap-confine: chown private /tmp to root.root
  5399   - cmd/snap-confine: drop uid from random /tmp name
  5400   - overlord/hookstate: apply pending transaction changes onto
  5401     temporary configuration for snapctl get
  5402   - cmd/snap: `snap connections` command
  5403   - interfaces/greengrass_support: update accesses for GGC 1.8
  5404   - cmd/snap, daemon: make the connectivity check use GET
  5405   - interfaces/builtin,/udev: add spec support to disable udev +
  5406     device cgroup and use it for greengrass
  5407   - interfaces/intel-mei: small follow up tweaks
  5408   - ifacestate/tests: fix/improve udev mon test
  5409   - interfaces: add multipass-support interface
  5410   - tests/main/high-user-handling: fix the test for Go 1.12
  5411   - interfaces: add new intel-mei interface
  5412   - systemd: decrease the checker counter before unlocking otherwise
  5413     we can get spurious panics
  5414   - daemon/tests: fix race in the disconnect conflict test
  5415   - cmd/snap-confine: allow moving tasks to pids cgroup
  5416   - tests: enable opensuse tumbleweed on spread
  5417   - cmd/snap: fix `snap services` completion
  5418   - ifacestate/hotplug: integration with udev monitor
  5419   - packaging: build snapctl as a static binary
  5420   - packaging/opensuse: move most logic to snapd.mk
  5421   - overlord: fix ensure before slowness on Retry
  5422   - overlord/ifacestate: fix migration of connections on upgrade from
  5423     ubuntu-core
  5424   - daemon, client, cmd/snap: debug GETs ask aspects, not actions
  5425   - tests/main/desktop-portal-*: fix handling of python dependencies
  5426   - interfaces/wayland: allow wayland server snaps function on classic
  5427     too
  5428   - daemon, client, cmd/snap: snap debug base-declaration
  5429   - tests: run tests on opensuse leap 15.0 instead of 42.3
  5430   - cmd/snap: fix error messages for snapshots commands if ID is not
  5431     uint
  5432   - interfaces/seccomp: increase filter precision
  5433   - interfaces/network-manager: no peer label check for hostname1
  5434   - tests: add a tests for xdg-desktop-portal integration
  5435   - tests: not checking 'tracking channel' after refresh core on
  5436     nested execution
  5437   - tests: remove snapweb from tests
  5438   - snap, wrappers: support StartTimeout
  5439   - wrappers: Add an X-SnapInstanceName field to desktop files
  5440   - cmd/snap: produce better output for help on subcommands
  5441   - tests/main/nfs-support: use archive mode for creating fstab backup
  5442   - many: collect time each task runs and display it with `snap debug
  5443     timings <id>`
  5444   - tests: add attribution to helper script
  5445   - daemon: make ucrednetGet not loop
  5446   - squashfs: unset SOURCE_DATE_EPOCH in the TestBuildDate test
  5447   - features,cmd/libsnap: add new feature "refresh-app-awareness"
  5448   - overlord: fix random typos
  5449   - interfaces/seccomp: generate global seccomp profile
  5450   - daemon/api: fix error case for disconnect conflict
  5451   - overlord/snapstate: add some randomness to the catalog refresh
  5452   - tests: disable trusty-proposed for now
  5453   - tests: fix upgrade-from-2.15 with kernel 4.15
  5454   - interfaces/apparmor: allow sending and receiving signals from
  5455     ourselves
  5456   - tests: split the test interfaces-many in 2 and remove snaps on
  5457     restore
  5458   - tests: use snap which takes 15 seconds to install on retryable-
  5459     error test
  5460   - packaging: avoid race in snapd.postinst
  5461   - overlord/snapstate: discard mount namespace when undoing 1st link
  5462     snap
  5463   - cmd/snap-confine: allow writes to /var/lib/**
  5464   - tests: stop catalog-update test for now
  5465   - tests/main/auto-refresh-private: make sure to actually download
  5466     with the expired macaroon
  5467   - many: save media info when installing, show it when listing
  5468   - userd: handle help urls which requires prepending XDG_DATA_DIRS
  5469   - tests: fix NFS home mocking
  5470   - tests: improve snaps-system-env test
  5471   - tests: pre-cache core on core18 systems
  5472   - interfaces/hotplug: renamed RequestedSlotSpec to ProposedSlot,
  5473     removed Specification
  5474   - debian: ensure leftover usr.lib.snapd.snap-confine is gone
  5475   - image,cmd/snap,tests: introduce support for modern prepare-image
  5476     --snap <snap>[=<channel>]
  5477   - overlord/ifacestate: tweak logic for generating unique slot names
  5478   - packaging: import debian salsa packaging work, add sbuild test and
  5479     use in spead
  5480   - overlord/ifacestate: hotplug-add-slot handler
  5481   - image,cmd/snap:  simplify --classic-arch to --arch, expose
  5482     prepare-image
  5483   - tests: run test snap as user in the smoke test
  5484   - cmd/snap: tweak man output to have no doubled up .TP lines
  5485   - cmd/snap, overlord/snapstate: silently ignore classic flag when a
  5486     snap is strictly confined
  5487   - snap-confine: remove special handling of /var/lib/jenkins
  5488   - cmd/snap-confine: handle death of helper process
  5489   - packaging: disable systemd environment generator on 18.04
  5490   - snap-confine: fix classic snaps for users with /var/lib/* homedirs
  5491   - tests/prepare: prevent console-conf from running
  5492   - image: bootstrapToRootDir => setupSeed
  5493   - image,cmd/snap,tests:  introduce prepare-image --classic
  5494   - tests: update smoke/sandbox test for armhf
  5495   - client, daemon: introduce helper for querying snapd API for the
  5496     list of slot/plug connections
  5497   - cmd/snap-confine: refactor and cleanup of seccomp loading
  5498   - snapstate, snap: allow update/switch requests with risk only
  5499     channel to DTRT
  5500   - interfaces: add network-manager-observe interface
  5501   - snap-confine: increase locking timeout to 30s
  5502   - snap-confine: fix incorrect "sanity timeout 3s" message
  5503   - snap-confine: provide proper error message on sc_sanity_timeout
  5504   - snapd,state: improve error message on state reading failure
  5505   - interfaces/apparmor: deny inet/inet6 in snap-update-ns profile
  5506   - snap: fix reexec from the snapd snap for classic snaps
  5507   - snap: fix hook autodiscovery for parallel installed snaps
  5508   - overlord/snapstate: format the refresh time for the log
  5509   - cmd/snap-confine: add special case for Jenkins
  5510   - snapcraft.yaml: fix XBuildDeb PATH for go-1.10
  5511   - overlord/snapstate: validate instance names early
  5512   - overlord/ifacestate: handler for hotplug-update-slot tasks
  5513   - polkit: cast pid to uint32 to keep polkit happy for now
  5514   - snap/naming: move various name validation helpers to separate
  5515     package
  5516   - tests: iterate getting journal logs to support delay on boards on
  5517     daemon-notify test
  5518   - cmd/snap: fix typo in cmd_wait.go
  5519   - snap/channel: improve channel parsing
  5520   - daemon, polkit: pid_t is signed
  5521   - daemon: introduce /v2/connections snapd API endpoint
  5522   - cmd/snap: small refactor of cmd_info's channel handling
  5523   - overlord/snapstate: use an ad-hoc error when no results
  5524   - cmd/snap: wrap "summary" better
  5525   - tests: workaround missing go dependencies in debian-9
  5526   - daemon: try to tidy up the icon stuff a little
  5527   - interfaces: add display-control interface
  5528   - snapcraft.yaml: fix snap building in launchpad
  5529   - tests: update fedora 29 workers to speed up the whole testing time
  5530   - interfaces: add u2f-devices interface and allow reading udev
  5531     +power_supply:* in hardware-observe
  5532   - cmd/snap-update-ns: save errno from strtoul
  5533   - tests: interfaces tests normalization
  5534   - many: cleanup golang.org/x/net/context
  5535   - tests: add spread test for system dbus interface
  5536   - tests: remove -o pipefail
  5537   - interfaces: add block-devices interface
  5538   - spread: enable upgrade suite on fedora
  5539   - tests/main/searching: video section got renamed to photo-and-video
  5540   - interfaces/home: use dac_read_search instead of dac_override with
  5541     'read: all'
  5542   - snap: really run the RunSuite
  5543   - interfaces/camera: allow reading vendor/etc info from
  5544     /run/udev/data/+usb:*
  5545   - interfaces/dbus: be less strict about alternations for well-known
  5546     names
  5547   - interfaces/home: allow dac_override with 'read:
  5548     all'
  5549   - interfaces/pulseaudio: allow reading subdirectories of
  5550     /etc/pulse
  5551   - interfaces/system-observe: allow read on
  5552     /proc/locks
  5553   - run-checks: ensure we use go-1.10 if available
  5554   - tests: get test-snapd-dbus-{provider,consumer} from the beta
  5555     channel
  5556   - interfaces/apparmor: mock presence of overlayfs root
  5557   - spread: increase default kill-timeout to 30min
  5558   - tests: simplify interfaces-contacts-service test
  5559   - packaging/ubuntu: build with golang 1.10
  5560   - ifacestate/tests: extra test for hotplug-connect handler
  5561   - packaging: make sure that /var/lib/snapd/lib/glvnd is accounted
  5562     for
  5563   - overlord/snapstate/backend: call fontconfig helpers from the new
  5564     'current'
  5565   - kvm: load required kernel modules if necessary
  5566   - cmd/snap: use a fake user for 'run' tests
  5567   - tests: update systems for google sru backend
  5568   - tests: fix install-snaps test by changing the snap info regex
  5569   - interfaces: helpers for sorting plug/slot/connection refs
  5570   - tests: moving core-snap-refresh-on-core test from main to nested
  5571     suite
  5572   - tests: fix daemon-notify test checking denials considering all the
  5573     log lines
  5574   - tests: skip lp-1802591 on "official" images
  5575   - tests: fix listing tests to match "snap list --unicode=never"
  5576   - debian: fix silly typo in the spread test invocation
  5577   - interface: raw-usb: Adding ttyACM ttyACA permissions
  5578   - tests: fix enable-disable-unit-gpio test on external boards
  5579   - overlord/ifacestate: helper API to obtain the state of connections
  5580   - tests: define new "tests/smoke" suite and use that for
  5581     autopkgtests
  5582   - cmd/snap-update-ns: explicitly check for return value from
  5583     parse_arg_u
  5584   - interfaces/builtin/opengl: allow access to NVIDIA VDPAU library
  5585   - tests: auto-clean the test directory
  5586   - cmd/snap: further tweak messaging; add a test
  5587   - overlord/ifacestate: handler for hotplug-connect task
  5588   - cmd/snap-confine: join freezer only after setting up user mount
  5589   - cmd/snap-confine: don't preemptively create .mnt files
  5590   - cmd/snap-update-ns: manually implement isspace
  5591   - cmd/snap-update-ns: let the go parser know we are parsing -u
  5592   - cmd/snap-discard-ns: fix name of user fstab files
  5593   - snapshotstate: don't task.Log without the lock
  5594   - tests: exclude some more slow tests from runs in autopkgtest
  5595   - many: remove .user-fstab files from /run/snapd/ns
  5596   - cmd/libsnap: pass --from-snap-confine when calling snap-update-ns
  5597     as user
  5598   - cmd/snap-update-ns: make freezer mockable
  5599   - cmd/snap-update-ns: move XDG code to dedicated file
  5600   - osutil: add helper for loading fstab from string
  5601   - cmd/snap-update-ns: move existing code around, renaming some
  5602     functions
  5603   - overlord/configstate/configcore: support - and _ in cloud init
  5604     field names
  5605   - * cmd/snap-confine: use makedev instead of MKDEV
  5606   - tests: review/fix the autopkgtest failures in disco
  5607   - overlord: drop old v1 store api support from managers test
  5608   - tests: new test for snapshots with more than 1 user
  5609  
  5610  * Thu Feb 28 2019 Neal Gompa <ngompa13@gmail.com> - 2.37.4-2
  5611  - Fix accidentally corrupted changelog merge
  5612  
  5613  * Thu Feb 28 2019 Zygmunt Bazyli Krynicki <me@zygoon.pl> - 2.37.4-1
  5614  - Release 2.37.4 to Fedora (RH#1683795)
  5615  - Fix RPM macro in changelog (rpmlint)
  5616  - Fix non-break space in changelog (rpmlint)
  5617  
  5618  * Wed Feb 27 2019 Michael Vogt <mvo@ubuntu.com>
  5619  - New upstream release 2.37.4
  5620   - squashfs: unset SOURCE_DATE_EPOCH in the TestBuildDate test
  5621   - overlord/ifacestate: fix migration of connections on upgrade from
  5622     ubuntu-core
  5623   - tests: fix upgrade-from-2.15 with kernel 4.15
  5624   - interfaces/seccomp: increase filter precision
  5625   - tests: remove snapweb from tests
  5626  
  5627  * Tue Feb 19 2019 Zygmunt Bazyli Krynicki <me@zygoon.pl> - 2.37.3-1
  5628  - Release 2.37.3 to Fedora (RH#1678603)
  5629  
  5630  * Mon Feb 18 2019 Michael Vogt <mvo@ubuntu.com>
  5631  - New upstream release 2.37.3
  5632   - interfaces/seccomp: generate global seccomp profile
  5633   - overlord/snapstate: add some randomness to the catalog refresh
  5634   - tests: add upgrade test from 2.15.2ubuntu1 -> current snapd
  5635   - snap-confine: fix fallback to ubuntu-core
  5636   - packaging: avoid race in snapd.postinst
  5637   - overlord/snapstate: discard mount namespace when undoing 1st link
  5638     snap
  5639   - cmd/snap-confine: allow writes to /var/lib/** again
  5640   - tests: stop catalog-update/apt-hooks test until the catlog refresh
  5641     is randomized
  5642   - debian: ensure leftover usr.lib.snapd.snap-confine is gone
  5643  
  5644  * Wed Feb 06 2019 Neal Gompa <ngompa13@gmail.com> - 2.37.2-1
  5645  - Release 2.37.2 to Fedora (RH#1667460)
  5646  
  5647  * Wed Feb 06 2019 Michael Vogt <mvo@ubuntu.com>
  5648  - New upstream release 2.37.2
  5649   - cmd/snap, overlord/snapstate: silently ignore classic flag when a
  5650     snap is strictly confined
  5651   - snap-confine: remove special handling of /var/lib/jenkins
  5652   - cmd/snap-confine: handle death of helper process gracefully
  5653   - snap-confine: fix classic snaps for users with /var/lib/* homedirs
  5654     like jenkins/postgres
  5655   - packaging: disable systemd environment generator on 18.04
  5656   - tests: update smoke/sandbox test for armhf
  5657   - cmd/snap-confine: refactor and cleanup of seccomp loading
  5658   - snap-confine: increase locking timeout to 30s
  5659   - snap-confine: fix incorrect "sanity timeout 3s" message
  5660   - snap: fix hook autodiscovery for parallel installed snaps
  5661   - tests: iterate getting journal logs to support delay on boards on
  5662     daemon-notify test
  5663   - interfaces/apparmor: deny inet/inet6 in snap-update-ns profile
  5664   - interfaces: add u2f-devices interface
  5665  
  5666  * Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.3-2
  5667  - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
  5668  
  5669  * Tue Jan 29 2019 Michael Vogt <mvo@ubuntu.com>
  5670  - New upstream release 2.37.1
  5671   - cmd/snap-confine: add special case for Jenkins
  5672   - tests: workaround missing go dependencies in debian-9
  5673   - daemon, polkit: pid_t is signed
  5674   - interfaces: add display-control interface
  5675   - interfaces: add block-devices interface
  5676   - tests/main/searching: video section got renamed to photo-and-video
  5677   - interfaces/camera: allow reading vendor/etc info from
  5678     /run/udev/data/+usb
  5679   - interfaces/dbus: be less strict about alternations for well-known
  5680     names
  5681   - interfaces/home: allow dac_read_search with 'read: all'
  5682   - interfaces/pulseaudio: allow reading subdirectories of
  5683     /etc/pulse
  5684   - interfaces/system-observe: allow read on
  5685     /proc/locks
  5686   - tests: get test-snapd-dbus-{provider,consumer} from the beta
  5687     channel
  5688   - interfaces/apparmor: mock presence of overlayfs root
  5689   - packaging/{fedora,opensuse,ubuntu}: add /var/lib/snapd/lib/glvnd
  5690  
  5691  * Wed Jan 16 2019 Michael Vogt <mvo@ubuntu.com>
  5692  - New upstream release 2.37
  5693   - snapd: fix race in TestSanityFailGoesIntoDegradedMode test
  5694   - cmd: fix snap-device-helper to deal correctly with hooks
  5695   - tests: various fixes for external backend
  5696   - interface: raw-usb: Adding ttyACM[0-9]* as many serial devices
  5697     have device node /dev/ttyACM[0-9]
  5698   - tests: fix enable-disable-unit-gpio test on external boards
  5699   - tests: define new "tests/smoke" suite and use that for
  5700     autopkgtests
  5701   - interfaces/builtin/opengl: allow access to NVIDIA VDPAU
  5702     library
  5703   - snapshotstate: don't task.Log without the lock
  5704   - overlord/configstate/configcore: support - and _ in cloud init
  5705     field names
  5706   - cmd/snap-confine: use makedev instead of MKDEV
  5707   - tests: review/fix the autopkgtest failures in disco
  5708   - systemd: allow only a single daemon-reload at the same time
  5709   - cmd/snap: only auto-enable unicode to a tty
  5710   - cmd/snap: right-align revision and size in info's channel map
  5711   - dirs, interfaces/builtin/desktop: system fontconfig cache path is
  5712     different on Fedora
  5713   - tests: fix "No space left on device" issue on amazon-linux
  5714   - store: undo workaround for timezone-less released-at
  5715   - store, snap, cmd/snap: channels have released-at
  5716   - snap-confine: fix incorrect use "src" var in mount-support.c
  5717   - release: support probing SELinux state
  5718   - release-tools: display self-help
  5719   - interface: add new `{personal,system}-files` interface
  5720   - snap: give Epoch an Equal method
  5721   - many: remove unused interface code
  5722   - interfaces/many: use 'unsafe' with docker-support change_profile
  5723     rules
  5724   - run-checks: stop running HEAD of staticcheck
  5725   - release: use sync.Once around lazy intialized state
  5726   - overlord/ifacestate: include interface name in the hotplug-
  5727     disconnect task summary
  5728   - spread: show free space in debug output
  5729   - cmd/snap: attempt to restore SELinux context of snap user
  5730     directories
  5731   - image: do not write empty etc/cloud
  5732   - tests: skip snapd snap on reset for core systems
  5733   - cmd/snap-discard-ns: fix umount(2) typo
  5734   - overlord/ifacestate: hotplug-remove-slot task handler
  5735   - overlord/ifacestate: handler for hotplug-disconnect task
  5736   - ifacestate/hotplug: updateDevice helper
  5737   - tests: reset snapd state on tests restore
  5738   - interfaces: return security setup errors
  5739   - overlord: make InstallMany work like UpdateMany, issuing a single
  5740     request to get candidates
  5741   - systemd/systemd.go: add missing tests for systemd.IsActive
  5742   - overlord/ifacestate: addHotplugSeqWaitTask helper
  5743   - cmd/snap-confine: refactor call to snap-update-ns --user-mounts
  5744   - tests: new backend used to run upgrade test suite
  5745   - travis: short circuit failures in static and unit tests travis job
  5746   - cmd: automatically fix localized <option>s to <option>
  5747   - overlord/configstate,features: expose features to snapd tools
  5748   - selinux: package to query SELinux status and verify/restore file
  5749     contexts
  5750   - wrappers: use new systemd.IsActive in core18 early boot
  5751   - cmd: add tests for lintArg and lintDesc
  5752   - httputil: retry on temporary net errors
  5753   - cmd/snap-confine: remove unused sc_discard_preserved_mount_ns
  5754   - wrappers: only restart service in core18 when they are active
  5755   - overlord/ifacestate: helpers for serializing hotplug changes
  5756   - packaging/{fedora,opensuse}: own /var/lib/snapd/cookie
  5757   - systemd: start snapd.autoimport.service in --no-block mode
  5758   - data/selinux: fix syntax error in definition of snappy_admin
  5759     interface
  5760   - snap/info: bind global plugs/slots to implicit hooks
  5761   - cmd/snap-confine: remove SC_NS_MNT_FILE
  5762   - spread: record each tests/upgrade job
  5763   - osutil: do not import dirs
  5764   - cmd/snap-confine: fix typo "a pipe"
  5765   - tests: make security-device-cgroups-{devmode,jailmode} work on arm
  5766     devices
  5767   - tests: force test-snapd-daemon-notify exit 0 when the interface is
  5768     not connected
  5769   - overlord/snapstate: run 'remove' hook before 'auto-disconnect'
  5770   - centos: enable SELinux support on CentOS 7
  5771   - apparmor: allow hard link to snap-specific semaphore files
  5772   - tests/lib/pkgdb: disable weak deps on Fedora
  5773   - release: detect too old apparmor_parser
  5774   - tests: improve how the log is checked to see if the system is
  5775     waiting for a reboot
  5776   - cmd, dirs, interfaces/apparmor: update distro identification to
  5777     support ID="archlinux"
  5778   - spread, tests: add Fedora 29
  5779   - cmd/snap-confine: refactor calling snapd tools into helper module
  5780   - apparmor: allow snap-update-ns access to common devices
  5781   - cmd/snap-confine: capture initialized per-user mount ns
  5782   - tests: reduce verbosity around package installation
  5783   - data: set KillMode=process for snapd
  5784   - cmd/snap: handle DNS error gracefully
  5785   - spread, tests: use checkpoints when dumping audit log
  5786   - tests/lib/prepare: make sure that SELinux context of repacked core
  5787     snap is controlled
  5788   - testutils: split checkers, tweak tests
  5789   - tests: fix for tests test-*-cgroup
  5790   - spread: show AVC audits when debugging, start auditd on Fedora
  5791   - spread: drop Fedora 27, add Fedora 29
  5792   - tests/lib/reset: restore context of removed snapd directories
  5793   - testutil: add File{Present,Absent} checkers
  5794   - snap: add new `snap run --trace-exec`
  5795   - tests: fix for failover test on how logs are checked
  5796   - snapctl: add "services"
  5797   - overlord/snapstate: use file timestamp to initialize timer
  5798   - cmd/libsnap: introduce and use sc_strdup
  5799   - interfaces: let NM access ifindex/ifupdown files
  5800   - overlord/snapstate: on refresh, check new rev can read current
  5801   - client, store: don't use store from client (use client from store)
  5802   - tests/main/parallel-install-store: verify installation of more
  5803     than one instance at a time
  5804   - overlord: don't write system key if security setup fails
  5805   - packaging/fedora/snapd.spec: fix bogus date in changelog
  5806   - snapstate: update fontconfig caches on install
  5807   - interfaces/apparmor/backend.go:411:38: regular expression does not
  5808     contain any meta characters (SA6004)
  5809   - asserts/header_checks.go:199:35: regular expression does not
  5810     contain any meta characters (SA6004)
  5811   - run staticcheck every time :-)
  5812   - tests/lib/systemd-escape/main.go:46:14: printf-style function with
  5813     dynamic first argument and no further arguments should use print-
  5814     style function instead (SA1006)
  5815   - tests/lib/fakestore/cmd/fakestore/cmd_run.go:66:15: the channel
  5816     used with signal.Notify should be buffered (SA1017)
  5817   - tests/lib/fakedevicesvc/main.go:55:15: the channel used with
  5818     signal.Notify should be buffered (SA1017)
  5819   - spdx/parser.go:30:1: only the first constant has an explicit type
  5820     (SA9004)
  5821   - overlord/snapstate/snapmgr.go:553:21: printf-style function with
  5822     dynamic first argument and no further arguments should use print-
  5823     style function instead (SA1006)
  5824   - overlord/patch/patch3.go:44:70: printf-style function with dynamic
  5825     first argument and no further arguments should use print-style
  5826     function instead (SA1006)
  5827   - cmd/snap/cmd_advise.go:200:2: empty branch (SA9003)
  5828   - osutil/udev/netlink/conn.go:120:5: ineffective break statement.
  5829     Did you mean to break out of the outer loop? (SA4011)
  5830   - daemon/api.go:992:22: printf-style function with dynamic first
  5831     argument and no further arguments should use print-style function
  5832     instead (SA1006)
  5833   - cmd/snapd/main.go:94:5: ineffective break statement. Did you mean
  5834     to break out of the outer loop? (SA4011)
  5835   - cmd/snap/cmd_userd.go:73:15: the channel used with signal.Notify
  5836     should be buffered (SA1017)
  5837   - cmd/snap/cmd_help.go:102:7: io.Writer.Write must not modify the
  5838     provided buffer, not even temporarily (SA1023)
  5839   - release: probe apparmor features lazily
  5840   - overlord,daemon: mock security backends for testing
  5841   - cmd/libsnap: move apparmor-support to libsnap
  5842   - cmd: drop cruft from snap-discard-ns build rules
  5843   - cmd/snap-confine: use snap-discard-ns ns to discard stale
  5844     namespaces
  5845   - cmd/snap-confine: handle mounted shared /run/snapd/ns
  5846   - many: fix composite literals with unkeyed fields
  5847   - dirs, wrappers, overlord/snapstate: make completion + bases work
  5848   - tests: revert "tests: restore in restore, not prepare"
  5849   - many: validate title
  5850   - snap: make description maximum in runes, not bytes
  5851   - tests: discard mount namespaces in reset.sh
  5852   - tests/lib: sync cla check back from snapcraft
  5853   - Revert "cmd/snap, tests/main/snap-info: highlight the current
  5854     channel"
  5855   - daemon: remove enableInternalInterfaceActions
  5856   - mkversion: use "test -n" rather than "! test -z"
  5857   - run-checks: assorted fixes
  5858   - tests: restore in restore, not in prepare
  5859   - cmd/snap: fix missing newline in "snap keys" error message
  5860   - snap: epoch lists must contain no duplicate entries
  5861   - interfaces/avahi_observe: Fix typo in comment
  5862   - tests: add SPREAD_JOB to the description of
  5863     systemd_create_and_start_unit
  5864   - daemon, vendor: bump github.com/coreos/go-systemd/activation,
  5865     handle API changes
  5866   - Revert "cmd/snap-confine: don't allow mapping lib{uuid,blkid}"
  5867   - packaging/fedora: use %%_sysctldir macro
  5868   - cmd/snap-confine: remove unneeded unshare
  5869   - sanity: extend the kernel version check to cover CentOS/RHEL
  5870     kernels
  5871   - wrappers: remove all desktop files from a snap on removal
  5872   - snap: add an explicit check for `epoch: null` loading
  5873   - snap: check max description length in validate
  5874   - spread, tests: add CentOS support
  5875   - cmd/snap-confine: allow mapping more libc shards
  5876   - cmd/snap-discard-ns: add support for --from-snap-confine
  5877   - tests: make tinyproxy support systemd notify
  5878   - tests: fix shellcheck
  5879   - snap, store: rename `snap.Epoch`'s `Unset` to `IsZero`
  5880   - store: add a test for a non-zero epoch refresh (with epoch bump)
  5881   - store: v1 search doesn't send epoch, stop pretending it does
  5882   - snap: make any "0" epoch be Unset, and marshalled to {[0],[0]}
  5883   - overlord/snapstate: amend test should send local revision
  5884   - tests: use mock-gpio.py in enable-disable-units-gpio test
  5885   - snap: enforce minimal snap name len of 2
  5886   - cmd/libsnap: add sc_verify_snap_lock
  5887   - cmd/snap-update-ns: extra debugging of trespassing events
  5888   - userd: force zenity width if the text displayed is long
  5889   - overlord/snapstate, store: always send epochs
  5890   - cmd/snap-confine,snap-update-ns: discard quirks
  5891   - cmd/snap: add nanosleep to blacklisted syscalls when running with
  5892     --strace
  5893   - cmd/snap-update-ns, tests: clean trespassing paths
  5894   - nvidia, interfaces/builtin: OpenCL fixes
  5895   - ifacestate/hotplug: removeDevice helper
  5896   - cmd: install snap-discard-ns in "make hack"
  5897   - overlord/ifacestate: setup security backends phased by backends
  5898     first
  5899   - ifacestate/helpers: added SystemSnapName mapper helper method
  5900   - overlord/ifacestate: set hotplug-key of the connection when
  5901     connecting hotplug slots
  5902   - snapd: allow snap-update-ns to read /proc/version
  5903   - cmd: handle tumbleweed and leap in autogen.sh
  5904   - interfaces/tests: MockHotplugSlot test helper
  5905   - store,daemon: make UserInfo,LoginUser part of the store interface
  5906   - overlord/ifacestate: use remapper when checking if system snap is
  5907     installed
  5908   - tests: fix how pinentry is prepared for new gpg v 2.1 and 2.2
  5909   - packaging/arch: fix bash completions path
  5910   - interfaces/builtin: add device-buttons interface for accessing
  5911     events
  5912   - tests, fakestore: extend refresh tests with parallel installed
  5913     snaps
  5914   - snap, store, overlord/snapshotstate: drop epoch pointers
  5915   - snap: make Epoch default to {[0],[0]} on load from yaml
  5916   - data/completion: pass documented arguments to completion functions
  5917   - tests: skip opensuse from interfaces-openvswitch-support test
  5918   - tests: simple reproducer for snap try and hooks bug
  5919   - snapstate: do not allow classic mode for strict snaps
  5920   - snap: make Epoch's MarshalJSON not simplify
  5921   - store: remove unused currentSnap and currentSnapJSON
  5922   - many: some small doc comment fixes in recent hotplug code
  5923   - ifacestate/udevmonitor: added callback to signal end of
  5924     enumeration
  5925   - cmd/libsnap: add simplified feature flag checker
  5926   - interfaces/opengl: add additional accesses for cuda
  5927   - tests: add core18 only hooks test and fix running core18 only on
  5928     classic
  5929   - sanity, release, cmd/snap: refuse to try to do things on WSL.
  5930   - cmd: make coreSupportsReExec faster
  5931   - overlord/ifacestate: don't remove the dash when generating unique
  5932     slot name
  5933   - cmd/snap-seccomp: add full complement of ptrace constants
  5934   - cmd: update autogen.sh for opensuse
  5935   - interfaces/apparmor: allow access to /run/snap.$SNAP_INSTANCE_NAME
  5936   - spread.yaml: add more systems to the autopkgtest and qemu backends
  5937   - daemon: spool sideloaded snap into blob dir
  5938     overlord/snapstate: address review feedback
  5939   - packaging/opensuse: stop using golang-packaging
  5940   - overlord/snapshots: survive an unknown user
  5941   - wrappers: fix generating of service units with multiple `before`
  5942     dependencies
  5943   - data: run snapd.autoimport.service only after seeding
  5944   - cmd/snap: unhide --name parameter to snap install, tweak help
  5945     message
  5946   - packaging/fedora: Merge changes from Fedora Dist-Git
  5947   - tests/main/snap-service-after-before-install: verify after/before
  5948     in snap install
  5949   - overlord/ifacestate: mark connections disconnected by hotplug with
  5950     hotplug-gone
  5951   - ifacestate/ifacemgr: don't reload hotplug-gone connections on
  5952     startup
  5953   - tests: install dependencies during prepare
  5954   - tests,store,daemon: ensure proxy settings are honored in
  5955     auth/userinfo too
  5956   - tests: core 18 does not support classic confinement
  5957   - tests: add debug output for degraded test
  5958   - strutil: make VersionCompare faster
  5959   - overlord/snapshotstate/backend: survive missing directories
  5960   - overlord/ifacestate: use map[string]*connState when passing conns
  5961     around
  5962   - tests: move fedora 28 to manual
  5963   - overlord/snapshotstate/backend: be more verbose when
  5964     SNAPPY_TESTING=1
  5965   - tests: removing fedora 26 system from spread.yaml
  5966   - tests: linode execution is not needed anymore
  5967   - tests/lib: adjust to changed systemctl behaviour on debian-9
  5968   - tests: fixes and new backend for tests on nested suite
  5969   - strutil: let MatchCounter work with a nil regexp
  5970   - ifacestate/helpers: findConnsForHotplugKey helper
  5971   - many: move regexp.(Must)Compile out of non-init functions into
  5972     variables
  5973   - store: also make snaps downloaded via deltas 0600
  5974   - snap: use Lstat to determine snap size, remove
  5975     ReadSnapInfoExceptSize
  5976   - interfaces/builtin: add adb-support interface
  5977   - tests: fail if install_snap_local fails
  5978   - strutil: add extra test to CommaSeparatedList as suggested by
  5979     mborzecki
  5980   - cmd/snap, daemon, strutil: use CommaSeparatedList to split a CSL
  5981   - ifacestate: optimize disconnect hooks
  5982   - cmd/snap-update-ns: parse the -u <uid> command line option
  5983   - cmd/snap, tests: snapshots for all
  5984   - client, cmd/daemon: allow disabling keepalive, improve degraded
  5985     mode unit tests
  5986   - snap: only show "next" refresh time if its after the hold time
  5987   - overlord/snapstate: run tests for classic snaps even on systems
  5988     that don't support classic
  5989   - overlord/standby: fix a race between standby goroutine and stop
  5990   - cmd/snap-exec: don't fail on some try mode snaps
  5991   - cmd/snap, userd, testutil: tweak DBus tests to use private session
  5992     bus connection
  5993   - cmd: remove remnants of sc_should_populate_mount_ns
  5994   - client, daemon, cmd/snap: indicate that services are socket/timer
  5995     activated
  5996   - cmd/snap-seccomp: only look for PTRACE_GETFPX?REGS where available
  5997   - cmd/snap-confine: remove SC_NS_FAIL_GRACEFULLY
  5998   - snap/pack, cmd/snap: allow specifying the filename of 'snap pack'
  5999   - cmd/snap-discard-ns: add support for per-user mount namespaces
  6000   - cmd/snap-confine: remove stale mount profile along stale namespace
  6001   - data/apt: close stderr when calling snap in the apt install hook.
  6002   - tests/main: fixes for the new shellcheck
  6003   - testutil, cmd/snap: introduce and use testutil.EqualsWrapped and
  6004     fly
  6005   - tests: initial setup for testing current branch on nested vm and
  6006     hotplug management
  6007   - cmd: refactor IPC and lifecycle of the helper process
  6008   - tests/main/parallel-install-store: the store has caught up, do not
  6009     expect failures
  6010   - overlord/snapstate, snap, wrappers: start services in the right
  6011     order during install
  6012   - interfaces/browser-support, cmd/snap-seccomp: Allow read-only
  6013     ptrace, for the Breakpad crash reporter
  6014   - snap,client: use a different exit code for retryable errors
  6015   - overlord/ifacestate: don't conflict on own discard-snap tasks when
  6016     refreshing & doing garbage collection
  6017   - cmd/snap: tweak `snap services` output when there is no services
  6018   - interfaces/many: updates to support k8s worker nodes
  6019   - cmd/snap: gnome-software install via snap:// handler
  6020   - overlord/many: cleanup use of snapName vs. instanceName
  6021   - snapstate: add command-chain to supported featureset
  6022   - daemon, snap: mark screenshots as deprecated
  6023   - interfaces: fix decoding of json numbers for static/dynamic
  6024     attributes* ifstate: fix decoding of json numbers
  6025   - cmd/snap: try not to panic on error from "snap try"
  6026   - tests: new cosmic image for spread tests on gce
  6027   - interfaces/system-key: add parser mtime and only discover features
  6028     on write
  6029   - overlord/snapshotstate/backend: detect path to tar in unit tests
  6030   - tests/unit/gccgo: drop gccgo unit tests
  6031   - cmd: use relative file names in locking APIs
  6032   - interfaces: fix NormalizeInterfaceAttributes, add tests
  6033   - overlord/snapshotstate/backend: fall back on sudo when no runuser
  6034   - cmd/snap-confine: reduce verbosity of debug and error messages
  6035   - systemd: extend Status() to work for socket and timer units
  6036   - interfaces: typo 'allows' for consistency with other ifaces
  6037   - systemd,wrappers: don't start disabled services
  6038   - ifacestate: simplify task chaining in ifacestate.Connect
  6039   - tests: ensure that goa-daemon is off
  6040   - snap/pack, snap/squashfs: remove extra copy before mksquashfs
  6041   - cmd/snap: block 'snap help <cmd> --all'
  6042   - asserts, image: ensure kernel, gadget, base and required-snaps use
  6043     valid snap names
  6044   - apparmor: add unit test for probeAppArmorParser and simplify code
  6045   - interfaces/apparmor: conditionally add explicit deny rules for
  6046     ptrace
  6047   - po: sync translations from launchpad
  6048   - osutil: tweak handling of error adduser errors
  6049   - cmd: rename ns_group to mount_ns
  6050   - tests/main/interfaces-accounts-service: more debugging
  6051   - snap/pack, snap/squashfs: use type to determine mksquashfs args
  6052   - data/systemd, wrappers: tweak system-shutdown helper for core18
  6053   - tests: show list of processes when ifaces-accounts-service fails
  6054   - tests: do not run degraded test in autopkgtest env
  6055   - snap: overhaul validation error messages
  6056   - ifacestate/hooks: only create interface hook tasks if hooks exist
  6057   - osutil: workaround overlayfs on ubuntu 18.10
  6058   - interfaces/home: don't allow snaps to write to $HOME/bin
  6059   - interfaces: improve Attr error further
  6060   - snapstate: tweak GetFeatureFlagBool() to have a default argument
  6061   - many: cleanup remaining parallel installs TODOs
  6062   - image: improve validation of extra snaps
  6063  
  6064  * Tue Dec 18 2018 Neal Gompa <ngompa13@gmail.com> - 2.36.3-1
  6065  - Release 2.36.3 to Fedora
  6066  - Remove merged patch
  6067  
  6068  * Fri Dec 14 2018 Michael Vogt <mvo@ubuntu.com>
  6069  - New upstream release 2.36.3
  6070   - wrappers: use new systemd.IsActive in core18 early boot
  6071   - httputil: retry on temporary net errors
  6072   - wrappers: only restart service in core18 when they are active
  6073   - systemd: start snapd.autoimport.service in --no-block mode
  6074   - data/selinux: fix syntax error in definition of snappy_admin
  6075     interfacewhen installing selinux-policy-devel package.
  6076   - centos: enable SELinux support on CentOS 7
  6077   - cmd, dirs, interfaces/apparmor: update distro identification to
  6078     support ID="archlinux"
  6079   - apparmor: allow hard link to snap-specific semaphore files
  6080   - overlord,apparmor: new syskey behaviour + non-ignored snap-confine
  6081     profile errors
  6082   - snap: add new `snap run --trace-exec` call
  6083   - interfaces/backends: detect too old apparmor_parser
  6084  
  6085  * Thu Nov 29 2018 Michael Vogt <mvo@ubuntu.com>
  6086  - New upstream release 2.36.2
  6087   - daemon, vendor: bump github.com/coreos/go-systemd/activation,
  6088     handle API changes
  6089   - snapstate: update fontconfig caches on install
  6090   - overlord,daemon: mock security backends for testing
  6091   - sanity, spread, tests: add CentOS
  6092   - Revert "cmd/snap, tests/main/snap-info: highlight the current
  6093     channel"
  6094   - cmd/snap: add nanosleep to blacklisted syscalls when running with
  6095     --strace
  6096   - tests: add regression test for LP: #1803535
  6097   - snap-update-ns: fix trailing slash bug on trespassing error
  6098   - interfaces/builtin/opengl: allow reading /etc/OpenCL/vendors
  6099   - cmd/snap-confine: nvidia: pick up libnvidia-opencl.so
  6100   - interfaces/opengl: add additional accesses for cuda
  6101  
  6102  * Wed Nov 21 2018 Neal Gompa <ngompa13@gmail.com> - 2.36-4
  6103  - Fix backport patch
  6104  
  6105  * Wed Nov 21 2018 Neal Gompa <ngompa13@gmail.com> - 2.36-3
  6106  - Backport fixes for EL7 support
  6107  
  6108  * Wed Nov 14 2018 Neal Gompa <ngompa13@gmail.com> - 2.36-2
  6109  - Fix runtime dependency for selinux subpackage for EL7
  6110  
  6111  * Fri Nov 09 2018 Michael Vogt <mvo@ubuntu.com>
  6112  - New upstream release 2.36.1
  6113   - tests,snap-confine: add core18 only hooks test and fix running
  6114     core18 only hooks on classic
  6115   - interfaces/apparmor: allow access to
  6116     /run/snap.$SNAP_INSTANCE_NAME
  6117   - spread.yaml: add more systems to the autopkgtest and qemu backends
  6118   - daemon: spool sideloaded snap into blob dir
  6119   - wrappers: fix generating of service units with multiple `before`
  6120     dependencies
  6121   - data: run snapd.autoimport.service only after seeding
  6122   - tests,store,daemon: ensure proxy settings are honored in
  6123     auth/userinfo too
  6124   - packaging/fedora: Merge changes from Fedora Dist-Git
  6125   - tests/lib: adjust to changed systemctl behaviour on debian-9
  6126   - tests/main/interfces-accounts-service: switch to busctl, more
  6127     debugging
  6128   - store: also make snaps downloaded via deltas 0600
  6129   - cmd/snap-exec: don't fail on some try mode snaps
  6130   - cmd/snap, userd, testutil: tweak DBus tests to use private session
  6131     bus connection
  6132   - tests/main: fixes for the new shellcheck
  6133   - cmd/snap-confine: remove stale mount profile along stale namespace
  6134   - data/apt: close stderr when calling snap in the apt install hook
  6135  
  6136  * Sun Nov 04 2018 Neal Gompa <ngompa13@gmail.com> - 2.36-1
  6137  - Release 2.36 to Fedora
  6138  
  6139  * Wed Oct 24 2018 Michael Vogt <mvo@ubuntu.com>
  6140  - New upstream release 2.36
  6141   - overlord/snapstate, snap, wrappers: start services in the right
  6142     order during install
  6143   - tests: the store has caught up, drop gccgo test, update cosmic
  6144     image
  6145   - cmd/snap: try not to panic on error from "snap try"`--devmode`
  6146   - overlord/ifacestate: don't conflict on own discard-snap tasks when
  6147     refreshing & doing garbage collection
  6148   - snapstate: add command-chain to supported featureset
  6149   - daemon, snap: mark screenshots as deprecated
  6150   - interfaces: fix decoding of json numbers for static/dynamic
  6151     attributes
  6152   - data/systemd, wrappers: tweak system-shutdown helper for core18
  6153   - interfaces/system-key: add parser mtime and only discover features
  6154     on write
  6155   - interfaces: fix NormalizeInterfaceAttributes, add tests
  6156   - systemd,wrappers: don't start disabled services
  6157   - ifacestate/hooks: only create interface hook tasks if hooks exist
  6158   - tests: do not run degraded test in autopkgtest env
  6159   - osutil: workaround overlayfs on ubuntu 18.10
  6160   - interfaces: include invalid type in Attr error
  6161   - many: enable layouts by default
  6162   - interfaces/default: don't scrub with change_profile with classic
  6163   - cmd/snap: speed up unit tests
  6164   - vendor, cmd/snap: refactor to accommodate the new less buggy go-
  6165     flags
  6166   - daemon: expose snapshots to the API
  6167   - interfaces: updates for default, screen-inhibit-control, tpm,
  6168     {hardware,system,network}-observe
  6169   - interfaces/hotplug: rename HotplugDeviceKey method to HotplugKey,
  6170     update test interface
  6171   - interfaces/tests: use TestInterface instead of a custom local
  6172     helper
  6173   - overlord/snapstate: export getFeatureFlagBool.
  6174   - osutil,asserts,daemon: support force password change in system-
  6175     user assertion
  6176   - snap, wrappers: support restart-delay, generate RestartSec=<value>
  6177     in service units
  6178   - tests/ifacestate: moved asserts-related mocking into helper
  6179   - image: fetch device store assertion if available
  6180   - many: enable AppArmor on Arch
  6181   - interfaces/repo: two helper methods for hotplug
  6182   - overlord/ifacestate: add hotplug slots with implicit slots
  6183   - interfaces/hotplug: helpers and struct updates
  6184   - tests: run the snapd tests on Ubuntu 18.10
  6185   - snapstate: only report errors if there is an actual error
  6186   - store: speedup unit tests
  6187   - spread-shellcheck: fix interleaved error messages, tweaks
  6188   - apparmor: create SnapAppArmorDir in setupSnapConfineReexec
  6189   - ifacestate: implementation of defaultDeviceKey function for
  6190     hotplug
  6191   - cmd/snap-update-ns: remove empty placeholders used for mounting
  6192   - snapshotstate: restore to current revision
  6193   - tests/lib: rework the CLA checker
  6194   - many: support and consider store friendly-stores when checking
  6195     device scope constraints
  6196   - overlord/snapstate: block parallel installs of snapd, core, base,
  6197     kernel, gadget snaps
  6198   - overlord/patch: patch for static plug/slot attributes
  6199   - interfaces: honor static attributes when reloading conns
  6200   - osutils: unit tests speedup; introduce «run-checks --short-
  6201     unit».
  6202   - systemd, wrappers: speed up wrappers unit tests
  6203   - client: speedup unit tests
  6204   - spread-shellcheck: use threads to parallelise
  6205   - snap: validate plug and slot names
  6206   - osutil, interfaces/apparmor: add and use of osutil.UnlinkMany
  6207   - wrappers: do not depend on network.taget in socket units, tweak
  6208     generated units
  6209   - interfaces/apparmor: (un)load profiles in one apparmor_parser call
  6210   - store: gracefully handle unexpected errors in 'action'
  6211     response
  6212   - cmd: put our manpages in section 8
  6213   - overlord: don't make become-operational interfere with user
  6214     requests
  6215   - store: tweak unmatched refresh result error log
  6216   - snap, client, daemon, store: use and expose "media" more
  6217   - tests,cmd/snap-update-ns: add test showing mount update bug
  6218     cmd/snap-update-ns: better detection of snapd-made tmpfs
  6219   - tests: spread tests for aliases with parallel installed snaps
  6220   - interfaces/seccomp: allow using statx by default
  6221   - store: gracefully handle unexpected errors in 'action' response
  6222   - overlord/snapshotstate: chown the tempdir
  6223   - cmd/snap: attempt to start the document portal if running with a
  6224     session bus
  6225   - snap: detect layouts vs layout in snap.yaml
  6226   - interfaces/apparmor: handle overlayfs snippet for snap-update-ns
  6227   - snapcraft.yaml: set grade to stable
  6228   - tests: shellchecks, final round
  6229   - interfaces/apparmor: handle overlayfs snippet for snap-update-ns
  6230   - snap: detect layouts vs layout in snap.yaml
  6231   - overlord/snapshotstate: store epoch in snapshot, check on restore
  6232   - cmd/snap: tweak UX of snap refresh --list
  6233   - overlord/snapstate: improve consistency, use validateInfoAndFlags
  6234     also in InstallPath
  6235   - snap: give Epoch a CanRead helper
  6236   - overlord/snapshotstate: small refactor of internal helpers
  6237   - interfaces/builtin: adding missing permission to create
  6238     /run/wpa_supplicant directory
  6239   - interfaces/builtin: avahi interface update
  6240   - client, daemon: support passing of 'unaliased' option when
  6241     installing from local files
  6242   - selftest: rename selftest.Run() to sanity.Check()
  6243   - interfaces/apparmor: report apparmor support level and policy
  6244   - ifacestate: helpers for generating slot names for hotplug
  6245   - overlord/ifacestate: make sure to pass in the Model assertion when
  6246     enforcing policies
  6247   - overlord/snapshotstate: store the SnapID in snapshot, block
  6248     restore if changed
  6249   - interfaces: generalize writable mimic profile
  6250   - asserts,interfaces/policy: add support for on-store/on-brand/on-
  6251     model plug/slot rule constraints
  6252   - many: fetch the device store assertion together and in the context
  6253     of interpreting snap-declarations
  6254   - tests: disable gccgo tests on 18.04 for now, until dh-golang vs
  6255     gccgo is fixed
  6256   - tests/main/parallel-install-services: add spread test for snaps
  6257     with services
  6258   - tests/main/snap-env: extend to cover parallel installations of
  6259     snaps
  6260   - tests/main/parallel-install-local: rename from *-sideload, extend
  6261     to run snaps
  6262   - cmd/snapd,daemon,overlord: without snaps, stop and wait for socket
  6263   - cmd/snap: tame the help zoo
  6264   - tests/main/parallel-install-store: run installed snap
  6265   - cmd/snap: add a bunch of TRANSLATORS notes (and a little more
  6266     i18n)
  6267   - cmd: fix C formatting
  6268   - tests: remove unneeded cleanup from layout tests
  6269   - image: warn on missing default-providers
  6270   - selftest: add test to ensure selftest.checks is up-to-date
  6271   - interfaces/apparmor, interfaces/builtin: tweaks for parallel snap
  6272     installs
  6273   - userd: extend the list of supported XDG Desktop properties when
  6274     autostarting user applications
  6275   - cmd/snap-update-ns: enforce trespassing checks
  6276   - selftest: actually run the kernel version selftest
  6277   - snapd: go into degraded mode when the selftest fails
  6278   - tests: add test that runs snapctl with a core18 snap
  6279   - tests: add snap install hook with base: core18
  6280   - overlord/{snapstate,assertstate}: parallel instances and
  6281     refresh validation
  6282   - interfaces/docker-support: add rules to read apparmor macros
  6283   - tests: make nfs test available for more systems
  6284   - tests: cleanup copy/paste dup in interfaces-network-setup-control
  6285   - tests: using single sh snap in interface tests
  6286   - overlord/snapstate: improve cleaup in mount-snap handler
  6287   - tests: don't fail interfaces-bluez test if bluez is already
  6288     installed
  6289   - tests: find snaps just for edge and beta channels
  6290   - daemon, snapstate: consistent snap list [--all] output with broken
  6291     snaps
  6292   - tests: fix listing to allow extra things in the notes column
  6293   - cmd/snap: improve UX when removing specific snap revision
  6294   - cmd/snap, tests/main/snap-info: highlight the current channel
  6295   - interfaces/testiface: added TestHotplugInterface
  6296   - snap: tweak commands
  6297   - interfaces/hotplug: hotplug spec takes one slot definition
  6298   - overlord/snapstate, snap: handle shared snap directories when
  6299     installing/remove snaps with instance key
  6300   - interfaces/opengl: misc accesses for VA-API
  6301   - client, cmd/snap: expose warnings to the world
  6302   - cmd/snap-update-ns: introduce trespassing state tracking
  6303   - cmd/snap: commands no longer build their own client
  6304   - tests: try to build cmd/snap for darwin
  6305   - daemon: make error responders not printf when called with 1
  6306     argument
  6307   - many: return real snap name in API response
  6308   - overlord/state: return latest LastAdded time in WarningsSummary
  6309   - many: mount namespace mapping for parallel installs of snaps
  6310   - ifacestate/autoconnect: do not self-conflict on setup-profiles if
  6311     core-phase-2
  6312   - client, cmd/snap: on !linux, exit when the client tries to Do
  6313     something
  6314   - tests: refactor for nested suite and tests fixed
  6315   - tests: use lxd's waitready instead of polling lxd socket
  6316   - ifacestate: don't initialize udev monitor until we have a system
  6317     snap
  6318   - interfaces: extra argument for static attrs in
  6319     NewConnectedPlug/NewConnectedSlot
  6320   - packaging/arch: sync packaging with AUR
  6321   - snapstate/tests: serialize all appends in fake backend
  6322   - snap-confine: make /lib/modules optional
  6323   - cmd/snap: handle "snap interfaces core" better
  6324   - store: move download tests into downloadSuite
  6325   - tests,interfaces: run interfaces-account-control on UC18
  6326   - tests: fix install snaps test by adding link to /snap
  6327   - tests: fix for nested test suite
  6328   - daemon: fix snap list --all with parallel snap instances
  6329   - snapstate: refactor tests to use SetModel*
  6330   - wrappers: fix snap services order in tests
  6331   - many: provide salt for generating instance-key in store requests
  6332   - ifacestate: fix hang when retrying content providers
  6333   - snapd-env-generator: fix when PATH is empty or unset
  6334   - overlord/assertstate: propagate TaskSnapSetup error
  6335   - client: catch and expose logs errors
  6336   - overlord: integrate device enumeration with udev monitor
  6337   - daemon, overlord/state: warnings pipeline
  6338   - tests: add publisher regex to fix the snap-info test pass on sru
  6339   - cmd: use systemdsystemgeneratorsdir, cleanup automake complaints,
  6340     tweaks
  6341   - cmd/snap-update-ns: remove the unused Secure type
  6342   - osutil, o/snapshotstate, o/sss/backend: quick fixes
  6343   - tests: update the listing expression to support core from
  6344     different channels
  6345   - store: use stable instance key in store refresh requests
  6346   - cmd/snap-update-ns: detach Mk{Prefix,{File,Dir,Symlink{,All}}}
  6347   - overlord/patch: support for sublevel patches
  6348   - tests: update prepare/restore for nightly suite
  6349   - cmd/snap-update-ns: detach BindMount from the Secure type
  6350   - cmd/snap-update-ns: re-factor pair of helpers to call fstatfs once
  6351   - ifacestate: retry on "discard-snap" in autoconnect conflict check
  6352   - cmd/snap-update-ns: separate OpenPath from the Secure struct
  6353   - wrappers: remove Wants=network-online.target
  6354   - tests: add new core16-base test
  6355   - store: refactor tests so that they work as store_test package
  6356   - many: add refresh.rate-limit core option
  6357   - tests: run account-control test with different bases
  6358   - tests: port proxy test to use python tinyproxy
  6359   - overlord: introduce snapshotstate.
  6360   - testutil: allow Fstatfs results to vary over time
  6361   - snap-update-ns: add comments about the "deadcode" in bootstrap.go
  6362   - overlord: add chg.Err() in testUpdateWithAutoconnectRetry
  6363   - many: remove deadcode
  6364   - tests: also run unit/gccgo in 18.04
  6365   - tests: introduce a helper for installing local snaps with --name
  6366   - tests: avoid removing core snap on reset
  6367   - snap: use snap.SideInfo in test to fix build with gccgo
  6368   - partition: remove unused runCommand
  6369   - image: fix incorrect error when using local bases
  6370   - overlord/snapstate: fix format
  6371   - cmd: fix format
  6372   - tests: setting "storage: preserve-size" just for amazon-linux
  6373     system
  6374   - tests: test for the hostname interface
  6375   - interfaces/modem-manager: allow access to more USB strings
  6376   - overlord: instantiate UDevMonitor
  6377   - interfaces/apparmor: tweak naming, rename to AddLayout()
  6378   - interfaces: take instance name in ifacetest.InstallSnap
  6379   - snapcraft: do not use --dirty in mkversion
  6380   - cmd: add systemd environment generator
  6381   - devicestate: support getting (http) proxy from core config
  6382   - many: rename ClientOpts to ClientOptions
  6383   - prepare-image-grub-core18: remove image root in restore
  6384   - overlord/ifacestate: remove "old-conn" from connect/undo connect
  6385     handlers
  6386   - packaging/fedora: Merge changes from Fedora Dist-Git
  6387   - image: handle errors when downloadedSnapsInfoForBootConfig has no
  6388     data
  6389   - tests: use official core18 model assertion in tests
  6390   - snap-confine: map /var/lib/extrausers into snaps mount-namespace
  6391   - overlord,store: support proxy settings internally too
  6392   - cmd/snap: bring back 'snap version'
  6393   - interfaces/mount: tweak naming of things
  6394   - strutil: fix MatchCounter to also work with buffer reuse
  6395   - cmd,interfaces,tests: add /mnt to removable-media interface
  6396   - systemd: do not run "snapd.snap-repair.service.in on firstboot
  6397     bootstrap
  6398   - snap/snapenv: drop some instance specific variables, use instance-
  6399     specific ones for user locations
  6400   - firstboot: sort by type when installing the firstboot snaps
  6401   - cmd, cmd/snap: better support for non-linux
  6402   - strutil: add new ParseByteSize
  6403   - image: detect and error if bases are missing
  6404   - interfaces/apparmor: do not downgrade confinement on arch with
  6405     linux-hardened 4.17.4+
  6406   - daemon: add pokeStateLock helper to the daemon tests
  6407   - snap/squashfs: improve error message from Build on mksquashfs
  6408     failure
  6409   - tests: remove /etc/alternatives from dirs-not-shared-with-host
  6410   - cmd: support re-exec into the "snapd" snap
  6411   - spdx: remove "Other Open Source" from the support licenses
  6412   - snap: add new type "TypeSnapd" and attach to the snapd snap
  6413   - interfaces: retain order of inserted security backends
  6414   - tests: spread test for parallel-installs desktop file handling
  6415   - overlord/devicestate: use OpenSSL's PEM format when generating
  6416     keys
  6417   - cmd: remove --skip-command-chain from snap run and snap-exec
  6418   - selftest: detect if apparmor is unusable and error
  6419   - snap,snap-exec: support command-chain for hooks
  6420   - tests: significantly reduce execution time for managers test
  6421   - snapstate: use new "snap.ByType" sorting
  6422   - overlord/snapstate: fix UpdateMany() to work with parallel
  6423     instances
  6424   - testutil: have File* checker produce more useful error output
  6425   - overlord/ifacestate: introduce connectOpts
  6426   - interfaces: parallel instances support, extend unit tests
  6427   - tests: normalize tests
  6428   - snapstate: make InstallPath() return *snap.Info too
  6429   - snap: add ByType sorting
  6430   - interfaces: add cifs-mount interface
  6431   - tests: use file based markers in snap-service-stop-mode
  6432   - osutil: reorg and stub out things to get it building on darwin
  6433   - tests/main/layout: cleanup after the test
  6434   - osutil/sys: small tweaks to let it build on darwin
  6435   - daemon, overlord/snapstate: set instance name when installing from
  6436     snap file
  6437   - many: move Uname to osutil, for more DRY and easier porting.
  6438   - cmd/snap: create snap user directory when running parallel
  6439     installed snaps
  6440   - cmd/snap-confine: switch to validation of SNAP_INSTANCE_NAME
  6441   - tests: basic test for parallel installs from the store
  6442   - image: download the gadget from the model.GadgetTrack()
  6443   - snapstate: add support for gadget tracks in model assertion
  6444   - image: add support for "gadget=track"
  6445   - overlord: handle sigterm during shutdown better
  6446   - tests: add the original function to fix the errors on new kernels
  6447   - tests/main/lxd: pull lxd from candidate; reënable i386
  6448   - wayland: add extra sockets that are used by older toolkits (e.g.
  6449     gtk3)
  6450   - asserts: add support for gadget tracks in the model assertion
  6451   - overlord/snapstate: improve feature flag validation
  6452   - tests/main/lxd: run ubuntu-16.04 only on 64 bit variant
  6453   - interfaces: workaround for activated services and newer DBus
  6454   - tests: get the linux-image-extra available for the current kernel
  6455   - interfaces: add new "sysfs-name" to i2c interfaces code
  6456   - interfaces: disconnect hooks
  6457   - cmd/libsnap: unify detection of core/classic with go
  6458   - tests: fix autopkgtest failures in cosmic
  6459   - snap: fix advice json
  6460   - overlord/snapstate: parallel snap install
  6461   - store: backward compatible instance-key handling for non-instance
  6462     snaps
  6463   - interfaces: add screencast-legacy for video and audio recording
  6464   - tests: skip unsupported architectures for fedora-base-smoke test
  6465   - tests: avoid using the journalctl cursor when it has not been
  6466     created yet
  6467   - snapstate: ensure normal snaps wait for the "snapd" snap on
  6468     refresh
  6469   - tests: enable lxd again everywhere
  6470   - tests: new test for udisks2 interface
  6471   - interfaces: add cpu-control for setting CPU tunables
  6472   - overlord/devicestate: fix tests, set seeded in registration
  6473     through proxy tests
  6474   - debian: add missing breaks on cosmic
  6475   - devicestate: only run device-hook when fully seeded
  6476   - seccomp: conditionally add socketcall() based on system and base
  6477   - tests: new test for juju client observe interface
  6478   - overlord/devicestate: DTRT w/a snap proxy to reach a serial vault
  6479   - snapcraft: set version information for the snapd snap
  6480   - cmd/snap, daemon: error out if trying to install a snap using
  6481     empty name
  6482   - hookstate: simplify some hook tests
  6483   - cmd/snap-confine: extend security tag validation to cover instance
  6484     names
  6485   - snap: fix mocking of systemkey in snap-run tests
  6486   - packaging/opensuse: fix static build of snap-update-ns and snap-
  6487     exec
  6488   - interfaces/builtin: addtl network-manager resolved DBus fix
  6489   - udev: skip TestParseUdevEvent on ppc
  6490   - interfaces: miscellaneous policy updates
  6491   - debian: add tzdata to build-dep to ensure snapd builds correctly
  6492   - cmd/libsnap-confine-private: intoduce helpers for validating snap
  6493     instance name and instance key
  6494   - snap,snap-exec: support command-chain for app
  6495   - interfaces/builtin: network-manager resolved DBus changes
  6496   - snap: tweak `snap wait` command
  6497   - cmd/snap-update-ns: introduce validation of snap instance names
  6498   - cmd/snap: fix some corner-case test setup weirdness
  6499   - cmd,dirs: fix various issues discovered by a Fedora base snap
  6500   - tests/lib/prepare: fix extra snaps test
  6501  
  6502  * Mon Oct 15 2018 Michael Vogt <mvo@ubuntu.com>
  6503  - New upstream release 2.35.5
  6504   - interfaces/home: don't allow snaps to write to $HOME/bin
  6505   - osutil: workaround overlayfs on ubuntu 18.10
  6506  
  6507  * Fri Oct 05 2018 Michael Vogt <mvo@ubuntu.com>
  6508  - New upstream release 2.35.4
  6509    - wrappers: do not depend on network.taget in socket units, tweak
  6510      generated units
  6511  
  6512  * Fri Oct 05 2018 Michael Vogt <mvo@ubuntu.com>
  6513  - New upstream release 2.35.3
  6514   - overlord: don't make become-operational interfere with user
  6515     requests
  6516   - docker_support.go: add rules to read apparmor macros
  6517   - interfaces/apparmor: handle overlayfs snippet for snap-update-
  6518     nsFixes:
  6519   - snapcraft.yaml: add workaround to fix snapcraft build
  6520   - interfaces/opengl: misc accesses for VA-API
  6521  
  6522  * Wed Sep 12 2018 Michael Vogt <mvo@ubuntu.com>
  6523  - New upstream release 2.35.2
  6524   - cmd,overlord/snapstate: go 1.11 format fixes
  6525   - ifacestate: fix hang when retrying content providers
  6526   - snap-env-generator: do nothing when PATH is unset
  6527   - interfaces/modem-manager: allow access to more USB strings
  6528  
  6529  * Mon Sep 03 2018 Michael Vogt <mvo@ubuntu.com>
  6530  - New upstream release 2.35.1
  6531   - packaging/fedora: Merge changes from Fedora Dist-Git
  6532   - snapcraft: do not use --diry in mkversion.sh
  6533   - cmd: add systemd environment generator
  6534   - snap-confine: map /var/lib/extrausers into snaps mount-namespace
  6535   - tests: cherry-pick test fixes from master for 2.35
  6536   - systemd: do not run "snapd.snap-repair.service.in on firstboot
  6537     bootstrap
  6538   - interfaces: retain order of inserted security backends
  6539   - selftest: detect if apparmor is unusable and error
  6540  
  6541  * Sat Aug 25 2018 Neal Gompa <ngompa13@gmail.com> - 2.35-1
  6542  - Release 2.35 to Fedora (RH#1598946)
  6543  
  6544  * Mon Aug 20 2018 Michael Vogt <mvo@ubuntu.com>
  6545  - New upstream release 2.35
  6546   - snapstate: add support for gadget tracks in model assertion
  6547   - image: add support for "gadget=track"
  6548   - asserts: add support for gadget tracks in the model assertion
  6549   - interfaces: add new "sysfs-name" to i2c interfaces code
  6550   - overlord: handle sigterm during shutdown better
  6551   - wayland: add extra sockets that are used by older toolkits
  6552   - snap: fix advice json
  6553   - tests: fix autopkgtest failures in cosmic
  6554   - store: backward compatible instance-key handling for non-instance
  6555     snaps
  6556   - snapstate: ensure normal snaps wait for the "snapd" snap on
  6557     refresh
  6558   - interfaces: add cpu-control for setting CPU tunables
  6559   - debian: add missing breaks on comisc
  6560   - overlord/devicestate: DTRT w/a snap proxy to reach a serial vault
  6561   - devicestate: only run device-hook when fully seeded
  6562   - seccomp: conditionally add socketcall() based on system and base
  6563   - interfaces/builtin: addtl network-manager resolved DBus fix
  6564   - hookstate: simplify some hook tests
  6565   - udev: skip TestParseUdevEvent on ppc
  6566   - interfaces: miscellaneous policy updates
  6567   - debian: add tzdata to build-dep to ensure snapd builds correctly
  6568   - interfaces/builtin: network-manager resolved DBus changes
  6569   - tests: add spread test for fedora29 base snap
  6570   - cmd/libsnap: treat distributions with VARIANT_ID=snappy as "core"
  6571   - dirs: fix SnapMountDir inside a Fedora base snap
  6572   - tests: fix snapd-failover for core18 with external backend
  6573   - overlord/snapstate: always clean SnapState when doing Get()
  6574   - overlod/ifacestate: always use a new SnapState when fetching the
  6575     snap state
  6576   - overlord/devicestate: have the serial request talk to the proxy if
  6577     set
  6578   - interfaces/hotplug: udevadm output parser
  6579   - tests: New test for daemon-notify interface
  6580   - image: ensure "core" is ordered early if base: and core is used
  6581   - cmd/snap-confine: snap-device-helper parallel installs support
  6582   - tests: enable interfaces-framebuffer everywhere
  6583   - tests: reduce nc wait time from 2 to 1 second
  6584   - snap/snapenv: add snap instance specific variables
  6585   - cmd/snap-confine: add minimal test for snap-device-helper
  6586   - tests: enable snapctl test on core18
  6587   - overlord: added UDevMonitor for future hotplug support
  6588   - wrappers: do not glob when removing desktop files
  6589   - tests: add dbus monitor log to interfaces-accounts-service
  6590   - tests: add core-18 systems to external backend
  6591   - wrappers: account for changed app wrapper in parallel installed
  6592     snaps
  6593   - wrappers: make sure that the tests pass on non-Ubuntu too
  6594   - many: add snapd snap failure handling
  6595   - tests: new test for dvb interface
  6596   - configstate: accept refresh.timer=managed
  6597   - tests: new test for snap logs command
  6598   - wrapper: generate all the snapd unit files when generating
  6599     wrappers
  6600   - store: keep all files with link-count > 1 in the cache
  6601   - store: be less verbose in the common refresh case of "no updates"
  6602   - snap-confine: update snappy-app-dev path
  6603   - debian: ensure dependency on fixed apt on 18.04
  6604   - snapd: add initial software watchdog for snapd
  6605   - daemon, systemd: change journalctl -n=all to --no-tail
  6606   - systemd: fix snapd.apparmor.service.in dependencies
  6607   - snapstate: refuse to remove bases or core if snaps need them
  6608   - snap: introduce package-level helpers for building snap related
  6609     directory/file paths
  6610   - overlord/devicestate: deny parallel install of kernel or gadget
  6611     snaps
  6612   - store: clean up parallel-install TODOs in store tests
  6613   - timeutil: fix first weekday of the month schedule
  6614   - interfaces: match all possible tty but console
  6615   - tests: shellchecks part 5
  6616   - cmd/snap-confine: allow ptrace read for 4.18 kernels
  6617   - advise: make the bolt database do the atomic rename dance
  6618   - tests/main/apt-hooks: debug dump of commands.db
  6619   - tests/lib/prepare-restore: update Arch Linux kernel LOCALVERSION
  6620     handling
  6621   - snap: validate instance name as part of Validate()
  6622   - daemon: if a snap is inactive, don't ask systemd about its
  6623     services.
  6624   - udev: skip TestParseUdevEvent on s390x
  6625   - tests: switch core-amd64-18 to use `kernel: pc-kernel=18`
  6626   - asserts,image: add support for new kernel=track syntax
  6627   - tests: new gce image for fedora 27
  6628   - interfaces/apparmor: use the cache in mtime-resilient way
  6629   - store, overlord/snapstate: introduce instance name in store APIs
  6630   - tests: drive-by cleanup of redudant pkgname matching
  6631   - tests: ensure apt-hook is only run after catalog update ran
  6632   - tests: use pkill instead of kilall
  6633   - tests/main: another bunch of updates for Amazon Linux 2
  6634   - tests/lib/snaps: avoid using relative command paths that go up in
  6635     the  directory tree
  6636   - tests: disable/fix more tests for Amazon Linux 2
  6637   - overlord: introduce InstanceKey to SnapState and SnapSetup,
  6638     renames
  6639   - daemon: make sure most change generating handlers can produce
  6640     errors with kinds
  6641   - tests/main/interfaces-calendar-service: skip the test on AMZN2
  6642   - tests/lib/snaps: avoid using relative command paths that go up in
  6643     the directory tree
  6644   - cmd/snap: add a green check mark to verified publishers
  6645   - cmd/snap: fix two issues in the cmd/snap unit tests
  6646   - packaging/fedora: fix target path of /snap symlink
  6647   - cmd/snap: support `--last=<type>?` to mean "no error on empty"
  6648   - cmd/snap-confine: (nvidia) pick up libnvidia-glvkspirv.so
  6649   - strutil: detect and bail out of Unmarshal on duplicate key
  6650   - packaging/fedora(amzn2): disable SELinux, drop dependency on
  6651     squashfuse for AMZN2
  6652   - spread, tests: add support for Amazon Linux 2
  6653   - packaging/fedora: Add Amazon Linux 2 support
  6654   - many: make Wait/Stop optional on StateManagers
  6655   - snap/squashfs: stop printing unsquashfs info to stderr
  6656   - snap: add support for `snap advise-snap --from-apt`
  6657   - overlord/ifacestate: ignore connect if already connected
  6658   - tests: change the service snap used instead of network-bind-
  6659     consumer
  6660   - interfaces/network-control: update for wpa-supplicant and ifupdown
  6661   - tests: fix raciness in stop mode tests
  6662   - logger: try to not have double dates
  6663   - debian: use deb-systemd-invoke instead of systemctl directly
  6664   - tests: run all main tests on core18
  6665   - many: finish sharing a single TaskRunner with all the the managers
  6666   - interfaces/repo: added AllHotplugInterfaces helper
  6667   - snapstate: ensure kernel-track is honored on switch/refresh
  6668   - overlord/ifacestate: support implicit slots on snapd
  6669   - image: add support for "kernel-track" in `snap prepare-image`
  6670   - tests: add test that ensures we do not boot any system in degraded
  6671     state
  6672   - tests: update tests to work on core18
  6673   - cmd/snap: check for typographic dashes in command
  6674   - tests: fix tests expecting old email address
  6675   - client: add some existing error kinds that were not listed in
  6676     client.go
  6677   - tests: add missing slots in classic and core provider test snaps
  6678   - overlord,daemon,cmd: re-map snap names around the edges of snapd
  6679   - tests: use install_local in snap-run-hooks
  6680   - coreconfig: add support for `snap set system network.disable-
  6681     ipv6`
  6682   - overlord/snapstate: dedupe default content providers
  6683   - osutil/udev: sync with upstream
  6684   - debian: do not ship snapd.apparmor.service on ubuntu
  6685   - overlord: have SnapManager use a passed in TaskRunner created by
  6686     Overlord
  6687   - many: streamline the generic conflict check mechanisms
  6688   - tests: remove unneeded setup code in snap-run-symlink
  6689   - cmd/snap: print unset license as "unset", instead of "unknown"
  6690   - asserts: add (optional) kernel-track to model assertion
  6691   - snap/squashfs, tests: pass -n[o-progress] to {mk,un}squashfs
  6692   - interfaces/pulseaudio: be clear that the interface allows playback
  6693     and record
  6694   - snap: support hook environment
  6695   - interfaces: fix typo "daemonNotify" (add missing "n")
  6696   - interfaces: tweak tests of daemon-notify, use common naming
  6697   - interfaces: allow invoking systemd-notify when daemon-notify is
  6698     connected
  6699   - store: make snap blobs be 0600
  6700   - interfaces,daemon: move JSON types to the daemon
  6701   - tests: prepare needs to handle bin/snapctl being a symlink
  6702   - tests: do not mask errors in interfaces-timezone-control (#5405)
  6703   - packaging: put snapctl into /usr/lib/snapd and symlink in usr/bin
  6704   - tests: add basic integration test for spread hold
  6705   - overlord/snapstate: improve PlugsOnly comment
  6706   - many: assorted shellcheck fixes
  6707   - store, daemon, client, cmd/snap: expose "scope", default to wide
  6708   - snapstate: allow setting "refresh.timer=managed"
  6709   - cmd/snap: display a link to data privacy notice for interactive
  6710     snap login
  6711   - client, cmd/snap: pass snap instance name when installing from
  6712     file
  6713   - cmd/snap: add 'debug paths' command
  6714   - snapstate: make sure all *link-*snap tasks carry a snap type and
  6715     further hints
  6716   - devicestate: fix race when refreshing a snap with snapd-control
  6717   - tests: fix tests on arch
  6718   - tests: start active system units on reset
  6719   - tests: new test for joystick interface
  6720   - tests: moving install of dependencies to pkgdb helper
  6721   - tests: enable new fedora image with test dependencies installed
  6722   - tests: start using the new opensuse image with test dependencies
  6723   - tests: check catalog refresh before and after restart snapd
  6724   - tests: stop restarting journald service on prepare
  6725   - interfaces: make core-support a no-op interface
  6726   - interfaces: prefer "snapd" when resolving implicit connections
  6727   - interfaces/hotplug: add hotplug Specification and
  6728     HotplugDeviceInfo
  6729   - many: lessen the use of core-support
  6730   - tests: fixes for the autopkgtest failures in cosmic
  6731   - tests: remove extra ' which breaks interfaces-bluetooth-control
  6732     test
  6733   - dirs: fix antergos typo
  6734   - tests: use grep to avoid non-matching messages from MATCH
  6735   - dirs: improve distro detection for Antegros
  6736   - vendor: switch to latest bson
  6737   - interfaces/builtin: create can-bus interface
  6738   - tests: "snap connect" is idempotent so just connect
  6739   - many: use extra "releases" information on store "revision-not-
  6740     found" errors to produce better errors
  6741   - interfaces: treat "snapd" snap as type:os
  6742   - interfaces: tweak tests to have less repetition of "core" and
  6743     "ubuntu…
  6744   - tests: simplify econnreset test
  6745   - snap: add helper for renaming slots
  6746   - devicestate: fix panic in firstboot code when no snaps are seeded
  6747   - tests: add artful for sru validation on google backend
  6748   - snap,interfaces: move interface name validation to snap
  6749   - overlord/snapstate: introduce path to fake backend ops
  6750   - cmd/snap-confine: fix snaps running on core18
  6751   - many: expose publisher's validation throughout the API
  6752  
  6753  * Fri Jul 27 2018 Michael Vogt <mvo@ubuntu.com>
  6754  - New upstream release 2.34.3
  6755   - interfaces/apparmor: use the cache in mtime-resilient way
  6756   - cmd/snap-confine: (nvidia) pick up libnvidia-glvkspirv.so
  6757   - snapstate: allow setting "refresh.timer=managed"
  6758   - spread: switch Fedora and openSUSE images
  6759  
  6760  * Thu Jul 19 2018 Michael Vogt <mvo@ubuntu.com>
  6761  - New upstream release 2.34.2
  6762   - packaging: fix bogus date in fedora snapd.spec
  6763   - tests: fix tests expecting old email address
  6764  
  6765  * Tue Jul 17 2018 Michael Vogt <mvo@ubuntu.com>
  6766  - New upstream release 2.34.1
  6767   - tests: cherry-pick test fixes from master for 2.34
  6768   - coreconfig: add support for `snap set system network.disable-
  6769     ipv6`
  6770   - debian: do not ship snapd.apparmor.service on ubuntu
  6771   - overlord/snapstate: dedupe default content providers
  6772   - interfaces/builtin: create can-bus interface
  6773  
  6774  * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.33.1-2
  6775  - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  6776  
  6777  * Fri Jul 06 2018 Michael Vogt <mvo@ubuntu.com>
  6778  - New upstream release 2.34
  6779   - store, daemon, client, cmd/snap: expose "scope", default to wide*
  6780   - tests: fix arch tests
  6781   - snapstate: make sure all *link-*snap tasks carry a snap type and
  6782     further hints
  6783   - snapstate: allow setting "refresh.timer=managed"
  6784   - cmd/snap: display a link to data privacy notice for interactive
  6785     snap login
  6786   - devicestate: fix race when refreshing a snap with snapd-control
  6787   - tests: skip interfaces-framebuffer when no /dev/fb0 is found
  6788   - tests: run interfaces-contacts-service only where test-snapd-eds
  6789     is available
  6790   - many: expose publisher's validation throughout the API
  6791   - many: use extra "releases" information on store "revision-not-
  6792     found" errors to produce better errors
  6793   - dirs: improve distro detection for Antegros
  6794   - Revert "dirs: improve identification of Arch Linux like systems"
  6795   - devicestate: fix panic in firstboot code when no snaps are seeded
  6796   - i18n: use xgettext-go --files-from to avoid running into cmdline
  6797     size limits
  6798   - interfaces: move ValidateName helper to utils
  6799   - snapstate,ifstate: wait for pending restarts before auto-
  6800     connecting
  6801   - snap: account for parallel installs in wrappers, place info and
  6802     tests
  6803   - configcore: fix incorrect handling of keys with numbers (like
  6804     gpu_mem_512)
  6805   - tests: fix tests when no keyboard input detected
  6806   - overlord/configstate: add watchdog options
  6807   - snap-mgmt: fix for non-existent dbus system policy dir,
  6808     shellchecks
  6809   - tests/main/snapd-notify: use systemd's service properties rater
  6810     than the journal
  6811   - snapstate: allow removal of snap.TypeOS when using a model with a
  6812     base
  6813   - interfaces: make findSnapdPath smarter
  6814   - tests: run "arp" tests only if arp is available
  6815   - spread: increase the number of auto retries for package downloads
  6816     in opensuse
  6817   - cmd/snap-confine: fix nvidia support under lxd
  6818   - corecfg: added experimental.hotplug feature flag
  6819   - image: block installation of parallel snap instances
  6820   - interfaces: moved normalize method to interfaces/utils and made it
  6821     public
  6822   - api/snapctl: allow -h and --help for regular users.
  6823   - interfaces/udisks2: also implement implicit classic slot
  6824   - cmd/snap-confine: include CUDA runtime libraries
  6825   - tests: disable auto-refresh test on core18
  6826   - many: switch to account validation: unproven|verified
  6827   - overlord/ifacestate: get/set connection state only via helpers
  6828   - tests: adding extra check to validate journalctl is showing
  6829     current test data
  6830   - data: add systemd environment configuration
  6831   - i18n: handle write errors in xgettext-go
  6832   - snap: helper for validating snap instance names
  6833   - snap{/snaptest}: set instance key based on snap name
  6834   - userd: fix running unit tests on KDE
  6835   - tests/main/econnreset: limit ingress traffic to 512kB/s
  6836   - snap: introduce a struct Channel to represent store channels, and
  6837     helpers to work with it
  6838   - tests: add fedora to distro_clean_package_cache function
  6839   - many: rename snap.Info.StoreName() to snap.Info.SnapName()
  6840   - tests: add spread test to ensure snapd/core18 are not removable
  6841   - tests: tweaks for running the main tests on core18
  6842   - overlord/{config,snap}state: introduce experimental.parallel-
  6843     instances feature flag
  6844   - strutil: support iteration over almost clean paths
  6845   - strutil: add PathIterator.Rewind
  6846   - tests: update interfaces-timeserver-control to core18
  6847   - tests: add halt-timeout to google backend
  6848   - tests: skip security-udev-input-subsystem without /dev/input/by-
  6849     path
  6850   - snap: introduce the instance key field
  6851   - packaging/opensuse: remaining packaging updates for 2.33.1
  6852   - overlord/snapstate: disallow installing snapd on baseless models
  6853   - tests: disable core tests on all core systems (16 and 18)
  6854   - dirs: improve identification of Arch Linux like systems
  6855   - many: expose full publisher info over the snapd API
  6856   - tests: disable core tests on all core systems (16 and 18)
  6857   - tests/main/xdg-open: restore or clean up xdg-open
  6858   - tests/main/interfaces-firewall-control: shellcheck fix
  6859   - snapstate: sort "snapd" first
  6860   - systemd: require snapd.socket in snapd.seeded.service; make sure
  6861     snapd.seeded
  6862   - spread-shellcheck: use the latest shellcheck available from snaps
  6863   - tests: use "ss" instead of "netstat" (netstat is not available in
  6864     core18)
  6865   - data/complete: fix three out of four shellcheck warnings in
  6866     data/complete
  6867   - packaging/opensuse: fix typo, missing assignment
  6868   - tests: initial core18 spread image building
  6869   - overlord: introduce a gadget-connect task and use it at first boot
  6870   - data/completion: fix inconsistency in +x and shebang
  6871   - firstboot: mark essential snaps as "Required" in the state
  6872   - spread-shellcheck: use a whitelist of files that are allowed to
  6873     fail validation
  6874   - packaging/opensuse: build position-independent binaries
  6875   - ifacestate: prevent running interface hooks twice when self-
  6876     connecting on autoconnect
  6877   - data: remove /bin/sh from snapd.sh
  6878   - tests: fix shellcheck 0.5.0 warnings
  6879   - packaging/opensuse: snap-confine should be 06755
  6880   - packaging/opensuse: ship apparmor integration if enabled
  6881   - interfaces/udev,misc: only trigger udev events on input subsystem
  6882     as needed
  6883   - packaging/opensuse: add missing bits for snapd.seeded.service
  6884   - packaging/opensuse: don't use %-macros in comments
  6885   - tests: shellchecks part 4
  6886   - many: rename snap.Info.Name() to snap.Info.InstanceName(), leave
  6887     parallel-install TODOs
  6888   - store: drop unused: channel map types, and details fixture.
  6889   - store: have a basic test about the unmarshalling of /search
  6890     results
  6891   - tests: show executed tests on current system when a test fails
  6892   - tests: fix for the download of the big snap
  6893   - interfaces/apparmor: add chopTree
  6894   - tests: remove double debug: | entry in tests and add more checks
  6895   - cmd/snap-update-ns: introduce mimicRequired helper
  6896   - interfaces: move assertions around for better failure line number
  6897   - store: log a nice clear "download succeeded" message
  6898   - snap: run snap-confine from the re-exec location
  6899   - snapstate: support restarting snapd from the snapd snap on core18
  6900   - tests: show status of the partial test-snapd-huge snap in
  6901     econnreset test
  6902   - tests: fix interfaces-calendar-service test when gvfsd-metadata
  6903     loks the xdg dirctory
  6904   - store: switch store.SnapInfo to use the new v2/info endpoint
  6905   - interfaces: add Repository.AllInterfaces
  6906   - snapstate: stop using evolving SnapSpec internally, use an
  6907     internal-only snapSpec instead
  6908   - cmd/libsnap-confine-private: introduce a helper for splitting snap
  6909     name
  6910   - tests: econnreset/retry tweaks
  6911   - store, et al: kill dead code that uses the bulk endpoint
  6912   - tests/lib/prepare-restore: fix upgrade/reboot handling on arch
  6913   - cmd/snap-update-ns,strutil: move PathIterator to strutil, add
  6914     Depth helper
  6915   - data/systemd/snapd.run-from-snap: ensure snapd tooling is
  6916     available
  6917   - store: switch connectivity check to use v2/info
  6918   - devicestate: support seeding from a base snap instead of core
  6919   - snapstate,ifacestate: remove core-phase-2 handling
  6920   - interfaces/docker-support: update for docker 18.05
  6921   - tests: enable fedora 28 again
  6922   - overlord/ifacestate:  simplify checkConnectConflicts and also
  6923     connect signature
  6924   - snap: parse connect instructions in gadget.yaml
  6925   - tests: fix snapd-repair.timer on ubuntu-core-snapd-run- from-snap
  6926     test
  6927   - interfaces/apparmor: allow killing snap-update-ns
  6928   - tests: skip "try" test on s390x
  6929   - store, image: have 'snap download' use v2/refresh action=download
  6930   - interfaces/policy: test that base policy can be parsed
  6931   - tests: publish test-snapd-appstreamid for any architecture
  6932   - snap: don't include newline in hook environment
  6933   - cmd/snap-update-ns: use RCall with SyscallsEqual
  6934   - cmd/snap-update-ns: add IsSnapdCreatedPrivateTmpfs and tests
  6935   - tests: skip security-dev-input-event-denied on s390x/arm64
  6936   - interfaces: add the dvb interface
  6937   - daemon: paging is not a thing.
  6938   - cmd/snap-mgmt: remove system key on purge
  6939   - testutil: syscall sequence checker
  6940   - cmd/snap-update-ns: fix a leaking file descriptor in MkSymlink
  6941   - packaging: use official bolt in the errtracker on fedora
  6942   - many: add `snap debug connectivity` command* many: add `snap debug
  6943     connectivity` command
  6944   - configstate: deny configuration of base snaps and for the "snapd"
  6945     snap
  6946   - interfaces/raw-usb: also allow usb serial devices
  6947   - snap: reject more layout locations
  6948   - errtracker: do not send duplicated reports
  6949   - httputil: extra debug if an error is not retried
  6950   - cmd/snap-update-ns: improve wording in many errors
  6951   - cmd/snap: use snaptest.MockSnapCurrent in `snap run` tests
  6952   - cmd/snap-update-ns: add helper for checking for read-only
  6953     filesystems
  6954   - interfaces/builtin/docker: use commonInterface over specific
  6955     struct
  6956   - testutil: add test support for Fstatfs
  6957   - cmd/snap-update-ns: discard the concept of segments
  6958   - cmd/libsnap-confine-private: helper for extracting store snap name
  6959     from local-name
  6960   - tests: fix flaky test for hooks undo
  6961   - interfaces: add {contacts,calendar}-service interfaces
  6962   - tests: retry 'restarting into..' match in the snap-confine-from-
  6963     core test
  6964   - systemd: adjust TestWriteMountUnitForDirs() to use
  6965     squashfs.MockUseFuse(false)
  6966   - data: add helper that can generate/start/stop the snapd service
  6967   - sefltest: advise reboot into 4.4 on trusty running 3.13
  6968   - selftest: add new selftest package that tests squashfs mounting
  6969   - store, jsonutil: move store.getStructFields to
  6970     jsonutil.StructFields
  6971   - ifacestate: improved conflict and error handling when creating
  6972     autoconnect tasks
  6973   - cmd/snap-confine: applied make fmt
  6974   - interfaces/udev: call 'udevadm settle --timeout=10' after
  6975     triggering events
  6976   - tests: wait more time until snap start to be downloaded on
  6977     econnreset test
  6978   - snapstate: ensure fakestore returns TypeOS for the core snap
  6979   - tests: fix lxd test which hangs on restore
  6980   - cmd/snap-update-ns: add PathIterator
  6981   - asserts,image: add support for models with bases
  6982   - tests: shellchecks part 3
  6983   - overlord/hookstate: support undo for hooks
  6984   - interfaces/tpm: Allow access to the kernel resource manager
  6985   - tests: skip appstream-id test for core systems 32 bits
  6986   - interfaces/home: remove redundant common interface assignment
  6987   - tests: reprioritise a few tests that are known to be slow
  6988   - cmd/snap: small help tweaks and fixes
  6989   - tests: add test to ensure /dev/input/event* for non-joysticks is
  6990     denied
  6991   - spread-shellcheck: silly fix & pep8
  6992   - spread: switch fedora 28 to manual
  6993   - client,cmd/snap,daemon,tests: expose base of a snap over API, show
  6994     it in snap info --verbose
  6995   - tests: fix lxd test - --auto now sets up networking
  6996   - tests: adding fedora-28 to spread.yaml
  6997   - interfaces: add juju-client-observe interface
  6998   - client, daemon: add a "mounted-from" entry to local snaps' JSON
  6999   - image: set model.DisplayName() in bootenv as "snap_menuentry"
  7000   - packaging/opensuse: Refactor packaging to support all openSUSE
  7001     targets
  7002   - interfaces/joystick: force use of the device cgroup with joystick
  7003     interface
  7004   - interfaces/hardware-observe: allow access to /etc/sensors* for
  7005     libsensors
  7006   - interfaces: remove Plug/Slot types
  7007   - interface hooks: update old AutoConnect methods
  7008   - snapcraft: run with DEB_BUILD_OPTIONS=nocheck
  7009   - overlord/{config,snap}state: the number of inactive revisions is
  7010     config
  7011   - cmd/snap: check with snapd for unknown sections
  7012   - tests: moving test helpers from sh to bash
  7013   - data/systemd: add snapd.apparmor.service
  7014   - many: expose AppStream IDs (AKA common ID)
  7015   - many: hold refresh when on metered connections
  7016   - interfaces/joystick: also support modern evdev joysticks and
  7017     gamepads
  7018   - xdgopenproxy: skip TestOpenUnreadableFile when run as root
  7019   - snapcraft: use dpkg-buildpackage options that work in xenial
  7020   - spread: openSUSE LEAP 42.2 was EOLd in January, remove it
  7021   - get-deps: work with an unset GOPATH too
  7022   - interfaces/apparmor: use strict template on openSUSE tumbleweed
  7023   - packaging: filter out verbose flags from "dh-golang"
  7024   - packaging: fix description
  7025   - snapcraft.yaml: add minimal snapcraft.yaml with custom build
  7026  
  7027  * Fri Jun 22 2018 Neal Gompa <ngompa13@gmail.com> - 2.33.1-1
  7028  - Release 2.33.1 to Fedora (RH#1567916)
  7029  
  7030  * Thu Jun 21 2018 Michael Vogt <mvo@ubuntu.com>
  7031  - New upstream release 2.33.1
  7032   - many: improve udev trigger on refresh experience
  7033   - systemd: require snapd.socket in snapd.seeded.service
  7034   - snap: don't include newline in hook environment
  7035   - interfaces/apparmor: allow killing snap-update-ns
  7036   - tests: skip "try" test on s390x
  7037   - tests: skip security-dev-input-event-denied when /dev/input/by-
  7038     path/ is missing
  7039   - tests: skip security-dev-input-event-denied on s390x/arm64
  7040  
  7041  * Fri Jun 08 2018 Michael Vogt <mvo@ubuntu.com>
  7042  - New upstream release 2.33
  7043   - packaging: use official bolt in the errtracker on fedora
  7044   - many: add `snap debug connectivity` command
  7045   - interfaces/raw-usb: also allow usb serial devices
  7046   - errtracker: do not send duplicated reports
  7047   - selftest: add new selftest package that tests squashfs mounting
  7048   - tests: backport lxd force stop and econnreset fixes
  7049   - tests: add test to ensure /dev/input/event* for non-joysticks is
  7050     denied
  7051   - interfaces/joystick: support modern evdev joysticks
  7052   - interfaces: add juju-client-observe
  7053   - interfaces/hardware-observe: allow access to /etc/sensors* for
  7054     libsensors
  7055   - many: holding refresh on metered connections
  7056   - many: expose AppStream IDs (AKA common ID)
  7057   - tests: speed up save/restore snapd state for all-snap systems
  7058     during tests execution
  7059   - interfaces/apparmor: use helper to load stray profile
  7060   - tests: ubuntu core abstraction
  7061   - overlord/snapstate: don't panic in a corner case interaction of
  7062     cleanup tasks and pruning
  7063   - interfaces/apparmor: add 'mediate_deleted' profile flag for all
  7064     snaps
  7065   - tests: new parameter for the journalctl rate limit
  7066   - spread-shellcheck: port to python
  7067   - interfaces/home: add 'read' attribute to allow non-owner read to
  7068     @{HOME}
  7069   - testutil: import check.v1 differently to workaround gccgo error
  7070   - interfaces/many: miscellaneous updates for default, desktop,
  7071     desktop-legacy, system-observe, hardware-observe, opengl and gpg-
  7072     keys
  7073   - snapstate/hooks: reorder autoconnect and reconnect hooks
  7074   - daemon: update unit tests to match current master
  7075   - overlord/snapshotstate/backend: introducing the snapshot backend
  7076   - many: support 'system' nickname in interfaces
  7077   - userd: add the "snap" scheme to the whitelist
  7078   - many: make rebooting of core on refresh immediate, refactor logic
  7079     around it
  7080   - tests/main/snap-service-timer: account for service timer being in
  7081     the 'running' state
  7082   - interfaces/builtin: allow access to libGLESv* too for opengl
  7083     interface
  7084   - daemon: fix unit tests on arch
  7085   - interfaces/default,process-control: miscellaneous signal policy
  7086     fixes
  7087   - interfaces/bulitin: add write permission to optical-drive
  7088   - configstate: validate known core.* options
  7089   - snap, wrappers: systemd WatchdogSec support
  7090   - ifacestate: do not auto-connect manually disconnected interfaces
  7091   - systemd: mock useFuse() so testsuite passes in container via lxd
  7092     snap
  7093   - snap/env: fix env duplication logic
  7094   - snap: some doc comments fixes and additions
  7095   - cmd/snap-confine, interfaces/opengl: allow access to glvnd EGL
  7096     vendor files
  7097   - ifacestate: unify reconnect and autoconnect methods
  7098   - tests: fix user mounts test for external systems
  7099   - overlord/snapstate,overlord/auth,store: coalesce no auth user
  7100     refresh requests
  7101   - boot,partition: improve tests/docs around SetNextBoot()
  7102   - many: improve `snap wait` command
  7103   - snap: fix `snap interface --attrs` output when numbers are used
  7104   - cmd/snap-update-ns: poke holes when creating source paths for
  7105     layouts
  7106   - snapstate: support getting new bases/default-providers on refresh
  7107   - ifacemgr: remove stale connections on startup
  7108   - asserts: use Attrer in policy checks
  7109   - testutil: record system call errors / return values
  7110   - tests: increase timeouts to make tests reliable on slow boards
  7111   - repo: pass and return ConnRef via pointers
  7112   - interfaces: add xdg-document-portal support to desktop interface
  7113   - debian: add a zenity|kdialog suggests
  7114   - snapstate: make TestDoPrereqRetryWhenBaseInFlight less brittle
  7115   - tests: go must be installed as a classic snap
  7116   - tests: use journalctl cursors instead rotating logs
  7117   - daemon: add confinement-options to /v2/system-info
  7118     daemon: refactor classic support flag to be more structured
  7119   - tests: build spread in the autopkgtests with a more recent go
  7120   - cmd/snap: fix the message when snap.channel != snap.tracking
  7121   - overlord/snapstate: allow core defaults configuration via 'system'
  7122     key
  7123   - many: add "snap debug sandbox-features" and needed bits
  7124   - interfaces: interface hooks for refresh
  7125   - snapd.core-fixup.sh: add workaround for corrupted uboot.env
  7126   - boot: clear "snap_mode" when needed
  7127   - many: add wait command and `snapd.seeded` service
  7128   - interfaces: move host font update-ns AppArmor rules to desktop
  7129     interface
  7130   - jsonutil/safejson: introducing safejson.String &
  7131     safejson.Paragraph
  7132   - cmd/snap-update-ns: use Secure.BindMount to bind mount files
  7133   - cmd/snap-update-ns,tests: mimic the mode and ownership of
  7134     directories
  7135   - cmd/snap-update-ns: add support for ignoring mounts with missing
  7136     source/target
  7137   - interfaces: interface hooks implementation
  7138   - cmd/libsnap: fix compile error on more restrictive gcc
  7139     cmd/libsnap: fix compilation errors on gcc 8
  7140   - interfaces/apparmor: allow bash and dash to be in /usr/bin/
  7141   - cmd/snap-confine: allow any base snap to provide /etc/alternatives
  7142   - tests: fix interfaces-network test for systems with partial
  7143     confinement
  7144   - spread.yaml: add cosmic (18.10) to autopkgtest/qemu
  7145   - tests: ubuntu 18.04 or higher does not need linux-image-extra-
  7146   - configcore: validate experimental.layouts option
  7147   - interfaces:minor autoconnect cleanup
  7148   - HACKING: fix typos
  7149   - spread: add adt for ubuntu 18.10
  7150   - tests: skip test lp-1721518 for arch, snapd is failing to start
  7151     after reboot
  7152   - interfaces/x11: allow X11 slot implementations
  7153   - tests: checking interfaces declaring the specific interface
  7154   - snap: improve error for snaps not available in the given context
  7155   - cmdstate: add missing test for default timeout handling
  7156   - tests: shellcheck spread tasks
  7157   - cmd/snap: update install/refresh help vs --revision
  7158   - cmd/snap-confine: add support for per-user mounts
  7159   - snap: do not use overly short timeout in `snap
  7160     {start,stop,restart}`
  7161   - tests: adding google-sru backend replacing linode-sur
  7162   - interfaces/apparmor: fix incorrect apparmor profile glob
  7163   - systemd: replace ancient paths with 16.04+ standards
  7164   - overlord,systemd: store snap revision in mount units
  7165   - testutil: add test helper for SysLstat
  7166   - testutil,cmd: rename test helper of Lstat to OsLstat
  7167   - testutil: document all fake syscall/os functions
  7168   - osutil,interfaces,cmd: use less hardcoded strings
  7169   - testutil: rename UNMOUNT_NOFOLLOW to umountNoFollow
  7170   - testutil: don't dot-import check.v1
  7171   - store: getStructFields takes pointers now
  7172   - tests: drop `linux-image-extra-$(uname -r)` install in 18.04
  7173   - many: fix false negatives reported by vet
  7174   - osutil,interfaces: use uint32 for uid, gid
  7175   - many: fix various issues reported by shellcheck
  7176   - tests: add pending shutdown detection
  7177   - image: support refreshing soft-expired user macaroons in tooling
  7178   - interfaces/builtin, daemon: cleanup mocked builtin interfaces in
  7179     daemon tests
  7180   - interfaces/builtin: add support for software-watchdog interface
  7181   - spread: auto accept key changes when calling dnf
  7182   - snap,overlord/snapstate: introduce and use BrokenSnapError
  7183   - tests: detect kernel oops during tests and abort tests in this
  7184     case
  7185   - tests: bring back one missing test in snap-service-stop-mode
  7186   - debian: update LP bug for the 2.32.5 SRU
  7187   - userd: set up journal logging streams for autostarted apps
  7188   - snap,tests : don't fail if we cannot stat MountFile
  7189   - tests: smaller fixes for Arch tests
  7190   - tests: run interfaces-broadcom-asic-control early
  7191   - client: support for snapshot sets, snapshots, and snapshot actions
  7192   - tests: skip interfaces-content test on core devices
  7193   - cmd: generalize locking to global, snap and per-user locks
  7194   - release-tools: handle the snapd-x.y.z version
  7195   - packaging: fix incorrectly auto-generated changelog entry for
  7196     2.32.5
  7197   - tests: add arch to CI
  7198   - systemd: add helper for opening stream file descriptors to the
  7199     journal
  7200   - cmd/snap: handle distros with no version ID
  7201   - many: add "stop-mode: sig{term,hup,usr[12]}{,-all}" instead of
  7202     conflating that with refresh-mode
  7203   - tests: removing linode-sru backend
  7204   - tests: updating bionic version for spread tests on google
  7205   - overlord/snapstate: poll for up to 10s if a snap is unexpectedly
  7206     not mounted in doMountSnap
  7207   - overlord/snapstate: allow to get an error from readInfo instead of
  7208     a broken stub, use it in doMountSnap
  7209   - snap: snap.AppInfo is now a fmt.Stringer
  7210   - tests: move fedora 27 to google backend
  7211   - many: add `core.problem-reports.disabled` option
  7212   - cmd/snap-update-ns: remove the need for stash directory in secure
  7213     bind mount implementation
  7214   - errtracker: check for whoopsie.service instead of reading
  7215     /etc/whoopsie
  7216   - cmd/snap: user session application autostart v3
  7217   - tests: add test to ensure `snap refresh --amend` works with
  7218     different channels
  7219   - tests: add check for OOM error after each test
  7220   - cmd/snap-seccomp: graceful handling of non-multilib host
  7221   - interfaces/shutdown: allow calling SetWallMessage
  7222   - cmd/snap-update-ns: add secure bind mount implementation for use
  7223     with user mounts
  7224   - snap: fix `snap advise-snap --command` output to match spec
  7225   - overlord/snapstate: on multi-snap refresh make sure bases and core
  7226     are finished before dependent snaps
  7227   - overlord/snapstate: introduce envvars to control the channels for
  7228     based and prereqs
  7229   - cmd/snap-confine: ignore missing cgroups in snap-device-helper
  7230   - debian: add gbp.conf script to build snapd via `gbp buildpackage`
  7231   - daemon,overlord/hookstate: stop/wait for running hooks before
  7232     closing the snapctl socket
  7233   - advisor: use json for package database
  7234   - interfaces/hostname-control: allow setting the hostname via
  7235     syscall and systemd
  7236   - tests/main/interfaces-opengl-nvidia: verify access to 32bit
  7237     libraries
  7238   - interfaces: misc updates for default, firewall-control, fuse-
  7239     support and process-control
  7240   - data/selinux: Give snapd access to more aspects of the system
  7241   - many: use the new install/refresh API by switching snapstate to
  7242     use store.SnapAction
  7243   - errtracker: make TestJournalErrorSilentError work on gccgo
  7244   - ifacestate: add to the repo also snaps that are pending being
  7245     activated but have a done setup-profiles
  7246   - snapstate, ifacestate: inject auto-connect tasks try 2
  7247   - cmd/snap-confine: allow creating missing gl32, gl, vulkan dirs
  7248   - errtracker: add more fields to aid debugging
  7249   - interfaces: make system-key more robust against invalid fstab
  7250     entries
  7251   - overlord,interfaces: be more vocal about broken snaps and read
  7252     errors
  7253   - ifacestate: injectTasks helper
  7254   - osutil: fix fstab parser to allow for # in field values
  7255   - cmd/snap-mgmt: remove timers, udev rules, dbus policy files
  7256   - release-tools: add repack-debian-tarball.sh
  7257   - daemon,client: add build-id to /v2/system-info
  7258   - cmd: make fmt (indent 2.2.11)
  7259   - interfaces/content: add rule so slot can access writable files at
  7260     plug's mountpoint
  7261   - interfaces: add /var/lib/snapd/snap to @{INSTALL_DIR}
  7262   - ifacestate: don't surface errors from stale connections
  7263   - cmd/snap-update-ns: convert Secure* family of functions into
  7264     methods
  7265   - tests: adjust canonical-livepatch test on GCE
  7266   - tests: fix quoting issues in econnreset test
  7267   - cmd/snap-confine: make /run/media an alias of /media
  7268   - cmd/snap-update-ns: rename i to segNum
  7269   - interfaces/serial: change pattern not to exclude /dev/ttymxc*
  7270   - spread: disable StartLimitInterval option on opensuse-42.3
  7271   - configstate: give a chance to immediately recompute the next
  7272     refresh time when schedules are set
  7273   - cmd/snap-confine: attempt to detect if multiarch host uses
  7274     arch triplets
  7275   - store: add Store.SnapAction to support the new install/refresh API
  7276     endpoint
  7277   - tests: adding test for removable-media interface
  7278   - tests: update interface tests to remove extra checks and normalize
  7279     tests
  7280   - timeutil: in Human, count days with fingers
  7281   - vendor: update gopkg.in/yaml.v2 to the latest version
  7282   - cmd/snap-confine: fix Archlinux compatibility
  7283   - cmd/snapd: make sure signal handlers are established during early
  7284     daemon startup
  7285   - cmd/snap-confine: apparmor: allow creating prefix path for
  7286     gl/vulkan
  7287   - osutil: use tilde suffix for temporary files used for atomic
  7288     replacement
  7289   - tests: copy or sanity check core users using usernames
  7290   - tests: disentangle etc vs extrausers in core tests
  7291   - tests: fix snap-run tests when snapd is not running
  7292   - overlord/configstate: change how ssh is stopped/started
  7293   - snap: make `snap run` look at the system-key for security profiles
  7294   - strutil, cmd/snap: drop strutil.WordWrap, first pass at
  7295     replacement
  7296   - tests: adding opensuse-42.3 to google
  7297   - cmd/snap: fix one issue with noWait error handling logic, add
  7298     tests plus other cleanups
  7299   - cmd/snap-confine: nvidia: preserve globbed file prefix
  7300   - advisor: add comment why osutil.FileExists(dirs.SnapCommandsDB) is
  7301     needed
  7302   - interfaces,release: probe seccomp features lazily
  7303   - tests: change debug for layout test
  7304   - advisor: deal with missing commands.db file
  7305   - interfaces/apparmor: simplify UpdateNS internals
  7306   - polkit: Pass caller uid to PolicyKit authority
  7307   - tests: moving debian 9 from linode to google backend
  7308   - cmd/snap-confine: nvidia: add tls/libnvidia-tls.so* glob
  7309   - po: specify charset in po/snappy.pot
  7310   - interfaces: harden snap-update-ns profile
  7311   - snap: Call SanitizePlugsSlots from InfoFromSnapYaml
  7312   - tests: update tests to deal with s390x quirks
  7313   - debian: run snap.mount upgrade fixup *before* debhelper
  7314   - tests: move xenial i386 to google backend
  7315   - snapstate: add compat mode for default-provider
  7316   - tests: a bunch of test fixes for s390x from looking at the
  7317     autopkgtest logs
  7318   - packaging: recommend "gnupg" instead of "gnupg1 | gnupg"
  7319   - interfaces/builtin: let MM change qmi device attributes
  7320   - tests: add workaround for s390x failure
  7321   - snap/pack, cmd/snap: add `snap pack --check-skeleton`
  7322   - daemon: support 'system' as nickname of the core snap
  7323   - cmd/snap-update-ns: use x-snapd.{synthetic,needed-by} in practice
  7324   - devicestate: add DeviceManager.Registered returning a channel
  7325     closed when the device is known to be registered
  7326   - store: Sections and WriteCatalogs need to strictly send device
  7327     auth only if the device has a custom store
  7328   - tests: add bionic system to google backend
  7329   - many: fix shellcheck warnings in bionic
  7330   - cmd/snap-update-ns: don't fail on existing symlinks
  7331   - tests: make autopkgtest tests more targeted
  7332   - cmd/snap-update-ns: fix creation of layout symlinks
  7333   - spread,tests: move suite-level prepare/restore to central script
  7334   - many: propagate contexts enough to be able to mark store
  7335     operations done from the Ensure loop
  7336   - snap: don't create empty Change with "Hold" state on disconnect
  7337   - snap: unify snap name validation w/python; enforce length limit.
  7338   - cmd/snap: use shlex when parsing `snap run --strace` arguments
  7339   - osutil,testutil: add symlinkat(2) and readlinkat(2)
  7340   - tests: autopkgtest may have non edge core too
  7341   - tests: adding checks before stopping snapd service to avoid job
  7342     canceled on ubuntu 14.04
  7343   - errtracker: respect the /etc/whoopsie configuration
  7344   - overlord/snapstate:  hold refreshes for 2h after seeding on
  7345     classic
  7346   - cmd/snap: tweak and polish help strings
  7347   - snapstate: put layout feature behind feature flag
  7348   - tests: force profile re-generation via system-key
  7349   - snap/squashfs: when installing from seed, try symlink before cp
  7350   - wrappers: services which are socket or timer activated should not
  7351     be started during boot
  7352   - many: go vet cleanups
  7353   - tests: define MATCH from spread
  7354   - packaging/fedora: Merge changes from Fedora Dist-Git plus trivial
  7355     fix
  7356   - cmd/snap: use timeutil.Human to show times in `snap refresh
  7357     --time`
  7358   - cmd/snap: in changes and tasks, default to human-friendly times
  7359   - many: support holding refreshes by setting refresh.hold
  7360   - Revert "cmd/snap: use timeutil.Human to show times in `snap
  7361     refresh -…-time`"
  7362   - cmd/snap: use timeutil.Human to show times in `snap refresh
  7363     --time`
  7364   - tests/main/snap-service-refresh-mode: refactor the test to rely on
  7365     comparing PIDs
  7366   - tests/main/media-sharing: improve the test to cover /media and
  7367     /run/media
  7368   - store: enable deltas for core devices too
  7369   - cmd/snap: unhide --no-wait; make wait use go via waitMixin
  7370   - strutil/shlex: import github.com/google/shlex into the tree
  7371   - vendor: update github.com/mvo5/libseccomp-golang
  7372   - overlord/snapstate: block install of "system"
  7373   - cmd/snap: "current"→"installed"; "refreshed"→"refresh-date"
  7374   - many: add the snapd-generator
  7375   - cmd/snap-seccomp: Cancel the atomic file on error, not just Close
  7376   - polkit: ensure error is properly set if dialog is dismissed
  7377   - snap-confine, snap-seccomp: utilize new seccomp logging features
  7378   - progress: tweak ansimeter cvvis use to no longer confuse minicom
  7379   - xdgopenproxy: integrate xdg-open implementation into snapctl
  7380   - tests: avoid removing preinstalled snaps on core
  7381   - tests: chroot into core to run xdg-open there
  7382   - userd: add an OpenFile method for launching local files with xdg-
  7383     open
  7384   - tests: moving ubuntu core from linode to google backend
  7385   - run-checks: remove accidental bashism
  7386   - i18n: simplify NG usage by doing the modulo math in-package.
  7387   - snap/squashfs: set timezone when calling unsquashfs to get the
  7388     build date
  7389   - timeutil: timeutil.Human(t) gives a human-friendly string for t
  7390   - snap: add autostart app property
  7391   - tests: add support for external backend executions on listing test
  7392   - tests: make interface-broadcom-asic-control test work on rpi
  7393   - configstate: when disable "ssh" we must disable the "sshd" service
  7394   - interfaces/apparmor,system-key: add upperdir snippets for strict
  7395     snaps on livecd
  7396   - snap/squashfs: add BuildDate
  7397   - store: parse the JSON format used by the coming new store API to
  7398     convey snap information
  7399   - many: remove snapd.refresh.{timer,service}
  7400   - tests: adding ubuntu-14.04-64 to the google backend
  7401   - interfaces: add xdg-desktop-portal support to desktop interface
  7402   - packaging/arch: sync with snapd/snapd-git from AUR
  7403   - wrappers, tests/main/snap-service-timer: restore missing commit,
  7404     add spread test for timer services
  7405   - store: don't ask for snap_yaml_raw except on the details endpoint
  7406   - many: generate and use per-snap snap-update-ns profile
  7407   - tests: add debug for layout test
  7408   - wrappers: detect whether systemd-analyze can be used in unit tests
  7409   - osutil: allow creating strings out of MountInfoEntry
  7410   - servicestate: use systemctl enable+start and disable+stop instead
  7411     of --now flag
  7412   - osutil: handle file being matched by multiple patterns
  7413   - daemon, snap: fix InstallDate, make a method of *snap.Info
  7414   - wrappers: timer services
  7415   - wrappers: generator for systemd OnCalendar schedules
  7416   - asserts: fix flaky storeSuite.TestCheckAuthority
  7417   - tests: fix dependency for ubuntu artful
  7418   - spread: start moving towards google backend
  7419   - tests: add a spread test for layouts
  7420   - ifacestate: be consistent passing Retry.After as named field
  7421   - cmd/snap-update-ns: use recursive bind mounts for writable mimic
  7422   - testutil: allow mocking syscall.Fstat
  7423   - overlord/snapstate: verify that default schedule is randomized and
  7424     is  not a single time
  7425   - many: simplify mocking of home-on-NFS
  7426   - cmd/snap-update-ns: use syscall.Symlink instead of os.Symlink
  7427   - store: move infoFromRemote into details.go close to snapDetails
  7428   - userd/tests: Test kdialog calls and mock kdialog too to make tests
  7429     work in KDE
  7430   - cmd/snap: tweaks to 'snap info' (feat. installed->current rename)
  7431   - cmd/snap: add self-strace to `snap run`
  7432   - interfaces/screen-inhibit-control,network-status: fix dbus path
  7433     and interface typos
  7434   - update-pot: Force xgettext() to return true
  7435   - store: cleanup test naming, dropping remoteRepo  and
  7436     UbuntuStore(Repository)? references
  7437   - store: reorg auth refresh
  7438  
  7439  * Wed May 16 2018 Michael Vogt <mvo@ubuntu.com>
  7440  - New upstream release 2.32.9
  7441   - tests: run all spread tests inside GCE
  7442   - tests: build spread in the autopkgtests with a more recent go
  7443  
  7444  * Fri May 11 2018 Michael Vogt <mvo@ubuntu.com>
  7445  - New upstream release 2.32.8
  7446   - snapd.core-fixup.sh: add workaround for corrupted uboot.env
  7447  
  7448  * Fri May 11 2018 Michael Vogt <mvo@ubuntu.com>
  7449  - New upstream release 2.32.7
  7450   - many: add wait command and seeded target (2
  7451   - snapd.core-fixup.sh: add workaround for corrupted uboot.env
  7452   - boot: clear "snap_mode" when needed
  7453   - cmd/libsnap: fix compile error on more restrictive gcc
  7454   - tests: cherry-pick commits to move spread to google backend
  7455   - spread.yaml: add cosmic (18.10) to autopkgtest/qemu
  7456   - userd: set up journal logging streams for autostarted apps
  7457  
  7458  * Sun Apr 29 2018 Michael Vogt <mvo@ubuntu.com>
  7459  - New upstream release 2.32.6
  7460   - snap: do not use overly short timeout in `snap
  7461     {start,stop,restart}`
  7462   - interfaces/apparmor: fix incorrect apparmor profile glob
  7463   - tests: detect kernel oops during tests and abort tests in this
  7464     case
  7465   - tests: run interfaces-boradcom-asic-control early
  7466   - tests: skip interfaces-content test on core devices
  7467  
  7468  * Mon Apr 16 2018 Michael Vogt <mvo@ubuntu.com>
  7469  - New upstream release 2.32.5
  7470   - many: add "stop-mode: sig{term,hup,usr[12]}{,-all}" instead of
  7471     conflating that with refresh-mode
  7472   - overlord/snapstate:  poll for up to 10s if a snap is unexpectedly
  7473     not mounted in doMountSnap
  7474   - daemon: support 'system' as nickname of the core snap
  7475  
  7476  * Thu Apr 12 2018 Neal Gompa <ngompa13@gmail.com> - 2.32.4-1
  7477  - Release 2.32.4 to Fedora (RH#1553734)
  7478  
  7479  * Wed Apr 11 2018 Michael Vogt <mvo@ubuntu.com>
  7480  - New upstream release 2.32.4
  7481   - cmd/snap: user session application autostart
  7482   - overlord/snapstate: introduce envvars to control the channels for
  7483     bases and prereqs
  7484   - overlord/snapstate: on multi-snap refresh make sure bases and core
  7485     are finished before dependent snaps
  7486   - many: use the new install/refresh /v2/snaps/refresh store API
  7487  
  7488  * Wed Apr 11 2018 Michael Vogt <mvo@ubuntu.com>
  7489  - New upstream release 2.32.3.2
  7490   - errtracker: make TestJournalErrorSilentError work on
  7491     gccgo
  7492   - errtracker: check for whoopsie.service instead of reading
  7493     /etc/whoopsie
  7494  
  7495  * Wed Apr 11 2018 Michael Vogt <mvo@ubuntu.com>
  7496  - New upstream release 2.32.3.1
  7497   - debian: add gbp.conf script to build snapd via `gbp
  7498     buildpackage`
  7499   - tests: add check for OOM error after each test
  7500   - cmd/snap-seccomp: graceful handling of non-multilib host
  7501   - interfaces/shutdown: allow calling SetWallMessage
  7502   - data/selinux: Give snapd access to more aspects of the system
  7503   - daemon,overlord/hookstate: stop/wait for running hooks before
  7504     closing the snapctl socket
  7505   - cmd/snap-confine: ignore missing cgroups in snap-device-helper
  7506   - interfaces: misc updates for default, firewall-control, fuse-
  7507     support and process-control
  7508   - overlord: test fix, address corner case
  7509  
  7510  * Thu Apr 05 2018 Michael Vogt <mvo@ubuntu.com>
  7511  - New upstream release 2.32.3
  7512   - ifacestate: add to the repo also snaps that are pending being
  7513     activated but have a done setup-profiles
  7514   - snapstate: inject autoconnect tasks in doLinkSnap for regular
  7515     snaps
  7516   - cmd/snap-confine: allow creating missing gl32, gl, vulkan dirs
  7517   - errtracker: add more fields to aid debugging
  7518   - interfaces: make system-key more robust against invalid fstab
  7519     entries
  7520   - cmd/snap-mgmt: remove timers, udev rules, dbus policy files
  7521   - overlord,interfaces: be more vocal about broken snaps and read
  7522     errors
  7523   - osutil: fix fstab parser to allow for # in field values
  7524  
  7525  * Sat Mar 31 2018 Michael Vogt <mvo@ubuntu.com>
  7526  - New upstream release 2.32.2
  7527   - interfaces/content: add rule so slot can access writable files at
  7528     plug's mountpoint
  7529   - tests: adjust canonical-livepatch test on GCE
  7530   - interfaces/serial: change pattern not to exclude /dev/ttymxc
  7531   - spread.yaml: switch Fedora 27 tests to manual
  7532   - store: Sections and WriteCatalogs need to strictly send device
  7533     auth only if the device has a custom store
  7534   - configstate: give a chance to immediately recompute the next
  7535     refresh time when schedules are set
  7536   - cmd/snap-confine: attempt to detect if multiarch host uses arch
  7537     triplets
  7538   - vendor: update gopkg.in/yaml.v2 to the latest version (#4945)
  7539  
  7540  * Mon Mar 26 2018 Michael Vogt <mvo@ubuntu.com>
  7541  - New upstream release 2.32.1
  7542   - cmd/snapd: make sure signal handlers are established during early
  7543     daemon startup
  7544   - osutil: use tilde suffix for temporary files used for atomic
  7545     replacement
  7546   - cmd/snap-confine: apparmor: allow creating prefix path for
  7547     gl/vulkan
  7548   - tests: disentangle etc vs extrausers in core tests
  7549   - packaging: fix changelogs' typo
  7550  
  7551  * Sat Mar 24 2018 Michael Vogt <mvo@ubuntu.com>
  7552  - New upstream release 2.32
  7553   - snap: make `snap run` look at the system-key for security profiles
  7554   - overlord/configstate: change how ssh is stopped/started
  7555   - cmd/snap-confine: nvidia: preserve globbed file prefix
  7556   - advisor: deal with missing commands.db file
  7557   - interfaces,release: probe seccomp features lazily
  7558   - interfaces: harden snap-update-ns profile
  7559   - polkit: Pass caller uid to PolicyKit authority
  7560   - tests: change debug for layout test
  7561   - cmd/snap-confine: don't use per-snap s-u-n profile
  7562   - many: backported fixes for layouts and symlinks
  7563   - cmd/snap-confine: nvidia: add tls/libnvidia-tls.so* glob
  7564   - cmd/snap-update-ns: use x-snapd.{synthetic,needed-by} in practice
  7565   - snap: Call SanitizePlugsSlots from InfoFromSnapYaml
  7566   - cmd/snap-confine: fix ptrace rule with snap-confine peer
  7567   - tests: update tests to deal with s390x quirks
  7568   - snapstate: add compat mode for default-provider"snapname:ifname"
  7569   - snap-confine: fallback to /lib/udev/snappy-app-dev if the core is
  7570     older
  7571   - tests: a bunch of test fixes for s390x from looking at the
  7572     autopkgtest logs
  7573   - packaging: recommend "gnupg" instead of "gnupg1 | gnupg"
  7574   - interfaces/builtin: let MM change qmi device attributes
  7575   - debian: undo snap.mount system unit removal
  7576   - snap: don't create empty Change with "Hold" state on disconnect
  7577   - tests: add workaround for s390x failure
  7578   - tests: make autopkgtest tests more targeted
  7579   - many: propagate contexts enough to be able to mark store
  7580     operations done from the Ensure loop
  7581   - store: cleanup test naming, dropping remoteRepo and
  7582     UbuntuStore(Repository)? references
  7583   - store: reorg auth refresh
  7584   - tests: autopkgtest may have non edge core too
  7585   - data: translate polkit strings
  7586   - snapstate: put layout feature behind feature flag
  7587   - errtracker: respect the /etc/whoopsie configuration
  7588   - overlord/snapstate: hold refreshes for 2h after seeding on classic
  7589   - many: cherry-pick relevant `go vet` 1.10 fixes to 2.32
  7590   - snap/squashfs: when installing from seed, try symlink before cp
  7591   - wrappers: services which are socket or timer activated should not
  7592     be started during boot
  7593   - many: generate and use per-snap snap-update-ns profile
  7594   - many: support holding refreshes by setting refresh.hold
  7595   - snap-confine, snap-seccomp: utilize new seccomp logging features
  7596   - many: remove snapd.refresh.{timer,service}
  7597   - many: add the snapd-generator
  7598   - polkit: do not shadow dbus errors, avoid panic in case of errors
  7599   - polkit: ensure error is properly set if dialog is dismissed
  7600   - xdgopenproxy: integrate xdg-open implementation into snapctl
  7601   - userd: add an OpenFile method for launching local files with xdg-
  7602     open
  7603   - asserts:  use a timestamp for the assertion after the signing key
  7604     has been created
  7605   - ifacestate: be consistent passing Retry.After as named field
  7606   - interfaces/apparmor,system-key: add upperdir snippets for strict
  7607     snaps on livecd
  7608     interfaces/apparmor,system-key: add upperdir snippets for strict
  7609     snaps
  7610   - configstate: when disable "ssh" we must disable the "sshd"
  7611     service
  7612   - store: don't ask for snap_yaml_raw except on the details endpoint
  7613   - osutil: handle file being matched by multiple patterns
  7614   - cmd/snap-update-ns: use recursive bind mounts for writable mimic
  7615   - cmd/snap-update-ns: use syscall.Symlink instead of os.Symlink
  7616   - interfaces/screen-inhibit-control,network-status: fix dbus path
  7617     and interface typos
  7618   - interfaces/network-status: fix use of '/' in interface in DBus
  7619     rule
  7620   - interfaces/screen-inhibit-control: fix use of '.' in path in DBus
  7621     rule
  7622   - overlord/snapstate: fix task iteration order in
  7623     TestDoPrereqRetryWhenBaseInFlight
  7624   - interfaces: add an interface for gnome-online-accounts D-Bus
  7625     service
  7626   - snap: pass full timer spec in `snap run --timer`
  7627   - cmd/snap: introduce `snap run --timer`
  7628   - snapstate: auto install default-providers for content snaps
  7629   - hooks/strutil: limit the number of data read from the hooks to
  7630     avoid oom
  7631   - osutil: aggregate mockable symbols
  7632   - tests: make sure snapd is running before attempting to remove
  7633     leftover snaps
  7634   - timeutil: account for 24h wrap when flattening clock spans
  7635   - many: send  new Snap-CDN header with none or with cloud instance
  7636     placement info as needed
  7637   - cmd/snap-update-ns,testutil: move syscall testing helpers
  7638   - tests: disable interfaces-location-control on s390x
  7639   - tests: new spread test for gpio-memory-control interface
  7640   - tests: spread test for broadcom-asic-control interface
  7641   - tests: make restore of interfaces-password-manager-service more
  7642     robust
  7643   - tests/lib/prepare-restore: sync journal before rotating and
  7644     vacuuming
  7645   - overlord/snapstate: use spread in the default refresh schedule
  7646   - tests: fixes for autopkgtest in bionic
  7647   - timeutil: introduce helpers for checking it time falls inside the
  7648     schedule
  7649   - cmd/snap-repair,httputil: set snap-repair User-Agent on requests
  7650   - vendor: resync formatting of vendor.json
  7651   - snapstate/ifacestate: auto-connect tasks
  7652   - cmd/snap: also include tracking channel in list output.
  7653   - interfaces/apparmor: use snap revision with surrounding '.' when
  7654     replacing in glob
  7655   - debian,vendor: import github.com/snapcore/squashfs and use
  7656   - many: implement "refresh-mode: {restart,endure,...}" for services
  7657   - daemon: make the ast-inspecting test smarter; drop 'exceptions'
  7658   - tests: new spread test for kvm interface
  7659   - cmd/snap: tweaks to 'snap info' output
  7660   - snap: remove underscore from version validator regexp
  7661   - testutil: add File{Matches,Equals,Contains} checkers.
  7662   - snap: improve the version validator's error messages.
  7663   - osutil: refactor EnsureFileState to separate out the comparator
  7664   - timeutil: fix scheduling on nth weekday of the month
  7665   - cmd/snap-update-ns: small refactor for upcoming per-user mounts
  7666   - many: rename snappy-app-dev to snap-device-helper
  7667   - systemd: add default target for timers
  7668   - interfaces: miscellaneous policy updates for home, opengl, time-
  7669     control, network, et al
  7670   - cmd/snap: linter cleanups
  7671   - interfaces/mount: generate per-user mount profiles
  7672   - cmd/snap: use proper help strings for `snap userd --help`
  7673   - packaging: provide a compat symlink for snappy-app-dev
  7674   - interfaces/time-control,netlink-audit: adjust for util-linux
  7675     compiled with libaudit
  7676   - tests: adding new test to validate the raw-usb interface
  7677   - snap: add support for `snap run --gdb`
  7678   - interfaces/builtin: allow MM to access login1
  7679   - packaging: fix build on sbuild
  7680   - store: revert PR#4532 and do not display displayname
  7681   - interfaces/mount: add support for per-user mount entries
  7682   - cmd/system-shutdown: move sync to be even more pessimistic
  7683   - osutil: reimplement IsMounted with LoadMountInfo
  7684   - tests/main/ubuntu-core-services: enable snapd.refresh.timer for
  7685     the test
  7686   - many: don't allow layout construction to silently fail
  7687   - interfaces/apparmor: ensure snap-confine profile for reexec is
  7688     current
  7689   - interfaces/apparmor: generalize apparmor load and unload helpers
  7690   - tests: removing packages which are not needed anymore to generate
  7691     random data
  7692   - snap: improve `snap run` comments/naming
  7693   - snap: allow options for --strace, e.g. `snap run --strace="-tt"`
  7694   - tests: fix spread test failures on 18.04
  7695   - systemd: update comment on SocketsTarget
  7696   - osutil: add and update docstrings
  7697   - osutil: parse mount entries without options field
  7698   - interfaces: mock away real mountinfo/fstab
  7699   - many: move /lib/udev/snappy-app-dev to /usr/lib/snapd/snappy-app-
  7700     dev
  7701   - overlord/snapstate/backend: perform cleanup if snap setup fails
  7702   - tests/lib/prepare: disable snapd.refresh.timer
  7703   - daemon: remove redundant UserOK markings from api commands
  7704   - snap: introduce  timer service data types and validation
  7705   - cmd/snap: fix UX of snap services
  7706   - daemon: allow `snapctl get` from any uid
  7707   - debian, snap: only static link libseccomp in snap-seccomp on
  7708     ubuntu
  7709   - all: snap versions are now validated
  7710   - many: add nfs-home flag to system-key
  7711   - snap: disallow layouts in various special directories
  7712   - cmd/snap: add help for service commands.
  7713   - devicestate: fix autopkgtest failure in
  7714     TestDoRequestSerialErrorsOnNoHost
  7715   - snap,interfaces: allow using bind-file layouts
  7716   - many: move mount code to osutil
  7717   - snap: understand directories in layout blacklist
  7718   - snap: use custom unsquashfsStderrWriter for unsquashfs error
  7719     detection
  7720   - tests/main/user-data-handling: get rid of ordering bug
  7721   - snap: exclude `gettimeofday` from `snap run --strace`
  7722   - tests: check if snapd.socket is active before stoping it
  7723   - snap: sort layout elements before validating
  7724   - strutil: introducing MatchCounter
  7725   - snap: detect unsquashfs write failures
  7726   - spread: add missing ubuntu-18.04-arm64 to available autopkgtest
  7727     machines
  7728   - cmd/snap-confine: allow mounting anywhere, effectively
  7729   - daemon: improve ucrednet code for the snap.socket
  7730   - release, interfaces: add new release.AppArmorFeatures helper
  7731   - snap: apply some golint suggestions
  7732   - many: add interfaces.SystemKey() helper
  7733   - tests: new snaps to test installs nightly
  7734   - tests: skip alsa interface test when the system does not have any
  7735     audio devices
  7736   - debian/rules: workaround for
  7737     https://github.com/golang/go/issues/23721
  7738   - interfaces/apparmor: early support for snap-update-ns snippets
  7739   - wrappers: cleanup enabled service sockets
  7740   - cmd/snap-update-ns: large refactor / update of unit tests
  7741   - interfaces/apparmor: remove leaked future layout code
  7742   - many: allow constructing layouts (phase 1)
  7743   - data/systemd: for debugging/testing use /etc/environment also for
  7744     snap-repair runs
  7745   - cmd/snap-confine: create lib/{gl,gl32,vulkan} under /var/lib/snapd
  7746     and chown as root:root
  7747   - overlord/configstate/config: make [GS]etSnapConfig use *RawMessage
  7748   - daemon: refactor snapFooMany helpers a little
  7749   - cmd/snap-confine: allow snap-update-ns to chown things
  7750   - interfaces/apparmor: use a helper to set the scope
  7751   - overlord/configstate/config: make SetSnapConfig delete on empty
  7752   - osutil: make MkdirAllChown clean the path passed in
  7753   - many: at seeding try to capture cloud information into core config
  7754     under "cloud"
  7755   - cmd/snap: add completion conversion helper to increase DRY
  7756   - many: remove "content" argument from snaptest.MockSnap()
  7757   - osutil: allow using many globs in EnsureDirState
  7758   - cmd/snap-confine: fix read-only filesystem when mounting nvidia
  7759     files in biarch
  7760   - tests: use root path to /home/test/tmp to avoid lack of space
  7761     issue
  7762   - packaging: create /var/lib/snapd/lib/{gl,gl32,vulkan} as part of
  7763     packaging
  7764   - tests: update kill-timeout focused on making tests pass on boards
  7765   - advisor: ensure commands.db has mode 0644 and add test
  7766   - snap: improve validation of snap layouts
  7767   - tests: ensure disabled services are masked
  7768   - interfaces/desktop-legacy,unity7: support gtk2/gvfs gtk_show_uri()
  7769   - systemd, wrappers: start all snap services in one systemctl call
  7770   - mir: software clients need access to shared memory /dev/shm/#*
  7771   - snap: add support for `snap advise-snap pkgName`
  7772   - snap: fix command-not-found on core devices
  7773   - tests: new spead test for openvswitch-support interface
  7774   - tests: add integration for local snap licenses
  7775   - config: add (Get|Set)SnapConfig to do bulk config e.g. from
  7776     snapshots
  7777   - cmd/snap: display snap license information
  7778   - tests: enable content sharing test for $SNAP
  7779   - osutil: add ContextWriter and RunWithContext helpers.
  7780   - osutil: add DirExists and IsDirNotExist
  7781  
  7782  * Fri Mar 09 2018 Michael Vogt <mvo@ubuntu.com>
  7783  - New upstream release 2.31.2
  7784   - many: add the snapd-generator
  7785   - polkit: ensure error is properly set if dialog is dismissed
  7786   - xdgopenproxy: integrate xdg-open implementation into snapctl
  7787   - userd: add an OpenFile method for launching local files with xdg-
  7788     open
  7789   - configstate: when disable "ssh" we must disable the "sshd"
  7790     service
  7791   - many: remove snapd.refresh.{timer,service}
  7792   - interfaces/builtin: allow MM to access login1
  7793   - timeutil: account for 24h wrap when flattening clock spans
  7794   - interfaces/screen-inhibit-control,network-status: fix dbus path
  7795     and interface typos
  7796   - systemd, wrappers: start all snap services in one systemctl
  7797     call
  7798   - tests: disable interfaces-location-control on s390x
  7799  
  7800  * Mon Mar 05 2018 Neal Gompa <ngompa13@gmail.com> - 2.31.1-2
  7801  - Fix dependencies for devel subpackage
  7802  
  7803  * Sun Mar 04 2018 Neal Gompa <ngompa13@gmail.com> - 2.31.1-1
  7804  - Release 2.31.1 to Fedora (RH#1542483)
  7805  - Drop all backported patches as they're part of this release
  7806  
  7807  * Tue Feb 20 2018 Michael Vogt <mvo@ubuntu.com>
  7808  - New upstream release 2.31.1
  7809   - tests: multiple autopkgtest related fixes for 18.04
  7810   - overlord/snapstate: use spread in the default refresh schedule
  7811   - timeutil: fix scheduling on nth weekday of the month
  7812   - interfaces: miscellaneous policy updates for home, opengl, time-
  7813     control, network, et al
  7814   - cmd/snap: use proper help strings for `snap userd --help`
  7815   - interfaces/time-control,netlink-audit: adjust for util-linux
  7816     compiled with libaudit
  7817   - rules: do not static link on powerpc
  7818   - packaging: revert LDFLAGS rewrite again after building snap-
  7819     seccomp
  7820   - store: revert PR#4532 and do not display displayname
  7821   - daemon: allow `snapctl get` from any uid
  7822   - debian, snap: only static link libseccomp in snap-seccomp on
  7823     ubuntu
  7824   - daemon: improve ucrednet code for the snap.socket
  7825  
  7826  * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.30-2
  7827  - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  7828  
  7829  * Tue Feb 06 2018 Michael Vogt <mvo@ubuntu.com>
  7830  - New upstream release 2.31
  7831   - cmd/snap-confine: allow snap-update-ns to chown things
  7832   - cmd/snap-confine: fix read-only filesystem when mounting nvidia
  7833     files in biarch
  7834   - packaging: create /var/lib/snapd/lib/{gl,gl32,vulkan} as part of
  7835     packaging
  7836   - advisor: ensure commands.db has mode 0644 and add test
  7837   - interfaces/desktop-legacy,unity7: support gtk2/gvfs gtk_show_uri()
  7838   - snap: improve validation of snap layoutsRules for validating
  7839     layouts:
  7840   - snap: fix command-not-found on core devices
  7841   - cmd/snap: display snap license information
  7842   - tests: enable content sharing test for $SNAP
  7843   - userd: add support for a simple UI that can be used from userd
  7844   - snap-confine/nvidia: Support legacy biarch trees for GLVND systems
  7845   - tests: generic detection of gadget and kernel snaps
  7846   - cmd/snap-update-ns: refactor and improve Change.Perform to handle
  7847     EROFS
  7848   - cmd/snap: improve output when snaps were found in a section or the
  7849     section is invalid
  7850   - cmd/snap-confine,tests: hide message about stale base snap
  7851   - cmd/snap-mgmt: fix out of source tree build
  7852   - strutil/quantity: new package that exports formatFoo (from
  7853     progress)
  7854   - cmd/snap: snap refresh --time with new and legacy schedules
  7855   - state: unknown tasks handler
  7856   - cmd/snap-confine,data/systemd: fix removal of snaps inside LXD
  7857   - snap: add io.snapcraft.Settings to `snap userd`
  7858   - spread: remove more EOLed releases
  7859   - snap: tidy up top-level help output
  7860   - snap: fix race in `snap run --strace`
  7861   - tests: update "searching" test to match store changes
  7862   - store: use the "publisher" when populating the "publisher" field
  7863   - snap: make `snap find --section` show all sections
  7864   - tests: new test to validate location control interface
  7865   - many: add new `snap refresh --amend <snap>` command
  7866   - tests/main/kernel-snap-refresh-on-core: skip the whole test if
  7867     edge and stable are the same version
  7868   - tests: set test kernel-snap-refresh-on-core to manual
  7869   - tests: new spread test for interface gpg-keys
  7870   - packaging/fedora: Merge changes from Fedora Dist-Git plus trivial
  7871     fix
  7872   - interfaces: miscellaneous policy updates
  7873   - interfaces/builtin: Replace Solus support with GLVND support
  7874   - tests/main/kernel-snap-refresh-on-core: do not fail if edge and
  7875     stable kernels are the same version
  7876   - snap: add `snap run --strace` to be able to strace snap apps
  7877   - tests: new spread test for ssh-keys interface
  7878   - errtracker: include detected virtualisation
  7879   - tests: add new kernel refresh/revert test for spread-cron
  7880   - interfaces/builtin: blacklist zigbee dongle
  7881   - cmd/snap-confine: discard stale mount namespaces
  7882   - cmd: remove unused execArg0/execEnv
  7883   - snap,interfaces/mount: disallow nobody/nogroup
  7884   - cmd/snap: improve `snap aliases` output when no aliases are
  7885     defined
  7886   - tests/lib/snaps/test-snapd-service: refactor service reload
  7887   - tests: new spread test for gpg-public-keys interface
  7888   - tests: new spread test for ssh-public-keys interface
  7889   - spread: setup machine creation on Linode
  7890   - interfaces/builtin: allow introspecting UDisks2
  7891   - interfaces/builtin: add support for content "source" section
  7892   - tests: new spread test for netlink-audit interface
  7893   - daemon: avoid panic'ing building an error response w/no snaps
  7894     given
  7895   - interfaces/mount,snap: early support for snap layouts
  7896   - daemon: unlock state even if RefreshSchedule() fails
  7897   - arch: add "armv8l" to ubuntuArchFromKernelArch table
  7898   - tests: fix for test interface-netlink-connector
  7899   - data/dbus: add AssumedAppArmorLabel=unconfined
  7900   - advisor: use forked bolt to make it work on ppc
  7901   - overlord/snapstate: record the 'kind' of conflicting change
  7902   - dirs: fix snap mount dir on Manjaro
  7903   - overlord/{snapstate,configstate}, daemon: introduce refresh.timer,
  7904     fallback to refresh.schedule
  7905   - config: add support for `snap set core proxy.no_proxy=...`
  7906   - snap-mgmt: extend spread tests, stop, disable and cleanup snap
  7907     services
  7908   - spread.yaml: add fedora 27
  7909   - cmd/snap-confine: allow snap-update-ns to poke writable holes in
  7910     $SNAP
  7911   - packaging/14.04: move linux-generic-lts-xenial to recommends
  7912   - osutil/sys: ppc has 32-bit getuid already
  7913   - snapstate: make no autorefresh message clearer
  7914   - spread: try to enable Fedora once more
  7915   - overlord/snapstate: do a minimal sanity check on containers
  7916   - configcore: ensure config.txt has a final newline
  7917   - cmd/libsnap-confine-private: print failed mount/umount regardless
  7918     of SNAP_CONFINE_DEBUG
  7919   - debian/tests: add missing autopkgtest test dependencies for debian
  7920   - image: port ini handling to goconfigparser
  7921   - tests/main/snap-service-after-before: add test for after/before
  7922     service ordering
  7923   - tests: enabling opensuse for tests
  7924   - tests: update auto-refresh-private to match messages from current
  7925     master
  7926   - dirs: check if distro 'is like' fedora when picking path to
  7927     libexecdir
  7928   - tests: fix "job canceled" issue and improve cleanup for snaps
  7929   - cmd/libsnap-confine-private: add debug build of libsnap-confine-
  7930     private.a, link it into snap-confine-debug
  7931   - vendor: remove x/sys/unix to fix builds on arm64 and powerpc
  7932   - image: let consume snapcraft export-login files from tooling
  7933   - interfaces/mir: allow Wayland socket and non-root sockets
  7934   - interfaces/builtin: use snap.{Plug,Slot}Info over
  7935     interfaces.{Plug,Slot}
  7936   - tests: add simple snap-mgmt test
  7937   - wrappers: autogenerate After/Before in systemd's service files for
  7938     apps
  7939   - snap: add usage hints in `snap download`
  7940   - snap: provide more meaningful errors for installMany and friends
  7941   - cmd/snap: show header/footer when `snap find` is used without
  7942     arguments
  7943   - overlord/snapstate: for Enable's tasks refer to the first task
  7944     with snap-setup, do not duplicate
  7945   - tests: add hard-coded fully expired macaroons to run related tests
  7946   - cmd/snap-update-ns: new test features
  7947   - cmd/snap-update-ns: we don't want to bind mount symlinks
  7948   - interfaces/mount: test OptsToCommonFlags, filter out x-snapd.
  7949     options
  7950   - cmd/snap-update-ns: untangle upcoming cyclic initialization
  7951   - client, daemon: update user's email when logging in with new
  7952     account
  7953   - tests: ensure snap-confine apparmor profile is parsable
  7954   - snap: do not leak internal errors on install/refresh etc
  7955   - snap: fix missing error check when multiple snaps are refreshed
  7956   - spread: trying to re-enable tests on Fedora
  7957   - snap: fix gadget.yaml parsing for multi volume gadgets
  7958   - snap: give the snap.Container interface a Walk method
  7959   - snap: rename `snap advise-command` to `snap advise-snap --command`
  7960   - overlord/snapstate: no refresh just for hints if there was a
  7961     recent regular full refresh
  7962   - progress: switch ansimeter's Spin() to use a spinner
  7963   - snap: support `command-not-found` symlink for `snap advise-
  7964     command`
  7965   - daemon: store email, ID and macaroon when creating a new user
  7966   - snap: app startup after/before validation
  7967   - timeutil: refresh timer take 2
  7968   - store, daemon/api: Rename MyAppsServer, point to
  7969     dashboard.snapcraft.io instead
  7970   - tests: use "quiet" helper instead of "dnf -q" to get errors on
  7971     failures
  7972   - cmd/snap-update-ns: improve mocking for tests
  7973   - many: implement the advisor backend, populate it from the store
  7974   - tests: make less calls to the package manager
  7975   - tests/main/confinement-classic: enable the test on Fedora
  7976   - snap: do not leak internal network errors to the user
  7977   - snap: use stdout instead of stderr for "fetching" message
  7978   - tests: fix test whoami, share successful_login.exp
  7979   - many: refresh with appropriate creds
  7980   - snap: add new `snap advice-command` skeleton
  7981   - tests: add test that ensures we never parse versions as numbers
  7982   - overlord/snapstate: override Snapstate.UserID in refresh if the
  7983     installing user is gone
  7984   - interfaces: allow socket "shutdown" syscall in default profile
  7985   - snap: print friendly message if `snap keys` is empty
  7986   - cmd/snap-update-ns: add execWritableMimic
  7987   - snap: make `snap info invalid-snap` output more user friendly
  7988   - cmd/snap,  tests/main/classic-confinement: fix snap-exec path when
  7989     running under classic confinement
  7990   - overlord/ifacestate: fix disable/enable cycle to setup security
  7991   - snap: fix snap find " " output
  7992   - daemon: add new polkit action to manage interfaces
  7993   - packaging/arch: disable services when removing
  7994   - asserts/signtool: support for building tools on top that fill-
  7995     in/compute some headers
  7996   - cmd: clarify "This leaves %s tracking %s." message
  7997   - daemon: return "bad-query" error kind for store.ErrBadQuery
  7998   - taskrunner/many: KnownTaskKinds helper
  7999   - tests/main/interfaces-fuse_support: fix confinement, allow
  8000     unmount, fix spread tests
  8001   - snap: use the -no-fragments mksquashfs option
  8002   - data/selinux: allow messages from policykit
  8003   - tests: fix catalog-update wait loop
  8004   - tests/lib/prepare-restore: disable rate limiting in journald
  8005   - tests: change interfaces-fuse_support to be debug friendly
  8006   - tests/main/postrm-purge: stop snapd before purge
  8007   - This is an example of test log:https://paste.ubuntu.com/26215170/
  8008   - tests/main/interfaces-fuse_support: dump more debugging
  8009     information
  8010   - interfaces/dbus: adjust slot policy for listen, accept and accept4
  8011     syscalls
  8012   - tests: save the snapd-state without compression
  8013   - tests/main/searching: handle changes in featured snaps list
  8014   - overlord/snapstate: fix auto-refresh summary for 2 snaps
  8015   - overlord/auth,daemon: introduce an explicit auth.ErrInvalidUser
  8016   - interfaces: add /proc/partitions to system-observe (This addresses
  8017     LP#1708527.)
  8018   - tests/lib: introduce helpers for setting up /dev/random using
  8019     /dev/urandom in project prepare
  8020   - tests: new test for interface network status
  8021   - interfaces: interfaces: also add an app/hook-specific udev RUN
  8022     rule for hotplugging
  8023   - tests: fix external backend for tests that need DEBUG output
  8024   - tests: do not disable refresh timer on external backend
  8025   - client: send all snap related bool json fields
  8026   - interfaces/desktop,unity7: allow status/activate/lock of
  8027     screensavers
  8028   - tests/main: source mkpinentry.sh
  8029   - tests: fix security-device-cgroups-serial-port test for rpi and db
  8030   - cmd/snap-mgmt: add more directories for cleanup and refactor
  8031     purge() code
  8032   - snap: YAML and data structures for app before/after ordering
  8033   - tests: set TRUST_TEST_KEYS=false for all the external backends
  8034   - packaging/arch: install snap-mgmt tool
  8035   - tests: add support on tests for cm3 gadget
  8036   - interfaces/removable-media: also allow 'k' (lock)
  8037   - interfaces: use ConnectedPlug/ConnectedSlot types (step 2)
  8038   - interfaces: rename sanitize methods
  8039   - devicestate: fix misbehaving test when using systemd-resolved
  8040   - interfaces: added Ref() helpers, restored more detailed error
  8041     message on spi iface
  8042   - debian: make "gnupg" a recommends
  8043   - interfaces/many: misc updates for default, browser-support,
  8044     opengl, desktop, unity7, x11
  8045   - interfaces: PlugInfo/SlotInfo/ConnectedPlug/ConnectedSlot
  8046     attribute helpers
  8047   - interfaces: update fixme comments
  8048   - tests: make interfaces-snapd-control-with-manage more robust
  8049   - userd: generalize dbusInterface
  8050   - interfaces: use ConnectedPlug/ConnectedSlot types (step 1)
  8051   - hookstate: add compat "configure-snapd" task.
  8052   - config, overlord/snapstate, timeutil: rename ParseSchedule to
  8053     ParseLegacySchedule
  8054   - tests: adding tests for time*-control interfaces
  8055   - tests: new test to check interfaces after reboot the system
  8056   - cmd/snap-mgmt: fixes
  8057   - packaging/opensuse-42.2: package and use snap-mgmt
  8058   - corecfg: also "mask" services when disabling them
  8059   - cmd/snap-mgmt: introduce snap-mgmt tool
  8060   - configstate: simplify ConfigManager
  8061   - interfaces: add gpio-memory-control interface
  8062   - cmd: disable check-syntax-c
  8063   - packaging/arch: add bash-completion as optional dependency
  8064   - corecfg: rename package to overlord/configstate/configcore
  8065   - wrappers: fix unit tests to use dirs.SnapMountDir
  8066   - osutil/sys: reimplement getuid and chown with the right int type
  8067   - interfaces-netlink-connector: fix sourcing snaps.sh
  8068  
  8069  * Thu Jan 25 2018 Neal Gompa <ngompa13@gmail.com> - 2.30-1
  8070  - Release 2.30 to Fedora (RH#1527519)
  8071  - Backport fix to correctly locate snapd libexecdir on Fedora derivatives (RH#1536895)
  8072  - Refresh SELinux policy fix patches with upstream backport version
  8073  
  8074  * Mon Dec 18 2017 Michael Vogt <mvo@ubuntu.com>
  8075  - New upstream release 2.30
  8076   - tests: set TRUST_TEST_KEYS=false for all the external backends
  8077   - tests: fix external backend for tests that need DEBUG output
  8078   - tests: do not disable refresh timer on external backend
  8079   - client: send all snap related bool json fields
  8080   - interfaces: interfaces: also add an app/hook-specific udev RUN
  8081     rule for hotplugging
  8082   - interfaces/desktop,unity7: allow status/activate/lock of
  8083     screensavers
  8084   - tests/main: source mkpinentry.sh
  8085   - devicestate: use a different nowhere domain
  8086   - interfaces: add ssh-keys, ssh-public-keys, gpg-keys and gpg-public
  8087     keys interfaces
  8088   - interfaces/many: misc updates for default, browser-support, opengl,
  8089     desktop, unity7, x11
  8090   - devicestate: fix misbehaving test when using systemd-resolved
  8091   - interfaces/removable-media: also allow 'k' (lock)
  8092   - interfaces/many: misc updates for default, browser-support,
  8093     opengl, desktop, unity7, x11
  8094   - corecfg: also "mask" services when disabling them
  8095   - tests: add support for autopkgtests on s390x
  8096   - snapstate: support for pre-refresh hook
  8097   - many: allow to configure core before it is installed
  8098   - devicestate: fix unkeyed fields error
  8099   - snap-confine: create mount target for lib32,vulkan on demand
  8100   - snapstate: add support for refresh.schedule=managed
  8101   - cmd/snap-update-ns: teach update logic to handle synthetic changes
  8102   - many: remove configure-snapd task again and handle internally
  8103   - snap: fix TestDirAndFileMethods() test to work with gccgo
  8104   - debian: ensure /var/lib/snapd/lib/vulkan is available
  8105   - cmd/snap-confine: use #include instead of bare include
  8106   - snapstate: store userID in snapstate
  8107   - snapd.dirs: add var/lib/snapd/lib/gl32
  8108   - timeutil, overlod/snapstate: cleanup remaining pieces of timeutil
  8109     weekday support
  8110   - packaging/arch: install missing directories, manpages and version
  8111     info
  8112   - snapstate,store: store if a snap is a paid snap in the sideinfo
  8113   - packaging/arch: pre-create snapd directories when packaging
  8114   - tests/main/manpages: set LC_ALL=C as man may complain if the
  8115     locale is unset or unsupported
  8116   - repo: ConnectedPlug and ConnectedSlot types
  8117   - snapd: fix handling of undo in the taskrunner
  8118   - store: fix download caching and add integration test
  8119   - snapstate: move autorefresh code into autoRefresh helper
  8120   - snapctl: don't error out on start/stop/restart from configure hook
  8121     during install or refresh
  8122   - cmd/snap-update-ns: add planWritableMimic
  8123   - deamon: don't omit responses, even if null
  8124   - tests: add test for frame buffer interface
  8125   - tests/lib: fix shellcheck errors
  8126   - apparmor: generate the snap-confine re-exec profile for
  8127     AppArmor{Partial,Full}
  8128   - tests: remove obsolete workaround
  8129   - snap: use existing files in `snap download` if digest/size matches
  8130   - tests: merge pepare-project.sh into prepare-restore.sh
  8131   - tests: cache snaps to $TESTSLIB/cache
  8132   - tests: set -e, -o pipefail in prepare-restore.sh
  8133   - apparmor: generate the snap-confine re-exec profile for
  8134     AppArmor{Partial,Full}
  8135   - cmd/snap-seccomp: fix uid/gid restrictions tests on Arch
  8136   - tests: document and slightly refactor prepare/restore code
  8137   - snapstate: ensure RefreshSchedule() gives accurate results
  8138   - snapstate: add new refresh-hints helper and use it
  8139   - spread.yaml,tests: move most of project-wide prepare/restore to
  8140     separate file
  8141   - timeutil: introduce helpers for weekdays and TimeOfDay
  8142   - tests: adding new test for uhid interface
  8143   - cmd/libsnap: fix parsing of empty mountinfo fields
  8144   - overlord/devicestate:  best effort to go to early full retries for
  8145     registration on the like of DNS no host
  8146   - spread.yaml: bump delta ref to 2.29
  8147   - tests: adding test to test physical memory observe interface
  8148   - cmd, errtracker: get rid of SNAP_DID_REEXEC environment
  8149   - timeutil: remove support to parse weekday schedules
  8150   - snap-confine: add workaround for snap-confine on 4.13/upstream
  8151   - store: do not log the http body for catalog updates
  8152   - snapstate: move catalogRefresh into its own helper
  8153   - spread.yaml: fix shellcheck issues and trivial refactor
  8154   - spread.yaml: move prepare-each closer to restore-each
  8155   - spread.yaml: increase workers for opensuse to 3
  8156   - tests: force delete when tests are restore to avoid suite failure
  8157   - test: ignore /snap/README
  8158   - interfaces/opengl: also allow read on 'revision' in
  8159     /sys/devices/pci...
  8160   - interfaces/screen-inhibit-control: fix case in screen inhibit
  8161     control
  8162   - asserts/sysdb: panic early if pointed to staging but staging keys
  8163     are not compiled-in
  8164   - interfaces: allow /bin/chown and fchownat to root:root
  8165   - timeutil: include test input in error message in
  8166     TestParseSchedule()
  8167   - interfaces/browser-support: adjust base declaration for auto-
  8168     connection
  8169   - snap-confine: fix snap-confine under lxd
  8170   - store: bit less aggressive retry strategy
  8171   - tests: add new `fakestore new-snap-{declaration,revision}` helpers
  8172   - cmd/snap-update-ns: add secureMkfileAll
  8173   - snap: use field names when initializing composite literals
  8174   - HACKING: fix path in snap install
  8175   - store: add support for flags in ListRefresh()
  8176   - interfaces: remove invalid plugs/slots from SnapInfo on
  8177     sanitization.
  8178   - debian: add missing udev dependency
  8179   - snap/validate: extend socket validation tests
  8180   - interfaces: add "refresh-schedule" attribute to snapd-control
  8181   - interfaces/builtin/account_control: use gid owning /etc/shadow to
  8182     setup seccomp rules
  8183   - cmd/snap-update-ns: tweak changePerform
  8184   - interfaces,tests: skip unknown plug/slot interfaces
  8185   - tests: disable interfaces-network-control-tuntap
  8186   - cmd: use a preinit_array function rather than parsing
  8187     /proc/self/cmdline
  8188   - interfaces/time*_control: explicitly deny noisy read on
  8189     /proc/1/environ
  8190   - cmd/snap-update-ns: misc cleanups
  8191   - snapd: allow hooks to have slots
  8192   - fakestore: add go-flags to prepare for `new-snap-declaration` cmd
  8193   - interfaces/browser-support: add shm path for nwjs
  8194   - many: add magic /snap/README file
  8195   - overlord/snapstate: support completion for command aliases
  8196   - tests: re-enable tun/tap test on Debian
  8197   - snap,wrappers: add support for socket activation
  8198   - repo: use PlugInfo and SlotInfo for permanent plugs/slots
  8199   - tests/interfaces-network-control-tuntap: disable on debian-
  8200     unstable for now
  8201   - cmd/snap-confine: Loosen the NVIDIA Vulkan ICD glob
  8202   - cmd/snap-update-ns: detect and report read-only filesystems
  8203   - cmd/snap-update-ns: re-factor secureMkdirAll into
  8204     secureMk{Prefix,Dir}
  8205   - run-checks, tests/lib/snaps/: shellcheck fixes
  8206   - corecfg: validate refresh.schedule when it is applied
  8207   - tests: adjust test to match stderr
  8208   - snapd: fix snap cookie bugs
  8209   - packaging/arch: do not quote MAKEFLAGS
  8210   - state: add change.LaneTasks helper
  8211   - cmd/snap-update-ns: do not assume 'nogroup' exists
  8212   - tests/lib: handle distro specific grub-editenv naming
  8213   - cmd/snap-confine: Add missing bi-arch NVIDIA filesthe
  8214     `/var/lib/snapd/lib/gl:/var/lib/snapd/lib/gl/vdpau` paths within
  8215   - cmd: Support exposing NVIDIA Vulkan ICD files to the snaps
  8216   - cmd/snap-confine: Implement full 32-bit NVIDIA driver support
  8217   - packaging/arch: packaging update
  8218   - cmd/snap-confine: Support bash as base runtime entry
  8219   - wrappers: do not error on incorrect Exec= lines
  8220   - interfaces: fix udev tagging for hooks
  8221   - tests/set-proxy-store: exclude ubuntu-core-16 via systems: key
  8222   - tests: new tests for network setup control and observe interfaces
  8223   - osutil: add helper for obtaining group ID of given file path
  8224   - daemon,overlord/snapstate: return snap-not-installed error in more
  8225     cases
  8226   - interfaces/builtin/lxd_support: allow discovering of host's os-
  8227     release
  8228   - configstate: add support for configure-snapd for
  8229     snapstate.IgnoreHookError
  8230   - tests:  add a spread test for proxy.store setting together with
  8231     store assertion
  8232   - cmd/snap-seccomp: do not use group 'shadow' in tests
  8233   - asserts/assertstest:  fix use of hardcoded value when the passed
  8234     or default keys should be used
  8235   - interfaces/many: misc policy updates for browser-support, cups-
  8236     control and network-status
  8237   - tests: fix xdg-open-compat
  8238   - daemon: for /v2/logs, 404 when no services are found
  8239   - packaging/fedora: Merge changes from Fedora Dist-Git
  8240   - cmd/snap-update-ns: add new helpers for mount entries
  8241   - cmd/snap-confine: Respect biarch nature of libdirs
  8242   - cmd/snap-confine: Ensure snap-confine is allowed to access os-
  8243     release
  8244   - cmd: fix re-exec bug with classic confinement for host snapd <
  8245     2.28
  8246   - interfaces/kmod: simplify loadModules now that errors are ignored
  8247   - tests: disable xdg-open-compat test
  8248   - tests: add test that checks core reverts on core devices
  8249   - dirs: use alt root when checking classic confinement support
  8250     without …
  8251   - interfaces/kmod: treat failure to load module as non-fatal
  8252   - cmd/snap-update-ns: fix golint and some stale comments
  8253   - corecfg:  support setting proxy.store if there's a matching store
  8254     assertion
  8255   - overlord/snapstate: toggle ignore-validation as needed as we do
  8256     for channel
  8257   - tests: fix security-device-cgroup* tests on devices with
  8258     framebuffer
  8259   - interfaces/raw-usb: match on SUBSYSTEM, not SUBSYSTEMS
  8260   - interfaces: add USB interface number attribute in udev rule for
  8261     serial-port interface
  8262   - overlord/devicestate: switch to the new endpoints for registration
  8263   - snap-update-ns: add missing unit test for desired/current profile
  8264     handling
  8265   - cmd/{snap-confine,libsnap-confine-private,snap-shutdown}: cleanup
  8266     low-level C bits
  8267   - ifacestate: make interfaces.Repository available via state cache
  8268   - overlord/snapstate: cleanups around switch-snap*
  8269   - cmd/snapd,client,daemon: display ignore-validation flag through
  8270     the notes mechanism
  8271   - cmd/snap-update-ns: add logging to snap-update-ns
  8272   - many: have a timestamp on store assertions
  8273   - many: lookup and use the URL from a store assertion if one is set
  8274     for use
  8275   - tests/test-snapd-service: fix shellcheck issues
  8276   - tests: new test for hardware-random-control interface
  8277   - tests: use `snap change --last=install` in snapd-reexec test
  8278   - repo, daemon: use PlugInfo, SlotInfo
  8279   - many: handle core configuration internally instead of using the
  8280     core configure hook
  8281   - tests: refactor and expand content interface test
  8282   - snap-seccomp: skip in-kernel bpf tests for socket() in trusty/i386
  8283   - cmd/snap-update-ns: allow Change.Perform to return changes
  8284   - snap-confine: Support biarch Linux distribution confinement
  8285   - partition/ubootenv: don't panic when uboot.env is missing the eof
  8286     marker
  8287   - cmd/snap-update-ns: allow fault injection to provide dynamic
  8288     result
  8289   - interfaces/mount: exspose mount.{Escape,Unescape}
  8290   - snapctl: added long help to stop/start/restart command
  8291   - cmd/snap-update-ns: create missing mount points automatically.
  8292   - cmd: downgrade log message in InternalToolPath to Debugf()
  8293   - tests: wait for service status change & file update in the test to
  8294     avoid races
  8295   - daemon, store: forward SSO invalid credentials errors as 401
  8296     Unauthorized responses
  8297   - spdx: fix for WITH syntax, require a license name before the
  8298     operator
  8299   - many: reorg things in preparation to make handling of the base url
  8300     in store dynamic
  8301   - hooks/configure: queue service restarts
  8302   - cmd/snap: warn when a snap is not from the tracking channel
  8303   - interfaces/mount: add support for parsing x-snapd.{mode,uid,gid}=
  8304   - cmd/snap-confine: add detection of stale mount namespace
  8305   - interfaces: add plugRef/slotRef helpers for PlugInfo/SlotInfo
  8306   - tests: check for invalid udev files during all tests
  8307   - daemon: use newChange() in changeAliases for consistency
  8308   - servicestate: use taskset
  8309   - many: add support for /home on NFS
  8310   - packaging,spread: fix and re-enable opensuse builds
  8311  
  8312  * Sun Dec 17 2017 Neal Gompa <ngompa13@gmail.com> - 2.29.4-3
  8313  - Add patch to SELinux policy to allow snapd to receive replies from polkit
  8314  
  8315  * Sun Nov 19 2017 Neal Gompa <ngompa13@gmail.com> - 2.29.4-2
  8316  - Add missing bash completion files and cache directory
  8317  
  8318  * Sun Nov 19 2017 Neal Gompa <ngompa13@gmail.com> - 2.29.4-1
  8319  - Release 2.29.4 to Fedora (RH#1508433)
  8320  - Install Polkit configuration (RH#1509586)
  8321  - Drop changes to revert cheggaaa/pb import path used
  8322  
  8323  * Fri Nov 17 2017 Michael Vogt <mvo@ubuntu.com>
  8324  - New upstream release 2.29.4
  8325   - snap-confine: fix snap-confine under lxd
  8326   - tests: disable classic-ubuntu-core-transition on i386 temporarily
  8327   - many: reject bad plugs/slots
  8328   - interfaces,tests: skip unknown plug/slot interfaces
  8329   - store: enable "base" field from the store
  8330   - packaging/fedora: Merge changes from Fedora Dist-Git
  8331  
  8332  * Thu Nov 09 2017 Michael Vogt <mvo@ubuntu.com>
  8333  - New upstream release 2.29.3
  8334   - daemon: cherry-picked /v2/logs fixes
  8335   - cmd/snap-confine: Respect biarch nature of libdirs
  8336   - cmd/snap-confine: Ensure snap-confine is allowed to access os-
  8337     release
  8338   - interfaces: fix udev tagging for hooks
  8339   - cmd: fix re-exec bug with classic confinement for host snapd
  8340   - tests: disable xdg-open-compat test
  8341   - cmd/snap-confine: add slave PTYs and let devpts newinstance
  8342     perform mediation
  8343   - interfaces/many: misc policy updates for browser-support, cups-
  8344     control and network-status
  8345   - interfaces/raw-usb: match on SUBSYSTEM, not SUBSYSTEMS
  8346   - tests: fix security-device-cgroup* tests on devices with
  8347     framebuffer
  8348  
  8349  * Fri Nov 03 2017 Michael Vogt <mvo@ubuntu.com>
  8350  - New upstream release 2.29.2
  8351    - snapctl: disable stop/start/restart (2.29)
  8352    - cmd/snap-update-ns: fix collection of changes made
  8353  
  8354  * Fri Nov 03 2017 Michael Vogt <mvo@ubuntu.com>
  8355  - New upstream release 2.29.1
  8356   - interfaces: fix incorrect signature of ofono DBusPermanentSlot
  8357   - interfaces/serial-port: udev tag plugged slots that have just
  8358     'path' via KERNEL
  8359   - interfaces/hidraw: udev tag plugged slots that have just 'path'
  8360     via KERNEL
  8361   - interfaces/uhid: unconditionally add existing uhid device to the
  8362     device cgroup
  8363   - cmd/snap-update-ns: fix mount rules for font sharing
  8364   - tests: disable refresh-undo test on trusty for now
  8365   - tests: use `snap change --last=install` in snapd-reexec test
  8366   - Revert " wrappers: fail install if exec-line cannot be re-written
  8367   - interfaces: don't udev tag devmode or classic snaps
  8368   - many: make ignore-validation sticky and send the flag with refresh
  8369     requests
  8370  
  8371  * Mon Oct 30 2017 Michael Vogt <mvo@ubuntu.com>
  8372  - New upstream release 2.29
  8373   - interfaces/many: miscellaneous updates based on feedback from the
  8374     field
  8375   - snap-confine: allow reading uevents from any where in /sys
  8376   - spread: add bionic beaver
  8377   - debian: make packaging/ubuntu-14.04/copyright a real file again
  8378   - tests: cherry pick the fix for services test into 2.29
  8379   - cmd/snap-update-ns: initialize logger
  8380   - hooks/configure: queue service restarts
  8381   - snap-{confine,seccomp}: make @unrestricted fully unrestricted
  8382   - interfaces: clean system apparmor cache on core device
  8383   - debian: do not build static snap-exec on powerpc
  8384   - snap-confine: increase sanity_timeout to 6s
  8385   - snapctl: cherry pick service commands changes
  8386   - cmd/snap: tell translators about arg names and descs req's
  8387   - systemd: run all mount units before snapd.service to avoid race
  8388   - store: add a test to show auth failures are forwarded by doRequest
  8389   - daemon: convert ErrInvalidCredentials to a 401 Unauthorized error.
  8390   - store: forward on INVALID_CREDENTIALS error as
  8391     ErrInvalidCredentials
  8392   - daemon: generate a forbidden response message if polkit dialog is
  8393     dismissed
  8394   - daemon: Allow Polkit authorization to cancel changes.
  8395   - travis: switch to container based test runs
  8396   - interfaces: reduce duplicated code in interface tests mocks
  8397   - tests: improve revert related testing
  8398   - interfaces: sanitize plugs and slots early in ReadInfo
  8399   - store: add download caching
  8400   - preserve TMPDIR and HOSTALIASES across snap-confine invocation
  8401   - snap-confine: init all arrays with `= {0,}`
  8402   - tests: adding test for network-manager interface
  8403   - interfaces/mount: don't generate legacy per-hook/per-app mount
  8404     profiles
  8405   - snap: introduce structured epochs
  8406   - tests: fix interfaces-cups-control test for cups-2.2.5
  8407   - snap-confine: cleanup incorrectly created nvidia udev tags
  8408   - cmd/snap-confine: update valid security tag regexp
  8409   - cmd/libsnap: enable two stranded tests
  8410   - cmd,packaging: enable apparmor on openSUSE
  8411   - overlord/ifacestate: refresh all security backends on startup
  8412   - interfaces/dbus: drop unneeded check for
  8413     release.ReleaseInfo.ForceDevMode
  8414   - dbus: ensure io.snapcraft.Launcher.service is created on re-
  8415     exec
  8416   - overlord/auth: continue for now supporting UBUNTU_STORE_ID if the
  8417     model is generic-classic
  8418   - snap-confine: add support for handling /dev/nvidia-modeset
  8419   - interfaces/network-control: remove incorrect rules for tun
  8420   - spread: allow setting SPREAD_DEBUG_EACH=0 to disable debug-each
  8421     section
  8422   - packaging: remove .mnt files on removal
  8423   - tests: fix econnreset scenario when the iptables rule was not
  8424     created
  8425   - tests: add test for lxd interface
  8426   - run-checks: use nakedret static checker to check for naked
  8427     returns on long functions
  8428   - progress: be more flexible in testing ansimeter
  8429   - interfaces: fix udev rules for tun
  8430   - many: implement our own ANSI-escape-using progress indicator
  8431   - snap-exec: update tests to follow main_test pattern
  8432   - snap: support "command: foo $ENV_STRING"
  8433   - packaging: update nvidia configure options
  8434   - snap: add new `snap pack` and use in tests
  8435   - cmd: correctly name the "Ubuntu" and "Arch" NVIDIA methods
  8436   - cmd: add autogen case for solus
  8437   - tests: do not use http://canihazip.com/ which appears to be down
  8438   - hooks: commands for controlling own services from snapctl
  8439   - snap: refactor cmdGet.Execute()
  8440   - interfaces/mount: make Change.Perform testable and test it
  8441   - interfaces/mount,cmd/snap-update-ns: move change code
  8442   - snap-confine: is_running_on_classic_distribution() looks into os-
  8443     release
  8444   - interfaces: misc updates for default, browser-support, home and
  8445     system-observe
  8446   - interfaces: deny lttng by default
  8447   - interfaces/lxd: lxd slot implementation can also be an app snap
  8448   - release,cmd,dirs: Redo the distro checks to take into account
  8449     distribution families
  8450   - cmd/snap: completion for alias and unalias
  8451   - snap-confine: add new SC_CLEANUP and use it
  8452   - snap: refrain from running filepath.Base on random strings
  8453   - cmd/snap-confine: put processes into freezer hierarchy
  8454   - wrappers: fail install if exec-line cannot be re-written
  8455   - cmd/snap-seccomp,osutil: make user/group lookup functions public
  8456   - snapstate: deal with snap user data in the /root/ directory
  8457   - interfaces: Enhance full-confinement support for biarch
  8458     distributions
  8459   - snap-confine: Only attempt to copy/mount NVIDIA libs when NVIDIA
  8460     is used
  8461   - packaging/fedora: Add Fedora 26, 27, and Rawhide symlinks
  8462   - overlord/snapstate: prefer a smaller corner case for doing the
  8463     wrong thing
  8464   - cmd/snap-repair:  set user agent for snap-repair http requests
  8465   - packaging: bring down the delta between 14.04 and 16.04
  8466   - snap-confine: Ensure lib64 biarch directory is respected
  8467   - snap-confine: update apparmor rules for fedora based base snaps
  8468   - tests: Increase SNAPD_CONFIGURE_HOOK_TIMEOUT to 3 minutes to
  8469     install real snaps
  8470   - daemon: use client.Snap instead of map[string]interface{} for
  8471     snaps.
  8472   - hooks: rename refresh hook to post-refresh
  8473   - git: make the .gitingore file a bit more targeted
  8474   - interfaces/opengl: don't udev tag nvidia devices and use snap-
  8475     confine instead
  8476   - cmd/snap-{confine,update-ns}: apply mount profiles using snap-
  8477     update-ns
  8478   - cmd: update "make hack"
  8479   - interfaces/system-observe: allow clients to enumerate DBus
  8480     connection names
  8481   - snap-repair: implement `snap-repair {list,show}`
  8482   - dirs,interfaces: create snap-confine.d on demand when re-executing
  8483   - snap-confine: fix base snaps on core
  8484   - cmd/snap-repair: fix tests when running as root
  8485   - interfaces: add Connection type
  8486   - cmd/snap-repair: skip disabled repairs
  8487   - cmd/snap-repair: prefer leaking unmanaged fds on test failure over
  8488     closing random ones
  8489   - snap-repair: make `repair` binary available for repair scripts
  8490   - snap-repair: fix missing Close() in TestStatusHappy
  8491   - cmd/snap-confine,packaging: import snapd-generated policy
  8492   - cmd/snap: return empty document if snap has no configuration
  8493   - snap-seccomp: run secondary-arch tests via gcc-multilib
  8494   - snap: implement `snap {repair,repairs}` and pass-through to snap-
  8495     repair
  8496   - interfaces/builtin: allow receiving dbus messages
  8497   - snap-repair: implement `snap-repair {done,skip,retry}`
  8498   - data/completion: small tweak to snap completion snippet
  8499   - dirs: fix classic support detection
  8500   - cmd/snap-repair: integrate root public keys for repairs
  8501   - tests: fix ubuntu core services
  8502   - tests: add new test that checks that the compat snapd-xdg-open
  8503     works
  8504   - snap-confine: improve error message if core/u-core cannot be found
  8505   - tests: only run tests/regression/nmcli on amd64
  8506   - interfaces: mount host system fonts in desktop interface
  8507   - interfaces: enable partial apparmor support
  8508   - snapstate: auto-install missing base snaps
  8509   - spread: work around temporary packaging issue in debian sid
  8510   - asserts,cmd/snap-repair: introduce a mandatory summary for repairs
  8511   - asserts,cmd/snap-repair: represent RepairID internally as an int
  8512   - tests: test the real "xdg-open" from the core snap
  8513   - many: implement fetching sections and package names periodically.
  8514   - interfaces/network: allow using netcat as client
  8515   - snap-seccomp, osutil: use osutil.AtomicFile in snap-seccomp
  8516   - snap-seccomp: skip mknod syscall on arm64
  8517   - tests: add trivial canonical-livepatch test
  8518   - tests: add test that ensures that all core services are working
  8519   - many: add logger.MockLogger() and use it in the tests
  8520   - snap-repair: fix test failure in TestRepairHitsTimeout
  8521   - asserts: add empty values check in HeadersFromPrimaryKey
  8522   - daemon: remove unused installSnap var in test
  8523   - daemon: reach for Overlord.Loop less thanks to overlord.Mock
  8524   - snap-seccomp: manually resolve socket() call in tests
  8525   - tests: change regex used to validate installed ubuntu core snap
  8526   - cmd/snapctl: allow snapctl -h without a context (regression fix).
  8527   - many: use snapcore/snapd/i18n instead of i18n/dumb
  8528   - many: introduce asserts.NotFoundError replacing both ErrNotFound
  8529     and store.AssertionNotFoundError
  8530   - packaging: don't include any marcos in comments
  8531   - overlord: use overlord.Mock in more tests, make sure we check the
  8532     outcome of Settle
  8533   - tests: try to fix staging tests
  8534   - store: simplify api base url config
  8535   - systemd: add systemd.MockJournalctl()
  8536   - many: provide systemd.MockSystemctl() helper
  8537   - tests: improve the listing test to not fail for e.g. 2.28~rc2
  8538   - snapstate: give snapmgrTestSuite.settle() more time to settle
  8539   - tests: fix regex to check core version on snap list
  8540   - debian: update trusted account-keys check on 14.04 packaging
  8541   - interfaces: add udev netlink support to hardware-observe
  8542   - overlord: introduce Mock which enables to use Overlord.Settle for
  8543     settle in many more places
  8544   - snap-repair: execute the repair and capture logs/status
  8545   - tests: run the tests/unit/go everywhere
  8546   - daemon, snapstate: move ensureCore from daemon/api.go into
  8547     snapstate.go
  8548   - cmd/snap: get keys or root document
  8549   - spread.yaml: turn suse to manual given that it's breaking master
  8550   - many: configure store from state, reconfigure store at runtime
  8551   - osutil: AtomicWriter (an io.Writer), and io.Reader versions of
  8552     AtomicWrite*
  8553   - tests: check for negative syscalls in runBpf() and skip those
  8554     tests
  8555   - docs: use abolute path in PULL_REQUEST_TEMPLATE.md
  8556   - store: move device auth endpoint uris to config (#3831)
  8557  
  8558  * Sat Oct 14 2017 Neal Gompa <ngompa13@gmail.com> - 2.28.5-2
  8559  - Properly fix the build for Fedora 25
  8560  - Incorporate misc build fixes
  8561  
  8562  * Sat Oct 14 2017 Neal Gompa <ngompa13@gmail.com> - 2.28.5-1
  8563  - Release 2.28.5 to Fedora (RH#1502186)
  8564  - Build snap-exec and snap-update-ns statically to support base snaps
  8565  
  8566  * Fri Oct 13 2017 Michael Vogt <mvo@ubuntu.com>
  8567  - New upstream release 2.28.5
  8568    - snap-confine: cleanup broken nvidia udev tags
  8569    - cmd/snap-confine: update valid security tag regexp
  8570    - overlord/ifacestate: refresh udev backend on startup
  8571    - dbus: ensure io.snapcraft.Launcher.service is created on re-
  8572      exec
  8573    - snap-confine: add support for handling /dev/nvidia-modeset
  8574    - interfaces/network-control: remove incorrect rules for tun
  8575  
  8576  * Thu Oct 12 2017 Neal Gompa <ngompa13@gmail.com> - 2.28.4-1
  8577  - Release 2.28.4 to Fedora (RH#1501141)
  8578  - Drop distro check backport patches (released with 2.28.2)
  8579  
  8580  * Wed Oct 11 2017 Michael Vogt <mvo@ubuntu.com>
  8581  - New upstream release 2.28.4
  8582    - interfaces/opengl: don't udev tag nvidia devices and use snap-
  8583      confine instead
  8584    - debian: fix replaces/breaks for snap-xdg-open (thanks to apw!)
  8585  
  8586  * Wed Oct 11 2017 Michael Vogt <mvo@ubuntu.com>
  8587  - New upstream release 2.28.3
  8588    - interfaces/lxd: lxd slot implementation can also be an app
  8589      snap
  8590  
  8591  * Tue Oct 10 2017 Michael Vogt <mvo@ubuntu.com>
  8592  - New upstream release 2.28.2
  8593    - interfaces: fix udev rules for tun
  8594    - release,cmd,dirs: Redo the distro checks to take into account
  8595      distribution families
  8596  
  8597  * Sun Oct 08 2017 Neal Gompa <ngompa13@gmail.com> - 2.28.1-1
  8598  - Release 2.28.1 to Fedora (RH#1495852)
  8599  - Drop userd backport patches, they are part of 2.28 release
  8600  - Backport changes to rework distro checks to fix derivative distro usage of snapd
  8601  - Revert import path change for cheggaaa/pb as it breaks build on Fedora
  8602  - Add a posttrans relabel to snapd-selinux to ensure everything is labeled correctly
  8603  
  8604  * Wed Sep 27 2017 Michael Vogt <mvo@ubuntu.com>
  8605  - New upstream release 2.28.1
  8606    - snap-confine: update apparmor rules for fedora based basesnaps
  8607    - snapstate: rename refresh hook to post-refresh for consistency
  8608  
  8609  * Mon Sep 25 2017 Michael Vogt <mvo@ubuntu.com>
  8610  - New upstream release 2.28
  8611   - hooks: rename refresh to after-refresh
  8612   - snap-confine: bind mount /usr/lib/snapd relative to snap-confine
  8613   - cmd,dirs: treat "liri" the same way as "arch"
  8614   - snap-confine: fix base snaps on core
  8615   - hooks: substitute env vars when executing hooks
  8616   - interfaces: updates for default, browser-support, desktop, opengl,
  8617     upower and stub-resolv.conf
  8618   - cmd,dirs: treat manjaro the same as arch
  8619   - systemd: do not run auto-import and repair services on classic
  8620   - packaging/fedora: Ensure vendor/ is empty for builds and fix spec
  8621     to build current master
  8622   - many: fix TestSetConfNumber missing an Unlock and other fragility
  8623     improvements
  8624   - osutil: adjust StreamCommand tests for golang 1.9
  8625   - daemon: allow polkit authorisation to install/remove snaps
  8626   - tests: make TestCmdWatch more robust
  8627   - debian: improve package description
  8628   - interfaces: add netlink kobject uevent to hardware observe
  8629   - debian: update trusted account-keys check on 14.04 packaging
  8630   - interfaces/network-{control,observe}: allow receiving
  8631     kobject_uevent() messages
  8632   - tests: fix lxd test for external backend
  8633   - snap-confine,snap-update-ns: add -no-pie to fix FTBFS on
  8634     go1.7,ppc64
  8635   - corecfg: mock "systemctl" in all corecfg tests
  8636   - tests: fix unit tests on Ubuntu 14.04
  8637   - debian: add missing flags when building static snap-exec
  8638   - many: end-to-end support for the bare base snap
  8639   - overlord/snapstate: SetRootDir from SetUpTest, not in just some
  8640     tests
  8641   - store: have an ad-hoc method on cfg to get its list of uris for
  8642     tests
  8643   - daemon: let client decide whether to allow interactive auth via
  8644     polkit
  8645   - client,daemon,snap,store: add license field
  8646   - overlord/snapstate: rename HasCurrent to IsInstalled, remove
  8647     superfluous/misleading check from All
  8648   - cmd/snap: SetRootDir from SetUpTest, not in just some individual
  8649     tests.
  8650   - systemd: rename snap-repair.{service,timer} to snapd.snap-
  8651     repair.{service,timer}
  8652   - snap-seccomp: remove use of x/net/bpf from tests
  8653   - httputil: more naive per go version way to recreate a default
  8654     transport for tls reconfig
  8655   - cmd/snap-seccomp/main_test.go: add one more syscall for arm64
  8656   - interfaces/opengl: use == to compare, not =
  8657   - cmd/snap-seccomp/main_test.go: add syscalls for armhf and arm64
  8658   - cmd/snap-repair: track and use a lower bound for the time for
  8659     TLS checks
  8660   - interfaces: expose bluez interface on classic OS
  8661   - snap-seccomp: add in-kernel bpf tests
  8662   - overlord: always try to get a serial, lazily on classic
  8663   - tests: add nmcli regression test
  8664   - tests: deal with __PNR_chown on aarch64 to fix FTBFS on arm64
  8665   - tests: add autopilot-introspection interface test
  8666   - vendor: fix artifact from manually editing vendor/vendor.json
  8667   - tests: rename complexion to test-snapd-complexion
  8668   - interfaces: add desktop and desktop-legacy
  8669     interfaces/desktop: add new 'desktop' interface for modern DEs*
  8670     interfaces/builtin/desktop_test.go: use modern testing techniques*
  8671     interfaces/wayland: allow read on /etc/drirc for Plasma desktop*
  8672     interfaces/desktop-legacy: add new 'legacy' interface (currently
  8673     for a11y and input)
  8674   - tests: fix race in snap userd test
  8675   - devices/iio: add read/write for missing sysfs entries
  8676   - spread: don't set HTTPS?_PROXY for linode
  8677   - cmd/snap-repair: check signatures of repairs from Next
  8678   - env: set XDG_DATA_DIRS for wayland et.al.
  8679   - interfaces/{default,account-control}: Use username/group instead
  8680     of uid/gid
  8681   - interfaces/builtin: use udev tagging more broadly
  8682   - tests: add basic lxd test
  8683   - wrappers: ensure bash completion snaps install on core
  8684   - vendor: use old golang.org/x/crypto/ssh/terminal to build on
  8685     powerpc again
  8686   - docs: add PULL_REQUEST_TEMPLATE.md
  8687   - interfaces: fix network-manager plug
  8688   - hooks: do not error out when hook is optional and no hook handler
  8689     is registered
  8690   - cmd/snap: add userd command to replace snapd-xdg-open
  8691   - tests: new regex used to validate the core version on extra snaps
  8692     ass...
  8693   - snap: add new `snap switch` command
  8694   - tests: wait more and more debug info about fakestore start issues
  8695   - apparmor,release: add better apparmor detection/mocking code
  8696   - interfaces/i2c: adjust sysfs rule for alternate paths
  8697   - interfaces/apparmor: add missing call to dirs.SetRootDir
  8698   - cmd: "make hack" now also installs snap-update-ns
  8699   - tests: copy files with less verbosity
  8700   - cmd/snap-confine: allow using additional libraries required by
  8701     openSUSE
  8702   - packaging/fedora: Merge changes from Fedora Dist-Git
  8703   - snapstate: improve the error message when classic confinement is
  8704     not supported
  8705   - tests: add test to ensure amd64 can run i386 syscall binaries
  8706   - tests: adding extra info for fakestore when fails to start
  8707   - tests: install most important snaps
  8708   - cmd/snap-repair: more test coverage of filtering
  8709   - squashfs: remove runCommand/runCommandWithOutput as we do not need
  8710     it
  8711   - cmd/snap-repair: ignore superseded revisions, filter on arch and
  8712     models
  8713   - hooks: support for refresh hook
  8714   - Partial revert "overlord/devicestate, store: update device auth
  8715     endpoints URLs"
  8716   - cmd/snap-confine: allow reading /proc/filesystems
  8717   - cmd/snap-confine: genearlize apparmor profile for various lib
  8718     layout
  8719   - corecfg: fix proxy.* writing and add integration test
  8720   - corecfg: deal with system.power-key-action="" correctly
  8721   - vendor: update vendor.json after (presumed) manual edits
  8722   - cmd/snap: in `snap info`, don't print a newline between tracks
  8723   - daemon: add polkit support to /v2/login
  8724   - snapd,snapctl: decode json using Number
  8725   - client: fix go vet 1.7 errors
  8726   - tests: make 17.04 shellcheck clean
  8727   - tests: remove TestInterfacesHelp as it breaks when go-flags
  8728     changes
  8729   - snapstate: undo a daemon restart on classic if needed
  8730   - cmd/snap-repair: recover brand/model from
  8731     /var/lib/snapd/seed/assertions checking signatures and brand
  8732     account
  8733   - spread: opt into unsafe IO during spread tests
  8734   - snap-repair: update snap-repair/runner_test.go for API change in
  8735     makeMockServer
  8736   - cmd/snap-repair: skeleton code around actually running a repair
  8737   - tests: wait until the port is listening after start the fake store
  8738   - corecfg: fix typo in tests
  8739   - cmd/snap-repair: test that redirects works during fetching
  8740   - osutil: honor SNAPD_UNSAFE_IO for testing
  8741   - vendor: explode and make more precise our golang.go/x/crypto deps,
  8742     use same version as Debian unstable
  8743   - many: sanitize NewStoreStack signature, have shared default store
  8744     test private keys
  8745   - systemd: disable `Nice=-5` to fix error when running inside lxd
  8746   - spread.yaml: update delta ref to 2.27
  8747   - cmd/snap-repair: use E-Tags when refetching a repair to retry
  8748   - interfaces/many: updates based on chromium and mrrescue denials
  8749   - cmd/snap-repair: implement most logic to get the next repair to
  8750     run/retry in a brand sequence
  8751   - asserts/assertstest: copy headers in SigningDB.Sign
  8752   - interfaces: convert uhid to common interface and test cases
  8753     improvement for time_control and opengl
  8754   - many tests: move all panicing fake store methods to a common place
  8755   - asserts: add store assertion type
  8756   - interfaces: don't crash if content slot has no attributes
  8757   - debian: do not build with -buildmode=pie on i386
  8758   - wrappers: symlink completion snippets when symlinking binaries
  8759   - tests: adding more debug information for the interfaces-cups-
  8760     control …
  8761   - apparmor: pass --quiet to parser on load unless SNAPD_DEBUG is set
  8762   - many: allow and support serials signed by the 'generic' authority
  8763     instead of the brand
  8764   - corecfg: add proxy configuration via `snap set core
  8765     proxy.{http,https,ftp}=...`
  8766   - interfaces: a bunch of interfaces test improvement
  8767   - tests: enable regression and completion suites for opensuse
  8768   - tests: installing snapd for nested test suite
  8769   - interfaces: convert lxd_support to common iface
  8770   - interfaces: add missing test for camera interface.
  8771   - snap: add support for parsing snap layout section
  8772   - cmd/snap-repair: like for downloads we cannot have a timeout (at
  8773     least for now), less aggressive retry strategies
  8774   - overlord: rely on more conservative ensure interval
  8775   - overlord,store: no piles of return args for methods gathering
  8776     device session request params
  8777   - overlord,store: send model assertion when setting up device
  8778     sessions
  8779   - interfaces/misc: updates for unity7/x11, browser-
  8780     support, network-control and mount-observe
  8781     interfaces/unity7,x11: update for NETLINK_KOBJECT_UEVENT
  8782     interfaces/browser-support: update sysfs reads for
  8783     newer browser versions, interfaces/network-control: rw for
  8784     ieee80211 advanced wireless interfaces/mount-observe: allow read
  8785     on sysfs entries for block devices
  8786   - tests: use dnf --refresh install to avert stale cache
  8787   - osutil: ensure TestLockUnlockWorks uses supported flock
  8788   - interfaces: convert lxd to common iface
  8789   - tests: restart snapd to ensure re-exec settings are applied
  8790   - tests: fix interfaces-cups-control test
  8791   - interfaces: improve and tweak bunch of interfaces test cases.
  8792   - tests: adding extra worker for fedora
  8793   - asserts,overlord/devicestate: support predefined assertions that
  8794     don't establish foundational trust
  8795   - interfaces: convert two hardware_random interfaces to common iface
  8796   - interfaces: convert io_ports_control to common iface
  8797   - tests: fix for  upgrade test on fedora
  8798   - daemon, client, cmd/snap: implement snap start/stop/restart
  8799   - cmd/snap-confine: set _FILE_OFFSET_BITS to 64
  8800   - interfaces: covert framebuffer to commonInterface
  8801   - interfaces: convert joystick to common iface
  8802   - interfaces/builtin: add the spi interface
  8803   - wrappers, overlord/snapstate/backend: make link-snap clean up on
  8804     failure.
  8805   - interfaces/wayland: add wayland interface
  8806   - interfaces: convert kvm to common iface
  8807   - tests: extend upower-observe test to cover snaps providing slots
  8808   - tests: enable main suite for opensuse
  8809   - interfaces: convert physical_memory_observe to common iface
  8810   - interfaces: add missing test for optical_drive interface.
  8811   - interfaces: convert physical_memory_control to common iface
  8812   - interfaces: convert ppp to common iface
  8813   - interfaces: convert time-control to common iface
  8814   - tests: fix failover test
  8815   - interfaces/builtin: rework for avahi interface
  8816   - interfaces: convert broadcom-asic-control to common iface
  8817   - snap/snapenv: document the use of CoreSnapMountDir for SNAP
  8818   - packaging/arch: drop patches merged into master
  8819   - cmd: fix mustUnsetenv docstring (thanks to Chipaca)
  8820   - release: remove default from VERSION_ID
  8821   - tests: enable regression, upgrade and completion test suites for
  8822     fedora
  8823   - tests: restore interfaces-account-control properly
  8824   - overlord/devicestate, store: update device auth endpoints URLs
  8825   - tests: fix install-hook test failure
  8826   - tests: download core and ubuntu-core at most once
  8827   - interfaces: add common support for udev
  8828   - overlord/devicestate: fix, don't assume that the serial is backed
  8829     by a 1-key chain
  8830   - cmd/snap-confine: don't share /etc/nsswitch from host
  8831   - store: do not resume a download when we already have the whole
  8832     thing
  8833   - many: implement "snap logs"
  8834   - store: don't call useDeltas() twice in quick succession
  8835   - interfaces/builtin: add kvm interface
  8836   - snap/snapenv: always expect /snap for $SNAP
  8837   - cmd: mark arch as non-reexecing distro
  8838   - cmd: fix tests that assume /snap mount
  8839   - gitignore: ignore more build artefacts
  8840   - packaging: add current arch packaging
  8841   - interfaces/unity7: allow receiving media key events in (at least)
  8842     gnome-shell
  8843   - interfaces/many, cmd/snap-confine: miscellaneous policy updates
  8844   - interfaces/builtin: implement broadcom-asic-control interface
  8845   - interfaces/builtin: reduce duplication and remove cruft in
  8846     Sanitize{Plug,Slot}
  8847   - tests: apply underscore convention for SNAPMOUNTDIR variable
  8848   - interfaces/greengrass-support: adjust accesses now that have
  8849     working snap
  8850   - daemon, client, cmd/snap: implement "snap services"
  8851   - tests: fix refresh tests not stopping fake store for fedora
  8852   - many: add the interface command
  8853   - overlord/snapstate/backend: some copydata improvements
  8854   - many: support querying and completing assertion type names
  8855   - interfaces/builtin: discard empty Validate{Plug,Slot}
  8856   - cmd/snap-repair:  start of Runner, implement first pass of Peek
  8857     and Fetch
  8858   - tests: enable main suite on fedora
  8859   - snap: do not always quote the snap info summary
  8860   - vendor: update go-flags to address crash in "snap debug"
  8861   - interfaces: opengl support pci device and vendor
  8862   - many: start implenting "base" snap type on the snapd side
  8863   - arch,release: map armv6 correctly
  8864   - many: expose service status in 'snap info'
  8865   - tests: add browser-support interface test
  8866   - tests: disable snapd-notify for the external backend
  8867   - interfaces: Add /run/uuid/request to openvswitch
  8868   - interfaces: add password-manager-service implicit classic
  8869     interface
  8870   - cmd: rework reexec detection
  8871   - cmd: fix re-exec bug when starting from snapd 2.21
  8872   - tests: dependency packages installed during prepare-project
  8873   - tests: remove unneeded check for re-exec in InternalToolPath()
  8874   - cmd,tests: fix classic confinement confusing re-execution code
  8875   - store: configurable base api
  8876   - tests: fix how package lists are updated for opensuse and fedora
  8877  
  8878  * Sun Sep 10 2017 Neal Gompa <ngompa13@gmail.com> - 2.27.6-1
  8879  - Release 2.27.6 to Fedora (RH#1489437)
  8880  
  8881  * Thu Sep 07 2017 Michael Vogt <mvo@ubuntu.com>
  8882  - New upstream release 2.27.6
  8883    - interfaces: add udev netlink support to hardware-observe
  8884    - interfaces/network-{control,observe}: allow receiving
  8885      kobject_uevent() messages
  8886  
  8887  * Mon Sep 04 2017 Neal Gompa <ngompa13@gmail.com> - 2.27.5-1
  8888  - Release 2.27.5 to Fedora (RH#1483177)
  8889  - Backport userd from upstream to support xdg-open
  8890  
  8891  * Wed Aug 30 2017 Michael Vogt <mvo@ubuntu.com>
  8892  - New upstream release 2.27.5
  8893    - interfaces: fix network-manager plug regression
  8894    - hooks: do not error when hook handler is not registered
  8895    - interfaces/alsa,pulseaudio: allow read on udev data for sound
  8896    - interfaces/optical-drive: read access to udev data for /dev/scd*
  8897    - interfaces/browser-support: read on /proc/vmstat and misc udev
  8898      data
  8899  
  8900  * Thu Aug 24 2017 Michael Vogt <mvo@ubuntu.com>
  8901  - New upstream release 2.27.4
  8902    - snap-seccomp: add secondary arch for unrestricted snaps as well
  8903  
  8904  * Fri Aug 18 2017 Michael Vogt <mvo@ubuntu.com>
  8905  - New upstream release 2.27.3
  8906    - systemd: disable `Nice=-5` to fix error when running inside lxdSee
  8907      https://bugs.launchpad.net/snapd/+bug/1709536
  8908  
  8909  * Wed Aug 16 2017 Neal Gompa <ngompa13@gmail.com> - 2.27.2-2
  8910  - Bump to rebuild for F27 and Rawhide
  8911  
  8912  * Wed Aug 16 2017 Neal Gompa <ngompa13@gmail.com> - 2.27.2-1
  8913  - Release 2.27.2 to Fedora (RH#1482173)
  8914  
  8915  * Wed Aug 16 2017 Michael Vogt <mvo@ubuntu.com>
  8916  - New upstream release 2.27.2
  8917   - tests: remove TestInterfacesHelp as it breaks when go-flags
  8918     changes
  8919   - interfaces: don't crash if content slot has no attributes
  8920   - debian: do not build with -buildmode=pie on i386
  8921   - interfaces: backport broadcom-asic-control interface
  8922   - interfaces: allow /usr/bin/xdg-open in unity7
  8923   - store: do not resume a download when we already have the whole
  8924     thing
  8925  
  8926  * Mon Aug 14 2017 Neal Gompa <ngompa13@gmail.com> - 2.27.1-1
  8927  - Release 2.27.1 to Fedora (RH#1481247)
  8928  
  8929  * Mon Aug 14 2017 Michael Vogt <mvo@ubuntu.com>
  8930  - New upstream release 2.27.1
  8931   - tests: use dnf --refresh install to avert stale cache
  8932   - tests: fix test failure on 14.04 due to old version of
  8933     flock
  8934   - updates for unity7/x11, browser-support, network-control,
  8935     mount-observe
  8936   - interfaces/unity7,x11: update for NETLINK_KOBJECT_UEVENT
  8937   - interfaces/browser-support: update sysfs reads for
  8938     newer browser versions
  8939   - interfaces/network-control: rw for ieee80211 advanced wireless
  8940   - interfaces/mount-observe: allow read on sysfs entries for block
  8941     devices
  8942  
  8943  * Thu Aug 10 2017 Neal Gompa <ngompa13@gmail.com> - 2.27-1
  8944  - Release 2.27 to Fedora (RH#1458086)
  8945  
  8946  * Thu Aug 10 2017 Michael Vogt <mvo@ubuntu.com>
  8947  - New upstream release 2.27
  8948   - fix build failure on 32bit fedora
  8949   - interfaces: add password-manager-service implicit classic interface
  8950   - interfaces/greengrass-support: adjust accesses now that have working
  8951     snap
  8952   - interfaces/many, cmd/snap-confine: miscellaneous policy updates
  8953   - interfaces/unity7: allow receiving media key events in (at least)
  8954     gnome-shell
  8955   - cmd: fix re-exec bug when starting from snapd 2.21
  8956   - tests: restore interfaces-account-control properly
  8957   - cmd: fix tests that assume /snap mount
  8958   - cmd: mark arch as non-reexecing distro
  8959   - snap-confine: don't share /etc/nsswitch from host
  8960   - store: talk to api.snapcraft.io for purchases
  8961   - hooks: support for install and remove hooks
  8962   - packaging: fix Fedora support
  8963   - tests: add bluetooth-control interface test
  8964   - store: talk to api.snapcraft.io for assertions
  8965   - tests: remove snapd before building from branch
  8966   - tests: add avahi-observe interface test
  8967   - store: orders API now checks if customer is ready
  8968   - cmd/snap: snap find only searches stable
  8969   - interfaces: updates default, mir, optical-observe, system-observe,
  8970     screen-inhibit-control and unity7
  8971   - tests: speedup prepare statement part 1
  8972   - store: do not send empty refresh requests
  8973   - asserts: fix error handling in snap-developer consistency check
  8974   - systemd: add explicit sync to snapd.core-fixup.sh
  8975   - snapd: generate snap cookies on startup
  8976   - cmd,client,daemon: expose "force devmode" in sysinfo
  8977   - many: introduce and use strutil.ListContains and also
  8978     strutil.SortedListContains
  8979   - assserts,overlord/assertstate: test we don't accept chains of
  8980     assertions founded on a self-signed key coming externally
  8981   - interfaces: enable access to bridge settings
  8982   - interfaces: fix copy-pasted iio vs io in io-ports-control
  8983   - cmd/snap-confine: various small fixes and tweaks to seccomp
  8984     support code
  8985   - interfaces: bring back seccomp argument filtering
  8986   - systemd, osutil: rework systemd logs in preparation for services
  8987     commands
  8988   - tests: store /etc/systemd/system/snap-*core*.mount in snapd-
  8989     state.tar.gz
  8990   - tests: shellcheck improvements for tests/main tasks - first set of
  8991     tests
  8992   - cmd/snap: `--last` for abort and watch, and aliases
  8993     (search→find, change→tasks)
  8994   - tests: shellcheck improvements for tests/lib scripts
  8995   - tests: create ramdisk if it's not present
  8996   - tests: shellcheck improvements for nightly upgrade and regressions
  8997     tests
  8998   - snapd: fix for snapctl get panic on null config values.
  8999   - tests: fix for rng-tools service not restarting
  9000   - systemd: add snapd.core-fixup.service unit
  9001   - cmd: avoid using current symlink in InternalToolPath
  9002   - tests: fix timeout issue for test refresh core with hanging …
  9003   - intefaces: control bridged vlan/ppoe-tagged traffic
  9004   - cmd/snap: include snap type in notes
  9005   - overlord/state: Abort() only visits each task once
  9006   - tests: extend find-private test to cover more cases
  9007   - snap-seccomp: skip socket() tests on systems that use socketcall()
  9008     instead of socket()
  9009   - many: support snap title as localized/title-cased name
  9010   - snap-seccomp: deal with mknod on aarch64 in the seccomp tests
  9011   - interfaces: put base policy fragments inside each interface
  9012   - asserts: introduce NewDecoderWithTypeMaxBodySize
  9013   - tests: fix snapd-notify when it takes more time to restart
  9014   - snap-seccomp: fix snap-seccomp tests in artful
  9015   - tests: fix for create-key task to avoid rng-tools service ramains
  9016     alive
  9017   - snap-seccomp: make sure snap-seccomp writes the bpf file
  9018     atomically
  9019   - tests: do not disable ipv6 on core systems
  9020   - arch: the kernel architecture name is armv7l instead of armv7
  9021   - snap-confine: ensure snap-confine waits some seconds for seccomp
  9022     security profiles
  9023   - tests: shellcheck improvements for tests/nested tasks
  9024   - wrappers: add SyslogIdentifier to the service unit files.
  9025   - tests: shellcheck improvements for unit tasks
  9026   - asserts: implement FindManyTrusted as well
  9027   - asserts: open up and optimize Encoder to help avoiding unnecessary
  9028     copying
  9029   - interfaces: simplify snap-confine by just loading pre-generated
  9030     bpf code
  9031   - tests: restart rng-tools services after few seconds
  9032   - interfaces, tests: add mising dbus abstraction to system-observe
  9033     and extend spread test
  9034   - store: change main store host to api.snapcraft.io
  9035   - overlord/cmdstate: new package for running commands as tasks.
  9036   - spread: help libapt resolve installing libudev-dev
  9037   - tests: show the IP from .travis.yaml
  9038   - tests/main: use pkgdb function in more test cases
  9039   - cmd,daemon: add debug command for displaying the base policy
  9040   - tests: prevent quoting error on opensuse
  9041   - tests: fix nightly suite
  9042   - tests: add linode-sru backend
  9043   - snap-confine: validate SNAP_NAME against security tag
  9044   - tests: fix ipv6 disable for ubuntu-core
  9045   - tests: extend core-revert test to cover bluez issues
  9046   - interfaces/greengrass-support: add support for Amazon Greengrass
  9047     as a snap
  9048   - asserts: support timestamp and optional disabled header on repair
  9049   - tests: reboot after upgrading to snapd on the -proposed pocket
  9050   - many: fix test cases to work with different DistroLibExecDir
  9051   - tests: reenable help test on ubuntu and debian systems
  9052   - packaging/{opensuse,fedora}: allow package build with testkeys
  9053     included
  9054   - tests/lib: generalize RPM build support
  9055   - interfaces/builtin: sync connected slot and permanent slot snippet
  9056   - tests: fix snap create-key by restarting automatically rng-tools
  9057   - many: switch to use http numeric statuses as agreed
  9058   - debian: add missing  Type=notify in 14.04 packaging
  9059   - tests: mark interfaces-openvswitch as manual due to prepare errors
  9060   - debian: unify built_using between the 14.04 and 16.04 packaging
  9061     branch
  9062   - tests: pull from urandom when real entropy is not enough
  9063   - tests/main/manpages: install missing man package
  9064   - tests: add refresh --time output check
  9065   - debian: add missing "make -C data/systemd clean"
  9066   - tests: fix for upgrade test when it is repeated
  9067   - tests/main: use dir abstraction in a few more test cases
  9068   - tests/main: check for confinement in a few more interface tests
  9069   - spread: add fedora snap bin dir to global PATH
  9070   - tests: check that locale-control is not present on core
  9071   - many: snapctl outside hooks
  9072   - tests: add whoami check
  9073   - interfaces: compose the base declaration from interfaces
  9074   - tests: fix spread flaky tests linode
  9075   - tests,packaging: add package build support for openSUSE
  9076   - many: slight improvement of some snap error messaging
  9077   - errtracker: Include /etc/apparmor.d/usr.lib.snap-confine md5sum in
  9078     err reports
  9079   - tests: fix for the test postrm-purge
  9080   - tests: restoring the /etc/environment and service units config for
  9081     each test
  9082   - daemon: make snapd a "Type=notify" daemon and notify when startup
  9083     is done
  9084   - cmd/snap-confine: add support for --base snap
  9085   - many: derive implicit slots from interface meta-data
  9086   - tests: add core revert test
  9087   - tests,packaging: add package build support for Fedora for our
  9088     spread setup
  9089   - interfaces: move base declaration to the policy sub-package
  9090   - tests: fix for snapd-reexec test cheking for restart info on debug
  9091     log
  9092   - tests: show available entropy on error
  9093   - tests: clean journalctl logs on trusty
  9094   - tests: fix econnreset on staging
  9095   - tests: modify core before calling set
  9096   - tests: add snap-confine privilege test
  9097   - tests: add staging snap-id
  9098   - interfaces/builtin: silence ptrace denial for network-manager
  9099   - tests: add alsa interface spread test
  9100   - tests: prefer ipv4 over ipv6
  9101   - tests: fix for econnreset test checking that the download already
  9102     started
  9103   - httputil,store: extract retry code to httputil, reorg usages
  9104   - errtracker: report if snapd did re-execute itself
  9105   - errtracker: include bits of snap-confine apparmor profile
  9106   - tests: take into account staging snap-ids for snap-info
  9107   - cmd: add stub new snap-repair command and add timer
  9108   - many: stop "snap refresh $x --channel invalid" from working
  9109   - interfaces: revert "interfaces: re-add reverted ioctl and quotactl
  9110   - snapstate: consider connect/disconnect tasks in
  9111     CheckChangeConflict.
  9112   - interfaces: disable "mknod |N" in the default seccomp template
  9113     again
  9114   - interfaces,overlord/ifacestate: make sure installing slots after
  9115     plugs works similarly to plugs after slots
  9116   - interfaces/seccomp: add bind() syscall for forced-devmode systems
  9117   - packaging/fedora: Sync packaging from Fedora Dist-Git
  9118   - tests: move static and unit tests to spread task
  9119   - many: error types should be called FooError, not ErrFoo.
  9120   - partition: add directory sync to the save uboot.env file code
  9121   - cmd: test everything (100% coverage \o/)
  9122   - many: make shell scripts shellcheck-clean
  9123   - tests: remove additional setup for docker on core
  9124   - interfaces: add summary to each interface
  9125   - many: remove interface meta-data from list of connections
  9126   - logger (& many more, to accommodate): drop explicit syslog.
  9127   - packaging: import packaging bits for opensuse
  9128   - snapstate,many: implement snap install --unaliased
  9129   - tests/lib: abstract build dependency installation a bit more
  9130   - interfaces, osutil: move flock code from interfaces/mount to
  9131     osutil
  9132   - cmd: auto import assertions only from ext4,vfat file systems
  9133   - many: refactor in preparation for 'snap start'
  9134   - overlord/snapstate: have an explicit code path last-refresh
  9135     unset/zero => immediately refresh try
  9136   - tests: fixes for executions using the staging store
  9137   - tests: use pollinate to seed the rng
  9138   - cmd/snap,tests: show the sha3-384 of the snap for snap info
  9139     --verbose SNAP-FILE
  9140   - asserts: simplify and adjust repair assertion definition
  9141   - cmd/snap,tests: show the snap id if available in snap info
  9142   - daemon,overlord/auth: store from model assertion wins
  9143   - cmd/snap,tests/main: add confinement switch instead of spread
  9144     system blacklisting
  9145   - many: cleanup MockCommands and don't leave a process around after
  9146     hookstate tests
  9147   - tests: update listing test to the core version number schema
  9148   - interfaces: allow snaps to use the timedatectl utility
  9149   - packaging: Add Fedora packaging files
  9150   - tests/libs: add distro_auto_remove_packages function
  9151   - cmd/snap: correct devmode note for anomalous state
  9152   - tests/main/snap-info: use proper pkgdb functions to install distro
  9153     packages
  9154   - tests/lib: use mktemp instead of tempfile to work cross-distro
  9155   - tests: abstract common dirs which differ on distributions
  9156   - many: model and expose interface meta-data.
  9157   - overlord: make config defaults from gadget work also at first boot
  9158   - interfaces/log-observe: allow using journalctl from hostfs for
  9159     classic distro
  9160   - partition,snap: add support for android boot
  9161   - errtracker: small simplification around readMachineID
  9162   - snap-confine: move rm_rf_tmp to test-utils.
  9163   - tests/lib: introduce pkgdb helper library
  9164   - errtracker: try multiple paths to read machine-id
  9165   - overlord/hooks: make sure only one hook for given snap is executed
  9166     at a time.
  9167   - cmd/snap-confine: use SNAP_MOUNT_DIR to setup /snap inside the
  9168     confinement env
  9169   - tests: bump kill-timeout and remove quiet call on build
  9170   - tests/lib/snaps: add a test store snap with a passthrough
  9171     configure hook
  9172   - daemon: teach the daemon to wait on active connections when
  9173     shutting down
  9174   - tests: remove unit tests task
  9175   - tests/main/completion: source from /usr/share/bash-completion
  9176   - assertions: add "repair" assertion
  9177   - interfaces/seccomp: document Backend.NewSpecification
  9178   - wrappers: make StartSnapServices cleanup any services that were
  9179     added if a later one fails
  9180   - overlord/snapstate: avoid creating command aliases for daemons
  9181   - vendor: remove unused packages
  9182   - vendor,partition: fix panics from uenv
  9183   - cmd,interfaces/mount: run snap-update-ns and snap-discard-ns from
  9184     core if possible
  9185   - daemon: do not allow to install ubuntu-core anymore
  9186   - wrappers: service start/stop were inconsistent
  9187   - tests: fix failing tests (snap core version, syslog changes)
  9188   - cmd/snap-update-ns: add actual implementation
  9189   - tests: improve entropy also for ubuntu
  9190   - cmd/snap-confine: use /etc/ssl from the core snap
  9191   - wrappers: don't convert between []byte and string needlessly.
  9192   - hooks: default timeout
  9193   - overlord/snapstate: Enable() was ignoring the flags from the
  9194     snap's state, resulting in losing "devmode" on disable/enable.
  9195   - difs,interfaces/mount: add support for locking namespaces
  9196   - interfaces/mount: keep track of kept mount entries
  9197   - tests/main: move a bunch of greps over to MATCH
  9198   - interfaces/builtin: make all interfaces private
  9199   - interfaces/mount: spell unmount correctly
  9200   - tests: allow 16-X.Y.Z version of core snap
  9201   - the timezone_control interface only allows changing /etc/timezone
  9202     and /etc/writable/timezone. systemd-timedated also updated the
  9203     link of /etc/localtime and /etc/writable/localtime ... allow
  9204     access to this file too
  9205   - cmd/snap-confine: aggregate operations holding global lock
  9206   - api, ifacestate: resolve disconnect early
  9207   - interfaces/builtin: ensure we don't register interfaces twice
  9208  
  9209  * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.26.3-5
  9210  - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  9211  
  9212  * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.26.3-4
  9213  - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  9214  
  9215  * Thu May 25 2017 Neal Gompa <ngompa13@gmail.com> - 2.26.3-3
  9216  - Cover even more stuff for proper erasure on final uninstall (RH#1444422)
  9217  
  9218  * Sun May 21 2017 Neal Gompa <ngompa13@gmail.com> - 2.26.3-2
  9219  - Fix error in script for removing Snappy content (RH#1444422)
  9220  - Adjust changelog bug references to be specific on origin
  9221  
  9222  * Wed May 17 2017 Neal Gompa <ngompa13@gmail.com> - 2.26.3-1
  9223  - Update to snapd 2.26.3
  9224  - Drop merged and unused patches
  9225  - Cover more Snappy content for proper erasure on final uninstall (RH#1444422)
  9226  - Add temporary fix to ensure generated seccomp profiles don't break snapctl
  9227  
  9228  * Mon May 01 2017 Neal Gompa <ngompa13@gmail.com> - 2.25-1
  9229  - Update to snapd 2.25
  9230  - Ensure all Snappy content is gone on final uninstall (RH#1444422)
  9231  
  9232  * Tue Apr 11 2017 Neal Gompa <ngompa13@gmail.com> - 2.24-1
  9233  - Update to snapd 2.24
  9234  - Drop merged patches
  9235  - Install snap bash completion and snapd info file
  9236  
  9237  * Wed Apr 05 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.6-4
  9238  - Test if snapd socket and timer enabled and start them if enabled on install
  9239  
  9240  * Sat Apr 01 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.6-3
  9241  - Fix profile.d generation so that vars aren't expanded in package build
  9242  
  9243  * Fri Mar 31 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.6-2
  9244  - Fix the overlapping file conflicts between snapd and snap-confine
  9245  - Rework package descriptions slightly
  9246  
  9247  * Thu Mar 30 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.6-1
  9248  - Rebase to snapd 2.23.6
  9249  - Rediff patches
  9250  - Re-enable seccomp
  9251  - Fix building snap-confine on 32-bit arches
  9252  - Set ExclusiveArch based on upstream supported arch list
  9253  
  9254  * Wed Mar 29 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.5-1
  9255  - Rebase to snapd 2.23.5
  9256  - Disable seccomp temporarily avoid snap-confine bugs (LP#1674193)
  9257  - Use vendorized build for non-Fedora
  9258  
  9259  * Mon Mar 13 2017 Neal Gompa <ngompa13@gmail.com> - 2.23.1-1
  9260  - Rebase to snapd 2.23.1
  9261  - Add support for vendored tarball for non-Fedora targets
  9262  - Use merged in SELinux policy module
  9263  
  9264  * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.16-2
  9265  - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  9266  
  9267  * Wed Oct 19 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.16-1
  9268  - New upstream release
  9269  
  9270  * Tue Oct 18 2016 Neal Gompa <ngompa13@gmail.com> - 2.14-2
  9271  - Add SELinux policy module subpackage
  9272  
  9273  * Tue Aug 30 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.14-1
  9274  - New upstream release
  9275  
  9276  * Tue Aug 23 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.13-1
  9277  - New upstream release
  9278  
  9279  * Thu Aug 18 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.12-2
  9280  - Correct license identifier
  9281  
  9282  * Thu Aug 18 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.12-1
  9283  - New upstream release
  9284  
  9285  * Thu Aug 18 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-8
  9286  - Add %%dir entries for various snapd directories
  9287  - Tweak Source0 URL
  9288  
  9289  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-7
  9290  - Disable snapd re-exec feature by default
  9291  
  9292  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-6
  9293  - Don't auto-start snapd.socket and snapd.refresh.timer
  9294  
  9295  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-5
  9296  - Don't touch snapd state on removal
  9297  
  9298  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-4
  9299  - Use ExecStartPre to load squashfs.ko before snapd starts
  9300  - Use dedicated systemd units for Fedora
  9301  
  9302  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-3
  9303  - Remove systemd preset (will be requested separately according to distribution
  9304    standards).
  9305  
  9306  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-2
  9307  - Use Requires: kmod(squashfs.ko) instead of Requires: kernel-modules
  9308  
  9309  * Tue Aug 16 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.11-1
  9310  - New upstream release
  9311  - Move private executables to /usr/libexec/snapd/
  9312  
  9313  * Fri Jun 24 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.0.9-2
  9314  - Depend on kernel-modules to ensure that squashfs can be loaded. Load it afer
  9315    installing the package. This hopefully fixes
  9316    https://github.com/zyga/snapcore-fedora/issues/2
  9317  
  9318  * Fri Jun 17 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.0.9
  9319  - New upstream release
  9320    https://github.com/snapcore/snapd/releases/tag/2.0.9
  9321  
  9322  * Tue Jun 14 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.0.8.1
  9323  - New upstream release
  9324  
  9325  * Fri Jun 10 2016 Zygmunt Krynicki <me@zygoon.pl> - 2.0.8
  9326  - First package for Fedora